/* Premium Shop Page Styles */

/* Add space for fixed filter bar */
.products-section {
    padding-top: 70px; /* Adjusted for filter bar directly below nav */
}

.shop-header {
    background: linear-gradient(135deg, var(--bg-light) 0%, rgba(200, 164, 126, 0.03) 100%);
    padding: 190px 0 60px; /* Adjusted for seamless connection between bars */
    text-align: center;
    margin-top: 0px;
    position: relative;
    overflow: hidden;
}

.shop-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(200, 164, 126, 0.05) 0%, transparent 70%);
}

.shop-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.shop-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

/* Premium Filters - FIXED */
.filters {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: nowrap;
    padding: 0 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.filter-buttons::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.filter-btn {
    background: white;
    border: 2px solid var(--border-color);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: var(--body-font);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    position: relative;
    white-space: nowrap;
    flex-shrink: 0;
    overflow: hidden;
    z-index: 1;
}

/* FIXED: Ensure the green fill covers the entire button */
.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-green);
    transform: translate(-50%, -50%);
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    width: 200%;
    height: 200%;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.15);
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: linear-gradient(180deg, white 0%, var(--bg-light) 100%);
    min-height: 60vh;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 0 1rem;
}

/* Premium Product Cards */
.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.1s ease-out;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(200, 164, 126, 0.03) 100%);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.08s ease-out;
}

/* Simplified hover overlay */
.product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.08s ease-out;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover::after {
    opacity: 1;
}

/* Product Image with Premium Overlay */

/* Back-to-Top Floating Button */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    color: #fff;
    z-index: 1200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
    opacity: 0;
}

.back-to-top.show {
    display: flex;
    opacity: 1;
}

.back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}
.product-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.15s ease-out;
    will-change: transform;
}

/* Image placeholder for missing images */
.image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.product-image.no-image .image-placeholder {
    display: flex !important;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.placeholder-text {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Clean Premium and Bestseller Badges */
.bestseller-badge, .premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 60;
}

.bestseller-badge {
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
}

.premium-badge {
    background: linear-gradient(135deg, #c8a47e, #b8956a);
}

/* Ensure badges stay on top when image is missing */
.product-image.no-image .limited-badge,
.product-image.no-image .bestseller-badge,
.product-image.no-image .premium-badge {
    z-index: 70;
}

/* FIXED: Product Actions - Now positioned lower with better visual hierarchy */
.product-actions {
    position: absolute;
    bottom: 50%; /* Centered vertically on the card */
    left: 50%;
    transform: translateX(-50%) translateY(60px); /* Start below visible area */
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
    opacity: 0;
    transition: all 0.1s ease-out;
    z-index: 15; /* Above the blur overlay */
    pointer-events: none;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0); /* Center on card */
    pointer-events: all;
}

.add-to-cart, .quick-view {
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.08s ease-out;
    border: none;
    font-family: var(--body-font);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.add-to-cart {
    background: rgba(45, 90, 61, 0.95);
    color: white;
    box-shadow: 0 4px 20px rgba(45, 90, 61, 0.4);
}

.quick-view {
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary-green);
    border: 2px solid rgba(45, 90, 61, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.add-to-cart::before, .quick-view::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.add-to-cart:hover::before, .quick-view:hover::before {
    width: 150%;
    height: 150%;
}

.add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.4);
}

.quick-view:hover {
    transform: translateY(-2px);
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Product Info with Premium Typography - Enhanced visibility */
.product-info {
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.product-category {
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.8rem;
    opacity: 0.8;
}

.product-info h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 500;
    font-family: var(--heading-font);
    line-height: 1.3;
    min-height: 2.6em;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 3em;
}

/* Star Rating */
.product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.85rem;
}

/* FIXED: Ensure price is always visible */
.product-price {
    font-size: 1.5rem;
    font-weight: 400;
    font-family: var(--heading-font);
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 5;
}

/* Premium Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 2rem;
}

.quick-view-modal .modal-content {
    background: white;
    border-radius: 30px;
    max-width: 1200px;
    width: 100%;
    height: 90vh;
    max-height: 90vh;
    display: flex;
    overflow: hidden;
    position: relative;
    animation: slideUpScale 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Scrollable container for modal content */
.quick-view-modal .modal-scroll-container {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Custom scrollbar for modal info section */
.quick-view-modal .modal-info::-webkit-scrollbar {
    width: 8px;
}

.quick-view-modal .modal-info::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
}

.quick-view-modal .modal-info::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
}

