/* =========================================================
   CYCLE MART
   MAIN WEBSITE STYLESHEET
   EX-UK BICYCLES | NAKURU, KENYA
   CART SYSTEM REMOVED
   ========================================================= */


/* =========================================================
   1. RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: #ffffff;
    color: #171717;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

ul {
    list-style: none;
}


/* =========================================================
   2. GLOBAL VARIABLES
   ========================================================= */

:root {
    --primary: #111111;
    --secondary: #f5c400;
    --secondary-dark: #d9a900;
    --white: #ffffff;
    --light: #f7f7f7;
    --light-gray: #eeeeee;
    --gray: #777777;
    --dark-gray: #333333;
    --success: #25d366;
    --danger: #d71920;

    --container: 1200px;

    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 16px;

    --shadow-sm: 0 5px 18px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 12px 35px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);

    --transition: 0.3s ease;
}


/* =========================================================
   3. CONTAINER
   ========================================================= */

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}


/* =========================================================
   4. HEADER
   ========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 9999;
    width: 100%;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid #eeeeee;

    box-shadow:
        0 3px 15px rgba(0, 0, 0, 0.05);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-container {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   5. LOGO
   ========================================================= */

.logo {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}

.logo img {
    width: 52px;
    height: 52px;

    object-fit: contain;

    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.logo-title {
    font-family: "Montserrat", Arial, sans-serif;

    font-size: 22px;
    font-weight: 900;

    letter-spacing: 1px;

    color: #111111;
}

.logo-subtitle {
    margin-top: 4px;

    color: #777777;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 3px;
}


/* =========================================================
   6. NAVIGATION
   ========================================================= */

.navbar {
    margin-left: auto;
}

.nav-links {
    display: flex;
    align-items: center;

    gap: 28px;
}

.nav-links a {
    position: relative;

    padding: 8px 0;

    color: #333333;

    font-size: 12px;
    font-weight: 700;

    transition: var(--transition);
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--secondary);

    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: #000000;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}


/* =========================================================
   7. NAV ACTIONS
   CART REMOVED
   ========================================================= */

.nav-actions {
    display: flex;
    align-items: center;

    gap: 12px;
}


/* =========================================================
   8. MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: none;

    background: #111111;

    border-radius: 6px;

    padding: 9px;
}

.menu-toggle span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: #ffffff;

    transition: var(--transition);
}


/* =========================================================
   9. BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    min-height: 48px;

    padding: 0 22px;

    border-radius: var(--radius-sm);

    border: 2px solid transparent;

    font-size: 12px;
    font-weight: 800;

    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary);

    color: #111111;
}

.btn-primary:hover {
    background: var(--secondary-dark);

    transform: translateY(-2px);

    box-shadow: var(--shadow-sm);
}

.btn-dark {
    background: #111111;

    color: #ffffff;
}

.btn-dark:hover {
    background: #2b2b2b;

    transform: translateY(-2px);
}

.btn-outline {
    border-color: #111111;

    background: transparent;

    color: #111111;
}

.btn-outline:hover {
    background: #111111;

    color: #ffffff;
}

.btn-whatsapp {
    background: var(--success);

    color: #ffffff;
}

.btn-whatsapp:hover {
    background: #1ebe5d;

    transform: translateY(-2px);
}


/* =========================================================
   10. HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 700px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.78),
            rgba(0, 0, 0, 0.48),
            rgba(0, 0, 0, 0.20)
        ),
        url("../images/hero.jpg")
        center / cover no-repeat;

    color: #ffffff;
}

.hero-content {
    max-width: 720px;

    padding: 80px 0;
}

.hero-label {
    display: inline-block;

    margin-bottom: 18px;

    padding: 8px 13px;

    border-radius: 4px;

    background: var(--secondary);

    color: #111111;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.hero h1 {
    margin-bottom: 20px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: clamp(42px, 7vw, 76px);

    font-weight: 900;

    line-height: 1.02;
}

.hero h1 span {
    color: var(--secondary);
}

.hero p {
    max-width: 620px;

    margin-bottom: 30px;

    color: rgba(255, 255, 255, 0.86);

    font-size: 15px;

    line-height: 1.8;
}

.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   11. PAGE HERO
   ========================================================= */

.page-hero {
    min-height: 330px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.72)
        ),
        url("../images/hero.jpg")
        center / cover no-repeat;

    color: #ffffff;

    text-align: center;
}

