/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); */

/* @import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    /* Colors */
    --color-primary: #9e1b32;
    --color-secondary: #161616;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-dark: #D62D2D;


    /* Font */
    /* --font-primary: "Poppins", sans-serif; */

    /* --font-primary: "Source Sans 3", sans-serif; */

    --font-primary: "Jost", sans-serif;
    ;


    /* Font Weights */
    --font-weight-400: 400;
    --font-weight-500: 500;
    --font-weight-600: 600;
    --font-weight-700: 700;

    /* Font Sizes */
    --fs-15: 15px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-25: 25px;
    --fs-30: 30px;
    --fs-37: 37px;
    --fs-42: 42px;
    --fs-50: 50px;

    /* Line Heights */
    --lh-21: 21px;
    --lh-23: 23px;
    --lh-25: 25px;
    --lh-30: 30px;
    --lh-35: 35px;
    --lh-39: 39px;
    --lh-43: 43px;
    --lh-50: 50px;
    --lh-55: 55px;

    /* Spacing Scale */
    --space-10: 10px;
    --space-20: 20px;
    --space-30: 30px;
    --space-35: 35px;
    --space-40: 40px;
    --space-50: 50px;
    --space-120: 120px;
    --space-80: 80px;
    --space-60: 60px;
}

/* ROOT VARIABLES - END */


/* ======================================================
   UTILITY CLASSES - START
====================================================== */

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

.text-white {
    color: var(--color-white);
}

.text-black {
    color: var(--color-black);
}

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

.color-primary {
    color: var(--color-primary);
}

.color-white {
    color: var(--color-white);
}


.fw-400 {
    font-weight: var(--font-weight-400);
}

.fw-500 {
    font-weight: var(--font-weight-500);
}

.fw-600 {
    font-weight: var(--font-weight-600);
}

.fw-700 {
    font-weight: var(--font-weight-700);
}

.fs-15 {
    font-size: var(--fs-15);
}

.fs-16 {
    font-size: var(--fs-16);
}

.fs-18 {
    font-size: var(--fs-18);
}

.fs-20 {
    font-size: var(--fs-20);
}

.fs-25 {
    font-size: var(--fs-25);
}

.fs-37 {
    font-size: var(--fs-37);
}

.fs-50 {
    font-size: var(--fs-50);
}

.lh-21 {
    line-height: var(--lh-21);
}

.lh-23 {
    line-height: var(--lh-23);
}

.lh-25 {
    line-height: var(--lh-25);
}

.lh-30 {
    line-height: var(--lh-30);
}

.lh-39 {
    line-height: var(--lh-39);
}

.lh-43 {
    line-height: var(--lh-43);
}

.lh-50 {
    line-height: var(--lh-50);
}

.lh-55 {
    line-height: var(--lh-55);
}

/* Margin Top */
.mt-10 {
    margin-top: var(--space-10);
}

.mt-20 {
    margin-top: var(--space-20);
}

.mt-30 {
    margin-top: var(--space-30);
}

.mt-40 {
    margin-top: var(--space-40);
}

.mt-50 {
    margin-top: var(--space-50);
}

/* Margin Bottom */
.mb-10 {
    margin-bottom: var(--space-10);
}

.mb-20 {
    margin-bottom: var(--space-20);
}

.mb-30 {
    margin-bottom: var(--space-30);
}

.mb-40 {
    margin-bottom: var(--space-40);
}

.mb-50 {
    margin-bottom: var(--space-50);
}

/* Margin Top & Bottom */
.mtb-10 {
    margin: var(--space-10) 0;
}

.mtb-20 {
    margin: var(--space-20) 0;
}

.mtb-30 {
    margin: var(--space-30) 0;
}

.mtb-40 {
    margin: var(--space-40) 0;
}

.mtb-50 {
    margin: var(--space-50) 0;
}


/* Padding Top */
.pt-10 {
    padding-top: var(--space-10);
}

.pt-20 {
    padding-top: var(--space-20);
}

.pt-30 {
    padding-top: var(--space-30);
}

.pt-40 {
    padding-top: var(--space-40);
}

.pt-50 {
    padding-top: var(--space-50);
}

.pt-80 {
    padding-top: var(--space-80);
}

/* Padding Bottom */
.pb-10 {
    padding-bottom: var(--space-10);
}

.pb-20 {
    padding-bottom: var(--space-20);
}

.pb-30 {
    padding-bottom: var(--space-30);
}

.pb-40 {
    padding-bottom: var(--space-40);
}

.pb-50 {
    padding-bottom: var(--space-50);
}

.pb-80 {
    padding-top: var(--space-80);
}

/* Padding Top & Bottom */
.ptb-10 {
    padding: var(--space-10) 0;
}

.ptb-20 {
    padding: var(--space-20) 0;
}

.ptb-30 {
    padding: var(--space-30) 0;
}

.ptb-40 {
    padding: var(--space-40) 0;
}

.ptb-50 {
    padding: var(--space-50) 0;
}

.ptb-80 {
    padding: var(--space-80) 0;
}

/* Padding Top */
.padd-t120 {
    padding-top: var(--space-120);
}

/* Padding Bottom */
.padd-b120 {
    padding-bottom: var(--space-120);
}

/* Padding Top & Bottom */
.padd-tb120 {
    padding-top: var(--space-120);
    padding-bottom: var(--space-120);
}

/* UTILITY CLASSES - END */


/* ======================================================
   BASE TYPOGRAPHY - START
====================================================== */
body {
    font-family: var(--font-primary);
    font-weight: var(--font-weight-400);
    font-size: var(--fs-16);

}

p, span, a, li, input, button {
    /* font-family: var(--font-primary); */
}

h1, h2, h3, h4, h5, h6 {
    /* font-family: var(--font-primary); */
    font-weight: var(--font-weight-700);
}

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

p {
    margin: 10px 0;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn,
.btn:hover,
.btn:focus,
.btn:active {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* BASE TYPOGRAPHY - END */


/* ======================================================
   BACKGROUND UTILITIES - START
====================================================== */
.bg-primary {
    background-color: var(--color-primary) !important;
    color: var(--color-white);
}

.bg-secondary {
    background-color: var(--color-secondary) !important;
}

.bg-dark {
    background-color: var(--color-dark) !important;
    color: var(--color-white);
}

.bg-white {
    background-color: var(--color-white);
}


/* BACKGROUND UTILITIES - END */


/* ======================================================
   TEXT STYLES - START
====================================================== */

.p-default, p {
    font-size: var(--fs-16);
    line-height: var(--lh-21);
}

.p-small {
    font-size: var(--fs-15);
    line-height: var(--lh-23);
}

h1 {
    font-weight: var(--font-weight-700);
    font-size: var(--fs-50);
    line-height: var(--lh-55);
}

.h-xl {
    font-weight: var(--font-weight-700);
    font-size: var(--fs-50);
    line-height: var(--lh-55);
}

h2 {
    font-weight: var(--font-weight-700);
    font-size: var(--fs-37);
    line-height: var(--lh-39);
}

.h-lg {
    font-weight: var(--font-weight-700);
    font-size: var(--fs-37);
    line-height: var(--lh-39);
}

h3 {
    font-weight: var(--font-weight-700);
    font-size: var(--fs-25);
    line-height: var(--lh-30);
}

.h-md {
    font-weight: var(--font-weight-700);
    font-size: var(--fs-25);
    line-height: var(--lh-30);
}

h4 {
    font-weight: var(--font-weight-700);
    font-size: var(--fs-20);
    line-height: var(--lh-25);
}

.h-sm {
    font-weight: var(--font-weight-700);
    font-size: var(--fs-20);
    line-height: var(--lh-25);
}

.h-xs {
    font-size: var(--fs-18);
    line-height: var(--lh-21);
}

h5 {
    font-size: var(--fs-16);
    line-height: var(--lh-21);
}


.letter-space-heading16 {
    letter-spacing: -1.6px;
}

.primary-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: var(--fs-16);
    border-radius: 8px;
    padding: 10px 18px;

}

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


}

.secondry-btn {
    background-color: var(--color-secondary);
    color: var(--color-white);
    font-size: var(--fs-16);
    border-radius: 8px;
    padding: 10px 18px;

}

.secondry-btn:hover {
    background-color: var(--color-primary);
    color: var(--color-white);


}

/* TEXT STYLES - END */


/* Default Paragraph */
/* .p-small {
    font-weight: var(--font-weight-400);
    font-size: var(--fs-15);
    line-height: var(--lh-23);
    color: var(--color-link);
}

.p-sm {
    font-weight: var(--font-weight-400);
    font-size: var(--fs-15);
    line-height: var(--lh-23);
    color: var(--color-muted);
}




.h-lg {
    font-weight: var(--font-weight-700);
    font-size: var(--fs-37);
    line-height: var(--lh-39);
    color: var(--color-white);
}

.h-sm-white {
    font-weight: var(--font-weight-700);
    font-size: var(--fs-15);
    line-height: var(--lh-23);
    color: var(--color-white);
}

.h-sm-black {
    font-weight: var(--font-weight-700);
    font-size: var(--fs-18);
    line-height: 20px;
    color: var(--color-black);
}

.h-sm-dark {
    font-weight: var(--font-weight-700);
    font-size: var(--fs-18);
    line-height: 20px;
    color: var(--color-dark);
} */

/* ======================================================
   TOPBAR - START
====================================================== */
/* All custom classes prefixed with 'rcb-' */

