/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

.logo img {
    height: 90px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
}

.nav-menu li {
    border-right: 1px solid #e0e0e0;
    padding: 0 30px;
}

.nav-menu li:last-child {
    border-right: none;
}

.nav-menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #8BC34A;
}

.nav-menu li a.active {
    font-weight: 700;
}

/* Hamburger Button — hidden on desktop */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: #333;
    border-radius: 3px;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Animate to X when open */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 680px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0) 100%);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text-green {
    font-size: 48px;
    font-weight: 800;
    color: #8BC34A;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
    margin: 0 0 6px;
}

.hero-text-sep {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
    margin: 0 0 6px;
}

.hero-text-white {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
    margin: 0 0 20px;
}

.hero-badge {
    display: inline-block;
    background-color: #8B0000;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 28px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.hero-delivery {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
    margin: 0 0 10px;
    letter-spacing: 1px;
}

.hero-callnow {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
    margin: 0 0 4px;
    letter-spacing: 1px;
}

.hero-phone {
    font-size: 36px;
    font-weight: 900;
    color: #8BC34A;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.7);
    margin: 0;
    letter-spacing: 2px;
}

/* Section Titles */
.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 14px;
    color: #222;
    font-weight: 600;
}

.section-title::after {
    content: '';
    display: block;
    width: 55px;
    height: 3px;
    background: #8BC34A;
    margin: 12px auto 34px;
    border-radius: 2px;
}

.section-title .highlight {
    color: #8BC34A;
    font-weight: 700;
}

.section-title-white {
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 600;
}

/* Scroll To Top Button */
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    background-color: #8BC34A;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
    line-height: 1;
}

#scrollTopBtn:hover {
    background-color: #7CB342;
    transform: translateY(-3px);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #fff;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

