/* Product Details Page Styles */

.product-section {
    min-height: 100vh;
    padding: 120px 40px 80px;
    background: #070709;
    position: relative;
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* Product Image */
.product-image-wrapper {
    position: sticky;
    top: 120px;
    width: 78%;
    height: 505px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: rgba(85, 255, 81, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(85, 255, 81, 0.15);
    padding: 3rem;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-name {
    font-family: 'Parfumerie Script', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: #55ff51;
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 0 14px rgba(85, 255, 81, 0.3);
}

.product-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(85, 255, 81, 0.2);
    border-bottom: 1px solid rgba(85, 255, 81, 0.2);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.detail-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #ffffff;
}

.detail-value.price {
    font-size: 1.5rem;
    font-weight: 500;
    color: #55ff51;
}

.product-description,
.product-notes {
    margin-top: 1rem;
}

.product-description h3,
.product-notes h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-description p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0;
}

.product-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-notes li {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    background: rgba(85, 255, 81, 0.1);
    border: 1px solid rgba(85, 255, 81, 0.2);
}

.product-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.add-to-cart-btn,
.wishlist-btn {
    flex: 1;
    padding: 1.2rem 2rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(85, 255, 81, 0.4);
    background: transparent;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.add-to-cart-btn {
    background: rgba(85, 255, 81, 0.1);
    color: #55ff51;
}

.add-to-cart-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);
}

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

/* Responsive */
@media (max-width: 968px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .product-image-wrapper {
        position: relative;
        top: 0;
        height: 500px;
    }
    
    .product-actions {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .product-section {
        padding: 100px 20px 60px;
    }
    
    .product-image-wrapper {
        height: 400px;
        padding: 2rem;
    }
}