/* HEADER */
.rcb-top-header {
    background-color: #F1F3FD;
    padding: 10px 0;
}

.rcb-header {
    background: var(--color-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.03);
    /* border-bottom: 1px solid #eef2f8; */
    position: sticky;
    top: 0;
    z-index: 1030;
    width: 100%;
}

/* LOGO */
.rcb-logo {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-black));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    white-space: nowrap;
}

.rcb-logo span {
    color: var(--color-primary);
}

.rcb-logo small {
    font-size: 0.65rem;
    font-weight: 500;
    color: #6b7280;
}

/* SEARCH */
.rcb-search-group {
    display: flex;
    align-items: center;
    /* background-color: #eeeded; */
    /* border-radius: 8px; */
    /* padding: 0.25rem 0.25rem 0.25rem 0.5rem; */
    /* border: 1px solid #c8c8c8; */
    transition: all 0.2s;
}

.rcb-search-group:focus-within {
    /* background-color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(255, 1, 0, 0.1); */
}

.rcb-search-input {
    background: transparent;
    border: none;
    padding: 0.35rem 0;
    font-size: 0.9rem;
    width: 100%;
    outline: none;
    font-weight: 500;
}

.rcb-search-input::placeholder {
    color: #9aa4b2;
}

.rcb-search-btn {
    background: var(--color-primary);
    border: none;
    border-radius: 40px;
    padding: 0.45rem 1.1rem;
    color: var(--color-white);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.2s;
}

.rcb-search-btn:hover {
    background: var(--color-dark);
}

/* MOBILE SEARCH ICON */
.rcb-mobile-search-icon {
    background: #f0f3f8;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--color-secondary);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.rcb-mobile-search-icon:hover {
    background: #e6ecf3;
    color: var(--color-primary);
}

/* CONTACT */
.rcb-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid #eef2f8;
    transition: 0.2s;
}

.rcb-phone i {
    color: var(--color-white);
}

/* .rcb-phone:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.rcb-phone:hover i {
    color: var(--color-white);
} */

.rcb-chat {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    color: var(--color-secondary);
    font-weight: 500;
    font-size: 0.85rem;
}

.rcb-chat i {
    color: #25D366;
}

.rcb-chat:hover {
    background: #e6f4ea;
}

.rcb-quick-response {
    background: #fff4f4;
    border-radius: 40px;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* TOGGLER */
.rcb-navbar-toggler {
    background: transparent;
    border: 1px solid #dee4ec;
    border-radius: 12px;
    padding: 0.4rem 0.7rem;
}

.rcb-navbar-toggler i {
    font-size: 1.6rem;
    color: var(--color-secondary);
}

/* NAV */
.rcb-nav {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.rcb-nav-link {
    display: inline-block;
    padding: 0.5rem 0.8rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-secondary);
    border-radius: 40px;
    transition: 0.2s;
}

.rcb-nav-link:hover {
    background: #fef2f2;
    color: var(--color-primary);
}

/* CTA */
.rcb-request-quote {
    background: var(--color-primary);
    color: var(--color-white) !important;
    padding: 0.5rem 1.2rem;
    border-radius: 40px;
}

.rcb-request-quote:hover {
    background: var(--color-dark);
}

/* MOBILE SEARCH OVERLAY */
.rcb-mobile-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--color-white);
    z-index: 1050;
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-100%);
    transition: transform 0.25s ease;
    border-bottom: 1px solid #e2e8f0;
}

.rcb-mobile-search-overlay.open {
    transform: translateY(0);
}

.rcb-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.rcb-overlay-header h6 {
    margin: 0;
    font-weight: 600;
}

.rcb-close-overlay {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #6b7280;
}

.rcb-overlay-search-group {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f3f5f9;
    border-radius: 60px;
    padding: 0.4rem 0.4rem 0.4rem 1.2rem;
    border: 1px solid #e4e9f0;
}

.rcb-overlay-search-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.7rem 0;
    font-size: 1rem;
    outline: none;
}

.rcb-overlay-search-group button {
    background: var(--color-primary);
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.3rem;
    color: var(--color-white);
    font-weight: 600;
}

.rcb-header-social-icons a {

    font-size: var(--fs-20);
    color: var(--color-primary);
    /* background-color: var(--color-primary); */
    /* padding: 4px 4px; */
    /* border-radius: 50%; */
    /* height: 40px; */
    /* width: 40px; */
    text-align: center;
    /* line-height: 40px; */
    font-size: var(--fs-20);


}

.rcb-header-social-icons a:hover {
    color: var(--color-black);

}




/** menu menu start  **/

/* ========== ORIGINAL MENU STYLES (PRESERVED) ========== */
.main-menu {
    /* background: #ffdada; */
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); */
    border-radius: 0px;
    /* margin: 10px 0px; */
    /* padding: 0.5rem 0rem; */
}

.navbar-brand-custom {
    font-weight: 800;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), #b00000);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-decoration: none;
    margin-right: 2rem;
}

/* ========== MEGA MENU / DROPDOWN STYLES (Desktop) ========== */
.navbar-nav .nav-item {
    position: static;
    /* allows mega menu full width */
}

/* For .click-drop items that have mega/dropdown content */
.click-drop {
    position: relative;
}

.click-drop.mega-menu {
    position: static;
}

.dropdown-menu.parent .dropend .dropdown-toggle::after {
    display: none;
}

/* Full width dropdown menu (mega menu style) */
.dropdown-menu.full-w {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fbfbfb;
    border-radius: 4px;
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 2rem;
    margin-top: 0;
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.25s ease;
    z-index: 1050;
    display: block !important;
    /* override bootstrap default to allow custom animation */
}

/* Show dropdown on hover (desktop) */
.click-drop:hover .dropdown-menu.full-w {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* For standard dropdown-menu (Shapes & Styles / Box by Materials) - normal dropdowns */
.click-drop .dropdown-menu.parent {
    position: absolute;
    top: 100%;
    left: 0;
    background: #e4e4e4;
    border-radius: 4px;
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.2);
    border: none;
    padding: 0.5rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.2s ease;
    display: block !important;
    margin-top: 0;
}

.click-drop:hover .dropdown-menu.parent {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropend submenu (for nested items) */
.dropend .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.dropend:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.rcb-header-menu {
    padding: 10px 0;
}

.nav-link {
    font-weight: var(--font-weight-500);
    font-size: 17px;
    /* padding: 0.7rem 1rem !important; */
    border-radius: 16px;
    padding: 10px 20px !important;
    color: var(--color-secondary) !important;
    transition: all 0.2s;
}



.dropdown-item {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-item img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.dropdown-item:hover {
    background-color: #fef2f2;
    color: var(--color-primary);
}

/* Big image styling */
.big-img2 img {
    border-radius: 20px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.click-drop ul .nav-link {
    font-weight: 400;
    font-size: 0.9rem;
}

/* ========== MOBILE / TABLET: OFF-CANVAS SLIDE + SMOOTH TRANSITION ========== */
@media (max-width: 991.98px) {
    .main-menu {
        margin: 0px;
        padding: 0px;
    }

    .navbar-collapse {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: white;
        z-index: 9999;
        padding: 1.5rem 1.2rem;
        overflow-y: auto;
        box-shadow: 12px 0 32px rgba(0, 0, 0, 0.12);

        /* 1. Start hidden without visibility flashes */
        display: none !important;
        transform: translateX(-100%);
        transition: none;
        /* No transition by default to prevent resize sliding */
    }

    /* 2. Only show and animate when the .show class is added by JS */
    .navbar-collapse.show {
        display: block !important;
        transform: translateX(0) !important;
        transition: transform 0.3s ease-in-out;
    }

    /* 3. Handle the "collapsing" state to prevent Bootstrap conflicts */
    .navbar-collapse.collapsing {
        display: block !important;
        height: 100vh !important;
        transition: transform 0.3s ease-in-out;
    }

    /* Overlay Styles */
    .rcb-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        backdrop-filter: blur(2px);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
        z-index: 9998;
        pointer-events: none;
    }

    .rcb-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* Close button (mobile only) */
    .rcb-menu-close {
        display: flex;
        justify-content: flex-end;
        font-size: 28px;
        cursor: pointer;
        margin-bottom: 1.2rem;
        margin-top: 30px;
        ;
        color: var(--color-secondary);
    }

    .rcb-menu-close i {
        transition: transform 0.2s;
    }

    .rcb-menu-close:hover i {
        transform: scale(1.1);
        color: var(--color-primary);
    }

    /* Mobile toggle button for dropdowns (chevron) */
    .rcb-mobile-toggle {
        background: transparent;
        border: none;
        padding: 6px 12px;
        border-radius: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s;
    }

    .rcb-mobile-toggle i {
        font-size: 1rem;
        pointer-events: none;
        transition: transform 0.25s ease;
    }

    .rcb-mobile-toggle.active i {
        transform: rotate(180deg);
    }

    .nav-link-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .nav-link {
        flex: 1;
    }

    /* All dropdown menus become collapsible blocks on mobile */
    .dropdown-menu.full-w,
    .dropdown-menu.parent {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100% !important;
        border-radius: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
        padding: 0.2rem 1rem;
        background: #fef9f9;
        /* border: 1px solid #ffdbdb; */
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        transform: scaleY(0.95);
        transform-origin: top;
        transition: opacity 0.2s ease, visibility 0.2s, transform 0.2s ease;
        display: none !important;
    }

    .click-drop .dropdown-menu.parent {
        border-radius: 0px;
        margin-top: 0px;
        margin-bottom: 0px;
        padding: 0.2rem 1rem;
        background: #fef9f9;
        /* border: 1px solid #ffdbdb; */
        box-shadow: none;
    }


    .rcb-mobile-toggle {
        background-color: var(--color-primary);
        color: var(--color-white);
        border-radius: 4px;
    }

    .dropdown-menu.full-w.show-mobile,
    .dropdown-menu.parent.show-mobile {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: scaleY(1) !important;
    }

    /* For mega menu grid (full-w) on mobile: stack columns */
    .dropdown-menu.full-w .row {
        flex-direction: column;
    }

    .dropdown-menu.full-w .col-md-8,
    .dropdown-menu.full-w .col-md-4 {
        width: 100%;
    }

    .mob-none2, .tab-none2 {
        display: none;
        /* hide big image on mobile for cleaner view */
    }

    /* Adjust dropend submenu on mobile */
    .dropend .dropdown-menu {
        position: relative !important;
        left: 0 !important;
        margin-top: 5px;
        margin-left: 1rem;
        width: calc(100% - 1rem);
    }

    .navbar-nav {
        width: 100%;
    }

    .resize-animation-stopper * {
        transition: none !important;
        animation: none !important;
    }

    /* Ensure smooth transform */
    .navbar-collapse {
        transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1) !important;
    }

    /* Prevent menu from showing briefly on resize */
    .navbar-collapse.show {
        display: block !important;
        transform: translateX(0) !important;
        transition: transform 0.3s ease-in-out !important;
    }

    .dropdown-toggle::after, .dropend .dropdown-toggle::after {
        display: none;
    }

    .click-drop .dropdown-menu.parent {
        display: none !important;

    }

    .click-drop .dropdown-menu.parent.show-mobile {
        display: block !important;

    }

    .mobile-toggle-btn {
        background: var(--color-primary);
        border: none;
        padding: 6px 8px;
        font-size: 20px;
        color: var(--color-white);
        box-shadow: 0;
        border-radius: 4px;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }


}

#aqua_search_results_mobile {
    max-height: 250px;
    overflow-y: auto;

}

