 /* ===== RESET & BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            font-size: 16px;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* ===== HEADER STYLES ===== */
        .header {
            background: #fff;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: relative; /* Changed from sticky to relative */
        }

        /* Top Bar */
        .top-bar {
            background: #1a5f7a;
            color: #fff;
            padding: 8px 0;
            font-size: 0.85rem;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .contact-info span {
            margin-right: 20px;
            display: inline-block;
            white-space: nowrap;
        }

        .contact-info i {
            margin-right: 5px;
            color: #ffd700;
        }

        .account-links a {
            color: #fff;
            text-decoration: none;
            margin-left: 15px;
            transition: color 0.3s;
            white-space: nowrap;
        }

        .account-links a:hover {
            color: #ffd700;
        }

        .account-links i {
            margin-right: 5px;
        }

        /* Main Header */
        .main-header {
            padding: 15px 0;
        }

        .main-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        /* Logo */
        .logo a {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #333;
        }

        .logo i {
            font-size: 2.2rem;
            color: #1a5f7a;
            margin-right: 10px;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
        }

        .logo-main {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a5f7a;
            line-height: 1;
        }

        .logo-sub {
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            color: #ff6b35;
            line-height: 1;
        }

        /* Search Bar */
        .search-container {
            flex: 1;
            max-width: 500px;
            margin: 0 20px;
        }

        .search-form {
            display: flex;
            position: relative;
            width: 100%;
        }

        .search-input {
            flex: 1;
            padding: 12px 20px;
            border: 2px solid #e0e0e0;
            border-radius: 25px;
            font-size: 0.95rem;
            outline: none;
            transition: all 0.3s;
            font-family: 'Poppins', sans-serif;
        }

        .search-input:focus {
            border-color: #1a5f7a;
            box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
        }

        .search-btn {
            position: absolute;
            right: 5px;
            top: 5px;
            background: #1a5f7a;
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s;
        }

        .search-btn:hover {
            background: #154d63;
        }

        /* User Actions */
        .user-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .action-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
            color: #333;
            font-size: 0.85rem;
            transition: color 0.3s;
        }

        .action-item:hover {
            color: #1a5f7a;
        }

        .action-item i {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .cart {
            position: relative;
        }

        .cart-count {
            position: absolute;
            top: -5px;
            right: 0;
            background: #ff6b35;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            font-weight: 600;
        }

        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #333;
            cursor: pointer;
            padding: 5px;
        }

        /* Main Navigation */
        .main-nav {
            background: #1a5f7a;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .nav-item {
            position: relative;
        }

        .nav-item > a {
            color: white;
            text-decoration: none;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            transition: background 0.3s;
            white-space: nowrap;
            font-weight: 500;
        }

        .nav-item > a:hover,
        .nav-item.active > a {
            background: #154d63;
        }

        .nav-item > a i {
            margin-right: 8px;
            font-size: 0.9rem;
        }

        .dropdown-arrow {
            margin-left: 5px;
            font-size: 0.8rem;
        }

        /* Dropdown Menu */
        .dropdown-menu {
            display: none;
            position: absolute;
            background: white;
            min-width: 900px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            border-radius: 0 0 8px 8px;
            z-index: 1000;
            padding: 25px;
            left: 0;
            top: 100%;
        }

        .nav-item.dropdown:hover .dropdown-menu {
            display: block;
        }

        .dropdown-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .dropdown-column h4 {
            color: #1a5f7a;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #ff6b35;
            font-size: 1rem;
        }

        .dropdown-column a {
            display: block;
            color: #555;
            text-decoration: none;
            padding: 8px 0;
            transition: color 0.3s;
            font-size: 0.9rem;
        }

        .dropdown-column a:hover {
            color: #1a5f7a;
            padding-left: 5px;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            background: linear-gradient(rgba(26, 95, 122, 0.9), rgba(26, 95, 122, 0.8)),
                        url('https://images.unsplash.com/photo-1551893668-5f361f2c0c0b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .hero h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.8rem;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        /* Tire Finder */
        .tire-finder {
            background: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            margin-bottom: 40px;
        }

        .finder-tabs {
            display: flex;
            margin-bottom: 25px;
            border-bottom: 2px solid #e0e0e0;
        }

        .tab-btn {
            flex: 1;
            padding: 15px;
            background: none;
            border: none;
            font-size: 1rem;
            font-weight: 600;
            color: #666;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
        }

        .tab-btn.active {
            color: #1a5f7a;
        }

        .tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #1a5f7a;
        }

        .finder-content {
            position: relative;
        }

        .finder-form {
            display: none;
        }

        .finder-form.active {
            display: block;
        }

        .form-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            align-items: end;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / span 3;
        }

        .form-select,
        .form-input {
            padding: 12px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            font-size: 1rem;
            width: 100%;
            transition: border-color 0.3s;
            font-family: 'Poppins', sans-serif;
        }

        .form-select:focus,
        .form-input:focus {
            outline: none;
            border-color: #1a5f7a;
        }

        .find-btn {
            background: #ff6b35;
            color: white;
            border: none;
            padding: 14px 25px;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .find-btn:hover {
            background: #e55a2b;
        }

        /* ===== BRANDS SECTION ===== */
        .brands-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
            font-family: 'Montserrat', sans-serif;
            font-size: 2.2rem;
            color: #1a5f7a;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #ff6b35;
            margin: 10px auto;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 25px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .brand-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
        }

        .brand-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .brand-logo {
            font-size: 2.5rem;
            color: #1a5f7a;
            margin-bottom: 15px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .brand-card h3 {
            color: #333;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        .brand-card p {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .brand-price {
            color: #ff6b35;
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 10px;
        }

        /* ===== PRODUCTS SECTION ===== */
        .products-section {
            padding: 80px 0;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .product-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            color: white;
            padding: 5px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            z-index: 2;
        }

        .product-badge.hot {
            background: #ff6b35;
        }

        .product-badge.free {
            background: #1a5f7a;
        }

        .product-badge.new {
            background: #2ecc71;
        }

        .product-badge.tokunbo {
            background: #9b59b6;
        }

        .product-badge.budget {
            background: #f39c12;
        }

        .product-badge.premium {
            background: #e74c3c;
        }

        .product-image {
            height: 180px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .product-image img {
            max-width: 80%;
            max-height: 80%;
            object-fit: contain;
        }

        .product-info {
            padding: 20px;
        }

        .product-brand {
            color: #1a5f7a;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .product-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 15px;
            line-height: 1.4;
        }

        .product-specs {
            display: flex;
            gap: 8px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .product-specs span {
            background: #f1f8ff;
            color: #1a5f7a;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .product-price {
            margin-bottom: 15px;
        }

        .current-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ff6b35;
            margin-right: 10px;
        }

        .original-price {
            font-size: 1rem;
            color: #999;
            text-decoration: line-through;
            margin-right: 10px;
        }

        .discount {
            font-size: 0.9rem;
            color: #2ecc71;
            font-weight: 600;
        }

        .product-features {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .product-features span {
            display: flex;
            align-items: center;
            gap: 5px;
            font-size: 0.85rem;
            color: #666;
        }

        .product-features i {
            color: #1a5f7a;
        }

        /* WhatsApp Integration */
        .whatsapp-section {
            background: #25D366;
            color: white;
            padding: 60px 0;
            text-align: center;
        }

        .whatsapp-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .whatsapp-icon {
            font-size: 4rem;
            margin-bottom: 20px;
        }

        .whatsapp-cta {
            background: white;
            color: #25D366;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 20px;
            transition: transform 0.3s;
        }

        .whatsapp-cta:hover {
            transform: scale(1.05);
        }

        /* Product Comments & Reviews */
        .reviews-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .reviews-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .review-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .review-author {
            font-weight: 600;
            color: #1a5f7a;
        }

        .review-rating {
            color: #ff6b35;
        }

        .review-form {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            margin-top: 30px;
        }

        .rating-stars {
            display: flex;
            gap: 5px;
            margin-bottom: 15px;
        }

        .star {
            color: #ddd;
            cursor: pointer;
            font-size: 1.5rem;
            transition: color 0.3s;
        }

        .star:hover,
        .star.active {
            color: #ff6b35;
        }

        /* E-commerce Features */
        .ecommerce-features {
            padding: 60px 0;
            background: linear-gradient(135deg, #1a5f7a 0%, #154d63 100%);
            color: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .ecom-feature {
            text-align: center;
            padding: 20px;
        }

        .ecom-feature i {
            font-size: 2.5rem;
            color: #ffd700;
            margin-bottom: 15px;
        }

        .ecom-feature h3 {
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        /* ===== SERVICES SECTION ===== */
        .services-section {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-icon {
            font-size: 2.5rem;
            color: #1a5f7a;
            margin-bottom: 20px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-card h3 {
            color: #333;
            margin-bottom: 15px;
            font-size: 1.2rem;
        }

        .service-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* ===== LOCATIONS SECTION ===== */
        .locations-section {
            padding: 80px 0;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .location-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            border-left: 4px solid #1a5f7a;
        }

        .location-card h3 {
            color: #1a5f7a;
            margin-bottom: 15px;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .location-card p {
            color: #666;
            margin-bottom: 10px;
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .location-card i {
            color: #1a5f7a;
            width: 20px;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: #1a1a1a;
            color: #fff;
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: #ff6b35;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
        }

        .footer-logo i {
            font-size: 2rem;
            color: #ff6b35;
        }

        .footer-logo span {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
        }

        .footer-logo span span {
            color: #ff6b35;
        }

        .footer-description {
            color: #aaa;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .payment-methods h4 {
            color: #fff;
            margin-bottom: 15px;
            font-size: 1rem;
        }

        .payment-icons {
            display: flex;
            gap: 15px;
            font-size: 1.5rem;
            color: #aaa;
        }

        .payment-icons i:hover {
            color: #fff;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: #ff6b35;
            padding-left: 5px;
        }

        .contact-info p {
            color: #aaa;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }

        .contact-info i {
            color: #ff6b35;
            width: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #333;
            color: #fff;
            border-radius: 50%;
            transition: background 0.3s;
            font-size: 1.1rem;
        }

        .social-links a:hover {
            background: #1a5f7a;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .footer-bottom p {
            color: #aaa;
            font-size: 0.9rem;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            color: #aaa;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-bottom-links a:hover {
            color: #ff6b35;
        }

        /* ===== WHATSAPP FLOATING BUTTON ===== */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
            z-index: 1000;
            transition: transform 0.3s;
            text-decoration: none;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
        }

        /* ===== MOBILE NAVIGATION ===== */
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
        }

        .mobile-nav.active {
            display: flex;
            justify-content: flex-end;
        }

        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background: #1a5f7a;
            color: white;
        }

        .mobile-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-logo i {
            font-size: 1.8rem;
        }

        .mobile-logo span {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
        }

        .mobile-logo span span {
            color: #ff6b35;
        }

        .close-mobile-nav {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        .mobile-nav-content {
            width: 300px;
            height: 100%;
            background: white;
            overflow-y: auto;
        }

        .mobile-nav-content a {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 20px;
            color: #333;
            text-decoration: none;
            border-bottom: 1px solid #eee;
            font-weight: 500;
        }

        .mobile-nav-content a i {
            color: #1a5f7a;
            width: 20px;
        }

        .mobile-nav-content a:hover {
            background: #f8f9fa;
            color: #1a5f7a;
        }

        /* ===== PRODUCT ACTIONS ===== */
        .product-actions {
            display: flex;
            gap: 10px;
            margin-top: 15px;
        }

        .add-to-cart,
        .whatsapp-inquiry,
        .view-details {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 12px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            text-align: center;
        }

        .add-to-cart {
            background: #1a5f7a;
            color: white;
            border: 2px solid #1a5f7a;
        }

        .add-to-cart:hover {
            background: #154d63;
            border-color: #154d63;
        }

        .whatsapp-inquiry {
            background: #25D366;
            color: white;
            border: 2px solid #25D366;
        }

        .whatsapp-inquiry:hover {
            background: #1da851;
            border-color: #1da851;
        }

        .view-details {
            background: transparent;
            color: #1a5f7a;
            border: 2px solid #1a5f7a;
        }

        .view-details:hover {
            background: #1a5f7a;
            color: white;
        }

        /* ===== RESPONSIVE DESIGN ===== */

        /* Large screens (max 1200px) */
        @media (max-width: 1200px) {
            .container {
                max-width: 960px;
            }
            
            .dropdown-menu {
                min-width: 800px;
            }
            
            .dropdown-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Medium screens (max 992px) */
        @media (max-width: 992px) {
            .container {
                max-width: 720px;
            }
            
            .top-bar-content {
                justify-content: center;
                gap: 10px;
            }
            
            .contact-info span {
                margin-right: 10px;
                margin-bottom: 5px;
            }
            
            .search-container {
                order: 3;
                flex: 100%;
                margin: 15px 0 0 0;
                max-width: 100%;
            }
            
            .user-actions {
                order: 2;
            }
            
            .nav-menu {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
                padding-bottom: 5px;
            }
            
            .nav-item > a {
                padding: 12px 15px;
                font-size: 0.9rem;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .form-row {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .form-group.full-width {
                grid-column: 1 / span 2;
            }
            
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Small screens (max 768px) */
        @media (max-width: 768px) {
            .container {
                max-width: 540px;
            }
            
            .mobile-menu-btn {
                display: block;
                order: 1;
            }
            
            .logo {
                order: 0;
            }
            
            .user-actions {
                order: 2;
            }
            
            .user-actions span {
                display: none;
            }
            
            .action-item {
                font-size: 1.2rem;
            }
            
            .main-nav {
                display: none;
            }
            
            .hero {
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .tire-finder {
                padding: 20px;
            }
            
            .finder-tabs {
                flex-direction: column;
                gap: 10px;
                border-bottom: none;
            }
            
            .tab-btn {
                border: 1px solid #e0e0e0;
                border-radius: 6px;
            }
            
            .tab-btn.active {
                border-color: #1a5f7a;
            }
            
            .tab-btn.active::after {
                display: none;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .form-group.full-width {
                grid-column: 1;
            }
            
            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .product-actions {
                flex-direction: column;
            }
            
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .footer-column h3::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .contact-info p {
                justify-content: center;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }

        /* Extra small screens (max 576px) */
        @media (max-width: 576px) {
            .container {
                padding: 0 10px;
            }
            
            .top-bar {
                font-size: 0.75rem;
            }
            
            .account-links a span {
                display: none;
            }
            
            .logo i {
                font-size: 1.8rem;
            }
            
            .logo-main {
                font-size: 1.3rem;
            }
            
            .logo-sub {
                font-size: 1rem;
            }
            
            .hero h1 {
                font-size: 1.6rem;
            }
            
            .hero-subtitle {
                font-size: 0.9rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .brands-grid {
                grid-template-columns: 1fr;
            }
            
            .brand-card {
                padding: 20px;
            }
            
            .product-card {
                padding: 15px;
            }
            
            .product-image {
                height: 150px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .mobile-nav-content {
                width: 100%;
            }
            
            .whatsapp-float {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
                bottom: 20px;
                right: 20px;
            }
        }

        /* Very small screens (max 400px) */
        @media (max-width: 400px) {
            .hero h1 {
                font-size: 1.4rem;
            }
            
            .tire-finder {
                padding: 15px;
            }
            
            .find-btn {
                width: 100%;
            }
            
            .current-price {
                font-size: 1.3rem;
            }
            
            .footer-logo {
                justify-content: center;
            }
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        /* Fix for Add to Cart buttons */
.product-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    text-align: center;
    border: 2px solid transparent;
}

.add-to-cart-btn {
    background: #1a5f7a;
    color: white;
    flex: 1;
}

.add-to-cart-btn:hover {
    background: #154d63;
}

.whatsapp-inquiry {
    background: #25D366;
    color: white;
    flex: 1;
}

.whatsapp-inquiry:hover {
    background: #1da851;
}

/* Ensure buttons don't submit forms */
.product-actions a[href="javascript:void(0)"] {
    pointer-events: auto;
}

/* Fix product card click area */
.product-card {
    cursor: pointer;
}

.product-actions {
    pointer-events: auto;
}

.product-card > *:not(.product-actions) {
    cursor: pointer;
}















/* Add this to your CSS file */
/* Make action links look like buttons */
.add-to-cart-btn,
.whatsapp-inquiry,
.wishlist-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 10px 20px !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: none !important;
    outline: none !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
}

/* Add to Cart button styles */
.add-to-cart-btn {
    background: #1a5f7a !important;
    color: white !important;
}

.add-to-cart-btn:hover {
    background: #154d63 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(26, 95, 122, 0.3) !important;
}

/* WhatsApp button styles */
.whatsapp-inquiry {
    background: #25D366 !important;
    color: white !important;
}

.whatsapp-inquiry:hover {
    background: #128C7E !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3) !important;
}

/* Ensure these don't look like normal links */
a.add-to-cart-btn:hover,
a.whatsapp-inquiry:hover {
    text-decoration: none !important;
}

/* Prevent form styling interference */
form .add-to-cart-btn,
form .whatsapp-inquiry {
    pointer-events: auto !important;
}

/* Make sure these elements are never inside forms */
form .product-card {
    pointer-events: none !important;
}

form .product-card > * {
    pointer-events: auto !important;
}



























/* Reviews Section - Modern & Responsive */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a5f7a, #2ecc71, #1a5f7a);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a2937;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1a5f7a, transparent);
}

.section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Statistics Cards */
.review-statistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1a5f7a, #2ecc71);
    opacity: 0;
    transition: opacity 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 95, 122, 0.15);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-value {
    font-size: 3.2rem;
    font-weight: 800;
    color: #1a5f7a;
    margin-bottom: 8px;
    line-height: 1;
    background: linear-gradient(135deg, #1a5f7a, #2e86ab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    display: block;
}

.stat-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    font-size: 1.3rem;
}

.stat-stars .star {
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}







/* Reviews Container - Fixed for full responsiveness */
.reviews-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px; /* Added padding for mobile */
    box-sizing: border-box; /* Ensures padding is included in width */
}

/* Review Form Container - Fully Responsive */
.review-form-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    max-width: 100%; /* Changed from fixed max-width to 100% */
    width: 100%; /* Ensures full width */
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box; /* Important for padding */
}

/* Form Grid - Improved responsiveness */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
    width: 100%; /* Ensures full width */
}

/* Input fields - Full width on all screens */
.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: #1a2937;
    background: white;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Important */
}

/* Rating Stars - Responsive sizing */
.rating-stars-input {
    display: inline-flex;
    gap: 5px;
    font-size: 2.8rem;
    cursor: pointer;
    margin-bottom: 10px;
    flex-wrap: wrap; /* Allows wrapping on very small screens */
    justify-content: center; /* Center on mobile */
}

/* Submit Button - Full width */
.submit-button {
    background: linear-gradient(135deg, #1a5f7a 0%, #2e86ab 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%; /* Full width */
    max-width: 100%; /* Ensures it doesn't overflow */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box; /* Important */
}

/* Container adjustments for different screen sizes */
.container {
    width: 100%;
    max-width: 1200px; /* Maximum width for large screens */
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Mobile-first responsive design */
@media (max-width: 768px) {
    .reviews-container {
        padding: 0 10px; /* Reduced padding on mobile */
    }
    
    .review-form-container {
        padding: 25px 20px; /* Reduced padding on mobile */
        margin: 40px 0 0 0; /* Remove horizontal margin */
        border-radius: 16px;
        width: 100%; /* Full width */
    }
    
    .form-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        gap: 15px;
    }
    
    .form-group.full-width {
        grid-column: 1; /* Reset full-width on mobile */
    }
    
    .rating-stars-input {
        font-size: 2.2rem; /* Smaller stars on mobile */
        gap: 3px; /* Reduced gap */
    }
    
    .rating-hint {
        font-size: 0.85rem; /* Smaller text */
        text-align: center; /* Center on mobile */
        display: block;
        width: 100%;
    }
    
    .submit-button {
        padding: 16px 20px; /* Adjusted padding */
        font-size: 1rem; /* Smaller font */
    }
    
    .form-input,
    .form-textarea {
        padding: 12px 15px; /* Adjusted padding */
        font-size: 0.95rem; /* Slightly smaller font */
    }
    
    .rating-label {
        text-align: center; /* Center on mobile */
        font-size: 1rem;
    }
}

/* Extra small devices (phones under 480px) */
@media (max-width: 480px) {
    .review-form-container {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .rating-stars-input {
        font-size: 1.8rem; /* Even smaller stars */
    }
    
    .form-input,
    .form-textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
    
    .submit-button {
        padding: 14px 15px;
        font-size: 0.95rem;
    }
    
    .review-form-container h3 {
        font-size: 1.5rem; /* Smaller heading */
        text-align: center;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
        text-align: center;
    }
}

/* Tablet landscape (768px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .review-form-container {
        max-width: 90%; /* Slightly narrower on tablets */
        margin: 60px auto 0;
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
    
    .form-group.full-width {
        grid-column: span 2; /* Full width across 2 columns */
    }
}

/* Desktop (1025px and up) */
@media (min-width: 1025px) {
    .review-form-container {
        max-width: 800px; /* Fixed max width on desktop */
        width: 100%; /* But still responsive within container */
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on desktop */
    }
    
    .form-group.full-width {
        grid-column: span 2; /* Full width across 2 columns */
    }
}

/* Large desktop screens (1400px and up) */
@media (min-width: 1400px) {
    .review-form-container {
        max-width: 900px; /* Slightly larger on huge screens */
    }
}

/* Fix for form elements in flex containers */
#reviewForm {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
}

.rating-input {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center stars on all screens */
}

/* Ensure no horizontal overflow */
.reviews-section {
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Fix for textarea resizing */
.form-textarea {
    resize: vertical;
    min-height: 120px;
    max-height: 300px;
}

/* Accessibility improvements */
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1a5f7a;
    box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.2);
}

/* Error states */
.form-input.error,
.form-textarea.error {
    border-color: #ef4444;
    background-color: #fef2f2;
}

/* Loading state for button */
.submit-button.loading {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Ensure labels are always visible and properly spaced */
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #475569;
    width: 100%;
}



/* Reviews Wrapper - Ensures proper containment */
.reviews-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden; /* Prevents any overflow issues */
}

/* Ensure all child elements respect container */
.reviews-container > * {
    max-width: 100%;
    box-sizing: border-box;
}

/* Fix for long words breaking layout */
.review-text,
.form-input,
.form-textarea {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Prevent horizontal scroll on mobile */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    .reviews-section .container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        max-width: 100%;
    }
}

/* Fix for iOS Safari */
@supports (-webkit-touch-callout: none) {
    .form-input,
    .form-textarea {
        font-size: 16px; /* Prevents zoom on focus in iOS */
    }
}



.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    color: #1a2937;
    background: white;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1a5f7a;
    box-shadow: 0 0 0 4px rgba(26, 95, 122, 0.1);
    background: #f8fafc;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

/* Submit Button */
.submit-button {
    background: linear-gradient(135deg, #1a5f7a 0%, #2e86ab 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

.submit-button:hover {
    background: linear-gradient(135deg, #15475c 0%, #267495 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 95, 122, 0.3);
}

.submit-button:hover::before {
    left: 100%;
}

.submit-button:active {
    transform: translateY(-1px);
}

.submit-button:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    transform: none;
}

.submit-button:disabled:hover::before {
    left: -100%;
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Toast Notification */
.review-toast {
    position: fixed;
    top: 25px;
    right: 25px;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    padding: 18px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 350px;
    animation: slideInRight 0.4s ease, fadeOut 0.4s ease 2.6s forwards;
    border-left: 4px solid #059669;
}

.review-toast.error {
    background: linear-gradient(135deg, #ef4444, #f87171);
    border-left-color: #dc2626;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.3);
}

.review-toast i {
    font-size: 1.4rem;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 30px;
}

.empty-icon {
    font-size: 4rem;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: #1a2937;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.empty-state p {
    color: #64748b;
    max-width: 400px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

/* Pagination */
.reviews-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-btn {
    background: white;
    border: 1px solid #e2e8f0;
    color: #475569;
    padding: 10px 18px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    min-width: 45px;
    text-align: center;
}

.page-btn:hover:not(.active):not(:disabled) {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.page-btn.active {
    background: #1a5f7a;
    color: white;
    border-color: #1a5f7a;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .review-statistics {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .stat-item {
        padding: 25px 20px;
    }
    
    .stat-value {
        font-size: 2.8rem;
    }
    
    .review-item {
        padding: 25px 20px;
        border-radius: 16px;
    }
    
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .reviewer-info {
        width: 100%;
    }
    
    .review-date {
        align-self: flex-start;
    }
    
    .review-form-container {
        padding: 30px 20px;
        margin: 40px 15px 0;
        border-radius: 16px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .rating-stars-input {
        font-size: 2.2rem;
    }
    
    .submit-button {
        padding: 16px 30px;
    }
    
    .featured-badge {
        position: static;
        margin-bottom: 15px;
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .reviewer-avatar {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .rating-stars-static {
        font-size: 1.2rem;
    }
    
    .review-title {
        font-size: 1.2rem;
    }
    
    .review-text {
        font-size: 1rem;
        padding-left: 15px;
    }
    
    .review-response {
        padding: 15px;
    }
    
    .review-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .helpful-btn,
    .report-btn {
        width: 100%;
        justify-content: center;
    }
    
    .reviews-pagination {
        gap: 5px;
    }
    
    .page-btn {
        padding: 8px 12px;
        min-width: 40px;
        font-size: 0.9rem;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .reviews-section {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    }
    
    .section-title {
        color: #f1f5f9;
    }
    
    .stat-item,
    .review-item,
    .review-form-container,
    .empty-state {
        background: #1e293b;
        border-color: #334155;
        color: #e2e8f0;
    }
    
    .reviewer-name,
    .review-title {
        color: #f1f5f9;
    }
    
    .review-text,
    .form-input,
    .form-textarea,
    .review-date {
        color: #cbd5e1;
    }
    
    .review-response {
        background: linear-gradient(to right, #1e293b, #0f172a);
    }
    
    .form-input,
    .form-textarea {
        background: #0f172a;
        border-color: #475569;
        color: #e2e8f0;
    }
    
    .form-input:focus,
    .form-textarea:focus {
        background: #0f172a;
        border-color: #1a5f7a;
    }
    
    .page-btn {
        background: #1e293b;
        border-color: #475569;
        color: #cbd5e1;
    }
    
    .page-btn:hover:not(.active):not(:disabled) {
        background: #334155;
    }
}