:root {
    --light-background-color: #ffffff;
    --light-text-color: #333333;
    --light-primary-color: #daa520; /* Golden */
    --light-secondary-color: #555555;
    --dark-background-color: #000000;
    --dark-text-color: #ffffff;
    --dark-primary-color: #daa520; /* Golden */
    --dark-secondary-color: #aaaaaa;
    --transition-speed: 0.3s ease;
}

body {
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    background-color: var(--light-background-color);
    color: var(--light-text-color);
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

body.dark-mode {
    background-color: var(--dark-background-color);
    color: var(--dark-text-color);
}

header {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color var(--transition-speed);
}

body.dark-mode header {
    background-color: rgba(0, 0, 0, 0.9);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--light-primary-color);
}

body.dark-mode .logo {
    color: var(--dark-primary-color);
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: var(--light-text-color);
    font-weight: bold;
    transition: color var(--transition-speed);
}

body.dark-mode nav ul li a {
    color: var(--dark-text-color);
}

nav ul li a:hover {
    color: var(--light-primary-color);
}

body.dark-mode nav ul li a:hover {
    color: var(--dark-primary-color);
}

.theme-toggle {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-text-color);
    transition: color var(--transition-speed);
}

body.dark-mode .theme-toggle {
    color: var(--dark-text-color);
}

.theme-toggle .fa-sun,
.theme-toggle .fa-moon {
    transition: transform 0.5s ease;
}

.hero-section {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to right, #f0f0f0, #e0e0e0);
    color: var(--light-text-color);
    transition: background var(--transition-speed), color var(--transition-speed);
    position: relative;
    overflow: hidden;
}

body.dark-mode .hero-section {
    background: linear-gradient(to right, #1a1a1a, #0a0a0a);
    color: var(--dark-text-color);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    transform: rotate(45deg);
    animation: subtle-glow 10s infinite alternate;
}

@keyframes subtle-glow {
    from { transform: rotate(0deg) scale(1); opacity: 0.5; }
    to { transform: rotate(360deg) scale(1.1); opacity: 0.7; }
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--light-primary-color);
}

body.dark-mode .hero-section h1 {
    color: var(--dark-primary-color);
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: var(--light-primary-color);
    color: #fff;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

body.dark-mode .btn {
    background-color: var(--dark-primary-color);
}

.btn:hover {
    background-color: #c49a00;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

body.dark-mode .btn:hover {
    background-color: #c49a00;
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.3);
}

.btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background-color: #a88600; /* Darker golden on click */
}

.product-listing,
.product-detail-section,
.contact-section,
.about-section,
.blog-section,
.offers-section {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: var(--light-background-color);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: background-color var(--transition-speed);
}

body.dark-mode .product-listing,
body.dark-mode .product-detail-section,
body.dark-mode .contact-section,
body.dark-mode .about-section,
body.dark-mode .blog-section,
body.dark-mode .offers-section {
    background-color: #1a1a1a;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.product-listing h2,
.product-detail-section h2,
.contact-section h2,
.about-section h2,
.blog-section h2,
.offers-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    color: var(--light-primary-color);
}

body.dark-mode .product-listing h2,
body.dark-mode .product-detail-section h2,
body.dark-mode .contact-section h2,
body.dark-mode .blog-section h2,
body.dark-mode .offers-section h2 {
    color: var(--dark-primary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--light-background-color);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color var(--transition-speed);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d; /* Enable 3D transformations */
}

body.dark-mode .product-card {
    background-color: #333333;
    border-color: #555555;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 215, 0, 0.1) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.product-card:hover::before {
    transform: translateX(100%);
}

.product-card:hover {
    transform: translateY(-5px) scale(1.02) rotateX(5deg) rotateY(5deg); /* Add tilt effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

body.dark-mode .product-card:hover {
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.2);
}

.product-card img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.08); /* More noticeable scale */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    filter: brightness(1.1);
}

body.dark-mode .product-card:hover img {
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--light-primary-color);
    
}

body.dark-mode .product-card h3 {
    color: var(--dark-primary-color);
}

.product-card p {
    font-size: 0.9rem;
    color: var(--light-secondary-color);
    margin-bottom: 20px;
}