.aqua-results {
    position: absolute;
    width: 100%;
    background: var(--color-white);
    /* Softened shadow and rounded corners for a modern feel */
    /* border: 1px solid rgba(0, 0, 0, 0.1); */
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 999;
    max-height: 450px;
    overflow-y: auto;
    top: 60px;
    /* Smooth scrollbar for Chrome/Safari */
}

.aqua-results::-webkit-scrollbar {
    width: 6px;
}

.aqua-results::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.aqua-section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 12px 15px;
    background: #f8f9fa;
    color: #666;
    border-bottom: 1px solid #eee;
}

.aqua-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 15px;
    border-bottom: 1px solid #f1f1f1;
    text-decoration: none;
    color: var(--color-secondary);
    transition: all 0.2s ease-in-out;
}

/* Hover State - Using your primary brand color */
.aqua-item:hover {
    background-color: #fff5f6;
    /* Very light tint of your primary color */
    color: var(--color-primary);
}

.aqua-item:last-child {
    border-bottom: none;
}

.aqua-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.aqua-left img {
    width: 35px;
    height: 35px;
    border-radius: 4px;
    /* Slight round on images */
    object-fit: cover;
    border: 1px solid #eee;
}

.aqua-title {
    font-size: 14px;
    font-weight: 500;
}

.aqua-price {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 0.9rem;
}

/* Specific styling for category links that don't have images */
a.aqua-item:not(:has(img)) .aqua-title {
    font-weight: 400;
    padding-left: 5px;
}

.rcb-search-group .form-control, .rcb-search-group .form-control:focus {
    border-radius: 16px;
    border: 1px solid #a7a7a7;
    padding: 0.75rem 1rem;
    transition: all 0.2s;
    background-color: #f6f6f6;
}

/* Utility: prevent body scroll when menu is open */
body.rcb-menu-open {
    overflow: hidden;
}

body.resizing .navbar-collapse {
    transition: none !important;
}

/*** mega menu ends  ****/


.custom-nav-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.custom-nav-btn:hover {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

/***  Home hero slider ****/

.rcb-slider-section {
    background-color: #F1F3FD;
    width: 100%;
    overflow: hidden;
}

/* Slide text area */
.rcb-slide-text {
    flex: 1 1 45%;
    padding: 1rem 0;
}

.rcb-slide-badge {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.75rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.rcb-slide-title {

    color: var(--color-secondary);
}

.rcb-slide-description {

    color: var(--color-secondary);

}

/* Button group */
.rcb-btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

/* Right image */
.rcb-slide-image {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rcb-slide-image img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
    object-fit: cover;
    width: 100%;
    max-height: 380px;
}

.home-hero-slider img {
    max-width: 100%;
    height: auto;
    border-radius: 24px;
    /* box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1); */
    transition: transform 0.4s ease;
    object-fit: cover;
    width: 100%;
    max-height: 480px;
}


/* SLIDER */
.rcb-slider-wrapper {
    padding: 10px 0;
}

.rcb-brandSliderTrack {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: rcbScroll linear infinite;
}

/* ITEM */
.rcb-brand-item {
    width: 200px;
    flex: 0 0 auto;
    background: #e19999;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* IMAGE */
.rcb-brand-img {
    height: 120px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #f8f8f8;
}

/* IMAGES */
.rcb-brand-img img {
    max-width: 80%;
    max-height: 90px;
    object-fit: contain;
}

/* HOVER EFFECT */
.rcb-brand-img .b1,
.rcb-brand-img .b2 {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease;
}

.rcb-brand-img .b2 {
    transform: translateY(100%);
    opacity: 0;
}

.rcb-brand-item:hover .b1 {
    transform: translateY(-80px);
    opacity: 0;
}

.rcb-brand-item:hover .b2 {
    transform: translateY(0);
    opacity: 1;
}

/* ANIMATION */
@keyframes rcbScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* EDGE FADE */
.rcb-slider-wrapper::before,
.rcb-slider-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    z-index: 2;
}

.rcb-slider-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.rcb-slider-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/* Section spacing */
.main-cat-area {
    margin-top: 30px;
}

/* Card */
.cat-card {
    background: #FFDADA;
    border: none;
}

/* Image */
.cat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.cat-info {
    padding: 15px;
}

/* Title */
.cat-info h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.cat-info h4 a {
    color: var(--color-black);
    text-decoration: none;
}

/* List */
.cat-nav {
    padding-left: 18px;
    margin-bottom: 15px;
}

.cat-nav li {
    margin-bottom: 4px;
}

.cat-nav a {
    font-size: 13px;
    color: var(--color-black);
    text-decoration: none;
}

/* Button */
.main-btn {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 6px 16px;
    font-size: 13px;
}

.main-btn:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.button-area {
    text-align: right;
}

/* Remove dots but keep spacing aligned */
.cat-nav {
    list-style: none;
    /* removes dots */
    padding-left: 5px;
    /* keeps same left spacing */
    margin-bottom: 7px;
}


/* ----- SECTION BACKGROUND (full width lighter grey) ----- */
.sec-6 {
    background-color: #eae9e9;
    /* light grey full width, subtle & professional */
    width: 100%;
    /* padding: 3rem 0; */
    /* vertical spacing, can be adjusted later */
    margin: 0;
}

/* ----- CARD STYLES (no font-size/family, only visual + border, hover shadow/up effect) ----- */
.order-card {
    background: var(--color-white);
    /* border: 1px solid var(--color-primary); */
    /* soft border as requested */
    border-radius: 1rem;
    /* slightly rounded edges, modern */
    padding: 1.8rem 1rem 1.8rem 1rem;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
    /* space between rows on mobile */
    height: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    /* minimal base shadow (optional) */
}

/* Hover effect: box shadow rounder + move up slightly */
.order-card:hover {
    transform: translateY(-6px);
    /* little up motion */
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.05);
    /* rounded & pronounced shadow */
    border-color: rgba(0, 0, 0, 0.12);
    /* subtle border darken on hover */
}

/* Icon container styling: consistent spacing, image handling */
.order-card .icon {
    margin-bottom: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* images responsive, maintain aspect ratio and max-width */
.order-card .icon img {
    max-width: 80px;
    /* balanced icon size, not too large, but keeps proportions */
    height: auto;
    transition: transform 0.2s ease;
}

/* optional slight icon scale on card hover (polished) */
.order-card:hover .icon img {
    transform: scale(1.02);
}

/* heading inside card: only margin/color, no font-size/family defined */
.order-card h3 {
    margin: 0;
    color: var(--color-secondary);
    font-weight: 500;
    /* only weight (no size/family) — acceptable */
    line-height: 1.3;
}

/* ----- TITLE AREA (keeps consistent with Bootstrap, no font-size/family overrides) ----- */
.title-area {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem auto;
}

.title-area h3 {
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    letter-spacing: 0.03em;
    font-weight: 600;
}

.title-area p {
    color: var(--color-secondary);
    opacity: 0.85;
    margin-bottom: 0;
}

/* make cards consistent in height even when content varies */
.order-area .row {
    row-gap: 0.5rem;
}

/* Ensure column gutter looks balanced and cards stay neat */
.order-card {
    transition: transform 0.25s ease, box-shadow 0.3s ease;
}


/* ensure border consistency and no unexpected overrides from bootstrap */
.sec-6 .card {
    background-color: var(--color-white);
}

/* row justify-content-center already present, but we keep nice gaps */
.g-4, .gy-4 {
    --bs-gutter-y: 1.5rem;
}

/* --- Services Section --- */
.services-section {
    background-color: #fdf0f0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}



.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


/* --- Mosaic Layout --- */
.mosaic-wrapper {
    padding: 8px;
}

.coral-circle {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: #e48888;
    opacity: 0.55;
    top: -40px;
    right: -40px;
    z-index: 0;
    pointer-events: none;
}

.mosaic-outer-grid {
    display: grid;
    grid-template-columns: 48% 52%;
    gap: 10px;
    /* height: 490px; */
    position: relative;
    z-index: 1;
}

.mosaic-left-col, .mosaic-right-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.mosaic-can {
    flex: 0 0 195px;
}

.mosaic-boxes {
    flex: 1;
}

.mosaic-right-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    flex: 0 0 275px;
}

.mosaic-coffee {
    align-self: start;
    height: 180px !important;
}

.mosaic-right-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    flex: 1;
}

/* --- Mosaic Cell Base --- */
.mosaic-cell {
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.mosaic-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

.mosaic-cell:hover img {
    transform: scale(1.03);
}

/* ---------- FUN FACT SECTION BACKGROUND (elegant gradient + soft pattern) ---------- */
.funfact-section {
    background: #eae9e9;

    position: relative;

}


/* container relative to keep content above pseudo-element */
.funfact-section .container {
    position: relative;
    z-index: 2;
}

/* ---------- CARD STYLES ---------- */
.fun-card {
    text-align: center;
    background-color: var(--color-white);

    /* define initial state */
    transform: translateY(0);

    /* smooth + optimized transition */
    transition: transform 0.35s ease, box-shadow 0.35s ease;

    will-change: transform;
    border-radius: 8px;
}

/* Hover effect */
.fun-card:hover {
    transform: translateY(-6px);
    /* slightly less = smoother feel */

    box-shadow: 0 20px 35px -10px rgba(150, 150, 150, 0.18),
        0 4px 10px -5px rgba(150, 150, 150, 0.12);
}

/* icon style */
.counter-icon {
    background-color: var(--color-primary);
    /* padding: 15px; */
    border-radius: 50%;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.25s ease;
    height: 65px;
    width: 65px;
    line-height: 71px;

    margin-bottom: 0.5rem;
    display: inline-block;
    transition: transform 0.25s ease;
}

.counter-icon i {
    font-size: var(--fs-30);
    color: var(--color-white);
}

.scroll-hint {
    animation: gentleBounce 1.8s infinite;
    display: inline-block;
}

@keyframes gentleBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

.process-area {
    /* background-color: #e4e4e4; */
}

.nav-pills-custom {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    overflow: hidden;
}

.nav-pills-custom .nav-link {
    color: #444;
    font-weight: 600;
    border-radius: 0;
    padding: 15px 20px;
    transition: all 0.3s ease;
}


.nav-pills-custom .nav-link.active, .nav-pills .nav-link.active {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    border-radius: 8px;


}

.nav-pills-custom .nav-link:hover, .nav-pills .nav-link.active:hover {
    /* color: var(--color-primary) !important; */
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}

.nav-pills-custom .nav-link:hover:not(.active) {
    background-color: var(--brand-light-red);
    color: var(--color-primary);
    border-radius: 8px;
}

/* Card Improvements */
.custom-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid #e58787;
    border-radius: 8px;
    overflow: hidden;
}

.custom-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1) !important;
}