.quick-view-modal .modal-info::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes slideUpScale {
    from {
        transform: translateY(100px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.quick-view-modal .close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: white;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quick-view-modal .close-modal:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--primary-green);
}

.quick-view-modal .modal-image {
    flex: 0 0 42%;
    position: relative;
    overflow: hidden;
    height: 100%;
    align-self: stretch;
}

.quick-view-modal .modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quick-view-modal .modal-info {
    flex: 1;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
    max-height: 90vh;
}

.quick-view-modal .hero-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1rem;
}

.quick-view-modal .product-category {
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.quick-view-modal h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--heading-font);
    line-height: 1.2;
}

.quick-view-modal p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.quick-view-modal .modal-price {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-family: var(--heading-font);
}

.quick-view-modal .add-to-cart {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

/* Detailed Product Sections (Collapsible) */
.detailed-sections {
    margin-top: 2rem;
    border-top: 2px solid var(--border-color);
    padding-top: 1.5rem;
}

.detail-section {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 0rem;
    transition: all 0.3s ease;
}

.detail-section:last-child {
    border-bottom: none;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0 0.2rem 0;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.section-header:hover {
    color: var(--primary-green);
}

.section-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    font-family: var(--heading-font);
    transition: color 0.3s ease;
}

.section-header:hover h3 {
    color: var(--primary-green);
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--accent-gold);
    font-weight: 300;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-section.active .toggle-icon {
    transform: rotate(0deg);
}

.section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 0.5rem;
}

.detail-section.active .section-content {
    padding-top: 0;
    padding-bottom: 1rem;
}

.section-content p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-light);
}

.section-content p strong {
    color: var(--text-dark);
    font-weight: 600;
    display: inline-block;
    min-width: 80px;
}

/* Loading States */
.loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 120px 20px;
    color: var(--text-light);
}

.loading-spinner {
    border: 4px solid rgba(45, 90, 61, 0.1);
    border-top: 4px solid var(--primary-green);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    margin: 0 auto 30px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Empty State */
.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 120px 20px;
    color: var(--text-light);
}

.empty-state h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--primary-green);
}

.empty-state p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .quick-view-modal .modal-content {
        max-width: 95%;
    }
    
    .quick-view-modal .modal-scroll-container {
        flex-direction: column;
    }
    
    .quick-view-modal .modal-image {
        flex: 0 0 auto;
        max-height: 45vh;
        min-height: 350px;
    }
    
    .quick-view-modal .modal-info {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .shop-header {
        padding: 110px 0 50px; /* Adjusted for seamless connection */
    }
    
    .filter-buttons {
        gap: 0.5rem;
        padding: 0 0.5rem;
        justify-content: flex-start; /* Allow horizontal scrolling on mobile */
    }
    
    .filter-btn {
        padding: 6px 16px;
        font-size: 0.85rem;
        min-width: fit-content;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .product-image {
        height: 250px;
    }
    
    /* Adjust button position for mobile */
    .product-actions {
        bottom: 45%;
        flex-direction: row;
        gap: 0.5rem;
    }
    
    .add-to-cart, .quick-view {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .quick-view-modal .modal-content {
        flex-direction: column;
        max-height: 85vh;
        margin: 1rem;
    }
    
    .quick-view-modal .modal-scroll-container {
        flex-direction: column;
    }
    
    .quick-view-modal .modal-image {
        flex: 0 0 auto;
        max-height: 40vh;
        min-height: 280px;
    }
    
    .quick-view-modal .modal-info {
        padding: 2rem 1.5rem;
    }
    
    .quick-view-modal h2 {
        font-size: 1.8rem;
    }
    
    .quick-view-modal .modal-price {
        font-size: 2rem;
    }
    
    .detailed-sections {
        margin-top: 1.5rem;
    }
    
    .section-header h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 60px 0;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .product-actions {
        bottom: 45%;
        width: auto;
    }
    
    .add-to-cart, .quick-view {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

/* Add these Limited Edition styles to your existing shop.css */

/* Limited Edition Filter Button */
.limited-edition-filter {
    background: linear-gradient(135deg, #f5f5f5, #fafafa) !important;
    border: 2px solid var(--accent-gold) !important;
    position: relative;
    overflow: hidden;
}

.limited-edition-filter::before {
    background: linear-gradient(135deg, var(--accent-gold), #d4a574) !important;
}

.limited-icon {
    display: inline-block;
    margin-right: 4px;
}

/* Limited Edition Banner */
.limited-edition-banner {
    background: linear-gradient(135deg, 
        rgba(200, 164, 126, 0.05) 0%, 
        rgba(45, 90, 61, 0.03) 50%, 
        rgba(200, 164, 126, 0.05) 100%);
    padding: 40px 0;
    border-bottom: 1px solid rgba(200, 164, 126, 0.2);
    position: relative;
    overflow: hidden;
}

.limited-edition-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(200, 164, 126, 0.1), 
        transparent);
}

.limited-banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.limited-banner-content h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: var(--heading-font);
}

.limited-banner-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    font-style: italic;
}

/* Limited Edition Product Card */
.limited-edition-card {
    position: relative;
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--accent-gold), var(--primary-green)) border-box;
}