/* What We Do Section */
.what-we-do {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-description {
    text-align: center;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.subsection-title {
    text-align: center;
    font-size: 28px;
    color: #333;
    margin: 30px 0;
    font-weight: 500;
}

/* Carousel */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-content {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
    z-index: 1;
}

/* Text overlay on carousel image */
.carousel-overlay-text {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 8px 28px;
    border-radius: 6px;
    text-transform: uppercase;
    text-align: center;
    max-width: 90%;
    pointer-events: none;
}

.carousel-btn {
    background-color: #8BC34A;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin: 0 20px;
    z-index: 10;
}

.carousel-btn:hover {
    background-color: #7CB342;
}

.carousel-btn span {
    display: block;
}

/* Products Section */
.products {
    padding: 80px 0;
    background-color: #FFF9E6;
}

.product-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 100%;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.product-grid.active {
    opacity: 1;
    visibility: visible;
    position: relative;
}

.product-nav-btn {
    background-color: #8BC34A;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.product-nav-btn:hover {
    background-color: #7CB342;
}

.product-nav-btn span {
    display: block;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Awards Section */
.awards {
    padding: 80px 0;
    background-color: #fff;
}

.awards-description {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    text-align: justify;
}

.carousel-image[data-carousel="awards"],
.carousel-image[data-carousel="whatWeDo"] {
    object-fit: contain;
    background-color: #f5f5f5;
}

/* Contact Form Section */
.contact-form-section {
    padding: 90px 0;
    background-color: #f9f9f9;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Left Info */
.contact-form-heading {
    font-size: 38px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.contact-form-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #8BC34A;
    margin: 12px 0 24px;
    border-radius: 2px;
}

.contact-form-subtext {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-form-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form-details li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 14px;
    color: #444;
    line-height: 1.7;
}

.contact-form-details a {
    color: #3E2723;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.contact-form-details a:hover {
    color: #8BC34A;
}

.cf-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Right Form Box */
.contact-form-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: #e53935;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', Arial, sans-serif;
    color: #333;
    background-color: #fafafa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #8BC34A;
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.15);
    background-color: #fff;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #e53935;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-error {
    font-size: 12px;
    color: #e53935;
    margin-top: 5px;
    display: none;
}

.form-error.visible {
    display: block;
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #8BC34A;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Poppins', Arial, sans-serif;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 4px;
}

.form-submit-btn:hover {
    background-color: #7CB342;
    transform: translateY(-2px);
}

.form-success {
    display: none;
    margin-top: 18px;
    padding: 14px 18px;
    background-color: #E8F5E9;
    border: 1px solid #A5D6A7;
    border-radius: 8px;
    color: #2E7D32;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

/* Contact Form Responsive */
@media screen and (max-width: 900px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-heading::after {
        margin: 12px auto 24px;
    }

    .contact-form-heading {
        text-align: center;
    }

    .contact-form-subtext {
        text-align: center;
    }

    .contact-form-details {
        align-items: flex-start;
    }
}

@media screen and (max-width: 600px) {
    .contact-form-box {
        padding: 24px 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Contact / Footer Section */
.contact {
    padding: 70px 0 0;
    background-color: #3E2723;
    color: #F5E6D3;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1.2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

/* Brand Column */
.footer-brand {}

.footer-logo {
    height: 80px;
    width: auto;
    border-radius: 8px;
    margin-bottom: 14px;
    display: block;
}

.footer-tagline {
    font-size: 13px;
    font-weight: 700;
    color: #8BC34A;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-about {
    font-size: 14px;
    color: #C4A882;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-link img,
.social-link svg {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: transform 0.2s ease, opacity 0.2s ease;
    display: block;
}

.social-link:hover img,
.social-link:hover svg {
    transform: translateY(-4px);
    opacity: 0.85;
}

/* Footer Columns */
.footer-col {}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #8BC34A;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #5D3A2E;
}

/* Contact Info List */
.footer-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-info-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    color: #D7B99A;
    line-height: 1.7;
}

.footer-icon {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-link {
    color: #FFD180;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #8BC34A;
}

.footer-reg-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #C4A882;
    font-weight: 500;
}

.footer-reg-value {
    font-size: 14px;
    font-weight: 700;
    color: #FFD180;
    letter-spacing: 0.5px;
}

/* Branches */
.footer-branches {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-branches li {
    font-size: 14px;
    color: #D7B99A;
    padding: 6px 0;
    border-bottom: 1px solid #5D3A2E;
}

.footer-branches li:last-child {
    border-bottom: none;
}

/* Order Types */
.footer-order-types {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.order-badge {
    display: inline-block;
    background-color: #5D3A2E;
    color: #FFD180;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid #7A4A38;
    letter-spacing: 0.5px;
}

.footer-call-label {
    font-size: 12px;
    color: #C4A882;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.footer-call-number {
    font-size: 18px;
    font-weight: 800;
    color: #FFD180;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

/* Divider */
.footer-divider {
    height: 1px;
    background-color: #5D3A2E;
    margin: 0;
}

/* Copyright Bar */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copyright {
    font-size: 13px;
    color: #C4A882;
}

.footer-rights {
    font-size: 13px;
    color: #8BC34A;
    font-weight: 600;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero-content {
        height: 500px;
    }

    .hero-text-green,
    .hero-text-white {
        font-size: 34px;
    }

    .hero-text-sep {
        font-size: 26px;
    }

    .hero-badge {
        font-size: 16px;
        padding: 7px 22px;
    }

    .hero-delivery {
        font-size: 18px;
    }

    .hero-callnow {
        font-size: 17px;
    }

    .hero-phone {
        font-size: 28px;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .product-carousel-wrapper {
        gap: 15px;
    }

    .product-nav-btn {
        padding: 12px 16px;
        font-size: 20px;
    }

    .carousel-content {
        height: 400px;
    }
}

@media screen and (max-width: 768px) {
    /* Navbar: logo left, hamburger right */
    .navbar .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }

    .hamburger {
        display: block;
    }

    .logo img {
        height: 55px;
    }

    /* Nav menu: hidden by default, slides down when open */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        padding: 10px 0;
        z-index: 999;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu li {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu li a {
        display: block;
        padding: 14px 24px;
        font-size: 15px;
        color: #333;
    }

    .nav-menu li a:hover,
    .nav-menu li a.active {
        background-color: #f5fdf0;
        color: #8BC34A;
    }

    .navbar {
        position: sticky;
        padding: 10px 0;
    }

    .hero-content {
        height: 400px;
    }

    .hero-text-green,
    .hero-text-white {
        font-size: 26px;
    }

    .hero-text-sep {
        font-size: 20px;
    }

    .hero-overlay {
        padding: 20px 15px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 6px 18px;
    }

    .hero-delivery {
        font-size: 15px;
    }

    .hero-callnow {
        font-size: 14px;
    }

    .hero-phone {
        font-size: 24px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-title-white {
        font-size: 32px;
    }

    .about, .what-we-do, .products, .awards {
        padding: 50px 0;
    }

    .about-content p,
    .awards-description {
        text-align: left;
    }

    /* --- Products: 2-column compact grid on mobile --- */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    /* Products: use CSS grid so buttons sit side-by-side below the carousel */
    .product-carousel-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        justify-items: center;
    }

    .product-carousel-container {
        grid-column: 1 / -1;
        order: 1;
    }

    .product-nav-btn {
        position: static;
        transform: none;
        width: 48px;
        height: 48px;
        padding: 0;
        font-size: 20px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-nav-btn.prev {
        order: 2;
        justify-self: end;
    }

    .product-nav-btn.next {
        order: 3;
        justify-self: start;
    }

    .product-card {
        border-radius: 8px;
    }

    .product-card:hover {
        transform: none;
    }

    .product-card img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* --- What We Do / Awards Carousel: overlay buttons on image --- */
    .carousel-container {
        position: relative;
        flex-direction: row;
        gap: 0;
        max-width: 100%;
    }

    .carousel-content {
        height: 300px;
        max-width: 100%;
        border-radius: 8px;
    }

    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
        padding: 10px 14px;
        font-size: 18px;
        border-radius: 50%;
        background-color: rgba(139, 195, 74, 0.85);
        z-index: 10;
    }

    .carousel-btn.prev {
        left: 8px;
        order: unset;
    }

    .carousel-btn.next {
        right: 8px;
        order: unset;
    }

    .carousel-overlay-text {
        font-size: 13px;
        padding: 5px 14px;
        top: 10px;
        letter-spacing: 1px;
    }
}

@media screen and (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content {
        height: 300px;
    }

    .hero-text-green,
    .hero-text-white {
        font-size: 18px;
        letter-spacing: 1px;
    }

    .hero-text-sep {
        font-size: 16px;
    }

    .hero-overlay {
        padding: 15px 10px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 5px 14px;
        margin-bottom: 8px;
    }

    .hero-delivery {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .hero-callnow {
        font-size: 12px;
    }

    .hero-phone {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-title-white {
        font-size: 28px;
    }

    .logo img {
        height: 50px;
    }

    .carousel-content {
        height: 220px;
    }

    .carousel-btn {
        padding: 8px 12px;
        font-size: 16px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .product-nav-btn {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .about-content p,
    .section-description {
        font-size: 14px;
    }
}