.icon-wrapper {
    /* background-color: var(--brand-light-red); */
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

.product-carousel-wrapper {
    position: relative;

    max-width: 100%;
    overflow: hidden;
}

/* swiper container */
.swiper {
    width: 100%;
    overflow: hidden;
    padding: 10px 0 30px 0;
}

.swiper-wrapper {
    align-items: stretch;
}

/* product card – clean, rounded corners, shadow, same as image style */

/* .product-card {
    background: #da5454;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.25s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05), 0 2px 4px rgba(0, 0, 0, 0.02);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.12);
}

.product-card a {
    text-decoration: none;
    display: block;
    width: 100%;
}

.product-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    
    padding: 1rem;
    transition: transform 0.3s ease;
}

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

.card-content {
    padding: 1rem 1rem 1.25rem;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: #fff;
}

.card-content h5 {
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.2px;
    line-height: 1.3;
    
} */

.rcb-product-cards {
    background: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}

.rcb-product-cards:hover {
    border-color: var(--color-primary);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

/* Image Swap */
.rcb-img-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.rcb-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease, opacity 0.5s ease;
}

.rcb-img-secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1.1);
}

.rcb-product-cards:hover .rcb-img-primary {
    opacity: 0;
    transform: scale(1.1);
}

.rcb-product-cards:hover .rcb-img-secondary {
    opacity: 1;
    transform: scale(1);
}

/* Content */
.rcb-product-content {
    padding: 24px;
}

/* Title */
.rcb-product-title, .rcb-product-title a {
    margin-bottom: 20px;
    text-align: center;
    color: var(--color-secondary);
    transition: color 0.3s ease;
}

.rcb-product-cards:hover .rcb-product-title, .rcb-product-cards:hover .rcb-product-title a {
    color: var(--color-primary);
}

