/* Cart Page Styles */
.cart-section {
    min-height: 100vh;
    padding: 120px 40px 80px;
    background: #000000;
}

.cart-container {
    max-width: 1400px;
    margin: 0 auto;
}

.cart-title {
    font-family: 'Parfumerie Script', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #55ff51;
    margin: 0 0 3rem 0;
    text-align: center;
    text-shadow: 0 0 14px rgba(85, 255, 81, 0.3);
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    border-radius: 16px;
    background: rgba(85, 255, 81, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(85, 255, 81, 0.2);
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(85, 255, 81, 0.08);
    border-color: rgba(85, 255, 81, 0.3);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 12px;
    background: rgba(85, 255, 81, 0.03);
    padding: 1rem;
}

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cart-item-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
}

.cart-item-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #55ff51;
    margin: 0;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(85, 255, 81, 0.3);
    background: transparent;
    color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    border-color: rgba(85, 255, 81, 0.6);
    background: rgba(85, 255, 81, 0.1);
}

.quantity-input {
    width: 50px;
    text-align: center;
    background: transparent;
    border: 1px solid rgba(85, 255, 81, 0.3);
    color: #ffffff;
    padding: 0.5rem;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

.remove-btn {
    background: transparent;
    border: 1px solid rgba(255, 85, 85, 0.3);
    color: #ff5555;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.remove-btn:hover {
    background: rgba(255, 85, 85, 0.1);
    border-color: rgba(255, 85, 85, 0.6);
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.cart-empty p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cart-summary {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.summary-card {
    padding: 2rem;
    border-radius: 16px;
    background: rgba(85, 255, 81, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(85, 255, 81, 0.2);
}

.summary-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(85, 255, 81, 0.1);
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.8);
}

.summary-row.total {
    border-bottom: none;
    border-top: 2px solid rgba(85, 255, 81, 0.3);
    margin-top: 1rem;
    padding-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #55ff51;
}

.checkout-btn {
    display: block;
    width: 88%;

    padding: 1rem;
    margin-top: 1rem;
    background: rgba(85, 255, 81, 0.1);
    border: 1px solid rgba(85, 255, 81, 0.4);
    color: #55ff51;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.checkout-btn:hover {
    background: rgba(85, 255, 81, 0.2);
    border-color: rgba(85, 255, 81, 0.6);
    box-shadow: 0 0 20px rgba(85, 255, 81, 0.2);
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.continue-shopping:hover {
    color: #55ff51;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(85, 255, 81, 0.1);
    border: 1px solid rgba(85, 255, 81, 0.4);
    color: #55ff51;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: rgba(85, 255, 81, 0.2);
    border-color: rgba(85, 255, 81, 0.6);
}

/* Wishlist Styles */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.wishlist-item {
    border-radius: 16px;
    background: rgba(85, 255, 81, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(85, 255, 81, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.wishlist-item:hover {
    background: rgba(85, 255, 81, 0.08);
    border-color: rgba(85, 255, 81, 0.3);
    transform: translateY(-5px);
}

.wishlist-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.wishlist-image-wrapper {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(85, 255, 81, 0.03);
}

.wishlist-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wishlist-details {
    padding: 1.5rem;
}

.wishlist-details h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.wishlist-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 0.5rem 0;
}

.wishlist-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #55ff51;
    margin: 0;
    font-weight: 500;
}

.wishlist-actions {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    gap: 0.5rem;
}

.add-to-cart-wishlist,
.remove-wishlist {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(85, 255, 81, 0.3);
    background: transparent;
    color: #55ff51;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-to-cart-wishlist {
    background: rgba(85, 255, 81, 0.1);
}

.add-to-cart-wishlist:hover {
    background: rgba(85, 255, 81, 0.2);
    border-color: rgba(85, 255, 81, 0.6);
}

.remove-wishlist {
    border-color: rgba(255, 85, 85, 0.3);
    color: #ff5555;
}

.remove-wishlist:hover {
    background: rgba(255, 85, 85, 0.1);
    border-color: rgba(255, 85, 85, 0.6);
}

@media (max-width: 968px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: relative;
        top: 0;
    }
}