.page-hero-content {
    max-width: 800px;

    margin: auto;
}

.page-hero h1 {
    margin-bottom: 12px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: clamp(34px, 5vw, 58px);

    font-weight: 900;
}

.page-hero p {
    max-width: 650px;

    margin: auto;

    color: #dddddd;

    font-size: 14px;
}


/* =========================================================
   12. SECTION DEFAULTS
   ========================================================= */

.section {
    padding: 90px 0;
}

.section-light {
    background: #f7f7f7;
}

.section-dark {
    background: #111111;

    color: #ffffff;
}

.section-heading {
    max-width: 700px;

    margin: 0 auto 50px;

    text-align: center;
}

.section-label {
    display: block;

    margin-bottom: 10px;

    color: #777777;

    font-size: 10px;
    font-weight: 900;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.section-dark .section-label {
    color: #bbbbbb;
}

.section-heading h2 {
    margin-bottom: 14px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: clamp(30px, 4vw, 46px);

    font-weight: 900;

    line-height: 1.1;
}

.section-heading p {
    color: #777777;

    font-size: 13px;

    line-height: 1.8;
}

.section-dark .section-heading p {
    color: #aaaaaa;
}


/* =========================================================
   13. FEATURE CARDS
   ========================================================= */

.features-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.feature-card {
    padding: 30px 24px;

    border: 1px solid #eeeeee;

    border-radius: var(--radius-md);

    background: #ffffff;

    text-align: center;

    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);

    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 18px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #fff7cf;

    color: #111111;

    font-size: 25px;
}

.feature-card h3 {
    margin-bottom: 10px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 17px;
}

.feature-card p {
    color: #777777;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   14. PRODUCT GRID
   NO CART SYSTEM
   ========================================================= */

.products-grid,
.shop-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;
}

.product-card {
    overflow: hidden;

    border: 1px solid #eeeeee;

    border-radius: var(--radius-md);

    background: #ffffff;

    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-7px);

    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;

    height: 270px;

    overflow: hidden;

    background: #f3f3f3;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;

    top: 15px;
    left: 15px;

    padding: 6px 10px;

    border-radius: 4px;

    background: var(--secondary);

    color: #111111;

    font-size: 9px;

    font-weight: 900;

    text-transform: uppercase;
}

.product-info {
    padding: 20px;
}

.product-category {
    display: block;

    margin-bottom: 6px;

    color: #999999;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.product-info h3 {
    margin-bottom: 8px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 18px;
}

.product-info p {
    margin-bottom: 15px;

    color: #777777;

    font-size: 11px;

    line-height: 1.7;
}

.product-price {
    margin-bottom: 15px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 21px;

    font-weight: 900;
}


/* =========================================================
   PRODUCT ACTIONS
   VIEW / ENQUIRE / WHATSAPP
   ========================================================= */

.product-actions {
    display: flex;

    gap: 8px;
}

.product-actions .btn {
    flex: 1;

    min-height: 43px;

    padding: 0 12px;

    font-size: 10px;
}


/* =========================================================
   15. PRODUCT DETAIL
   ========================================================= */

.product-detail {
    padding: 90px 0;
}

.product-detail-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: start;
}

.product-gallery-main {
    overflow: hidden;

    border-radius: var(--radius-lg);

    background: #f5f5f5;
}

.product-gallery-main img {
    width: 100%;
    height: 550px;

    object-fit: cover;
}

.product-thumbnails {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 10px;

    margin-top: 12px;
}

.product-thumbnails img {
    width: 100%;
    height: 85px;

    object-fit: cover;

    border: 2px solid transparent;

    border-radius: 6px;

    cursor: pointer;

    transition: var(--transition);
}

.product-thumbnails img:hover,
.product-thumbnails img.active {
    border-color: var(--secondary);
}

.product-detail-info h1 {
    margin-bottom: 12px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.1;
}

.product-detail-price {
    margin-bottom: 22px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 28px;

    font-weight: 900;
}

