        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

        :root {
            --primary-color: #1a1a1a;
            --secondary-color: #f5f5f5;
            --accent-color: #d4af37;
            --text-color: #333;
            --light-gray: #e0e0e0;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            background-color: var(--white);
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        img, video {
            max-width: 100%;
            height: auto;
        }

        .container {
            width: 90%;
            max-width: 1300px;
            margin: 0 auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background-color: var(--primary-color);
            color: var(--white);
            text-transform: uppercase;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 1px;
            border: 1px solid var(--primary-color);
            transition: all 0.3s ease;
        }

        .btn:hover {
            background-color: var(--white);
            color: var(--primary-color);
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        
        .announcement-bar {
            background-color: var(--primary-color);
            color: var(--white);
            text-align: center;
            padding: 10px 0;
            font-size: 13px;
            font-weight: 500;
            overflow: hidden;
            white-space: nowrap;
        }

        .announcement-bar-content {
            display: inline-block;
            padding-left: 100%;
            animation: marquee 20s linear infinite;
        }

        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }

        header {
            background-color: var(--white);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .main-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-size: 2rem;
            font-weight: 700;
            letter-spacing: -1px;
            color: var(--primary-color);
        }
        
        .main-nav ul {
            display: flex;
            gap: 30px;
        }

        .main-nav a {
            text-transform: uppercase;
            font-weight: 600;
            font-size: 14px;
            position: relative;
            padding-bottom: 5px;
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .main-nav a:hover::after {
            width: 100%;
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .header-icons svg {
            width: 22px;
            height: 22px;
            cursor: pointer;
            fill: var(--primary-color);
        }
        
        .mobile-menu-toggle {
            display: none;
            cursor: pointer;
        }
        .mobile-menu-toggle svg {
            width: 28px;
            height: 28px;
        }

        .hero-section {
            height: calc(100vh - 80px);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
        }
        
        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.pexels.com/photos/4210850/pexels-photo-4210850.jpeg?auto=compress&cs=tinysrgb&w=1600') no-repeat center center/cover;
            z-index: -1;
        }
        
        .hero-content {
            text-align: center;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .hero-content .btn {
             background-color: var(--white);
             color: var(--primary-color);
             border-color: var(--white);
        }
        
        .hero-content .btn:hover {
            background-color: transparent;
            color: var(--white);
        }

        .categories-section {
            padding: 80px 0;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .category-card {
            position: relative;
            overflow: hidden;
            height: 400px;
        }
        
        .category-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .category-card:hover img {
            transform: scale(1.05);
        }

        .category-card-content {
            position: absolute;
            bottom: 20px;
            left: 20px;
            right: 20px;
            background-color: rgba(255, 255, 255, 0.9);
            padding: 15px;
            text-align: center;
            transition: background-color 0.3s ease;
        }
        
        .category-card:hover .category-card-content {
            background-color: var(--white);
        }
        
        .category-card h3 {
            font-size: 1.5rem;
            text-transform: uppercase;
            font-weight: 600;
        }
        
        .product-slider-section {
            padding: 80px 0;
            background-color: var(--secondary-color);
        }
        
        .slider-container {
            position: relative;
        }
        
        .product-list {
            display: flex;
            overflow-x: auto;
            scroll-behavior: smooth;
            -ms-overflow-style: none;  
            scrollbar-width: none;  
            gap: 20px;
            padding-bottom: 20px;
        }

        .product-list::-webkit-scrollbar {
            display: none;
        }
        
        .product-card {
            flex: 0 0 280px;
            background-color: var(--white);
            text-align: center;
            transition: box-shadow 0.3s ease;
        }
        
        .product-card:hover {
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .product-image {
            position: relative;
            overflow: hidden;
            height: 350px;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .product-info {
            padding: 20px;
        }
        
        .product-info h4 {
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 10px;
            height: 40px;
            overflow: hidden;
        }
        
        .product-price {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .slider-arrow {
            width: 45px;
            height: 45px;
            background-color: var(--white);
            border: 1px solid var(--light-gray);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-arrow:hover {
            background-color: var(--primary-color);
            color: var(--white);
            border-color: var(--primary-color);
        }
        
        .slider-arrow svg {
            width: 20px;
            height: 20px;
        }
        
        .video-section {
            position: relative;
            height: 70vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            color: var(--white);
        }
        
        .video-background {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: -2;
            transform: translateX(-50%) translateY(-50%);
        }
        
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: -1;
        }

        .video-content {
            text-align: center;
            z-index: 1;
        }
        
        .video-content h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .instagram-section {
            padding: 80px 0;
        }
        
        .instagram-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 10px;
        }
        
        .insta-post {
            position: relative;
            overflow: hidden;
            aspect-ratio: 1 / 1;
        }
        
        .insta-post img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .insta-post:hover img {
            transform: scale(1.1);
        }
        
        .insta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        .insta-post:hover .insta-overlay {
            opacity: 1;
        }

        .insta-overlay svg {
            width: 40px;
            height: 40px;
            fill: var(--white);
        }
        
        footer {
            background-color: var(--primary-color);
            color: var(--secondary-color);
            padding: 60px 0;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }
        
        .footer-col h4 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            font-weight: 600;
        }
        
        .footer-col ul li {
            margin-bottom: 10px;
        }
        
        .footer-col a {
            font-size: 0.9rem;
            font-weight: 300;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .footer-col a:hover {
            opacity: 1;
        }

        .newsletter-form {
            display: flex;
            margin-top: 15px;
        }
        
        .newsletter-form input {
            flex-grow: 1;
            padding: 10px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            background-color: transparent;
            color: var(--white);
            outline: none;
        }
        
        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .newsletter-form button {
            padding: 10px 15px;
            background-color: var(--white);
            color: var(--primary-color);
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: var(--accent-color);
            color: var(--white);
        }
        
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icons a svg {
            width: 20px;
            height: 20px;
            fill: var(--secondary-color);
            transition: fill 0.3s ease;
        }
        
        .social-icons a:hover svg {
            fill: var(--accent-color);
        }
        
        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            font-size: 0.8rem;
            opacity: 0.7;
        }

        .scroll-reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .scroll-reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        @media (max-width: 992px) {
            .main-nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                max-width: 300px;
                height: 100vh;
                background-color: var(--white);
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding-top: 100px;
                transition: right 0.4s ease-in-out;
                z-index: 999;
            }

            .main-nav.active {
                right: 0;
            }
            
            .main-nav ul {
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
                gap: 0;
            }

            .main-nav ul li {
                width: 100%;
            }

            .main-nav ul li a {
                display: block;
                padding: 15px 30px;
                width: 100%;
                font-size: 16px;
            }
            
            .main-nav a::after {
                display: none;
            }

            .mobile-menu-toggle {
                display: block;
                z-index: 1001;
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.8rem;
            }
            .main-header .container {
                width: 95%;
            }
            .header-icons {
                gap: 15px;
            }
            .logo {
                font-size: 1.5rem;
            }
        }
        
        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            .btn {
                padding: 10px 20px;
                font-size: 12px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
