        /* Global Styles */
        :root {
            --primary-color: #4CAF50;
            --secondary-color: #388E3C;
            --accent-color: #8BC34A;
            --dark-color: #2E7D32;
            --light-color: #C8E6C9;
            --text-color: #333;
            --light-text: #f5f5f5;
            --gray-bg: #f9f9f9;
            --border-radius: 8px;
            --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            text-align: center;
        }

        .btn-primary {
            background-color: var(--primary-color);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--dark-color);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-secondary:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 1.5rem;
            color: var(--dark-color);
            text-align: center;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            margin: 10px auto;
        }

        /* Header Styles */
        header {
            background-color: white;
            box-shadow: var(--box-shadow);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: clamp(1.5rem, 4vw, 1.8rem);
            font-weight: 700;
            color: var(--dark-color);
        }

        .logo i {
            margin-right: 10px;
            color: var(--primary-color);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 15px;
        }

        nav ul li a {
            font-weight: 600;
            transition: color 0.3s;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        nav ul li a:hover {
            color: var(--primary-color);
        }

        .auth-buttons {
            display: flex;
            gap: 10px;
        }

        .auth-buttons .btn {
            margin-left: 0;
            padding: 8px 16px;
            font-size: clamp(0.8rem, 2vw, 1rem);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark-color);
            padding: 5px;
        }

        /* Mobile Menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            z-index: 99;
            padding: 30px 20px;
            transform: translateY(-150%);
            transition: transform 0.3s ease-in-out;
        }

        .mobile-menu.active {
            transform: translateY(0);
        }

        .mobile-menu ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .mobile-menu ul li a {
            font-size: 1.2rem;
            padding: 15px 0;
        }

        .mobile-menu .auth-buttons {
            margin-top: 20px;
            gap: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .mobile-menu .auth-buttons .btn {
            width: 100%;
            padding: 12px;
            margin-bottom: 10px;
            max-width: 200px;
            text-align: center;
            font-weight: 600;
            border-radius: var(--border-radius);
            transition: all 0.3s ease;
        }

        .mobile-menu .auth-buttons .btn:last-child {
            margin-bottom: 0;
        }

        .mobile-menu .auth-buttons .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* Language toggle button styling for mobile */
        #langToggleMobile {
            margin-top: 10px;
            width: 100%;
            max-width: 200px;
            font-size: 0.9rem;
            padding: 10px 12px;
            background-color: var(--gray-bg);
            color: var(--dark-color);
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        #langToggleMobile:hover {
            background-color: var(--light-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: clamp(80px, 15vw, 120px) 20px;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 3rem);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 30px;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Search Section */
        .search-section {
            background-color: white;
            padding: 30px 0;
            margin-top: -40px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            position: relative;
            z-index: 10;
        }

        .search-container {
            display: flex;
            max-width: 800px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .search-input {
            flex: 1;
            min-width: 200px;
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius) 0 0 var(--border-radius);
            font-size: 1rem;
        }

        .search-category {
            padding: 15px;
            border: 1px solid #ddd;
            border-left: none;
            border-right: none;
            background-color: white;
            min-width: 150px;
        }

        .search-btn {
            padding: 15px 25px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            cursor: pointer;
            font-weight: 600;
        }

        .search-btn:hover {
            background-color: var(--dark-color);
        }

        /* Products Section */
        .products-section {
            padding: clamp(40px, 8vw, 60px) 0;
            background-color: var(--gray-bg);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .product-card {
            background-color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .product-card:hover {
            transform: translateY(-10px);
        }

        .product-image {
            height: 200px;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-info {
            padding: 20px;
        }

        .product-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .product-price {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .product-rating {
            color: #FFC107;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .product-stock {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .product-buttons {
            display: flex;
            gap: 10px;
        }

        .product-buttons .btn {
            flex: 1;
            padding: 10px;
            font-size: 0.9rem;
            white-space: nowrap;
            transition: all 0.3s ease;
        }

        .product-buttons .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* Categories Section */
        .categories-section {
            padding: clamp(40px, 8vw, 60px) 0;
        }

        .section-subtitle {
            text-align: center;
            margin-bottom: 30px;
            font-size: clamp(0.9rem, 2vw, 1rem);
            color: #666;
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        .category-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 30px 20px;
            text-align: center;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .category-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .category-icon {
            font-size: clamp(2rem, 5vw, 2.5rem);
            margin-bottom: 15px;
            color: var(--primary-color);
        }

        .category-card:hover .category-icon {
            color: white;
        }

        .category-name {
            font-weight: 600;
            font-size: clamp(1rem, 2vw, 1.1rem);
        }

        /* Seller Spotlight */
        .seller-section {
            padding: clamp(40px, 8vw, 60px) 0;
            background-color: var(--gray-bg);
        }

        .seller-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 30px;
            display: flex;
            align-items: center;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: var(--box-shadow);
            flex-wrap: wrap;
        }

        .seller-image {
            width: clamp(100px, 20vw, 120px);
            height: clamp(100px, 20vw, 120px);
            border-radius: 50%;
            overflow: hidden;
            margin-right: 30px;
            border: 5px solid var(--light-color);
        }

        .seller-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .seller-info {
            flex: 1;
            min-width: 250px;
        }

        .seller-info h3 {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            margin-bottom: 5px;
        }

        .seller-rating {
            color: #FFC107;
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .seller-verified {
            display: inline-flex;
            align-items: center;
            background-color: var(--light-color);
            color: var(--dark-color);
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .seller-verified i {
            margin-right: 5px;
            color: var(--primary-color);
        }

        .seller-stats {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .seller-stat {
            text-align: center;
            min-width: 80px;
        }

        .stat-value {
            font-weight: 700;
            font-size: 1.2rem;
            color: var(--primary-color);
        }

        .stat-label {
            font-size: 0.9rem;
            color: #666;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: clamp(40px, 8vw, 60px) 0;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .testimonial-card {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--box-shadow);
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        .testimonial-text::before {
            content: '"';
            font-size: 4rem;
            color: var(--light-color);
            position: absolute;
            top: -20px;
            left: -10px;
            z-index: -1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            margin-bottom: 5px;
            font-size: 1rem;
        }

        .author-rating {
            color: #FFC107;
            font-size: 0.9rem;
        }

        /* About Section */
        .about-section {
            padding: clamp(40px, 8vw, 60px) 0;
            background-color: var(--gray-bg);
            text-align: center;
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .about-content p {
            margin-bottom: 20px;
            font-size: clamp(0.9rem, 2vw, 1rem);
        }

        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: clamp(40px, 8vw, 60px) 0 20px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: clamp(1.5rem, 4vw, 1.8rem);
            font-weight: 700;
            margin-bottom: 20px;
            display: inline-block;
        }

        .footer-about p {
            margin-bottom: 20px;
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: background-color 0.3s;
        }

        .social-links a:hover {
            background-color: var(--primary-color);
        }

        .footer-links h3 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            transition: color 0.3s;
            font-size: 0.9rem;
        }

        .footer-links ul li a:hover {
            color: var(--accent-color);
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .footer-contact i {
            margin-right: 10px;
            color: var(--accent-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
        }

        .payment-methods {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .payment-methods img {
            height: 30px;
            filter: brightness(0) invert(1);
            opacity: 0.7;
            transition: opacity 0.3s;
        }

        .payment-methods img:hover {
            opacity: 1;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .seller-card {
                flex-direction: column;
                text-align: center;
            }
            
            .seller-image {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .seller-stats {
                justify-content: center;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            /* Header and Navigation */
            nav {
                display: none;
            }
            
            .auth-buttons {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .mobile-menu {
                display: block;
            }

            .header-container {
                padding: 0 15px;
            }

            .logo {
                font-size: 1.5rem;
            }

            /* Hero Section */
            .hero {
                padding: 60px 0;
                text-align: center;
            }

            .hero h1 {
                font-size: 2rem;
                margin-bottom: 15px;
            }

            .hero p {
                font-size: 1rem;
                margin-bottom: 25px;
            }

            .hero-content {
                padding: 0 20px;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .hero-buttons .btn {
                width: 100%;
                max-width: 280px;
            }
            
            /* Search Section */
            .search-container {
                flex-direction: column;
                gap: 0;
                padding: 0 15px;
            }
            
            .search-input, .search-category, .search-btn {
                border-radius: 0;
                width: 100%;
                border-left: 1px solid #ddd;
                border-right: 1px solid #ddd;
                padding: 15px;
                font-size: 1rem;
            }
            
            .search-input {
                border-radius: var(--border-radius) var(--border-radius) 0 0;
                border-bottom: none;
            }
            
            .search-category {
                border-bottom: none;
            }
            
            .search-btn {
                border-radius: 0 0 var(--border-radius) var(--border-radius);
            }

            /* Products Section */
            .products-section {
                padding: 40px 0;
            }

            .products-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 15px;
            }

            .product-card {
                max-width: 350px;
                margin: 0 auto;
            }

            .product-image {
                height: 200px;
            }

            .product-image img {
                object-fit: cover;
                object-position: center;
            }

            .product-title {
                font-size: 1.2rem;
            }

            .product-price {
                font-size: 1.1rem;
            }
            
            .product-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .product-buttons .btn {
                width: 100%;
                padding: 12px;
                font-size: 0.9rem;
            }

            /* Categories Section */
            .categories-section {
                padding: 40px 0;
            }

            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
                padding: 0 15px;
            }

            .category-card {
                padding: 20px 15px;
            }

            .category-icon {
                font-size: 2rem;
                margin-bottom: 10px;
            }

            .category-name {
                font-size: 0.9rem;
            }

            /* Seller Section */
            .seller-section {
                padding: 40px 0;
            }

            .seller-card {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }

            .seller-image {
                margin-right: 0;
                margin-bottom: 20px;
                width: 120px;
                height: 120px;
            }

            .seller-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
            }

            .seller-info h3 {
                font-size: 1.3rem;
            }

            .seller-stats {
                justify-content: center;
                gap: 20px;
            }

            .seller-stat {
                text-align: center;
            }

            /* Testimonials Section */
            .testimonials-section {
                padding: 40px 0;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 0 15px;
            }

            .testimonial-card {
                padding: 20px;
            }

            .testimonial-text {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .author-image {
                width: 50px;
                height: 50px;
            }

            .author-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
            }

            /* About Section */
            .about-section {
                padding: 40px 0;
            }

            .about-content {
                padding: 0 20px;
                text-align: center;
            }

            .about-content p {
                font-size: 0.95rem;
                line-height: 1.6;
                margin-bottom: 15px;
            }

            /* Footer */
            footer {
                padding: 40px 0 20px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 0 20px;
            }

            .footer-about {
                text-align: center;
            }

            .footer-links {
                text-align: center;
            }

            .footer-contact {
                text-align: center;
            }

            .footer-contact p {
                font-size: 0.9rem;
            }

            .payment-methods {
                gap: 10px;
                margin-top: 15px;
            }

            .payment-methods img {
                height: 25px;
            }

            /* Section Titles */
            .section-title {
                font-size: 1.8rem;
                margin-bottom: 15px;
            }

            .section-subtitle {
                font-size: 0.95rem;
                margin-bottom: 25px;
            }

            /* Container */
            .container {
                padding: 0 15px;
            }

            /* Touch-friendly improvements */
            .btn {
                min-height: 44px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .search-input, .search-category, .search-btn {
                min-height: 44px;
            }

            /* Improved spacing */
            .section-title {
                margin-bottom: 20px;
            }

            .section-subtitle {
                margin-bottom: 30px;
            }

            /* Better image handling */
            .product-image img {
                object-fit: cover;
                object-position: center;
            }

            .seller-image img {
                object-fit: cover;
                object-position: center;
            }

            .author-image img {
                object-fit: cover;
                object-position: center;
            }

            /* Improved card shadows for mobile */
            .product-card {
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }

            .category-card {
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }

            .testimonial-card {
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            }

            /* Better text readability */
            .product-title {
                line-height: 1.3;
            }

            .testimonial-text {
                line-height: 1.6;
            }

            .about-content p {
                line-height: 1.6;
            }

            /* Improved mobile menu */
            .mobile-menu {
                backdrop-filter: blur(10px);
                background-color: rgba(255, 255, 255, 0.95);
            }

            .mobile-menu ul li a {
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
            }

            .mobile-menu ul li a:hover {
                background-color: rgba(0, 0, 0, 0.05);
                padding-left: 10px;
            }

            /* Better form elements */
            .form-group input:focus,
            .form-group select:focus,
            .form-group textarea:focus {
                outline: none;
                border-color: var(--primary-color);
                box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
            }

            /* Improved search experience */
            .search-container {
                box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
                border-radius: var(--border-radius);
                overflow: hidden;
            }

            /* Better button hover effects */
            .btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            }

            /* Improved category cards */
            .category-card:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            }

            /* Better footer spacing */
            .footer-container > div {
                margin-bottom: 20px;
            }

            .footer-container > div:last-child {
                margin-bottom: 0;
            }

            /* Improved social links */
            .social-links a {
                width: 40px;
                height: 40px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            /* Better payment methods display */
            .payment-methods {
                justify-content: center;
                flex-wrap: wrap;
            }

            .payment-methods img {
                margin: 5px;
            }
        }

        @media (max-width: 576px) {
            /* Extra small device optimizations */
            .btn {
                min-height: 48px;
                font-size: 1rem;
            }

            .search-input, .search-category, .search-btn {
                min-height: 48px;
                font-size: 1rem;
            }

            /* Better text sizing */
            .product-title {
                font-size: 1.1rem;
            }

            .product-price {
                font-size: 1rem;
            }

            .category-name {
                font-size: 0.85rem;
            }

            /* Improved spacing */
            .product-card {
                margin-bottom: 20px;
            }

            .category-card {
                margin-bottom: 15px;
            }

            .testimonial-card {
                margin-bottom: 20px;
            }

            /* Better mobile menu */
            .mobile-menu {
                padding: 30px 20px;
            }

            .mobile-menu ul li a {
                font-size: 1.2rem;
                padding: 15px 0;
            }

            /* Improved form */
            .product-form {
                margin: 0 10px;
                padding: 25px 20px;
            }

            .form-group {
                margin-bottom: 25px;
            }

            .form-group label {
                font-size: 1rem;
                margin-bottom: 10px;
            }

            /* Better modal */
            .modal-content {
                margin: 5% auto;
                padding: 30px 25px;
            }

            .modal-content h3 {
                font-size: 1.3rem;
                margin-bottom: 15px;
            }

            .modal-content p {
                font-size: 1rem;
                line-height: 1.5;
            }
        }

        @media (max-width: 480px) {
            /* Very small device optimizations */
            .hero {
                padding: 50px 0;
            }

            .hero h1 {
                line-height: 1.2;
            }

            .hero p {
                line-height: 1.4;
            }

            /* Better card layouts */
            .product-card {
                border-radius: 12px;
            }

            .category-card {
                border-radius: 12px;
            }

            .testimonial-card {
                border-radius: 12px;
            }

            /* Improved buttons */
            .product-buttons .btn {
                border-radius: 8px;
            }

            .search-btn {
                border-radius: 0 0 8px 8px;
            }

            /* Better spacing */
            .section-title {
                margin-bottom: 15px;
            }

            .section-subtitle {
                margin-bottom: 20px;
            }

            /* Improved footer */
            .footer-container {
                gap: 25px;
            }

            .footer-about p {
                line-height: 1.5;
            }

            /* Better social links */
            .social-links {
                gap: 15px;
            }

            .social-links a {
                width: 45px;
                height: 45px;
                font-size: 1.2rem;
            }
        }

        /* Prototype Modal Styles */
.prototype-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.3s ease;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #333;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Product Form Styles */
.product-form {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

#langToggle {
    font-size: 0.85rem;
    padding: 6px 10px;
    background-color: var(--gray-bg);
    color: var(--dark-color);
}
#langToggle:hover {
    background-color: var(--light-color);
}