.product-detail-info > p {
    margin-bottom: 25px;

    color: #666666;

    font-size: 14px;

    line-height: 1.9;
}

.product-specs {
    margin: 25px 0;

    border-top: 1px solid #eeeeee;
}

.spec-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 13px 0;

    border-bottom: 1px solid #eeeeee;

    font-size: 12px;
}

.spec-row span:first-child {
    color: #888888;
}

.spec-row span:last-child {
    font-weight: 700;
}


/* =========================================================
   16. ABOUT SECTION
   ========================================================= */

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.about-image {
    overflow: hidden;

    border-radius: var(--radius-lg);
}

.about-image img {
    width: 100%;
    height: 500px;

    object-fit: cover;

    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}

.about-content h2 {
    margin-bottom: 20px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: clamp(30px, 4vw, 46px);

    line-height: 1.1;
}

.about-content p {
    margin-bottom: 18px;

    color: #666666;

    font-size: 13px;

    line-height: 1.9;
}


/* =========================================================
   17. WHY CYCLE MART
   ========================================================= */

.why-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}

.why-card {
    position: relative;

    min-height: 260px;

    overflow: hidden;

    display: flex;

    align-items: flex-end;

    padding: 25px;

    border-radius: var(--radius-md);

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.82)
        ),
        url("../images/bikes/IMG-20260816-WA0022.jpg")
        center / cover no-repeat;

    color: #ffffff;
}

.why-card:nth-child(2) {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.82)
        ),
        url("../images/bikes/IMG-20260816-WA0030.jpg");
}

.why-card:nth-child(3) {
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.82)
        ),
        url("../images/bikes/IMG-20260816-WA0038.jpg");
}

.why-card h3 {
    margin-bottom: 7px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 20px;
}

.why-card p {
    color: #dddddd;

    font-size: 11px;
}


/* =========================================================
   18. GALLERY
   ========================================================= */

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 15px;
}

.gallery-item {
    position: relative;

    overflow: hidden;

    aspect-ratio: 1 / 1;

    border-radius: 8px;

    background: #eeeeee;

    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.gallery-item::after {
    content: "\f00e";

    position: absolute;

    inset: 0;

    display: grid;

    place-items: center;

    background: rgba(0, 0, 0, 0.42);

    color: #ffffff;

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    font-size: 24px;

    opacity: 0;

    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover::after {
    opacity: 1;
}


/* =========================================================
   19. DELIVERY
   ========================================================= */

.delivery-box {
    padding: 55px;

    border-radius: var(--radius-lg);

    background:
        linear-gradient(
            rgba(0, 0, 0, 0.70),
            rgba(0, 0, 0, 0.70)
        ),
        url("../images/bikes/IMG-20260816-WA0025.jpg")
        center / cover no-repeat;

    color: #ffffff;
}

.delivery-box h2 {
    max-width: 700px;

    margin-bottom: 15px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: clamp(30px, 4vw, 48px);

    line-height: 1.1;
}

.delivery-box p {
    max-width: 650px;

    margin-bottom: 25px;

    color: #dddddd;

    font-size: 13px;

    line-height: 1.8;
}

.delivery-list {
    display: grid;

    gap: 12px;

    margin-bottom: 30px;
}

.delivery-list li {
    display: flex;

    align-items: center;

    gap: 10px;

    color: #eeeeee;

    font-size: 12px;
}

.delivery-list i {
    color: var(--secondary);
}


/* =========================================================
   20. FAQ
   ========================================================= */

.faq-container {
    max-width: 850px;

    margin: auto;
}

.faq-item {
    margin-bottom: 12px;

    border: 1px solid #e7e7e7;

    border-radius: 8px;

    background: #ffffff;

    overflow: hidden;
}

.faq-question {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 20px;

    border: none;

    background: #ffffff;

    color: #111111;

    text-align: left;

    font-size: 13px;

    font-weight: 800;
}

.faq-question i {
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    padding: 0 20px;

    color: #777777;

    font-size: 12px;

    line-height: 1.8;

    transition:
        max-height 0.35s ease,
        padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;

    padding: 0 20px 20px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}


/* =========================================================
   21. CONTACT
   ========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: start;
}

.contact-info h2,
.contact-form-wrapper h2 {
    margin-bottom: 15px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 38px;
}

.contact-info > p {
    margin-bottom: 25px;

    color: #666666;

    font-size: 13px;

    line-height: 1.8;
}

.contact-items {
    display: grid;

    gap: 15px;
}

.contact-item {
    display: flex;

    align-items: center;

    gap: 13px;
}

.contact-item-icon {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 7px;

    background: #fff7cf;

    color: #111111;
}

.contact-item strong {
    display: block;

    margin-bottom: 2px;

    font-size: 11px;

    text-transform: uppercase;
}

.contact-item a,
.contact-item span {
    color: #666666;

    font-size: 12px;
}

.contact-item a:hover {
    color: #000000;
}


/* =========================================================
   22. CONTACT FORM
   ========================================================= */

.contact-form {
    padding: 35px;

    border: 1px solid #eeeeee;

    border-radius: var(--radius-lg);

    background: #ffffff;

    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 17px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    color: #333333;

    font-size: 11px;

    font-weight: 800;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    border: 1px solid #dddddd;

    border-radius: 6px;

    padding: 13px 14px;

    outline: none;

    background: #ffffff;

    color: #111111;

    font-size: 12px;

    transition: var(--transition);
}

.form-group textarea {
    min-height: 140px;

    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--secondary);

    box-shadow:
        0 0 0 3px rgba(245, 196, 0, 0.12);
}


/* =========================================================
   23. LOCATION / MAP
   ========================================================= */

.map-container {
    width: 100%;

    min-height: 400px;

    overflow: hidden;

    border-radius: var(--radius-lg);

    background: #eeeeee;
}

.map-container iframe {
    width: 100%;

    height: 400px;

    border: 0;
}


/* =========================================================
   24. CTA
   ========================================================= */

.cta {
    padding: 80px 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.65)
        ),
        url("../images/bikes/IMG-20260816-WA0040.jpg")
        center / cover no-repeat;

    color: #ffffff;
}

