/* Keyframe animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        @keyframes hamburger {
            0% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(180deg); }
            100% { transform: scale(1) rotate(360deg); }
        }
        @keyframes slide {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        @keyframes scale {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
        .animate-float {
            animation: float 3s ease-in-out infinite;
        }
        .animate-rotate {
            animation: rotate 2s linear infinite;
        }
        .animate-hamburger {
            animation: hamburger 3s ease-in-out infinite;
        }
        .animate-slide {
            animation: slide 15s linear infinite;
        }
        /* Text decoration for original prices */
        .line-through {
            text-decoration: line-through;
        }
        /* FAQ content animation */
        .faq-content {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .faq-content.open {
            max-height: 200px;
            opacity: 1;
        }
        /* Rotate animation for FAQ arrows */
        .rotate-180 {
            transform: rotate(180deg);
        }
        /* Hover effects for product cards */
        .product-card {
            transition: all 0.3s ease;
        }
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
        }
        /* Button hover effects */
        .buy-button {
            transition: all 0.2s ease;
        }
        .buy-button:hover {
            transform: scale(1.03);
        }
        /* Feature card hover effects */
        .feature-card {
            transition: all 0.5s ease;
        }
        .feature-card:hover {
            transform: scale(1.05) translateY(-10px);
        }
        /* Navigation active state */
        .nav-active {
            color: #D4AF37;
            border-bottom: 2px solid #D4AF37;
        }
        /* Mobile menu */
        .mobile-menu {
            max-height: 0;
            opacity: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background-color: #000000;
        }
        .mobile-menu.open {
            max-height: 500px;
            opacity: 1;
        }
        /* Image hover effect */
        .product-image {
            transition: transform 0.3s ease;
        }
        .product-card:hover .product-image {
            transform: scale(1.05);
        }
        /* Social media icon hover effect */
        .social-icon {
            transition: transform 0.2s ease;
        }
        .social-icon:hover, .social-icon:active {
            transform: scale(1.2);
            animation: scale 0.3s ease;
        }
        /* Dropdown menu */
        .dropdown {
            position: relative;
            display: inline-block;
        }
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #1a1a1a;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 0.375rem;
            overflow: hidden;
        }
        .dropdown:hover .dropdown-content {
            display: block;
        }
        .dropdown-content a {
            color: white;
            padding: 0.75rem 1rem;
            text-decoration: none;
            display: block;
            transition: background-color 0.3s;
        }
        .dropdown-content a:hover {
            background-color: #333;
        }
        /* Mobile optimization */
        @media (max-width: 640px) {
            .mobile-py {
                padding-top: 2rem;
                padding-bottom: 2rem;
            }
            .mobile-gap {
                gap: 0.5rem;
            }
            .mobile-text {
                font-size: 0.875rem;
            }
            .mobile-button {
                padding-top: 0.5rem;
                padding-bottom: 0.5rem;
                padding-left: 1rem;
                padding-right: 1rem;
                font-size: 0.875rem;
            }
            .mobile-grid {
                grid-template-columns: 1fr 1fr;
            }
            .mobile-feature {
                padding: 0.75rem;
            }
            .mobile-image {
                height: 180px;
                object-fit: cover;
            }
            .mobile-card {
                padding: 0.75rem;
            }
            .mobile-details {
                font-size: 0.75rem;
                padding: 0.25rem 0.5rem;
            }
            /* Mobile header - show logo only on mobile */
            .mobile-logo {
                display: block !important;
                width: 60px !important;
                height: auto !important;
            }
            .desktop-logo {
                display: none !important;
            }
            .desktop-title {
                display: none !important;
            }
            .desktop-nav {
                display: none !important;
            }
            .mobile-nav {
                display: flex !important;
            }
            .social-icons-desktop {
                display: none !important;
            }
            .social-icons-mobile {
                display: flex !important;
            }
        }
        /* Desktop optimization */
        @media (min-width: 641px) {
            .mobile-logo {
                display: none !important;
            }
            .desktop-logo {
                display: block !important;
                width: 40px !important;
                height: auto !important;
            }
            .mobile-nav {
                display: none !important;
            }
            .desktop-nav {
                display: flex !important;
            }
            .social-icons-mobile {
                display: none !important;
            }
            .social-icons-desktop {
                display: flex !important;
            }
        }
        /* Image modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.9);
            backdrop-filter: blur(5px);
        }
        .modal-content {
            margin: auto;
            display: block;
            width: 90%;
            max-width: 700px;
            max-height: 90vh;
            animation: zoom 0.3s;
            border-radius: 8px;
            margin-top: 5vh;
        }
        @keyframes zoom {
            from {transform: scale(0.8);}
            to {transform: scale(1);}
        }
        .close {
            position: absolute;
            top: 15px;
            right: 35px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            transition: 0.3s;
            z-index: 1000;
        }
        .close:hover,
        .close:focus {
            color: #bbb;
            text-decoration: none;
            cursor: pointer;
        }
        /* Ensure images are fully visible on mobile */
        .image-container {
            overflow: hidden;
            border-radius: 0.5rem;
        }
        /* Details modal */
        .details-modal {
            display: none;
            position: fixed;
            z-index: 999;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.9);
            backdrop-filter: blur(5px);
        }
        .details-content {
            background-color: #1a1a1a;
            margin: 5% auto;
            padding: 20px;
            border: 1px solid #ddd;
            width: 90%;
            max-width: 500px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            max-height: 80vh;
            overflow-y: auto;
        }
        .details-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #333;
        }
        .details-title {
            font-size: 1.25rem;
            font-weight: bold;
            color: #D4AF37;
        }
        .details-body {
            color: #ddd;
            line-height: 1.6;
        }
        .details-list {
            list-style-type: none;
            padding-left: 0;
        }
        .details-list li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }
        .details-list li:before {
            content: "•";
            color: #D4AF37;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        /* Schema.org structured data */
        script[type="application/ld+json"] {
            display: none;
        }

/* --- Mobile 2-column override for product grids --- */
@media (max-width: 639.98px) {
  .mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