.limited-edition-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-green), var(--accent-gold));
    border-radius: 24px;
    opacity: 0.3;
    z-index: -1;
}

/* Limited Edition Badge on Image */
.limited-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgb(200, 164, 126), rgb(184, 149, 106));
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 50;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Ensure limited badge also has high z-index when image missing */
.product-image.no-image .limited-badge {
    z-index: 70;
}

.badge-text {
    display: block;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 51;
}

.badge-quantity {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.65rem;
    margin-top: 2px;
    font-style: italic;
}

/* Limited Edition Card Hover Effects */
.limited-edition-card:hover {
    transform: translateY(-15px) rotateX(2deg) scale(1.02);
    box-shadow: 0 30px 60px rgba(200, 164, 126, 0.25);
}

.limited-edition-card .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(200, 164, 126, 0.1) 50%, 
        transparent 100%);
    opacity: 0;
    pointer-events: none;
}

/* Limited Edition Product Info */
.limited-edition-card .product-category {
    background: linear-gradient(135deg, var(--accent-gold), #d4a574);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.limited-edition-card .product-price {
    font-size: 1.6rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}

/* Limited Edition Action Buttons */
.limited-cart-btn {
    background: linear-gradient(135deg, var(--accent-gold), #b8956a) !important;
    color: white !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em;
    box-shadow: 0 6px 25px rgba(200, 164, 126, 0.4) !important;
    position: relative;
    overflow: hidden;
}

.limited-cart-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.limited-cart-btn:hover::after {
    width: 200%;
    height: 200%;
}

.limited-cart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(200, 164, 126, 0.5) !important;
}

/* Limited Edition Modal Styles */
.limited-modal {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, var(--accent-gold), var(--primary-green)) border-box;
}

.limited-modal .modal-info {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(200, 164, 126, 0.02) 100%);
}

.limited-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(200, 164, 126, 0.1), rgba(184, 149, 106, 0.1));
    padding: 8px 16px;
    border-radius: 20px;
    color: var(--accent-gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(200, 164, 126, 0.3);
}

.limited-quantity {
    color: #d4a574;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    padding: 10px 20px;
    background: rgba(200, 164, 126, 0.1);
    border-radius: 10px;
    display: inline-block;
}

.limited-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        transparent 0%, 
        rgba(200, 164, 126, 0.05) 50%, 
        transparent 100%);
    pointer-events: none;
}

/* Responsive adjustments for Limited Edition */
@media (max-width: 768px) {
    .limited-edition-banner {
        padding: 30px 0;
    }
    
    .limited-banner-content h2 {
        font-size: 1.6rem;
    }
    
    .limited-badge {
        top: 15px;
        left: 15px;
        padding: 8px 15px;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    .badge-quantity {
        font-size: 0.6rem;
    }
}

/* You May Also Like Section */
.product-card .quick-view:hover {
    color: var(--primary-green);
}

/* Related Products Section */
.related-products {
    padding: 4rem 0 6rem;
    background: #fdfcfa;
    border-top: 1px solid #eee;
}

.related-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #333;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
}

.product-action-btn, 
.view-details-btn,
a.view-details, 
.product-card a {
    text-decoration: none !important;
}