.cta-content {
    max-width: 750px;

    margin: auto;

    text-align: center;
}

.cta h2 {
    margin-bottom: 15px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: clamp(30px, 5vw, 52px);

    line-height: 1.1;
}

.cta p {
    margin-bottom: 25px;

    color: #dddddd;

    font-size: 13px;
}

.cta-buttons {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 12px;
}


/* =========================================================
   25. FOOTER
   ========================================================= */

.footer {
    padding: 70px 0 25px;

    background: #111111;

    color: #ffffff;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1.2fr;

    gap: 50px;
}

.footer-brand .logo-title {
    color: #ffffff;
}

.footer-brand .logo-subtitle {
    color: #999999;
}

.footer-brand p {
    max-width: 300px;

    margin-top: 18px;

    color: #999999;

    font-size: 12px;

    line-height: 1.8;
}

.footer-column h3 {
    margin-bottom: 17px;

    font-family: "Montserrat", Arial, sans-serif;

    font-size: 14px;
}

.footer-column ul {
    display: grid;

    gap: 10px;
}

.footer-column li {
    color: #999999;

    font-size: 11px;
}

.footer-column a {
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--secondary);
}

.footer-column i {
    width: 18px;

    color: var(--secondary);
}

.footer-bottom {
    margin-top: 45px;

    padding-top: 22px;

    border-top: 1px solid #292929;

    text-align: center;
}

.footer-bottom p {
    color: #777777;

    font-size: 10px;
}


/* =========================================================
   26. MOBILE BOTTOM NAVIGATION
   6 ITEMS
   HOME / SHOP / ABOUT / GALLERY / DELIVERY / FAQ
   ========================================================= */

.mobile-bottom-nav {
    display: none;
}


/* =========================================================
   27. FLOATING WHATSAPP
   ========================================================= */

.floating-whatsapp {
    position: fixed;

    right: 20px;
    bottom: 20px;

    z-index: 9998;

    width: 56px;
    height: 56px;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background: #25d366;

    color: #ffffff;

    font-size: 25px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.20);

    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.08);

    background: #1ebe5d;
}


/* =========================================================
   28. SCROLL TO TOP
   ========================================================= */