body.dark-mode .product-card p {
    color: var(--dark-secondary-color);
}

.product-detail-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-detail-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.product-detail-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.product-detail-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.product-detail-section .price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--light-primary-color);
    margin-bottom: 30px;
}

body.dark-mode .product-detail-section .price {
    color: var(--dark-primary-color);
}

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.whatsapp-button,
.ai-chat-button {
    background-color: #25D366; /* WhatsApp green */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
    padding: 0;
}

.ai-chat-button {
    background-color: var(--light-primary-color);
}

body.dark-mode .ai-chat-button {
    background-color: var(--dark-primary-color);
}

.whatsapp-button:hover,
.ai-chat-button:hover {
    transform: translateY(-5px) scale(1.1) rotate(5deg); /* Added rotation */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-button:active,
.ai-chat-button:active {
    transform: translateY(0) scale(0.95);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.whatsapp-button i {
    font-size: 40px; /* Increased icon size */
    color: #fff; /* Icon color */
}

.ai-chat-button i {
    font-size: 35px; /* Adjust icon size */
    color: #fff; /* Icon color */
}

footer {
    text-align: center;
    padding: 20px;
    background-color: var(--light-secondary-color);
    color: #fff;
    margin-top: 50px;
    transition: background-color var(--transition-speed);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

body.dark-mode footer {
    background-color: #222222;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left,
.footer-right {
    flex: 1;
    min-width: 250px;
    text-align: left;
}

.footer-right {
    text-align: right;
}

.footer-center {
    flex: 2;
    min-width: 300px;
    text-align: center;
}

.social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease, transform 0.3s ease, filter 0.3s ease;
}

.social-links a:hover {
    color: var(--light-primary-color);
    transform: scale(1.2) rotate(360deg); /* Added rotation */
    filter: drop-shadow(0 0 8px rgba(218, 165, 32, 0.7)); /* Golden glow */
}

/* AI Chatbot Modal Styles */
.ai-chat-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 2000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
    justify-content: center;
    align-items: center;
}

.ai-chat-modal-content {
    background-color: var(--light-background-color);
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    animation: animatetop 0.4s;
    color: var(--light-text-color);
}

body.dark-mode .ai-chat-modal-content {
    background-color: #2a2a2a;
    color: var(--dark-text-color);
}

@keyframes animatetop {
    from {top: -300px; opacity: 0}
    to {top: 0; opacity: 1}
}

.ai-chat-close-button {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.ai-chat-close-button:hover,
.ai-chat-close-button:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

body.dark-mode .ai-chat-close-button:hover,
body.dark-mode .ai-chat-close-button:focus {
    color: #fff;
}

.ai-chat-modal-content h3 {
    color: var(--light-primary-color);
    margin-top: 0;
}

body.dark-mode .ai-chat-modal-content h3 {
    color: var(--dark-primary-color);
}

.ai-chat-modal-content p {
    margin-bottom: 10px;
}

.ai-chat-input-area {
    display: flex;
    margin-top: 20px;
}

.ai-chat-input-area input {
    flex-grow: 1;
    margin-right: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.ai-chat-input-area button {
    padding: 10px 15px;
    background-color: var(--light-primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.ai-chat-input-area button:hover {
    background-color: #c49a00;
}

/* Blog Section Specific Styles */
.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-post-card {
    background-color: var(--light-background-color);
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.dark-mode .blog-post-card {
    background-color: #2a2a2a;
    border-color: #444;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

.blog-post-card:hover {
    transform: translateY(-8px) scale(1.02); /* More pronounced lift */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25); /* Stronger shadow */
    border-color: var(--light-primary-color); /* Highlight border */
}

body.dark-mode .blog-post-card:hover {
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.25);
    border-color: var(--dark-primary-color);
}

.blog-post-card img {
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.blog-post-card:hover img {
    transform: scale(1.05); /* Slightly more zoom */
    filter: brightness(1.15); /* Brighter */
}

.blog-post-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--light-primary-color);
}

body.dark-mode .blog-post-card h3 {
    color: var(--dark-primary-color);
}

.blog-post-card .post-meta {
    font-size: 0.85rem;
    color: var(--light-secondary-color);
    margin-bottom: 10px;
}

body.dark-mode .blog-post-card .post-meta {
    color: var(--dark-secondary-color);
}

/* Contact Section Specific Styles */
.contact-section {
    max-width: 800px; /* Increased max-width for better form layout */
    margin: 50px auto; /* Centered */
    padding: 30px; /* More padding */
    background-color: var(--light-background-color);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.15); /* Stronger shadow */
    border-radius: 10px; /* More rounded corners */
    transition: background-color var(--transition-speed);
}

body.dark-mode .contact-section {
    background-color: #1a1a1a;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.8rem;
    color: var(--light-primary-color);
}

body.dark-mode .contact-section h2 {
    color: var(--dark-primary-color);
}

.contact-section p {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr; /* Single column layout for form groups */
    gap: 20px; /* Spacing between form groups */
    padding: 0; /* Remove padding from form itself, handled by section */
    border: none; /* Remove border from form itself */
    box-shadow: none; /* Remove shadow from form itself */
    background-color: transparent; /* Remove background from form itself */
}

.form-group {
    margin-bottom: 0; /* Reset margin, gap handles spacing */
}

.form-group label {
    margin-bottom: 10px; /* More space below label */
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%; /* Full width within form group */
    box-sizing: border-box; /* Include padding and border in element's total width and height */
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--light-primary-color);
    outline: none;
    box-shadow: 0 0 8px rgba(218, 165, 32, 0.6); /* Stronger focus glow */
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group textarea:focus {
    border-color: var(--dark-primary-color);
    box-shadow: 0 0 8px rgba(218, 165, 32, 0.6);
}

.contact-form .btn {
    width: auto; /* Allow button to size naturally */
    margin-top: 10px; /* Space above button */
    padding: 12px 30px; /* Larger button padding */
    font-size: 1.1rem;
    align-self: center; /* Center button in grid */
}

/* Offers Section Specific Styles */
.offers-section {
    text-align: center;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.offer-card {
    background-color: var(--light-background-color);
    border: 2px solid var(--light-primary-color);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, background-position 0.5s ease;
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(135deg, var(--light-background-color) 0%, var(--light-background-color) 50%, rgba(218, 165, 32, 0.1) 50%, rgba(218, 165, 32, 0.1) 100%);
    background-size: 200% 100%;
    background-position: 0% 0%;
}

body.dark-mode .offer-card {
    background-color: #2a2a2a;
    border-color: var(--dark-primary-color);
    box-shadow: 0 6px 12px rgba(255, 255, 255, 0.15);
    background-image: linear-gradient(135deg, #2a2a2a 0%, #2a2a2a 50%, rgba(218, 165, 32, 0.1) 50%, rgba(218, 165, 32, 0.1) 100%);
}

.offer-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
    background-position: -100% 0%;
}

body.dark-mode .offer-card:hover {
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.25);
}

.offer-card h3 {
    font-size: 1.8rem;
    color: var(--light-primary-color);
    margin-bottom: 15px;
}

body.dark-mode .offer-card h3 {
    color: var(--dark-primary-color);
}

.offer-card p {
    font-size: 1.1rem;
    color: var(--light-text-color);
    margin-bottom: 10px;
}

body.dark-mode .offer-card p {
    color: var(--dark-text-color);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff4500; /* Orange-red for attention */
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    transform: rotate(5deg);
    transform-origin: top right;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: pulse 1.5s infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1) rotate(5deg); }
    100% { transform: scale(1.05) rotate(5deg); }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    nav {
        padding: 0 15px;
    }

    nav ul li {
        margin-left: 15px;
    }

    .hero-section {
        padding: 80px 15px;
    }

    .hero-section h1 {
        font-size: 2.8rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .product-listing, .product-detail-section, .contact-section, .about-section, .blog-section, .offers-section {
        margin: 40px auto;
        padding: 15px;
    }

    .product-listing h2, .product-detail-section h2, .contact-section h2, .about-section h2, .blog-section h2, .offers-section h2 {
        font-size: 2.2rem;
    }

    .product-grid, .offers-grid, .reviews-grid, .blog-posts {
        gap: 20px;
    }

    .product-card {
        padding: 15px;
    }

    .product-card h3 {
        font-size: 1.3rem;
    }

    .product-card p {
        font-size: 0.85rem;
    }

    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .whatsapp-button, .ai-chat-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button i, .ai-chat-button i {
        font-size: 30px;
    }

    .footer-content {
        padding: 0 15px;
    }

    .social-links a {
        font-size: 1.3rem;
        margin: 0 8px;
    }

    .contact-section {
        padding: 25px;
    }

    .contact-section h2 {
        font-size: 2.5rem;
    }

    .contact-section p {
        font-size: 1rem;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input, .form-group textarea {
        padding: 10px;
        font-size: 0.95rem;
    }

    .contact-form .btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 15px;
    }

    nav .logo {
        margin-bottom: 10px;
    }

    nav ul {
        margin-top: 10px;
        flex-direction: column;
        width: 100%;
    }

    nav ul li {
        margin: 5px 0;
        width: 100%;
    }

    nav ul li a {
        display: block;
        padding: 8px 0;
        text-align: center;
        border-bottom: 1px solid rgba(0,0,0,0.1);
    }

    body.dark-mode nav ul li a {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    nav ul li:last-child a {
        border-bottom: none;
    }

    .theme-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .hero-section {
        padding: 60px 15px;
    }

    .hero-section h1 {
        font-size: 2.2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .product-listing, .product-detail-section, .contact-section, .about-section, .blog-section, .offers-section {
        margin: 30px auto;
        padding: 10px;
    }

    .product-listing h2, .product-detail-section h2, .contact-section h2, .about-section h2, .blog-section h2, .offers-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .product-grid, .offers-grid, .reviews-grid, .blog-posts {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-card {
        padding: 10px;
    }

    .product-card img {
        height: 180px;
    }

    .product-card h3 {
        font-size: 1.2rem;
    }

    .product-card p {
        font-size: 0.8rem;
    }

    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .whatsapp-button, .ai-chat-button {
        width: 45px;
        height: 45px;
    }

    .whatsapp-button i, .ai-chat-button i {
        font-size: 28px;
    }

    footer {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .footer-left, .footer-right, .footer-center {
        text-align: center;
        margin-bottom: 10px;
        min-width: unset;
        width: 100%;
    }

    .social-links {
        margin-top: 10px;
    }

    .social-links a {
        font-size: 1.2rem;
        margin: 0 6px;
    }

    .contact-section {
        padding: 20px;
    }

    .contact-section h2 {
        font-size: 2.2rem;
    }

    .contact-section p {
        font-size: 0.95rem;
    }

    .form-group label {
        font-size: 0.95rem;
    }

    .form-group input, .form-group textarea {
        padding: 8px;
        font-size: 0.9rem;
    }

    .contact-form .btn {
        padding: 8px 20px;
        font-size: 0.95rem;
    }

    .ai-chat-modal-content {
        width: 90%;
        padding: 15px;
    }

    .ai-chat-modal-content h3 {
        font-size: 1.5rem;
    }

    .ai-chat-modal-content p {
        font-size: 0.9rem;
    }

    .ai-chat-input-area input {
        padding: 8px;
    }

    .ai-chat-input-area button {
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .product-listing h2, .product-detail-section h2, .contact-section h2, .about-section h2, .blog-section h2, .offers-section h2 {
        font-size: 1.8rem;
    }

    .product-card h3 {
        font-size: 1.1rem;
    }

    .product-card p {
        font-size: 0.75rem;
    }

    .whatsapp-button, .ai-chat-button {
        width: 40px;
        height: 40px;
    }

    .whatsapp-button i, .ai-chat-button i {
        font-size: 25px;
    }

    .social-links a {
        font-size: 1rem;
        margin: 0 5px;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-section p {
        font-size: 0.85rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input, .form-group textarea {
        font-size: 0.8rem;
    }

    .contact-form .btn {
        font-size: 0.85rem;
    }

    .ai-chat-modal-content {
        width: 95%;
    }

    .ai-chat-modal-content h3 {
        font-size: 1.3rem;
    }

    .ai-chat-modal-content p {
        font-size: 0.8rem;
    }

    .ai-chat-input-area input {
        font-size: 0.8rem;
    }

    .ai-chat-input-area button {
        font-size: 0.8rem;
    }
}