/* Buttons */
.rcb-btn {
    border: none;
    border-radius: 6px;
    padding: 12px 5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rcb-btn-cart {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.rcb-btn-cart:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.rcb-btn-quote {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.rcb-btn-quote:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}


/* ===== COMPLETELY REMOVE ARROWS & DOTS ===== */
/* Hide navigation buttons (prev/next) */
.swiper-button-next,
.swiper-button-prev {
    /* display: none !important; */
}

/* Hide pagination dots container and any bullet */
.swiper-pagination,
.swiper-pagination-bullets,
.swiper-pagination-bullet {
    display: none !important;
}

/* Also remove any possible wrapper spacing that might cause empty space */
.swiper-pagination {
    display: none !important;
}

/* optional: remove any extra clickable zones if needed */
.swiper-button-disabled {
    display: none !important;
}

.content-box {
    /* background: var(--color-white); */

    /* padding: ; */
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease;
}

.content-box:hover {
    transform: translateY(-3px);
}

/* Headings inside content — no forced font-size/family, only weight and color using your scheme */
.content-box h2 {

    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
}

.content-box h2:first-of-type {
    margin-top: 0;
}

.content-box h3 {

    margin: 1.5rem 0 1rem 0;
    color: var(--color-secondary);
    /* removed left border */
    padding-left: 0;
    border-left: none;
}

.content-box p {
    color: var(--color-secondary);
    line-height: 1.5;

}

.content-box ul, .content-box ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.content-box li {
    margin-bottom: 0.5rem;
    color: var(--color-secondary);
}

/* table styling using your colors */
.table-container {
    overflow-x: auto;
    margin: 1.8rem 0;
    border-radius: 20px;
    border: 1px solid rgba(214, 45, 45, 0.15);
    background: var(--color-white);
}

.table {
    margin-bottom: 0;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.table th {
    background-color: rgba(214, 45, 45, 0.05);
    color: var(--color-primary);
    font-weight: 700;
    padding: 1rem 0.75rem;
    border-bottom: 2px solid rgba(214, 45, 45, 0.2);
}

.table td {
    padding: 0.9rem 0.75rem;
    vertical-align: top;
    border-color: #f0e2d8;
    color: var(--color-secondary);
}

/* form card premium using your primary color */
.form-box {
    background: var(--color-white);
    border-radius: 40px;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.25s ease;
    border: 1px solid rgba(214, 45, 45, 0.2);
}

.form-header {
    background: var(--color-primary);
    padding: 1.6rem 2rem;
    text-align: center;
}

.form-header .all-heading {
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    color: var(--color-white) !important;
    margin: 0;
}

.form-body {
    padding: 2rem 2rem 2rem 2rem;
}

.form-control, .form-select {
    border-radius: 16px;
    border: 1px solid #e2dcd5;
    padding: 0.75rem 1rem;
    transition: all 0.2s;
    background-color: #f1f3f5;
}

.form-control:focus, .form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(214, 45, 45, 0.15);
    outline: none;
    background-color: var(--color-white);
}

.main-btn {
    background: var(--color-primary);
    border: none;
    padding: 0.9rem 2rem;
    font-weight: 700;
    border-radius: 40px;
    color: var(--color-white);
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 14px rgba(214, 45, 45, 0.3);
}

.main-btn:hover {
    background: #b82222;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(214, 45, 45, 0.35);
}

/* custom list markers */
.content-box ul li::marker {
    color: var(--color-primary);
}

.content-box strong, .content-box b {
    color: var(--color-primary);
}

.max-height-600 {
    max-height: 760px;
    overflow: auto;
    background-color: #EAE9E9;
}



/* ensure images are responsive and cards maintain consistent height */
.sp-item {
    height: 100%;
}


.rcb-section {
    position: relative;
    background-color: #EAE9E9
}

.rcb-heading {
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.rcb-card {
    background-color: var(--color-white);
    border-radius: 8px;
    height: 100%;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rcb-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.rcb-card-title {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.rcb-card-text {
    color: var(--color-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Accordion Header Button - Red background, white text & icons */
.accordion-button {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    border: none;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button:not(.collapsed) {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
}

/* Remove default Bootstrap arrow icon */
.accordion-button::after {
    display: none !important;
}

/* Custom Font Awesome icons - added via pseudo-element on button */
.accordion-button {
    position: relative;
    padding-right: 3rem !important;
}

.accordion-button::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-white);
}

.accordion-button.collapsed::before {
    content: "\f078";
    /* fa-chevron-down */
}

.accordion-button:not(.collapsed)::before {
    content: "\f077";
    /* fa-chevron-up */
}

/* Accordion body styling */
.accordion-body {
    background: var(--color-white);
    color: var(--color-secondary);
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0.5rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.accordion-item:last-of-type {
    margin-bottom: 0;
}

/* Remove flush border radius issues */
.accordion-flush .accordion-item {
    border-radius: 0.5rem;
}




.para {
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
}

/* Contact bar styling */
.faq-contact-line {
    background: #d7d7d7;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
}

.faq-contact-line a {
    color: var(--color-primary);
    text-decoration: none;
}

.faq-contact-line a:hover {
    text-decoration: underline;
}

.contact-icon {
    color: var(--color-primary);
    margin-right: 0.25rem;
}


/* lighter background for the entire testimonial section */
.rcb-testimonial-section {
    background: #EAE9E9;
    /* warm light background (very light peach/tint) */
    /* padding: 5rem 0; */
    /* overflow-x: clip; */
    overflow: hidden;
}

/* proper container alignment */

.rcb-testimonial-section .container {
    position: relative;
}

.rcb-swiper-container {
    padding: 0.5rem 0 2rem 0;
    /* no side padding */
    overflow: hidden;
    /* FIX: stops right overflow */
    width: 100%;
}

/* heading & description */
.rcb-section-title {
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.rcb-separator {
    width: 70px;
    height: 3px;
    background: var(--color-primary);
    margin: 0.75rem 0 1rem 0;
    border: none;
    opacity: 1;
}

.rcb-section-desc {
    color: #5a5a5a;
    max-width: 700px;
    margin-bottom: 2rem;
}

/* ========== TESTIMONIAL CARD DESIGN ========== */
/* equal height is enforced via flex and height:100% on card + swiper-slide */
.rcb-testimonial-card {
    background: var(--color-white);
    border-radius: 28px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.02);
    padding: 1.8rem 1.5rem 1.8rem 1.5rem;
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.rcb-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 38px -16px rgba(0, 0, 0, 0.12);
    border-color: rgba(214, 45, 45, 0.2);
}

/* client avatar + name row */
.rcb-client-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.rcb-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
    padding: 2px;
    background: white;
}

.rcb-client-name {

    color: var(--color-secondary);
    margin: 0;
    line-height: 1.3;
}

.rcb-client-title {

    color: #6c757d;
    margin: 0;
}

/* star rating style */
.rcb-stars {
    display: flex;
    gap: 0.3rem;
    margin: 0.5rem 0 1rem 0;
    padding-left: 0;
    list-style: none;
}

.rcb-stars li {
    color: #f5b342;
    font-size: 1rem;
}

.rcb-stars li i {
    font-size: 1rem;
}

/* testimonial text - flexible content pushes to fill height */
.rcb-testimonial-text {
    color: #2c2c2c;
    line-height: 1.55;
    margin-top: 0.25rem;
    flex: 1;
}

.rcb-testimonial-text p {
    margin-bottom: 0;
}

/* Swiper container: ensure equal height across slides */
.rcb-swiper-container {
    padding: 0.5rem 0.25rem 2rem 0.25rem;
    overflow: visible;
}

.swiper-slide {
    height: auto !important;
    /* ensures each slide height adapts to content, but all same because card height 100% */
}

.rcb-swiper-wrapper {
    padding-bottom: 0.5rem;
    align-items: stretch;
    /* makes slides stretch to equal height */
}

/* navigation buttons (arrows) - VISIBLE & properly styled */
.rcb-swiper-button-next,
.rcb-swiper-button-prev {
    background-color: var(--color-primary);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(214, 45, 45, 0.3);
    border: none;
}


.rcb-swiper-button-next::after,
.rcb-swiper-button-prev::after {
    display: none;
}


.rcb-swiper-button-next:hover,
.rcb-swiper-button-prev:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 10px 22px rgba(214, 45, 45, 0.25);
}

.rcb-swiper-button-next:hover,
.rcb-swiper-button-prev:hover {
    background-color: #b82222;
}

/* hide pagination dots - arrows only */
.swiper-pagination {
    display: none !important;
}

/* CARD STYLES — clean, no custom font sizes/families */
.blog-card {
    background: var(--color-white);
    border: none;
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* cleaner hover effect - subtle lift with very soft shadow */
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

/* IMAGE WRAPPER with overlay for category + date */
.card-img-wrapper {
    position: relative;
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.blog-card:hover img {
    transform: scale(1.02);
}

/* Category Badge (on image) */
.img-category {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: rgba(214, 45, 45, 0.92);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 40px;
    z-index: 2;
    transition: var(--transition-smooth);
}

.blog-card:hover .img-category {
    background-color: var(--color-primary);
}

/* Date Badge (on image, right side) */
.img-date {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    color: #f8f8f8;
    padding: 0.35rem 0.9rem;
    border-radius: 40px;
    z-index: 2;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 6px;
}

.img-date i {
    color: var(--color-primary);
}

.blog-card:hover .img-date {
    background: rgba(0, 0, 0, 0.8);
}

.card-body {
    padding: 1.6rem 1.5rem 1.9rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #e6e6e6;
}

.blog-card h4 {
    margin-bottom: 0.85rem;
    color: var(--color-secondary);
    transition: color 0.2s;
}

.blog-card:hover h4 {
    color: var(--color-primary);
}

.blog-card p {
    color: #5a5a5a;
    margin-bottom: 1.4rem;
    flex-grow: 1;
}

/* main-btn style - using default Bootstrap button styling as base, only brand colors */


/* Swiper - no arrows, no dots */
.swiper {
    padding: 8px 4px 20px 4px;
    width: 100%;
    overflow: hidden;
}

.swiper-slide {
    height: auto;
}

/* completely hide navigation buttons and pagination dots */
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination,
.swiper-pagination-bullets,
.swiper-pagination-bullet {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.wa-widget-send-button {
    margin: 0 0 20px 0 !important;
    position: fixed !important;
    z-index: 16000160 !important;
    bottom: 0 !important;
    text-align: center !important;
    height: 52px;
    min-width: 52px;
    border: 0 solid #363636;
    border-radius: 100px;
    visibility: visible;
    transition: none !important;
    background-color: #00e785;
    box-shadow: 4px 5px 10px rgba(0, 0, 0, 0.4);
    left: 30px;
    right: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* extra safety for arrow visibility on all screens */
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: auto;
}



/* Footer Main Area */
.footer-main {
    background-color: var(--color-secondary);
    /* padding: 80px 0 60px; */
    color: var(--color-white);
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.footer-main .social-icons i {
    color: var(--color-white);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Section Headers */
.footer-heading {
    color: var(--color-white);
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--color-primary);
}

/* Links Styling */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}



.footer-links a:hover::before {
    opacity: 1;
    margin-right: 8px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.social-icon:hover {
    background-color: var(--color-primary);
    transform: translateY(-3px);
    border-color: var(--color-primary);
}

.social-icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

/* Certifications */
.certifications {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cert-badge {
    /* width: 70px;
    height: 70px; */
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.cert-badge:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(158, 27, 50, 0.3);
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-white);
}

.contact-text {
    flex: 1;
}

.contact-text a,
.contact-text p {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    margin: 0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--color-primary);
}

/* Payment Section */
.payment-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-title {
    text-align: center;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.payment-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.payment-badge {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.payment-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.payment-badge img {
    max-width: 60px;
    height: auto;
    display: block;
}

.payment-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

/* Security Badges */
.security-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.security-badge {
    text-align: center;
}

.security-badge img {
    max-width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

.security-badge:hover img {
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    background-color: #0c0c0c;
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
}


/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-main>.container>.row>div {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-main>.container>.row>div:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-main>.container>.row>div:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-main>.container>.row>div:nth-child(3) {
    animation-delay: 0.3s;
}


/**** product detail start****/

.rcb-product-detail-info {
    background-color: #F1F3FD;
}

.rcb-product-detail-info form p {
    margin: 0px 0;
}


.rcb-product-detail-info .form-control,
.rcb-product-detail-info .form-select {
    border-radius: 16px;
    border: 1px solid #c5c5c5;
    padding: 0.75rem 1rem;
    transition: all 0.2s;
    background-color: #f3f3f3;
}

/* Card styling using theme colors */
.left-card {
    background: var(--color-white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.slider-image img {
    width: 100%;
    border-radius: 0.75rem;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    background-color: #f0f0f0;
    transition: transform 0.2s ease;
}

.slider-image img:hover {
    transform: scale(1.02);
}

/* Border left with theme primary */
.border-left-cls {
    border-left: 1px solid #e5e7eb;
    padding-left: 1.8rem;
}

/* ========== STICKY BEHAVIOR (CORE) ========== */
.product-left-box {
    position: sticky;
    top: 160px;
    align-self: flex-start;
}

.right-box-contain {
    position: sticky;
    top: 1.5rem;
    align-self: flex-start;
}

.right-sidebar-box {
    position: sticky;
    top: 160px;
    align-self: flex-start;
}

/* ===== COMPONENT STYLES USING ONLY COLOR VARIABLES (no font sizes/families) ===== */
.product-count ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.product-count ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3f4f6;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
}

.product-count ul li i {
    color: var(--color-primary);
}

.product-count ul li h3 {
    margin: 0;
    font-weight: 500;
}

.offer-top {
    display: inline-block;
    background: #f3f4f6;
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.offer-top:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.name {
    margin: 0.5rem 0;
    font-weight: 700;
}

.product-price {
    font-weight: 700;
    color: var(--color-primary);
}

.product-price del {
    margin-left: 0.6rem;
    font-weight: 400;
    color: #6b7280;
}

.price-rating ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding-left: 0;
    margin: 0.5rem 0 1rem;
}

.price-rating ul li h3 {
    background: #f3f4f6;
    padding: 0.2rem 0.8rem;
    border-radius: 2rem;
    font-weight: 500;
    margin: 0;
}

.price-rating ul li h3 i {
    color: var(--color-dark);
}

.product-contain p {
    color: var(--color-secondary);
    line-height: 1.5;
}

.product-spacing {
    margin-top: 1.5rem;
}

.product-title h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--color-secondary);
}

.select-package {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-check {
    padding-left: 1.8rem;
}

.form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.hurry-up-box {
    background: #fff6e5;
    padding: 0.8rem 1rem;
    border-radius: 1rem;
    margin: 1rem 0;
}

.hurry-up-box .theme-color {
    color: var(--color-primary);
    font-weight: 700;
}

.progress {
    height: 0.5rem;
    margin-top: 0.6rem;
}

.progress-bar {
    background-color: var(--color-primary);
}

.qty-container {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e5e7eb;
    border-radius: 2rem;
    overflow: hidden;
    background: var(--color-white);
}

.qty-btn {
    background: #f9fafb;
    border: none;
    padding: 0.5rem 1rem;
    transition: 0.1s;
    color: var(--color-secondary);
}

.qty-btn:hover:not(:disabled) {
    background: var(--color-primary);
    color: var(--color-white);
}

.qty-input {
    width: 60px;
    text-align: center;
    border: none;
    background: var(--color-white);
}

.qty-input:focus {
    outline: none;
    box-shadow: none;
}

.button-group {
    display: flex;
    gap: 0.8rem;
    margin: 1.2rem 0;
    flex-wrap: wrap;
}

.buy-btn {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    padding: 0.6rem 1.6rem;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.2s;
}

.buy-btn:hover {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-white);
}

.buy-btn-2 {
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.6rem 1.4rem;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.2s;
}

.buy-btn-2:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.size-delivery-info {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.size-delivery-info li button {
    background: #f3f4f6;
    border-radius: 2rem;
    padding: 0.4rem 1rem;
    color: var(--color-secondary);
    border: none;
}

.size-delivery-info li button i {
    margin-right: 0.4rem;
    color: var(--color-primary);
}

.size-delivery-info li button:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.size-delivery-info li button:hover i {
    color: var(--color-white);
}

.about-item-list,
.description-list,
.shipping-info-list,
.delivery-info ul,
.payment-option ul,
.social-option ul {
    list-style: none;
    padding-left: 0;
}

.about-item-list li,
.shipping-info-list li {
    padding: 0.3rem 0;
    color: var(--color-secondary);
}

.about-item-list li span,
.shipping-info-list li span {
    font-weight: 500;
    color: var(--color-black);
}

.border-top-space {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.2rem;
}

.delivery-info ul li {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 0.6rem;
}

.delivery-info ul li i {
    color: var(--color-primary);
}

.social-option ul {
    display: flex;
    gap: 1rem;
}

.social-option ul li a i {
    height: 40px;
    background-color: var(--color-primary);
    width: 40px;
    line-height: 40px;
    text-align: center;
    color: var(--color-white);
    border-radius: 50%;
}

.social-option ul li a i:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.social-option ul li a {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    text-decoration: none;
}



/* Right Sidebar styles */
.right-sidebar-box {
    background: var(--color-white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.side-product-detail .side-title h4 {
    font-weight: 700;
    border-left: 3px solid var(--color-primary);
    padding-left: 0.75rem;
    color: var(--color-secondary);
}

.side-product-box {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 1rem 0;
    background: #f9fafb;
    padding: 0.8rem;
    border-radius: 1rem;
}

.product-image img {
    border-radius: 0.75rem;
}

.product-contain h5,
.product-contain h4 {
    margin: 0;
}

.product-contain h4 {
    color: var(--color-primary);
}

.qty-stock-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.stock-box h5 span {
    color: var(--color-primary);
    font-weight: 700;
}

.total-price-box {
    margin: 1rem 0;
    padding: 0.8rem;
    background: #f3f4f6;
    border-radius: 1rem;
}

.total-price-box h4 {
    margin: 0;
    color: var(--color-primary);
}

.total-price-box h4 span {
    color: var(--color-secondary);
}

.seller-product {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 0.5rem;
    border-top: 1px solid #e5e7eb;
}

.seller-product h5 a {
    text-decoration: none;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.seller-product h5 a:hover {
    color: var(--color-dark);
}

.banner-box {
    display: block;
    margin-top: 1.5rem;
    border-radius: 1rem;
    overflow: hidden;
}

.banner-box img {
    width: 100%;
    transition: transform 0.3s;
}

.banner-box:hover img {
    transform: scale(1.02);
}

.btn:focus {
    box-shadow: none;
}

/* quantity button disabled style */
.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}



/* Product review container (card-like smoothness) */
.product-review-box {
    background: var(--color-white);
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.2s;
}

/* ----- TABS (custom border & active state using primary & secondary) ----- */
.product-review-nav {
    border-bottom: 1px solid #e9ecef;
    padding: 0 1.5rem;
    background: var(--color-white);
    gap: 0.25rem;
}

.nav-link {
    color: var(--color-secondary);
    background: transparent;
    border: none;
    padding: 1rem 0.75rem;
    margin-right: 0.75rem;
    font-weight: 500;
    position: relative;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--color-primary);
    isolation: isolate;
}

.nav-tabs .nav-link {
    border: 0;
    border-radius: 8px;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
    color: var(--color-white) !important;
    background-color: var(--color-primary) !important;
    border: 0;
}

/* tab content padding */
.product-review-tab {
    padding: 2rem 1.5rem;
}

.product-review-tab {
    max-height: 450px;
    overflow-y: auto;
}

/* ----- DESCRIPTION STYLES (lists, images, boxes) ----- */
.title h5,
.title-2 h5 {
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.description-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.description-list li {
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.description-list li i {
    color: var(--color-primary);
    font-size: 1.3rem;
    line-height: 1;
}

.contain-box {
    background: #f9f9fb;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.2s;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.contain-image img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.contain-details {
    padding: 1rem;
}

.contain-details h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.description-image img {
    border-radius: 1rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
    width: 100%;
}

/* ----- ADDITIONAL INFO (specs grid) ----- */
.product-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #f8f9fe;
    padding: 1rem;
    border-radius: 0.9rem;
    transition: 0.2s;
    border: 1px solid #edf2f7;
}

.spec-icon {
    width: 46px;
    height: 46px;
    background: rgba(158, 27, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.6rem;
}

.spec-details {
    flex: 1;
}

.spec-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #5e6f8d;
    display: block;
}

.spec-value {
    margin: 0;
    font-weight: 600;
    color: var(--color-secondary);
}

/* Vendor tab styles */
.vendor-card-new {
    background: #ffffff;
}

.vendor-header-banner {
    background: linear-gradient(115deg, #fef2f4 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.vendor-profile-wrapper {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    align-items: center;
}

.vendor-logo-box {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
}

.vendor-logo-box img {
    max-width: 100%;
    border-radius: 50%;
}

.vendor-identity .vendor-name {
    margin: 0;
    font-weight: 700;
}

.verified-tag {
    font-size: 0.75rem;
    background: #e8f2e9;
    color: #2b6e3c;
    padding: 0.2rem 0.6rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.verified-tag i {
    color: #2b6e3c;
}

.vendor-rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.3rem;
}

.rating {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 0.2rem;
    margin: 0;
}

.rating li i.fill {
    color: #ffb800;
}

.rating li i {
    color: #ddd;
}

.btn.visit-btn {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 2rem;
    padding: 0.4rem 1.2rem;
    transition: 0.2s;
}

.btn.visit-btn:hover {
    background: var(--color-primary);
    color: white;
}

.vendor-action {
    display: flex;
    gap: 0.8rem;
}

.vendor-stat-grid {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: #f8f9fc;
    border-radius: 1rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(158, 27, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--color-primary);
}

.vendor-features {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 0;
}

.vendor-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vendor-features li i {
    color: var(--color-primary);
}

.vendor-contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

form.cart {
    display: flex !important;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap !important;
}

/* Prevent elements from breaking line */
form.cart .quantity {
    display: flex;
    align-items: center;
    margin: 0 !important;
}

form.cart .single_add_to_cart_button {
    margin: 0 !important;
    white-space: nowrap;
}

/* Fix width issues */
form.cart .quantity input.qty {
    width: 80px;
    height: 48px;
    border: 1px solid #d9d9d9;
    text-align: center;
}

.woocommerce-breadcrumb a {
    color: #212529;
}

/* Button styling (your theme colors) */
button.single_add_to_cart_button {
    height: 48px;
    padding: 0 24px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: 6px;
    border: none;
}

.product-title-breadcrum, .category-title-breadcrum {
    background-color: #F1F3FD;
    margin-bottom: 30px;
}

.catgeory-grid .col-lg-4 {
    position: relative;
}

.sticky-form-container {
    position: -webkit-sticky;
    position: sticky;
    top: 160px;
    z-index: 100;
}


.contact-box {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    background: #f1f5f9;
    padding: 0.7rem 1rem;
    border-radius: 0.8rem;
    flex: 1;
}

.contact-box i {
    font-size: 1.6rem;
    color: var(--color-primary);
}

/* Reviews section (Rating summary, progress, cards) */
.reviews-summary-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f0f0;
    height: 100%;
}

.rating-badge {
    background: var(--color-primary);
    color: white;
    padding: 0.2rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.rating-display-large .score {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.stars {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 0.2rem;
}

.stars li i.fill {
    color: #ffb800;
}

.star-progress-grid {
    margin: 1.2rem 0;
}

.progress-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
}

.progress {
    flex: 1;
    height: 6px;
    border-radius: 10px;
    background: #e9ecef;
}

.progress-bar {
    background: var(--color-primary);
    border-radius: 10px;
}

.write-review-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 2rem;
    padding: 0.6rem;
    transition: 0.2s;
}

.write-review-btn:hover {
    background: #7a1528;
    color: white;
}

.reviews-filter-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.media-row {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.media-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 1px solid #e2e8f0;
}

.media-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-box.more {
    position: relative;
}

.media-box.more span {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.review-card {
    border-bottom: 1px solid #ecf3fa;
    padding: 1.5rem 0;
}

.review-card:last-child {
    border-bottom: none;
}

.user-info {
    display: flex;
    gap: 1rem;
}

.user-avatar {
    width: 48px;
    height: 48px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.user-avatar img {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verified-badge {
    font-size: 0.7rem;
    background: #e6f7e6;
    color: #2e7d32;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-left: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.rating-date {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 0.2rem;
}

.review-title {
    font-weight: 600;
    margin: 0.6rem 0 0.3rem;
}

.review-images {
    display: flex;
    gap: 0.6rem;
    margin: 0.8rem 0;
}

.image-item {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #dee2e6;
}

.action-btns {
    display: flex;
    gap: 1rem;
}

.helpful-btn,
.report-btn {
    background: transparent;
    border: none;
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    color: #5c6f87;
}

.btn-outline {
    border: 1px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    border-radius: 2rem;
    padding: 0.4rem 1.5rem;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: white;
}

.custom-slim-select {
    padding: 0.4rem 1.5rem 0.4rem 0.8rem;
    border-radius: 2rem;
    border: 1px solid #dee2e6;
    background: white;
}

img {
    max-width: 100%;
}

.description-image img,
.contain-image img,
.vendor-logo-box img,
.media-box img,
.image-item img,
.user-avatar img {
    background: #f0f2f5;
    object-fit: cover;
}


/****  review styling *****/
/* Progress Bar Overrides */
.progress {
    background-color: #f0f0f0;
    height: 18px;
    border-radius: 0;
}

.progress-bar {
    /* background-color: var(--color-accent);
    color: var(--color-black);
    font-weight: bold; */
}

/* Icons and Visuals */
.stars-gold {
    color: var(--color-accent);
}

.avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.reply-box {
    background-color: #f8f9fa;
}

/* Helper Classes */
.cursor-pointer {
    cursor: pointer;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.25rem rgba(158, 27, 50, 0.25);
}

.form-control {
    background-color: #f1f3f5;
    border: none;
}

/* section container – adds breathing space */
.material-showcase {
    background-color: var(--color-white);
    padding: 3rem 0;
    position: relative;
}

/* optional subtle header accent */
.section-header {
    margin-bottom: 2.8rem;
    position: relative;
}

.section-header .accent-line {
    width: 70px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

/* CARD DESIGN: modern, clean, interactive */
.material-card {
    background: #F1F3FD;
    border-radius: 1.25rem;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    /* smooth transition for the entire box */
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.03), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* raised effect on hover – subtle but premium, with smooth transition */
.material-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.12);
    border-color: rgba(158, 27, 50, 0.15);
}

/* image wrapper – consistent ratio & overflow */
.card-img-wrapperp {
    position: relative;

    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: background 0.2s ease;
}

/* smooth zoom effect for image */
.material-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease, filter 0.3s;
    filter: brightness(0.98);
}

.material-card:hover .material-img {
    transform: scale(1.03);
    filter: brightness(1);
}

/* typography wrapper: only spacing, alignment, colors */
.card-content {
    padding: 1.4rem 1rem 1.6rem;
    text-align: center;

    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.material-title {
    color: var(--color-secondary);

    transition: color 0.2s;
}

.material-card:hover .material-title {
    color: var(--color-primary);
}

/* micro badge (primary color accent) */

.bradcrums li a {
    color: var(--color-black);
}

.material-card:hover .material-badge {
    width: 42px;
    opacity: 1;
}

/* REMOVED: the ::after pseudo-element that created bottom border left-to-right on hover */
/* No bottom border animation anymore */

/* responsive spacing */
.row-gap-4 {
    row-gap: 1.8rem;
}

/* Custom Button Color & Shadow */
.custom-cart-btn {
    background-color: var(--color-primary);
    /* The deep red/burgundy from your image */
    color: white;
    border: none;
    height: 50px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(163, 29, 49, 0.3);
}

.custom-cart-btn:hover {
    background-color: var(--color-black);
    color: white;
}

/* Style the input to match the image border */
.custom-qty {
    border: 1px solid #e0e6eda1;
    color: #333;
}

/* Optional: Removes the arrow/spinners from the number input for a cleaner look */
.custom-qty::-webkit-outer-spin-button,
.custom-qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.custom-qty[type=number] {
    -moz-appearance: textfield;
}


/* Contact Item Box */
.contact-items {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    background-color: #e6e6e6;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.contact-items:hover {
    transform: translateY(-5px);
   
    box-shadow: var(--shadow-hover);
    border-color: rgba(158, 27, 50, 0.1);
}

.icon-wrapper {
    width: 52px;
    height: 52px;
    background: var(--color-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.contact-items:hover .icon-wrapper {
    background: var(--color-primary);
    color: var(--color-white);
}

.contact-details {
    flex: 1;
}

.contact-label {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-value {
    font-weight: 600;
    color: var(--color-secondary);
    word-break: break-word;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.contact-value a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

.contact-value a:hover {
    color: var(--color-primary);
}

.contact-meta {
    font-size: 0.85rem;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* ========== RCB CARD COMPONENT ========== */
        .rcb-cards {
            background: #e8e8e8;
            border-radius: 1.25rem;
            border: none;
            transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.35s ease;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02), 0 6px 6px rgba(0, 0, 0, 0.03);
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            position: relative;
            padding:15px;
        }

        /* Hover effect: move up + enhanced shadow */
        .rcb-cards:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(158, 27, 50, 0.08);
        }

        /* Category badge with rcb icon style */
        .rcb-category-badge {
           
            padding: 0.3rem 0;
            border-radius: 40px;
            font-weight: 500;
            letter-spacing: -0.2px;
            color: var(--color-primary);
            font-size: 0.85rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .rcb-category-badge i {
            font-size: 0.8rem;
            color: var(--color-primary);
        }

        /* Meta information (date, topics) */
        .rcb-card-meta {
            color: #6c757d;
            font-size: 0.8rem;
            letter-spacing: -0.2px;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 0.9rem;
            flex-wrap: wrap;
        }

        .rcb-card-meta i {
            margin-right: 4px;
            font-size: 0.75rem;
            color: var(--rcb-color-primary);
        }

        /* Card title */
        .rcb-card-title, .rcb-card-title a {
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 0.9rem;
            color: var(--rcb-color-secondary);
            letter-spacing: -0.3px;
        }

        /* Card description text */
        .rcb-card-text {
            color: #4a4a4a;
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }

        /* Read more link */
        .rcb-read-more {
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
            transition: gap 0.2s ease, color 0.2s;
            color: var(--rcb-color-primary);
            background: transparent;
            border: none;
            padding: 0;
        }

        .rcb-read-more i {
            font-size: 0.85rem;
            transition: transform 0.2s ease;
        }

        .rcb-read-more:hover {
            color: #b81c3c;
            gap: 12px;
        }

        .rcb-read-more:hover i {
            transform: translateX(4px);
        }

        /* Card body with flex to ensure equal height content distribution */
        .rcb-card-body {
            padding: 10px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        /* Footer link area - pushes read more to bottom to maintain equal height within cards */
        .rcb-card-footer-link {
          
            padding-top: 0.75rem;
        }

        /* image container: adds the "above image" as requested, placed above category badge */
        .rcb-card-image {
            width: 100%;
            overflow: hidden;
            background-color: #f0f2f5;
            border-top-left-radius: 1.25rem;
            border-top-right-radius: 1.25rem;
            position: relative;
        }

        .rcb-img-fluid {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        /* subtle zoom on hover for image */
        .rcb-cards:hover .rcb-img-fluid {
            transform: scale(1.02);
        }

      .rcb-blog-detail img{
		padding:25px 0;
	}
	.rcb-blog-detail a{
		color:var(--color-primary)
	}
	.rcb-blog-detail p ,.rcb-blog-detail h1 , .rcb-blog-detail h2 , .rcb-blog-detail h3 , .rcb-blog-detail h4 {
padding:10px 0;
	}
	.rcb-blog-detail .post-thumbnail img{
margin: 0 auto;
    display: block;
    width: 100%;
    object-fit: cover;
	}
    b, strong {
    font-weight: var(--font-weight-700);
}



/* Table Layout & Style */
.Cart .shop_table {
    border: 1px solid #eee;
    border-collapse: collapse;
    width: 100%;
}

.Cart .shop_table thead {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.Cart .shop_table th {
    padding: 15px;
    font-weight: 600;
    text-align: left;
}

.Cart .shop_table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    vertical-align: middle;
}

/* Image Styling */
.Cart .product-thumbnail img {
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

/* Remove Button */
.Cart a.remove {
    color: var(--color-primary) !important;
    text-decoration: none;
    font-weight: bold;
}

/* Inputs & Buttons */
.Cart .quantity input.qty {
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 4px;
    width: 80px;
    text-align: center;
}

.Cart .button {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.Cart .button:hover {
    background-color: var(--color-black) !important;
}

.Cart .button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Coupon Area */
.Cart .coupon {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.Cart .coupon input {
    border: 1px solid #ddd;
    padding: 8px;
    border-radius: 4px;
}

/* Totals Section */
.Cart .cart-collaterals {
    margin-top: 40px;
    display: flex;
    justify-content: flex-end;
}

.Cart .cart_totals {
    width: 100%;
    max-width: 450px;
    background: #fafafa;
    padding: 30px;
    border-radius: 8px;
}

.Cart .cart_totals h2 {
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 5px;
}

.Cart .checkout-button {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 20px;
}

/* Responsive Table */
@media (max-width: 768px) {
    .Cart .shop_table_responsive thead {
        display: none;
    }
    .Cart .shop_table_responsive tr {
        display: block;
        border: 1px solid #eee;
        margin-bottom: 20px;
        padding: 10px;
    }
    .Cart .shop_table_responsive td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        border: none;
        padding: 8px 0;
    }
    .Cart .shop_table_responsive td::before {
        content: attr(data-title);
        font-weight: bold;
        float: left;
    }
    .Cart .product-remove, .Cart .product-thumbnail {
        text-align: center;
        display: block;
    }
    .Cart .cart-collaterals {
        justify-content: center;
    }
}

/* General Layout */
.Checkout .woocommerce-info {
    border-top: 3px solid var(--color-primary);
    background-color: #fcfcfc;
    padding: 15px;
    margin-bottom: 25px;
}

.Checkout h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    text-transform: uppercase;
}

/* Form Styling */
.Checkout .form-row {
    margin-bottom: 15px;
}

.Checkout label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.Checkout input.input-text, 
.Checkout select, 
.Checkout textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    transition: border-color 0.3s;
}

.Checkout input.input-text:focus {
    border-color: var(--color-primary);
    outline: none;
}

/* Your Order Table */
.Checkout #order_review {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.Checkout .shop_table {
    width: 100%;
    border-collapse: collapse;
}

.Checkout .shop_table th, 
.Checkout .shop_table td {
    padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
}

.Checkout .order-total th, 
.Checkout .order-total td {
    border-top: 2px solid var(--color-secondary);
    border-bottom: none;
    padding-top: 15px;
}

.Checkout .order-total strong {
    color: var(--color-primary);
}

/* Payment Section */
.Checkout #payment {
    background: #fff;
    border: 1px solid #eee;
    margin-top: 20px;
    padding: 20px;
    border-radius: 4px;
}

.Checkout .payment_methods {
    list-style: none;
    padding: 0;
}

.Checkout .payment_box {
    background: #f5f5f5;
    padding: 15px;
    margin-top: 10px;
    font-size: 0.9em;
}

/* Buttons */
.Checkout .button {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    border: none;
    padding: 12px 25px;
    text-transform: uppercase;
    font-weight: bold;
    width: 100%;
    cursor: pointer;
    transition: 0.3s ease;
}

.Checkout .button:hover {
    background-color: var(--color-black) !important;
}

/* Responsive Grid Fix for WooCommerce default classes */
@media (min-width: 992px) {
    .Checkout .col2-set .col-1, 
    .Checkout .col2-set .col-2 {
        width: 100%;
        float: none;
    }
}
/***** product etail ends ***/

@media (max-width: 1200px) {
    .mosaic-outer-grid {
        /* height: 430px; */
    }

    .mosaic-can {
        flex: 0 0 165px;
    }

    .mosaic-right-top {
        flex: 0 0 240px;
    }

    .mosaic-coffee {
        height: 155px !important;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .pb-80 {
        padding-top: var(--space-60);
    }

    .pt-80 {
        padding-top: var(--space-60);
    }

    .ptb-80 {
        padding-top: var(--space-50);
        padding-bottom: var(--space-50);
    }

    .padd-t120 {
        padding-top: var(--space-80);
    }

    .padd-b120 {
        padding-bottom: var(--space-80);
    }

    .padd-tb120 {
        padding-top: var(--space-80);
        padding-bottom: var(--space-80);
    }

    h1, .h-xl {

        font-size: var(--fs-42);
        line-height: var(--lh-43);
    }

    h2, .h-md {
        font-size: var(--fs-25);
        line-height: var(--lh-30);
    }

    .rcb-slide-text {
        text-align: center;
    }

    .rcb-btn-group {
        justify-content: center;
    }

    .rcb-slide-title {
        font-size: 2.2rem;
    }

    .mosaic-outer-grid {
        /* height: 380px; */
    }

    .mosaic-can {
        flex: 0 0 145px;
    }

    .mosaic-right-top {
        flex: 0 0 210px;
    }

    .coral-circle {
        width: 220px;
        height: 220px;
    }

    .nav-pills-custom {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .nav-item {
        white-space: nowrap;
    }

    .footer-main {
        padding: 60px 0 40px;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-heading {
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links a:hover {
        transform: translateX(0);
    }

    .footer-links a::before {
        display: none;
    }

    .social-icons {
        justify-content: center;
    }

    .certifications {
        justify-content: center;
    }

    .contact-item {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .product-left-box {
        position: relative;
        top: 0;
    }

    .right-box-contain {
        position: relative;
        top: 0;
    }

    .border-left-cls {
        border-left: none;
        padding-left: 0.75rem;
    }

    .sticky-form-container {
        position: reative;
        margin-top: 30px;
    }

}

@media (max-width: 768px) {
    h1, .h-xl {

        font-size: var(--fs-30);
        line-height: var(--lh-35);
    }

    h3, .h-md {

        font-size: var(--fs-20);
        line-height: var(--lh-25);
    }



    .pb-80 {
        padding-top: var(--space-50);
    }

    .pt-80 {
        padding-top: var(--space-50);
    }

    .ptb-80 {
        padding-top: var(--space-35);
        padding-bottom: var(--space-35);
    }

    .padd-t120 {
        padding-top: var(--space-60);
    }

    .padd-b120 {
        padding-bottom: var(--space-60);
    }

    .padd-tb120 {
        padding-top: var(--space-60);
        padding-bottom: var(--space-60);
    }

    .rcb-brand-item {
        width: 160px;
    }

    .button-area {
        text-align: left;
        margin-top: 15px;
    }

    .order-card {
        padding: 1.5rem 0.8rem;
    }

    .order-card .icon img {
        max-width: 70px;
    }

    .mosaic-wrapper {
        margin-top: 3rem;
    }

    .mosaic-outer-grid {
        /* height: 320px; */
    }

    .mosaic-can {
        flex: 0 0 115px;
    }

    .mosaic-right-top {
        flex: 0 0 165px;
    }

    .mosaic-coffee {
        height: 105px !important;
    }

    .coral-circle {
        width: 150px;
        height: 150px;
    }

    .row-cols-md-4>.col {
        flex: 0 0 auto;
        width: 25%;
    }

    .card-content {
        padding: 0.75rem 0.5rem 1rem;
    }

    .coral-circle {

        right: 0px;
    }

    .rcb-testimonial-section {
        padding: 3rem 0;
    }

    .rcb-testimonial-card {
        padding: 1.5rem;
    }

    .rcb-avatar {
        width: 56px;
        height: 56px;
    }

    .rcb-swiper-button-next,
    .rcb-swiper-button-prev {
        width: 38px;
        height: 38px;
    }

    .rcb-swiper-button-next:after,
    .rcb-swiper-button-prev:after {
        font-size: 18px;
    }

    .blog-area {
        padding: 50px 0 70px;
    }

    .card-body {
        padding: 1.3rem;
    }

    .img-category, .img-date {
        padding: 0.25rem 0.8rem;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-desc {
        text-align: center;
    }

    .payment-grid {
        gap: 0.5rem;
    }

    .payment-badge img {
        max-width: 50px;
    }

    .material-showcase {
        padding: 2rem 0;
    }

    .card-img-wrapperp {
        padding: 1rem;
    }

    .card-content {
        padding: 1rem 0.8rem 1.2rem;
    }

    .product-review-tab {
        padding: 1.2rem;
    }

    .product-review-nav {
        padding: 0 0.75rem;
    }

    .nav-link {
        margin-right: 0.8rem;
        font-size: 0.85rem;
        padding: 0.8rem 0.3rem;
    }

    .woocommerce div.product form.cart {
        /* flex-direction: column; */
        align-items: stretch;
    }
    .contact-items {
        padding: 1.25rem;
    }
    .rcb-grid-section {
                padding: 2rem 1rem;
            }
           
            .rcb-img-fluid {
                height: 180px;
            }


}

@media (max-width: 576px) {
    .rcb-slider-section {
        padding: 2rem 0;
    }

    .rcb-slide-title {
        font-size: 1.8rem;
    }

    .rcb-brand-item {
        width: 140px;
    }

    .order-card .icon img {
        max-width: 60px;
    }
}

@media (max-width: 480px) {

    .rcb-mobile-search-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* RESPONSIVE - END */