.scroll-top {
    position: fixed;

    right: 20px;
    bottom: 90px;

    z-index: 9997;

    width: 42px;
    height: 42px;

    display: grid;

    place-items: center;

    border: none;

    border-radius: 50%;

    background: #111111;

    color: #ffffff;

    opacity: 0;

    visibility: hidden;

    transition: var(--transition);
}

.scroll-top.show {
    opacity: 1;

    visibility: visible;
}

.scroll-top:hover {
    background: var(--secondary);

    color: #111111;
}


/* =========================================================
   29. ANIMATIONS
   ========================================================= */

.fade-up {
    animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {

    from {
        opacity: 0;

        transform: translateY(25px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}

.fade-in {
    animation: fadeIn 0.8s ease both;
}

@keyframes fadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


/* =========================================================
   30. TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .nav-links {
        gap: 18px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid,
    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   31. MOBILE NAVIGATION
   ========================================================= */

@media (max-width: 850px) {

    .nav-container {
        min-height: 70px;
    }

    .navbar {
        position: absolute;

        top: 70px;

        left: 0;
        right: 0;

        display: none;

        padding: 20px;

        background: #ffffff;

        border-top: 1px solid #eeeeee;

        box-shadow: var(--shadow-md);
    }

    .navbar.active {
        display: block;
    }

    .nav-links {
        flex-direction: column;

        align-items: stretch;

        gap: 0;
    }

    .nav-links li {
        border-bottom: 1px solid #eeeeee;
    }

    .nav-links a {
        display: block;

        padding: 15px 5px;
    }

    .nav-links a::after {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .product-detail-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .products-grid,
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   32. SMALL MOBILE
   ========================================================= */

@media (max-width: 600px) {

    body {
        padding-bottom: 70px;
    }

    .container {
        width: 92%;
    }

    .section {
        padding: 60px 0;
    }

    .header {
        position: sticky;
    }

    .logo img {
        width: 44px;
        height: 44px;
    }

    .logo-title {
        font-size: 18px;
    }

    .logo-subtitle {
        font-size: 7px;
    }

    .hero {
        min-height: 650px;
    }

    .hero-content {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero p {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .features-grid,
    .products-grid,
    .shop-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 8px;
    }

    .product-image {
        height: 250px;
    }

    .product-gallery-main img {
        height: 380px;
    }

    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-thumbnails img {
        height: 70px;
    }

    .about-image img {
        height: 350px;
    }

    .delivery-box {
        padding: 30px 25px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .footer {
        padding-bottom: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .floating-whatsapp {
        right: 15px;

        bottom: 82px;
    }

    .scroll-top {
        right: 15px;

        bottom: 145px;
    }


    /* =====================================================
       MOBILE BOTTOM NAV
       ===================================================== */

    .mobile-bottom-nav {
        position: fixed;

        left: 0;
        right: 0;
        bottom: 0;

        z-index: 99999;

        height: 68px;

        display: grid;

        grid-template-columns: repeat(6, 1fr);

        background: rgba(255, 255, 255, 0.97);

        border-top: 1px solid #dddddd;

        box-shadow:
            0 -5px 25px rgba(0, 0, 0, 0.10);

        backdrop-filter: blur(12px);

        -webkit-backdrop-filter: blur(12px);
    }

    .mobile-nav-item {
        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 4px;

        color: #777777;

        font-size: 8px;

        font-weight: 800;

        transition: var(--transition);
    }

    .mobile-nav-item i {
        font-size: 17px;
    }

    .mobile-nav-item.active,
    .mobile-nav-item:hover {
        color: #111111;
    }

    .mobile-nav-item.active i {
        color: var(--secondary-dark);
    }

}


/* =========================================================
   33. EXTRA SMALL DEVICES
   ========================================================= */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 38px;
    }

    .page-hero {
        min-height: 280px;
    }

    .page-hero h1 {
        font-size: 34px;
    }

    .section-heading h2 {
        font-size: 29px;
    }

    .product-actions {
        flex-direction: column;
    }

    .mobile-bottom-nav {
        height: 64px;

        grid-template-columns: repeat(6, 1fr);
    }

    .mobile-nav-item {
        font-size: 7px;
    }

    .mobile-nav-item i {
        font-size: 15px;
    }

}


/* =========================================================
   END OF CYCLE MART CSS
   ========================================================= */