/* =====================================================
FIRSTBID FASHION HEADER
MYNTRA-STYLE DESIGN - OPTIMIZED
===================================================== */
:root {
    --fb-black: #282c3f;
    --fb-text: #282c3f;
    --fb-muted: #696e79;
    --fb-border: #eaeaec;
    --fb-search: #f5f5f6;
    --fb-pink: #ff3f6c;
    --aod-red-light: #9D1820;
    --aod-red-dark: #5A070C;
    --fb-safe-bottom: env(safe-area-inset-bottom, 0px);
}

/* =====================================================
RESET & BASE
===================================================== */
/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    font-family: 'Montserrat', Arial, sans-serif;
}
/* =====================================================
HEADER
===================================================== */
.fb-header {
    width: 100%;
    height: 80px;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.fb-header-container {
    width: 100%;
    max-width: 1500px;
    height: 80px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 25px;
}

/* =====================================================
LOGO
===================================================== */
.fb-logo {
    width: 70px;
    min-width: 70px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
    flex-shrink: 0;
}

.fb-logo img {
    width: 155px;
    height: auto;
    max-height: 58px;
    object-fit: contain;
    display: block;
}

.fb-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.fb-brand-tagline {
    display: block;
    margin-top: 5px;
    font-family: "Cormorant Garamond", serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.2;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--aod-red-light), var(--aod-red-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
NAVIGATION
===================================================== */
.fb-navigation {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 28px;
    white-space: nowrap;
    flex: 1;
}

.fb-nav-link {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--fb-text);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: color .2s ease;
}

.fb-nav-link:hover {
    color: var(--fb-pink);
}

.fb-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--fb-pink);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.fb-nav-link:hover::after {
    transform: scaleX(1);
}

.fb-studio-link {
    position: relative;
}

.fb-new-label {
    position: absolute;
    top: 22px;
    right: -22px;
    font-size: 8px;
    font-weight: 800;
    color: #ff3f6c;
}

.fb-dynamic-category {
    height: 100%;
    position: relative;
}

.fb-dynamic-category .fb-nav-link {
    height: 80px;
}

.fb-category-dropdown {
    position: absolute;
    left: -20px;
    top: 80px;
    width: 220px;
    background: #ffffff;
    border: 1px solid var(--fb-border);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .10);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .2s ease;
}

.fb-dynamic-category:hover .fb-category-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fb-category-dropdown a {
    display: block;
    padding: 11px 20px;
    text-decoration: none;
    color: var(--fb-text);
    font-size: 13px;
    font-weight: 500;
}

.fb-category-dropdown a:hover {
    color: var(--fb-pink);
    background: #fafafa;
}

/* =====================================================
SEARCH
===================================================== */
.fb-search {
    height: 40px;
    min-width: 280px;
    width: 350px;
    background: var(--fb-search);
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    flex-shrink: 1;
}

.fb-search i {
    font-size: 17px;
    color: #696e79;
    margin-right: 12px;
}

.fb-search input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: var(--fb-text);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
}

.fb-search input::placeholder {
    color: #777;
}

/* =====================================================
ACTIONS
===================================================== */
.fb-actions {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 23px;
    flex-shrink: 0;
}

.fb-action-item {
    min-width: 40px;
    height: 65px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--fb-text);
    position: relative;
}

.fb-action-item i {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 7px;
    font-weight: 400;
}

.fb-action-item span {
    font-size: 10px;
    font-weight: 700;
}

.fb-action-item:hover {
    color: var(--fb-pink);
}

/* =====================================================
MOBILE TOGGLE
===================================================== */
.fb-mobile-toggle {
    display: none;
    border: 0;
    background: transparent;
    font-size: 27px;
    color: var(--fb-text);
    cursor: pointer;
    padding: 0 10px;
}

/* =====================================================
MOBILE MENU
===================================================== */
.fb-mobile-menu {
    display: none;
}

/* =====================================================
RESPONSIVE HEADER
===================================================== */
@media (max-width: 1250px) {
    .fb-header-container {
        padding: 0 20px;
        gap: 18px;
    }
    .fb-navigation {
        gap: 18px;
    }
    .fb-search {
        width: 270px;
        min-width: 220px;
    }
    .fb-actions {
        gap: 14px;
    }
}

@media (max-width: 1050px) {
    .fb-navigation {
        gap: 13px;
    }
    .fb-nav-link {
        font-size: 11px;
    }
    .fb-search {
        width: 220px;
        min-width: 180px;
    }
    .fb-action-item span {
        font-size: 9px;
    }
}

@media (max-width: 900px) {
    .fb-header {
        height: 70px;
    }
    .fb-header-container {
        height: 70px;
        padding: 0 18px;
        justify-content: space-between;
    }
    .fb-navigation {
        display: none;
    }
    .fb-search {
        display: none;
    }
    .fb-actions {
        margin-left: auto;
        gap: 12px;
    }
    .fb-action-item {
        height: 55px;
        min-width: 34px;
    }
    .fb-action-item i {
        font-size: 18px;
        margin-bottom: 3px;
    }
    .fb-action-item span {
        font-size: 8px;
    }
    .fb-mobile-toggle {
        display: block;
    }
    .fb-mobile-menu {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        border-top: 1px solid #eeeeee;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }
    .fb-mobile-menu.active {
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    .fb-mobile-search {
        padding: 15px;
    }
    .fb-mobile-search form {
        height: 44px;
        background: #f5f5f6;
        display: flex;
        align-items: center;
        padding: 0 14px;
        border-radius: 4px;
    }
    .fb-mobile-search i {
        margin-right: 10px;
        color: #696e79;
    }
    .fb-mobile-search input {
        width: 100%;
        border: none;
        outline: none;
        background: transparent;
        font-size: 13px;
    }
    .fb-mobile-links {
        display: flex;
        flex-direction: column;
        padding-bottom: 20px;
    }
    .fb-mobile-links a {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 15px 20px;
        color: var(--fb-text);
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        border-bottom: 1px solid #f4f4f4;
    }
    .fb-mobile-links a:hover {
        color: var(--fb-pink);
        background: #fafafa;
    }
    .fb-mobile-links small {
        font-size: 8px;
        color: var(--fb-pink);
        margin-left: 2px;
    }
    .fb-mobile-links hr {
        width: 100%;
        margin: 5px 0;
        border-color: #eeeeee;
    }
}

@media (max-width: 500px) {
    .fb-header-container {
        padding: 0 12px;
    }
    .fb-logo {
        width: 55px;
        min-width: 55px;
    }
    .fb-logo img {
        max-width: 58px;
    }
    .fb-actions {
        gap: 7px;
    }
    .fb-action-item {
        min-width: 30px;
    }
    .fb-action-item i {
        font-size: 17px;
    }
    .fb-action-item span {
        display: none;
    }
}

@media (max-width: 380px) {
    .fb-header-container {
        padding: 0 10px;
        gap: 8px;
    }
    .fb-logo {
        width: 48px;
        min-width: 48px;
    }
    .fb-logo img {
        max-width: 50px;
    }
    .fb-mobile-toggle {
        font-size: 22px;
        padding: 0 5px;
    }
}

/* =====================================================
SHOP BY CATEGORY
===================================================== */
.fb-category-section {
    width: 100%;
    background: #ffffff;
    padding: 8px 0 45px;
}

.fb-category-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.fb-category-heading {
    margin-bottom: 30px;
}

.fb-category-heading span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #282c3f;
    text-transform: uppercase;
}

.fb-category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 34px;
}

.fb-category-card-link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: #000;
}

.fb-category-card {
    width: 100%;
    background: #fff5e9;
    border: 4px solid #ffd19f;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.fb-category-card-link:hover .fb-category-card {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

.fb-category-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f2f2f2;
}

.fb-category-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.fb-category-card-link:hover .fb-category-image img {
    transform: scale(1.04);
}

.fb-category-content {
    text-align: center;
    padding: 7px 4px 9px;
}

.fb-category-content h3 {
    margin: 0 0 4px;
    color: #111;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
}

.fb-category-offer {
    color: #000;
    font-family: Arial, sans-serif;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 3px;
}

.fb-category-shop {
    color: #111;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 700;
}

@media (max-width: 1200px) {
    .fb-category-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .fb-category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }
    .fb-category-offer {
        font-size: 17px;
    }
    .fb-category-content h3 {
        font-size: 13px;
    }
    .fb-category-shop {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .fb-category-section {
        padding: 10px 0 25px;
    }
    .fb-category-container {
        padding: 0 10px;
    }
    .fb-category-heading {
        margin: 0 0 12px;
        padding: 0 2px;
    }
    .fb-category-heading span {
        font-size: 9px;
        letter-spacing: 1px;
    }
    .fb-category-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 9px;
        padding: 0 0 8px;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
    }
    .fb-category-grid::-webkit-scrollbar {
        display: none;
    }
    .fb-category-card-link {
        flex: 0 0 112px;
        width: 112px;
        scroll-snap-align: start;
    }
    .fb-category-card {
        width: 112px;
        border: 2px solid #ffd09d;
        border-radius: 0;
        transform: none !important;
    }
    .fb-category-card-link:hover .fb-category-card {
        transform: none !important;
        box-shadow: none !important;
    }
    .fb-category-image {
        width: 100%;
        height: 112px;
        aspect-ratio: auto;
    }
    .fb-category-image img {
        transform: none !important;
    }
    .fb-category-card-link:hover .fb-category-image img {
        transform: none !important;
    }
    .fb-category-content {
        padding: 5px 2px 7px;
        min-height: 63px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .fb-category-content h3 {
        width: 100%;
        margin: 0 0 3px;
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: center;
    }
    .fb-category-offer {
        margin: 0 0 2px;
        font-size: 13px;
        white-space: nowrap;
    }
    .fb-category-shop {
        font-size: 9px;
        white-space: nowrap;
    }
}

@media (max-width: 380px) {
    .fb-category-container {
        padding: 0 8px;
    }
    .fb-category-grid {
        gap: 7px;
    }
    .fb-category-card-link {
        flex: 0 0 102px;
        width: 102px;
    }
    .fb-category-card {
        width: 102px;
    }
    .fb-category-image {
        height: 102px;
    }
    .fb-category-content {
        min-height: 58px;
        padding: 4px 2px 6px;
    }
    .fb-category-content h3 {
        font-size: 9px;
    }
    .fb-category-offer {
        font-size: 11px;
    }
    .fb-category-shop {
        font-size: 8px;
    }
}

/* =====================================================
SHOP BY PRICE - MOBILE ONLY
===================================================== */
.fb-price-section {
    display: none;
}

@media (max-width: 768px) {
    .fb-price-section {
        display: block;
        width: 100%;
        background: #fff;
        padding: 15px 0 20px;
    }
    .fb-price-container {
        width: 100%;
        padding: 0 10px;
    }
    .fb-price-heading {
        padding: 0 2px;
        margin-bottom: 12px;
    }
    .fb-price-heading h2 {
        margin: 0;
        font-size: 18px;
        line-height: 1.25;
        font-weight: 800;
        text-align: center;
        letter-spacing: -0.2px;
    }
    .fb-price-heading p {
        margin: 4px 0 0;
        font-size: 9px;
        line-height: 1.4;
        text-align: center;
    }
    .fb-price-scroll {
        display: flex;
        gap: 8px;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 5px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .fb-price-scroll::-webkit-scrollbar {
        display: none;
    }
    .fb-price-card {
        flex: 0 0 82px;
        width: 82px;
        min-height: 68px;
        border-radius: 10px;
        background: linear-gradient(145deg, #fff7f8, #ffeef1);
        border: 1px solid #f1dfe2;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        transition: transform .2s ease;
    }
    .fb-price-card:active {
        transform: scale(.96);
    }
    .fb-price-small {
        color: #555;
        font-family: Arial, sans-serif;
        font-size: 9px;
        line-height: 1;
        font-weight: 500;
    }
    .fb-price-card strong {
        color: #282c3f;
        font-family: Arial, sans-serif;
        font-size: 16px;
        line-height: 1.2;
        font-weight: 800;
        margin-top: 3px;
    }
    .fb-price-arrow {
        position: absolute;
        right: 7px;
        bottom: 4px;
        font-size: 11px;
        font-weight: 700;
        color: #ff3f6c;
    }
}

@media (max-width: 380px) {
    .fb-price-container {
        padding: 0 8px;
    }
    .fb-price-card {
        flex-basis: 76px;
        width: 76px;
        min-height: 64px;
    }
    .fb-price-card strong {
        font-size: 15px;
    }
}

/* =====================================================
PROMOTIONAL SLIDER
===================================================== */
.fb-promo-slider-section {
    width: 100%;
    background: #fff;
    padding: 18px 0 10px;
}

.fb-promo-slider-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.fb-promo-slide-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.fb-promo-slider-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: cover;
    border-radius: 2px;
}

.fb-promo-slider-section .carousel-control-prev,
.fb-promo-slider-section .carousel-control-next {
    width: 45px;
}

.fb-promo-slider-section .carousel-indicators {
    margin-bottom: 8px;
}

.fb-promo-slider-section .carousel-indicators button {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

@media (max-width: 992px) {
    .fb-promo-slider-container {
        padding: 0 15px;
    }
    .fb-promo-slider-image {
        max-height: 220px;
    }
}

@media (max-width: 768px) {
    .fb-promo-slider-section {
        padding: 5px 0 10px;
    }
    .fb-promo-slider-container {
        padding: 0 10px;
    }
    .fb-promo-slider-image {
        max-height: none;
        border-radius: 4px;
    }
    .fb-promo-slider-section .carousel-control-prev,
    .fb-promo-slider-section .carousel-control-next {
        width: 25px;
    }
    .fb-promo-slider-section .carousel-control-prev-icon,
    .fb-promo-slider-section .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }
    .fb-promo-slider-section .carousel-indicators {
        margin-bottom: 3px;
    }
    .fb-promo-slider-section .carousel-indicators button {
        width: 5px;
        height: 5px;
        margin: 0 3px;
    }
}

@media (max-width: 380px) {
    .fb-promo-slider-container {
        padding: 0 8px;
    }
}

/* =====================================================
MOBILE TYPE SLIDER
===================================================== */
.fb-mobile-type-section {
    display: none;
}

@media (max-width: 768px) {
    .fb-mobile-type-section {
        display: block;
        width: 100%;
        background: #fff;
        padding: 8px 0 12px;
        overflow: hidden;
    }
    .fb-mobile-type-heading {
        width: 100%;
        padding: 0 10px 10px;
        box-sizing: border-box;
        text-align: center;
    }
    .fb-mobile-type-heading h2 {
        margin: 0;
        font-size: 18px;
        line-height: 1.25;
        font-weight: 800;
        text-align: center;
        letter-spacing: -0.2px;
    }
    .fb-mobile-type-heading p {
        margin: 4px 0 0;
        font-size: 13px;
        color: #777;
    }
    .fb-mobile-type-viewport {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-x;
        overscroll-behavior-x: contain;
    }
    .fb-mobile-type-viewport::-webkit-scrollbar {
        display: none;
    }
    .fb-mobile-type-scroll {
        display: grid;
        grid-template-rows: repeat(2, 88px);
        grid-auto-flow: column;
        grid-auto-columns: 72px;
        column-gap: 14px;
        row-gap: 4px;
        width: max-content;
        min-width: max-content;
        padding: 0 12px;
    }
    .fb-mobile-type-item {
        width: 72px;
        height: 88px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        flex-shrink: 0;
        text-decoration: none;
        color: #222;
        user-select: none;
        -webkit-user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
    .fb-mobile-type-image {
        width: 62px;
        height: 62px;
        border-radius: 50%;
        overflow: hidden;
        background: #f5f5f5;
        border: 1px solid #eee;
        flex-shrink: 0;
    }
    .fb-mobile-type-image img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .fb-mobile-type-name {
        width: 72px;
        margin-top: 5px;
        text-align: center;
        font-size: 10px;
        font-weight: 600;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 480px) {
    .fb-mobile-type-scroll {
        grid-template-rows: repeat(2, 82px);
        grid-auto-columns: 68px;
        column-gap: 12px;
        row-gap: 3px;
        padding: 0 10px;
    }
    .fb-mobile-type-item {
        width: 68px;
        height: 82px;
    }
    .fb-mobile-type-image {
        width: 58px;
        height: 58px;
    }
    .fb-mobile-type-name {
        width: 68px;
        font-size: 9px;
        margin-top: 5px;
    }
}

@media (max-width: 380px) {
    .fb-mobile-type-scroll {
        grid-template-rows: repeat(2, 76px);
        grid-auto-columns: 62px;
        column-gap: 10px;
        padding: 0 8px;
    }
    .fb-mobile-type-item {
        width: 62px;
        height: 76px;
    }
    .fb-mobile-type-image {
        width: 54px;
        height: 54px;
    }
    .fb-mobile-type-name {
        width: 62px;
        font-size: 9px;
    }
}

/* =====================================================
MOBILE TOP SECTION
===================================================== */
.fb-mobile-top-section {
    display: none;
}

@media (max-width: 768px) {
    .fb-mobile-top-section {
        display: block;
        width: 100%;
        background: #fff;
        overflow: hidden;
    }
    .fb-mobile-quick-categories {
        width: 100%;
        overflow: hidden;
        padding: 10px 0 8px;
    }
    .fb-mobile-quick-scroll {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px;
        width: 100%;
        padding: 0 12px;
        overflow-x: auto;
        overflow-y: hidden;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x;
    }
    .fb-mobile-quick-scroll::-webkit-scrollbar {
        display: none;
    }
    .fb-mobile-quick-item {
        flex: 0 0 72px;
        width: 72px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #222;
        text-align: center;
    }
    .fb-mobile-quick-image {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        overflow: hidden;
        background: #f5f5f5;
        border: 1px solid #eee;
        flex-shrink: 0;
    }
    .fb-mobile-quick-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .fb-mobile-quick-item span {
        display: block;
        width: 72px;
        margin-top: 7px;
        font-size: 11px;
        font-weight: 600;
        line-height: 1.25;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 480px) {
    .fb-mobile-quick-scroll {
        gap: 12px;
        padding: 0 10px;
    }
    .fb-mobile-quick-item {
        flex: 0 0 68px;
        width: 68px;
    }
    .fb-mobile-quick-image {
        width: 60px;
        height: 60px;
    }
    .fb-mobile-quick-item span {
        width: 68px;
        font-size: 10px;
    }
}

@media (max-width: 380px) {
    .fb-mobile-quick-scroll {
        gap: 10px;
        padding: 0 8px;
    }
    .fb-mobile-quick-item {
        flex: 0 0 62px;
        width: 62px;
    }
    .fb-mobile-quick-image {
        width: 56px;
        height: 56px;
    }
    .fb-mobile-quick-item span {
        width: 62px;
        font-size: 9px;
    }
}

/* =====================================================
MOBILE OFFER / FAMILY MESSAGE
===================================================== */
.fb-mobile-offer {
    display: none;
}

@media (max-width: 767px) {
    .fb-mobile-offer {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: calc(100% - 24px);
        margin: 18px auto 20px;
        padding: 20px 7px 19px;
        background: linear-gradient(135deg, #f9fcfb 0%, #f3f8f7 50%, #faf7f4 100%);
        border: 1px solid #dce9e7;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 5px 18px rgba(15, 61, 62, 0.07);
        isolation: isolate;
    }
    .fb-mobile-offer::before {
        content: "";
        position: absolute;
        width: 110px;
        height: 110px;
        left: -55px;
        top: -55px;
        background: rgba(33, 140, 130, 0.08);
        border-radius: 50%;
        z-index: -1;
    }
    .fb-mobile-offer::after {
        content: "";
        position: absolute;
        width: 100px;
        height: 100px;
        right: -50px;
        bottom: -50px;
        background: rgba(209, 90, 31, 0.07);
        border-radius: 50%;
        z-index: -1;
    }
    .fb-mobile-offer-line {
        position: relative;
        flex: 1;
        height: 1px;
        min-width: 15px;
        max-width: 42px;
        background: linear-gradient(to right, transparent, #a9c8c5, transparent);
    }
    .fb-mobile-offer-content {
        position: relative;
        width: 86%;
        padding: 0 13px;
        text-align: center;
    }
    .fb-mobile-offer-content::before {
        content: "✦";
        display: block;
        margin-bottom: 7px;
        font-size: 12px;
        line-height: 1;
        color: #d15a1f;
        opacity: 0.9;
    }
    .fb-mobile-offer-content h3 {
        margin: 0;
        font-family: inherit;
        font-size: 18px;
        line-height: 1.42;
        font-weight: 600;
        letter-spacing: -0.2px;
        color: #0f3d3e;
    }
    .fb-mobile-offer-content h3 span {
        position: relative;
        display: inline-block;
        margin-top: 1px;
        color: #d15a1f;
        font-weight: 750;
    }
    .fb-mobile-offer-content h3 span::after {
        content: "";
        position: absolute;
        left: 4%;
        right: 4%;
        bottom: -2px;
        height: 1px;
        background: #d15a1f;
        opacity: 0.35;
        border-radius: 10px;
    }
    .fb-mobile-offer-content p {
        margin: 8px 0 0;
        font-size: 11px;
        line-height: 1.5;
        font-weight: 500;
        letter-spacing: 0.15px;
        color: #71807f;
    }
}

@media (max-width: 380px) {
    .fb-mobile-offer {
        width: calc(100% - 18px);
        margin-top: 14px;
        margin-bottom: 17px;
        padding: 17px 5px 16px;
        border-radius: 12px;
    }
    .fb-mobile-offer-content {
        width: 89%;
        padding: 0 8px;
    }
    .fb-mobile-offer-content::before {
        margin-bottom: 6px;
        font-size: 11px;
    }
    .fb-mobile-offer-content h3 {
        font-size: 17px;
        line-height: 1.4;
    }
    .fb-mobile-offer-content p {
        margin-top: 7px;
        font-size: 10.5px;
    }
    .fb-mobile-offer-line {
        min-width: 10px;
        max-width: 30px;
    }
}

/* =====================================================
AOD VIDEO STRIP
===================================================== */
.aod-video-strip {
    width: 100%;
    margin: 14px 0;
    padding: 0 12px;
    box-sizing: border-box;
}

.aod-video-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-sizing: border-box;
    background: #000;
}

.aod-video-track {
    width: 100%;
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.aod-video-slide {
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    overflow: hidden;
    border-radius: 12px;
}

.aod-video {
    width: 100%;
    max-width: 100%;
    height: 58px;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    vertical-align: middle;
}

@media (max-width: 767px) {
    .aod-video-strip {
        width: 100%;
        margin: 12px 0;
        padding-left: 10px;
        padding-right: 10px;
    }
    .aod-video-slider {
        border-radius: 11px;
    }
    .aod-video-slide {
        border-radius: 11px;
    }
    .aod-video {
        height: 55px;
        border-radius: 11px;
    }
}

@media (max-width: 380px) {
    .aod-video-strip {
        margin: 10px 0;
        padding-left: 8px;
        padding-right: 8px;
    }
    .aod-video-slider {
        border-radius: 10px;
    }
    .aod-video-slide {
        border-radius: 10px;
    }
    .aod-video {
        height: 52px;
        border-radius: 10px;
    }
}

@media (min-width: 768px) {
    .aod-video-strip {
        max-width: 1200px;
        margin: 18px auto;
        padding-left: 20px;
        padding-right: 20px;
    }
    .aod-video-slider {
        border-radius: 14px;
    }
    .aod-video-slide {
        border-radius: 14px;
    }
    .aod-video {
        height: 55px;
        border-radius: 14px;
    }
}

/* =====================================================
HERO / BANNER SLIDER
===================================================== */
.hero-section {
    width: 100%;
    background: #fff;
    padding: 18px 0 8px;
}

.hero-section .carousel {
    width: calc(100% - 40px);
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 14px;
    position: relative;
}

.hero-slider-image {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: center;
}

.hero-section .carousel-control-prev,
.hero-section .carousel-control-next {
    width: 48px;
    height: 48px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    opacity: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    margin: 0 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.hero-section .carousel-control-prev-icon,
.hero-section .carousel-control-next-icon {
    width: 18px;
    height: 18px;
    filter: invert(1);
}

.hero-section .carousel-indicators {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -32px;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.hero-section .carousel-indicators button {
    width: 7px;
    height: 7px;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 50%;
    opacity: 1;
    background-color: #d4d4d4;
}

.hero-section .carousel-indicators button.active {
    background-color: #555;
}

@media (max-width: 992px) {
    .hero-section {
        padding-top: 12px;
    }
    .hero-section .carousel {
        width: calc(100% - 30px);
        border-radius: 12px;
    }
    .hero-slider-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 10px 0 38px;
    }
    .hero-section .carousel {
        width: calc(100% - 20px);
        border-radius: 13px;
    }
    .hero-slider-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1.72 / 1;
        object-fit: cover;
        object-position: center;
    }
    .hero-section .carousel-control-prev,
    .hero-section .carousel-control-next {
        width: 30px;
        height: 30px;
        margin: 0 7px;
        background: rgba(255, 255, 255, .95);
    }
    .hero-section .carousel-control-prev-icon,
    .hero-section .carousel-control-next-icon {
        width: 13px;
        height: 13px;
    }
    .hero-section .carousel-indicators {
        bottom: -26px;
        gap: 4px;
    }
    .hero-section .carousel-indicators button {
        width: 6px;
        height: 6px;
    }
}

@media (max-width: 380px) {
    .hero-section .carousel {
        width: calc(100% - 16px);
        border-radius: 11px;
    }
    .hero-slider-image {
        aspect-ratio: 1.65 / 1;
    }
}

/* =====================================================
SHOP BY FEATURED - MOBILE ONLY
===================================================== */
.fb-featured-section {
    display: none;
}

@media (max-width: 767px) {
    .fb-featured-section {
        display: block;
        width: 100%;
        background: #fff;
        padding: 18px 0 12px;
        overflow: hidden;
    }
    .fb-featured-container {
        width: 100%;
        padding: 0 14px;
        box-sizing: border-box;
    }
    .fb-featured-heading {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin: 0 0 12px;
    }
    .fb-featured-heading h2 {
        margin: 0;
        font-size: 18px;
        line-height: 1.25;
        font-weight: 800;
        text-align: center;
        letter-spacing: -0.2px;
    }
    .fb-featured-heading p {
        margin: 4px 0 0;
        font-size: 9px;
        line-height: 1.4;
        text-align: center;
    }
    .fb-featured-scroll {
        width: 100%;
        display: flex;
        align-items: stretch;
        gap: 10px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 3px 2px 8px;
        box-sizing: border-box;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .fb-featured-scroll::-webkit-scrollbar {
        display: none;
    }
    .fb-featured-card {
        position: relative;
        flex: 0 0 125px;
        width: 125px;
        min-width: 125px;
        min-height: 70px;
        box-sizing: border-box;
        padding: 12px 12px 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-decoration: none;
        background: linear-gradient(135deg, #fff8f8 0%, #ffffff 55%, #fbe7e9 100%);
        border: 1px solid #edc9cc;
        border-radius: 9px;
        overflow: hidden;
        box-shadow: 0 2px 7px rgba(90, 15, 22, .07);
        transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .fb-featured-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #5a0f16, #8f151d, #c51d27);
    }
    .fb-featured-card:active {
        transform: scale(.97);
    }
    .fb-featured-small {
        display: block;
        margin-bottom: 6px;
        font-size: 7px;
        line-height: 1;
        font-weight: 700;
        color: #9a6b70;
        text-transform: uppercase;
        letter-spacing: .5px;
    }
    .fb-featured-card strong {
        display: block;
        width: 100%;
        max-width: calc(100% - 20px);
        font-size: 11px;
        line-height: 1.3;
        font-weight: 800;
        color: #5a0f16;
        white-space: normal;
        overflow: visible;
        text-overflow: clip;
        overflow-wrap: normal;
        word-break: normal;
    }
    .fb-featured-arrow {
        position: absolute;
        right: 8px;
        bottom: 7px;
        width: 19px;
        height: 19px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #7d1018;
        color: #fff;
        font-size: 11px;
        line-height: 1;
        font-weight: 700;
        transition: background .2s ease, transform .2s ease;
    }
    .fb-featured-card:hover .fb-featured-arrow {
        background: #c51d27;
        transform: translateX(2px);
    }
}

@media (max-width: 380px) {
    .fb-featured-container {
        padding: 0 10px;
    }
    .fb-featured-card {
        flex: 0 0 112px;
        width: 112px;
        min-width: 112px;
        min-height: 65px;
        padding: 10px 10px 8px;
    }
    .fb-featured-card strong {
        font-size: 10px;
    }
}

/* =====================================================
COUPON SECTION - MOBILE ONLY
===================================================== */
.aod-coupon-section {
    display: none;
}

@media (max-width: 480px) {
    .aod-coupon-section {
        display: block;
        width: 100%;
        margin: 12px 0 14px;
        padding: 0 9px;
        box-sizing: border-box;
        overflow: hidden;
    }
    .aod-coupon-heading {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
        margin: 0 0 10px;
        padding: 0;
    }
    .aod-coupon-heading-content {
        display: block;
        width: 100%;
    }
    .aod-coupon-heading-content::before {
        content: "SPECIAL OFFERS";
        display: block;
        margin-bottom: 4px;
        font-size: 8px;
        line-height: 1;
        font-weight: 800;
        letter-spacing: 2.3px;
        color: #777;
    }
    .aod-coupon-heading h2 {
        margin: 0;
        font-size: 21px;
        line-height: 1.12;
        font-weight: 900;
        color: #111;
        letter-spacing: -.4px;
    }
    .aod-coupon-heading p {
        margin: 5px 0 0;
        font-size: 10px;
        line-height: 1.25;
        color: #777;
        font-weight: 400;
    }
    .aod-coupon-viewport {
        width: 100%;
        overflow: hidden;
        border-radius: 13px;
        box-sizing: border-box;
    }
    .aod-coupon-track {
        width: 100%;
        display: flex;
        transition: transform .55s ease-in-out;
    }
    .aod-coupon-slide {
        flex: 0 0 100%;
        width: 100%;
        padding: 2px;
        box-sizing: border-box;
    }
    .aod-coupon-card {
        position: relative;
        width: 100%;
        min-height: 116px;
        display: flex;
        align-items: stretch;
        overflow: hidden;
        border-radius: 13px;
        background: #fff;
        border: 1px solid #e5e5e5;
        box-shadow: 0 5px 16px rgba(0, 0, 0, .08);
        box-sizing: border-box;
    }
    .aod-coupon-offer {
        position: relative;
        width: 38%;
        min-width: 108px;
        min-height: 116px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 12px 8px;
        box-sizing: border-box;
        color: #fff;
        background: radial-gradient(circle at 85% 20%, rgba(255,255,255,.12) 0 2px, transparent 3px), radial-gradient(circle at 20% 90%, rgba(255,255,255,.08) 0 25px, transparent 26px), linear-gradient(135deg, var(--aod-red-1, #8f0715) 0%, var(--aod-red-2, #c8172b) 52%, var(--aod-red-3, #e32638) 100%);
        overflow: hidden;
    }
    .aod-coupon-offer::before {
        content: "";
        position: absolute;
        width: 90px;
        height: 90px;
        left: -45px;
        bottom: -45px;
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 50%;
        box-shadow: 0 0 0 12px rgba(255, 255, 255, .025), 0 0 0 24px rgba(255, 255, 255, .02);
    }
    .aod-coupon-offer::after {
        content: "";
        position: absolute;
        width: 65px;
        height: 65px;
        right: -35px;
        top: -35px;
        border: 1px solid rgba(255, 255, 255, .06);
        border-radius: 50%;
    }
    .aod-coupon-save {
        position: relative;
        z-index: 2;
        display: block;
        margin: 0 0 4px;
        font-size: 8px;
        line-height: 1;
        font-weight: 800;
        letter-spacing: 2px;
        color: rgba(255, 255, 255, .85);
    }
    .aod-coupon-discount {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 2px;
        margin: 0;
    }
    .aod-coupon-discount strong {
        font-size: 29px;
        line-height: .95;
        font-weight: 900;
        letter-spacing: -.8px;
        color: #fff;
    }
    .aod-coupon-discount span {
        font-size: 8px;
        line-height: 1;
        font-weight: 900;
        letter-spacing: 1.2px;
        color: #fff;
    }
    .aod-coupon-middle {
        position: relative;
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 12px 9px 12px 13px;
        box-sizing: border-box;
        border-left: 2px dashed #ddd;
        background: #fff;
    }
    .aod-coupon-middle::before {
        content: "";
        position: absolute;
        width: 17px;
        height: 17px;
        left: -10px;
        top: -9px;
        border-radius: 50%;
        background: #f7f8fa;
        border: 1px solid #e8e8e8;
    }
    .aod-coupon-middle::after {
        content: "";
        position: absolute;
        width: 17px;
        height: 17px;
        left: -10px;
        bottom: -9px;
        border-radius: 50%;
        background: #f7f8fa;
        border: 1px solid #e8e8e8;
    }
    .aod-coupon-category {
        display: flex;
        align-items: center;
        gap: 4px;
        width: 100%;
        min-width: 0;
        margin: 0 0 4px;
    }
    .aod-coupon-category i {
        flex: 0 0 auto;
        font-size: 8px;
        color: var(--aod-red-2, #c8172b);
    }
    .aod-coupon-category span {
        min-width: 0;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-size: 8px;
        line-height: 1.1;
        font-weight: 700;
        color: #777;
    }
    .fb-coupon-message {
        display: block;
        margin: 3px 0 5px;
        font-size: 8px;
        line-height: 1.2;
        color: #101010 !important;
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .aod-coupon-code-row {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 4px;
        margin: 0;
    }
    .aod-coupon-code-label {
        display: block;
        width: 100%;
        font-size: 7px;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 1.1px;
        color: #101010;
    }
    .aod-coupon-code {
        display: block;
        font-size: 17px;
        line-height: 1;
        font-weight: 900;
        letter-spacing: 1px;
        color: #111;
    }
    .aod-coupon-action {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
    }
    .aod-coupon-copy {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 1px solid #ddd;
        border-radius: 7px;
        background: #fff;
        color: #333;
        font-size: 0;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0, 0, 0, .04);
        transition: .2s ease;
    }
    .aod-coupon-copy::before {
        content: "\F290";
        font-family: "bootstrap-icons";
        font-size: 15px;
        line-height: 1;
    }
    .aod-coupon-copy:active {
        background: var(--aod-red-2, #c8172b);
        color: #fff;
        border-color: var(--aod-red-2, #c8172b);
        transform: scale(.95);
    }
}

@media (max-width: 400px) {
    .aod-coupon-section {
        padding: 0 8px;
        margin-top: 10px;
        margin-bottom: 12px;
    }
    .aod-coupon-heading {
        margin-bottom: 9px;
    }
    .aod-coupon-heading h2 {
        font-size: 20px;
    }
    .aod-coupon-heading p {
        font-size: 9px;
    }
    .aod-coupon-card {
        min-height: 110px;
    }
    .aod-coupon-offer {
        width: 37%;
        min-width: 101px;
        min-height: 110px;
    }
    .aod-coupon-discount strong {
        font-size: 27px;
    }
    .aod-coupon-middle {
        padding-left: 11px;
        padding-right: 7px;
    }
    .aod-coupon-code {
        font-size: 15px;
    }
    .aod-coupon-copy {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 360px) {
    .aod-coupon-section {
        padding: 0 7px;
    }
    .aod-coupon-heading-content::before {
        font-size: 7px;
        letter-spacing: 1.8px;
    }
    .aod-coupon-heading h2 {
        font-size: 18px;
    }
    .aod-coupon-heading p {
        font-size: 8px;
        margin-top: 4px;
    }
    .aod-coupon-card {
        min-height: 103px;
        border-radius: 11px;
    }
    .aod-coupon-offer {
        width: 36%;
        min-width: 91px;
        min-height: 103px;
        padding-left: 5px;
        padding-right: 5px;
    }
    .aod-coupon-save {
        font-size: 7px;
        letter-spacing: 1.6px;
    }
    .aod-coupon-discount strong {
        font-size: 24px;
    }
    .aod-coupon-discount span {
        font-size: 7px;
    }
    .aod-coupon-middle {
        padding: 9px 6px 9px 10px;
    }
    .aod-coupon-category span {
        font-size: 7px;
    }
    .aod-coupon-code-label {
        font-size: 6px;
    }
    .aod-coupon-code {
        font-size: 13px;
        letter-spacing: .7px;
    }
    .aod-coupon-action {
        right: 5px;
    }
    .aod-coupon-copy {
        width: 26px;
        height: 26px;
    }
    .aod-coupon-copy::before {
        font-size: 12px;
    }
}

/* =====================================================
FOOTER
===================================================== */
.fb-desktop-footer {
    width: 100%;
    background: #fff;
    color: #282c3f;
}

.fb-footer-main {
    border-top: 1px solid #eaeaec;
    background: #fafafa;
    padding: 50px 0 40px;
}

.fb-footer-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
    gap: 40px;
}

.fb-footer-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #282c3f;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.fb-footer-logo img {
    width: 55px;
    height: 50px;
    object-fit: contain;
}

.fb-footer-brand p {
    max-width: 260px;
    color: #696b79;
    font-size: 13px;
    line-height: 1.7;
    margin: 0 0 20px;
}

.fb-footer-column h4 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 20px;
    color: #282c3f;
}

.fb-footer-column>a {
    display: block;
    width: fit-content;
    color: #696b79;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 13px;
    transition: .2s ease;
}

.fb-footer-column>a:hover {
    color: #ff3f6c;
    transform: translateX(2px);
}

.fb-footer-social {
    display: flex;
    gap: 10px;
}

.fb-footer-social a {
    width: 34px;
    height: 34px;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #282c3f;
    text-decoration: none;
    transition: .2s ease;
}

.fb-footer-social a:hover {
    background: #282c3f;
    color: #fff;
}

.fb-footer-contact p {
    color: #696b79;
    font-size: 13px;
    margin: 0 0 14px;
}

.fb-footer-contact i {
    width: 20px;
    margin-right: 6px;
}

.fb-footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding: 18px 4%;
    color: #94969f;
    font-size: 12px;
    text-align: center;
}

@media (max-width: 1000px) {
    .fb-footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .fb-desktop-footer {
        display: none;
    }
}

/* =====================================================
MOBILE BOTTOM NAVIGATION
===================================================== */
.fb-mobile-bottom-nav {
    display: none;
}

.fb-mobile-footer-space {
    display: none;
}

@media (max-width: 768px) {
    .fb-mobile-bottom-nav {
        position: fixed;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: calc(100% - 24px);
        max-width: 520px;
        height: 68px;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        align-items: stretch;
        background: rgba(255, 255, 255, 0.97);
        border: 1px solid #dfe7e6;
        border-bottom: none;
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -4px 18px rgba(15, 61, 62, 0.10);
        z-index: 9998;
        overflow: hidden;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding-bottom: var(--fb-safe-bottom);
    }
    .fb-mobile-nav-item {
        position: relative;
        width: 100%;
        height: 68px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        border: none;
        border-right: 1px solid #e6eceb;
        background: transparent;
        text-decoration: none;
        color: #536463;
        cursor: pointer;
        transition: background .25s ease, color .25s ease, transform .2s ease;
        -webkit-tap-highlight-color: transparent;
    }
    .fb-mobile-nav-item:last-child {
        border-right: none;
    }
    .fb-mobile-nav-item>i {
        font-size: 20px;
        line-height: 1;
        color: #0f3d3e;
        transition: transform .2s ease;
    }
    .fb-mobile-nav-item span {
        font-size: 10px;
        line-height: 1;
        font-weight: 600;
        color: #687776;
        white-space: nowrap;
    }
    .fb-mobile-nav-item:active {
        transform: scale(.97);
    }
    .fb-mobile-price-nav strong {
        display: block;
        font-size: 20px;
        line-height: 1;
        font-weight: 900;
        letter-spacing: -.5px;
        color: #d15a1f;
    }
    .fb-mobile-price-nav span {
        font-size: 9px;
        color: #687776;
        font-weight: 600;
    }
    .fb-instagram-icon {
        width: 22px;
        height: 22px;
        display: block;
        flex-shrink: 0;
    }
    .fb-mobile-footer-space {
        display: block;
        height: 82px;
        width: 100%;
    }
}

@media (max-width: 420px) {
    .fb-mobile-bottom-nav {
        width: calc(100% - 16px);
        height: 64px;
        border-radius: 14px 14px 0 0;
    }
    .fb-mobile-nav-item {
        height: 64px;
        gap: 3px;
    }
    .fb-mobile-nav-item>i {
        font-size: 19px;
    }
    .fb-mobile-nav-item span {
        font-size: 9px;
    }
    .fb-mobile-price-nav strong {
        font-size: 19px;
    }
    .fb-mobile-price-nav span {
        font-size: 8px;
    }
    .fb-instagram-icon {
        width: 21px;
        height: 21px;
    }
    .fb-mobile-footer-space {
        height: 76px;
    }
}

@media (max-width: 350px) {
    .fb-mobile-bottom-nav {
        width: 100%;
        border-radius: 12px 12px 0 0;
    }
}

/* =====================================================
FLOATING ACTION BUTTONS
===================================================== */
.fb-floating-actions {
    position: fixed;
    right: 22px;
    bottom: 25px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fb-whatsapp-btn,
.fb-chatbot-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .18);
    transition: transform .2s ease, box-shadow .2s ease;
}

.fb-whatsapp-btn {
    background: #25D366;
    color: #fff;
}

.fb-whatsapp-btn i {
    font-size: 27px;
}

.fb-whatsapp-btn:hover {
    color: #fff;
    transform: scale(1.08);
}

.fb-chatbot-btn {
    background: #282c3f;
    color: #fff;
}

.fb-chatbot-btn i {
    font-size: 23px;
}

.fb-chatbot-btn:hover {
    color: #fff;
    transform: scale(1.08);
}

.fb-chatbot-box {
    position: fixed;
    right: 22px;
    bottom: 145px;
    width: 320px;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .20);
    z-index: 10001;
    display: none;
    border: 1px solid #eee;
}

.fb-chatbot-box.active {
    display: block;
}

.fb-chatbot-header {
    background: #282c3f;
    color: #fff;
    padding: 15px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fb-chatbot-header strong {
    display: block;
    font-size: 14px;
}

.fb-chatbot-header small {
    display: block;
    color: #b9f6ca;
    font-size: 11px;
    margin-top: 2px;
}

.fb-chatbot-header button {
    border: none;
    background: transparent;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
}

.fb-chatbot-body {
    padding: 16px;
}

.fb-chatbot-message {
    background: #f5f5f6;
    border-radius: 10px;
    padding: 11px 13px;
    color: #282c3f;
    font-size: 13px;
    margin-bottom: 13px;
}

.fb-chatbot-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fb-chatbot-options a {
    display: block;
    padding: 10px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 7px;
    text-decoration: none;
    color: #282c3f;
    font-size: 12px;
    transition: .2s ease;
}

.fb-chatbot-options a:hover {
    background: #f7f7f7;
}

@media (max-width: 768px) {
    .fb-floating-actions {
        right: 14px;
        bottom: 88px;
        gap: 9px;
    }
    .fb-whatsapp-btn,
    .fb-chatbot-btn {
        width: 45px;
        height: 45px;
    }
    .fb-whatsapp-btn i {
        font-size: 23px;
    }
    .fb-chatbot-btn i {
        font-size: 20px;
    }
    .fb-chatbot-box {
        left: 12px;
        right: 12px;
        bottom: 145px;
        width: auto;
        border-radius: 13px;
    }
}

/* =====================================================
PRODUCTS PAGE
===================================================== */
.fb-products-page {
    background: #fff;
    min-height: 70vh;
}

.fb-products-header {
    background: #fff;
    border-bottom: 1px solid #eeeeee;
}

.fb-products-header-inner {
    max-width: 1400px;
    margin: auto;
    padding: 28px 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.fb-products-small-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #777;
}

.fb-products-title h1 {
    margin: 5px 0 3px;
    font-size: 28px;
    font-weight: 700;
    color: #282c3f;
}

.fb-products-title p {
    margin: 0;
    color: #888;
    font-size: 13px;
}

.fb-sort-box {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.fb-sort-box label {
    font-size: 13px;
    color: #777;
}

.fb-sort-box select {
    min-width: 180px;
    height: 42px;
    padding: 0 35px 0 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    color: #282c3f;
    font-size: 13px;
    outline: none;
}

.fb-products-section {
    padding: 30px 0 70px;
}

.fb-products-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 35px;
}

.fb-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 35px 20px;
}

.fb-product-card {
    min-width: 0;
    position: relative;
    background: #fff;
}

.fb-product-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 0.78;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
}

.fb-product-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.fb-product-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .4s ease;
}

.fb-product-card:hover .fb-product-image {
    transform: scale(1.025);
}

.fb-wishlist-btn {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #282c3f;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
    cursor: pointer;
}

.fb-wishlist-btn:hover {
    color: #ff3f6c;
}

.fb-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 8px;
    border-radius: 3px;
    background: #282c3f;
    color: #fff;
    font-size: 9px;
    font-weight: 700;
}

.fb-product-info {
    padding: 11px 3px 0;
}

.fb-product-brand {
    color: #282c3f;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.fb-product-name {
    margin: 4px 0 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.fb-product-name a {
    color: #686b75;
    text-decoration: none;
}

.fb-product-type {
    color: #94969f;
    font-size: 13px;
    margin-top: 2px;
}

.fb-product-price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.fb-product-price {
    color: #282c3f;
    font-size: 16px;
    font-weight: 700;
}

.fb-product-mrp {
    color: #94969f;
    font-size: 13px;
    text-decoration: line-through;
}

.fb-product-discount {
    color: #ff905a;
    font-size: 12px;
    font-weight: 600;
}

.fb-best-price {
    margin-top: 7px;
    font-size: 13px;
    color: #282c3f;
}

.fb-best-price strong {
    color: #03a685;
    font-weight: 700;
}

.fb-buy-now-btn {
    width: 100%;
    margin-top: 13px;
    height: 42px;
    border: 1px solid #ff3f6c;
    background: #ff3f6c;
    color: #fff;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    transition: .2s ease;
}

.fb-buy-now-btn:hover {
    background: #e93660;
    border-color: #e93660;
}

.fb-products-empty {
    padding: 100px 20px;
    text-align: center;
}

.fb-products-empty i {
    font-size: 55px;
    color: #bbb;
}

.fb-products-empty h3 {
    margin-top: 15px;
    color: #282c3f;
}

.fb-products-empty p {
    color: #777;
}

.fb-empty-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: #ff3f6c;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

@media (max-width: 1100px) {
    .fb-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .fb-products-header-inner {
        padding: 15px 12px;
        flex-direction: column;
        align-items: flex-start;
    }
    .fb-products-title h1 {
        font-size: 20px;
    }
    .fb-products-title p {
        font-size: 11px;
    }
    .fb-sort-box {
        width: 100%;
        justify-content: space-between;
    }
    .fb-sort-box label {
        display: none;
    }
    .fb-sort-box select {
        min-width: 125px;
        height: 38px;
        font-size: 11px;
        flex: 1;
    }
    .fb-products-section {
        padding: 12px 0 80px;
    }
    .fb-products-container {
        padding: 0 10px;
    }
    .fb-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 10px;
    }
    .fb-product-image-wrap {
        aspect-ratio: .76;
        border-radius: 8px;
    }
    .fb-product-info {
        padding: 8px 2px 0;
    }
    .fb-product-brand {
        font-size: 15px;
    }
    .fb-product-name {
        font-size: 12px;
    }
    .fb-product-type {
        font-size: 11px;
    }
    .fb-product-price-row {
        gap: 4px;
    }
    .fb-product-price {
        font-size: 14px;
    }
    .fb-product-mrp {
        font-size: 11px;
    }
    .fb-product-discount {
        font-size: 10px;
    }
    .fb-best-price {
        font-size: 11px;
    }
    .fb-wishlist-btn {
        width: 34px;
        height: 34px;
        right: 7px;
        bottom: 7px;
        font-size: 18px;
    }
    .fb-product-badge {
        top: 8px;
        left: 8px;
        font-size: 8px;
    }
    .fb-buy-now-btn {
        height: 40px;
        font-size: 11px;
        margin-top: 9px;
    }
}

/* =====================================================
CART PAGE
===================================================== */
.fb-cart-page {
    background: #fff;
    min-height: 70vh;
    padding: 35px 0 90px;
}

.fb-cart-container {
    max-width: 1250px;
    margin: auto;
    padding: 0 25px;
}

.fb-cart-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.fb-cart-heading span {
    font-size: 11px;
    color: #777;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.fb-cart-heading h1 {
    margin: 5px 0 0;
    font-size: 30px;
    color: #282c3f;
}

.fb-cart-count {
    font-size: 13px;
    color: #777;
}

.fb-cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 350px;
    gap: 30px;
}

.fb-cart-item {
    display: grid;
    grid-template-columns: 145px minmax(0, 1fr) 100px;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.fb-cart-image {
    display: block;
    height: 180px;
    border-radius: 6px;
    overflow: hidden;
    background: #f5f5f5;
}

.fb-cart-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fb-cart-brand {
    font-size: 13px;
    font-weight: 700;
    color: #282c3f;
}

.fb-cart-item-info h2 {
    margin: 5px 0;
    font-size: 17px;
    color: #282c3f;
}

.fb-cart-item-info p {
    margin: 0;
    color: #888;
    font-size: 13px;
}

.fb-cart-price {
    margin-top: 12px;
    font-size: 17px;
    font-weight: 700;
    color: #282c3f;
}

.fb-cart-qty {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.fb-cart-qty>span {
    color: #777;
    font-size: 12px;
}

.fb-cart-qty>div {
    display: flex;
    border: 1px solid #ddd;
    height: 34px;
}

.fb-cart-qty button {
    width: 32px;
    border: 0;
    background: #f7f7f7;
    cursor: pointer;
}

.fb-cart-qty input {
    width: 40px;
    border: 0;
    text-align: center;
    outline: none;
}

.fb-remove-cart {
    display: inline-block;
    margin-top: 14px;
    color: #ff3f6c;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}

.fb-cart-subtotal {
    text-align: right;
    font-size: 16px;
    font-weight: 700;
    color: #282c3f;
}

.fb-update-cart {
    margin-top: 20px;
    height: 42px;
    padding: 0 22px;
    background: #fff;
    border: 1px solid #282c3f;
    color: #282c3f;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.fb-cart-summary {
    border: 1px solid #eee;
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 90px;
}

.fb-cart-summary h2 {
    margin: 0 0 22px;
    font-size: 18px;
    color: #282c3f;
}

.fb-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 14px;
    font-size: 13px;
    color: #666;
}

.fb-summary-row strong {
    color: #282c3f;
}

.fb-summary-total {
    border-top: 1px solid #eee;
    padding-top: 18px;
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    color: #282c3f;
}

.fb-summary-total strong {
    font-size: 18px;
}

.fb-checkout-btn {
    width: 100%;
    margin-top: 22px;
    height: 48px;
    background: #25D366;
    color: #fff;
    border: 0;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.fb-checkout-btn i {
    margin-left: 8px;
    font-size: 17px;
}

.fb-cart-note {
    margin: 12px 0 0;
    font-size: 10px;
    color: #999;
    text-align: center;
}

.fb-empty-cart {
    text-align: center;
    padding: 100px 20px;
}

.fb-empty-cart>i {
    font-size: 65px;
    color: #ccc;
}

.fb-empty-cart h2 {
    margin-top: 15px;
    color: #282c3f;
}

.fb-empty-cart p {
    color: #888;
}

.fb-empty-cart-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 13px 25px;
    background: #ff3f6c;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
}

@media (max-width: 767px) {
    .fb-cart-page {
        padding: 20px 0 100px;
    }
    .fb-cart-container {
        padding: 0 12px;
    }
    .fb-cart-heading {
        padding-bottom: 14px;
        margin-bottom: 10px;
    }
    .fb-cart-heading h1 {
        font-size: 22px;
    }
    .fb-cart-layout {
        display: block;
    }
    .fb-cart-item {
        grid-template-columns: 105px minmax(0, 1fr);
        gap: 12px;
        padding: 15px 0;
    }
    .fb-cart-image {
        height: 135px;
    }
    .fb-cart-brand {
        font-size: 11px;
    }
    .fb-cart-item-info h2 {
        font-size: 14px;
    }
    .fb-cart-item-info p {
        font-size: 11px;
    }
    .fb-cart-price {
        font-size: 14px;
        margin-top: 7px;
    }
    .fb-cart-qty {
        margin-top: 9px;
        gap: 7px;
    }
    .fb-cart-subtotal {
        display: none;
    }
    .fb-cart-summary {
        position: static;
        margin-top: 25px;
        padding: 18px;
    }
    .fb-update-cart {
        width: 100%;
    }
}

/* =====================================================
COUPON BOX
===================================================== */
.fb-coupon-box {
    margin: 20px 0;
    padding: 16px;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
}

.fb-coupon-box label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.fb-coupon-input-row {
    display: flex;
    width: 100%;
    gap: 8px;
}

.fb-coupon-input-row input {
    flex: 1;
    min-width: 0;
    height: 44px;
    padding: 0 12px;
    border: 1px solid #d8d8d8;
    border-radius: 7px;
    outline: none;
    background: #fff;
    color: #222;
    font-size: 14px;
    transition: .2s ease;
}

.fb-coupon-input-row input:focus {
    border-color: #111;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .05);
}

.fb-coupon-input-row input::placeholder {
    color: #999;
}

.fb-coupon-input-row button {
    height: 44px;
    padding: 0 18px;
    border: none;
    border-radius: 7px;
    background: radial-gradient( circle at top left, rgba(180, 17, 33, .25), transparent 45% ),              radial-gradient( circle at bottom right, rgba(40, 5, 9, .40), transparent 50% ),              #6b0b14;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    transition: .2s ease;
}

.fb-coupon-input-row button:hover {
    background: #333;
}

.fb-coupon-input-row button:disabled {
    opacity: .6;
    cursor: not-allowed;
}

.fb-coupon-message {
    min-height: 18px;
    margin-top: 9px;
    font-size: 12px;
    line-height: 1.5;
}

.fb-coupon-message.success {
    color: #18864b;
    font-weight: 600;
}

.fb-coupon-message.error {
    color: #d93025;
    font-weight: 600;
}

#couponDiscountRow {
    padding: 8px 0;
    margin-top: 3px;
}

#couponDiscountRow span {
    color: #18864b;
    font-weight: 500;
}

#couponDiscountRow strong {
    color: #18864b;
    font-weight: 700;
}

@media (max-width: 600px) {
    .fb-coupon-box {
        padding: 13px;
        margin: 15px 0;
    }
    .fb-coupon-input-row {
        gap: 6px;
    }
    .fb-coupon-input-row input {
        height: 42px;
        font-size: 13px;
    }
    .fb-coupon-input-row button {
        height: 42px;
        padding: 0 14px;
        font-size: 11px;
    }
    .fb-coupon-message {
        font-size: 11px;
    }
}

/* =====================================================
CHECKOUT MODAL
===================================================== */
.fb-checkout-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
}

.fb-checkout-modal.show {
    display: block;
}

.fb-checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
}

.fb-checkout-box {
    position: absolute;
    width: 450px;
    max-width: calc(100% - 30px);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 10px;
    padding: 28px;
}

.fb-checkout-close {
    position: absolute;
    right: 18px;
    top: 18px;
    border: 0;
    background: none;
    cursor: pointer;
}

.fb-checkout-header {
    display: flex;
    gap: 14px;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.fb-checkout-header>i {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 23px;
}

.fb-checkout-header h2 {
    margin: 0;
    font-size: 20px;
}

.fb-checkout-header p {
    margin: 3px 0 0;
    color: #888;
    font-size: 12px;
}

.fb-checkout-form {
    padding-top: 20px;
}

.fb-form-group {
    margin-bottom: 16px;
}

.fb-form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 600;
    color: #282c3f;
}

.fb-form-group input,
.fb-form-group textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 12px;
    outline: none;
    font-family: inherit;
    font-size: 13px;
    resize: vertical;
}

.fb-form-group input:focus,
.fb-form-group textarea:focus {
    border-color: #282c3f;
}

.fb-whatsapp-order-btn {
    width: 100%;
    height: 48px;
    background: #25D366;
    color: #fff;
    border: 0;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.fb-whatsapp-order-btn i {
    margin-left: 7px;
}

@media (max-width: 767px) {
    .fb-checkout-box {
        width: 100%;
        max-width: none;
        bottom: 0;
        top: auto;
        left: 0;
        transform: none;
        border-radius: 16px 16px 0 0;
        padding: 22px 18px;
    }
}

/* =====================================================
QUANTITY MODAL
===================================================== */
.fb-qty-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}

.fb-qty-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fb-qty-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    backdrop-filter: blur(4px);
}

.fb-qty-box {
    position: relative;
    z-index: 2;
    width: min(440px, calc(100% - 30px));
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .25);
    animation: fbModalIn .25s ease;
}

@keyframes fbModalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fb-qty-close {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    background: #f4f4f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.fb-qty-product {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 25px;
    margin-bottom: 25px;
}

.fb-qty-product img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 12px;
    background: #f5f5f5;
}

.fb-qty-product span {
    display: block;
    font-size: 9px;
    color: #888;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 4px;
}

.fb-qty-product h3 {
    font-size: 15px;
    margin: 0 0 6px;
    font-weight: 700;
}

.fb-qty-product strong {
    font-size: 16px;
}

.fb-quantity-area label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.fb-quantity-control {
    display: flex;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.fb-quantity-control button {
    width: 50px;
    border: 0;
    background: #f6f6f6;
    font-size: 21px;
    cursor: pointer;
}

.fb-quantity-control input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: none;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
}

.fb-add-cart-btn {
    width: 100%;
    height: 50px;
    border: 0;
    border-radius: 11px;
    background: radial-gradient( circle at top left, rgba(180, 17, 33, .25), transparent 45% ),              radial-gradient( circle at bottom right, rgba(40, 5, 9, .40), transparent 50% ),              #6b0b14;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    cursor: pointer;
}

.fb-add-cart-btn:hover {
    background: #2a2a2a;
}

body.fb-modal-open {
    overflow: hidden;
}

@media (max-width: 575px) {
    .fb-qty-box {
        width: calc(100% - 20px);
        padding: 18px;
        border-radius: 17px;
    }
    .fb-qty-product img {
        width: 65px;
        height: 65px;
    }
    .fb-qty-product h3 {
        font-size: 13px;
    }
}

/* =====================================================
PRODUCT DETAILS PAGE
===================================================== */
.fb-product-breadcrumb {
    background: #fff;
    border-bottom: 1px solid #eeeeee;
    padding: 12px 0;
}

.fb-product-breadcrumb .breadcrumb {
    margin: 0;
    font-size: 12px;
    align-items: center;
}

.fb-product-breadcrumb .breadcrumb-item a {
    color: #555;
    text-decoration: none;
}

.fb-product-breadcrumb .breadcrumb-item.active {
    color: #999;
}

.fb-product-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #101010;
}

.product-details-page .fb-product-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 55px;
    align-items: start;
}

.fb-gallery {
    position: sticky;
    top: 20px;
}

.fb-main-image-box {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eeeeee;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}

.fb-main-image-box img {
    width: 100%;
    height: 100% !important;
    object-fit: contain !important;
    padding: 28px;
    display: block;
    transition: transform .35s ease;
}

.fb-main-image-box:hover img {
    transform: scale(1.025);
}

.fb-gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 1px solid #e5e5e5;
    background: rgba(255, 255, 255, .95);
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    transition: .2s ease;
    cursor: pointer;
}

.fb-gallery-arrow:hover {
    background: radial-gradient( circle at top left, rgba(180, 17, 33, .25), transparent 45% ),              radial-gradient( circle at bottom right, rgba(40, 5, 9, .40), transparent 50% ),              #6b0b14;
    color: #fff;
}

.fb-gallery-arrow.left {
    left: 15px;
}

.fb-gallery-arrow.right {
    right: 15px;
}

.fb-image-count {
    position: absolute;
    right: 15px;
    top: 15px;
    background: rgba(17, 17, 17, .85);
    color: #fff;
    padding: 7px 11px;
    border-radius: 20px;
    font-size: 11px;
    z-index: 5;
}

.fb-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.fb-thumbnails::-webkit-scrollbar {
    display: none;
}

.fb-thumbnail {
    flex: 0 0 78px;
    height: 78px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    padding: 4px;
    cursor: pointer;
    transition: .2s ease;
}

.fb-thumbnail.active {
    border: 2px solid #111;
}

.fb-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.fb-product-details-info {
    padding-top: 5px;
}

.fb-category-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    background: #f0f0f0;
    color: #444;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 14px;
}

.fb-product-title {
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -.7px;
    color: #111;
    margin: 0 0 12px;
}

.fb-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 17px;
}

.fb-rating i {
    color: #f4ad24;
    font-size: 14px;
}

.fb-rating span {
    color: #777;
    font-size: 12px;
    margin-left: 7px;
}

.fb-product-price-large {
    font-size: 29px;
    line-height: 1;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
}

.fb-product-meta {
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    padding: 5px 0;
    margin-bottom: 22px;
}

.fb-meta-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
}

.fb-meta-row:last-child {
    border-bottom: 0;
}

.fb-meta-label {
    color: #777;
}

.fb-meta-value {
    color: #222;
    font-weight: 600;
    text-align: right;
}

.fb-stock {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    background: #f1faf3;
    color: #218838;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 600;
}

.fb-stock-dot {
    width: 7px;
    height: 7px;
    background: #27ae60;
    border-radius: 50%;
}

.fb-description {
    margin: 24px 0;
}

.fb-description-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.fb-description-text {
    color: #666;
    font-size: 13px;
    line-height: 1.7;
    margin: 0;
}

.fb-related-section {
    padding: 55px 0 70px;
}

.fb-related-title {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 22px;
}

.fb-related-card {
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: .25s ease;
}

.fb-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.fb-related-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f7f7f7;
    overflow: hidden;
}

.fb-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.fb-related-card:hover .fb-related-image img {
    transform: scale(1.04);
}

.fb-related-body {
    padding: 15px;
}

.fb-related-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px;
}

.fb-related-name a {
    color: #222;
    text-decoration: none;
}

.fb-related-price {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 13px;
}

.fb-related-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    border-radius: 9px;
    background: radial-gradient( circle at top left, rgba(180, 17, 33, .25), transparent 45% ),              radial-gradient( circle at bottom right, rgba(40, 5, 9, .40), transparent 50% ),              #6b0b14;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
}

.fb-related-button:hover {
    background: #333;
    color: #fff;
}

@media (max-width: 991px) {
    .product-details-page .fb-product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .fb-gallery {
        position: relative;
        top: auto;
    }
    .fb-main-image-box {
        border-radius: 15px;
    }
    .fb-main-image-box img {
        padding: 15px;
    }
    .fb-product-details-info {
        padding-top: 0;
    }
    .fb-product-title {
        font-size: 25px;
    }
    .fb-product-price-large {
        font-size: 25px;
    }
}

@media (max-width: 575px) {
    .fb-product-breadcrumb {
        padding: 9px 0;
    }
    .fb-product-breadcrumb .breadcrumb {
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
    }
    .product-details-page {
        padding: 12px 0 35px;
    }
    .product-details-page .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .product-details-page .fb-product-grid {
        gap: 20px;
    }
    .fb-main-image-box {
        aspect-ratio: 1 / 1.08;
        border-radius: 13px;
        box-shadow: 0 5px 18px rgba(0, 0, 0, .06);
    }
    .fb-main-image-box img {
        padding: 8px;
    }
    .fb-gallery-arrow {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
    .fb-gallery-arrow.left {
        left: 8px;
    }
    .fb-gallery-arrow.right {
        right: 8px;
    }
    .fb-image-count {
        top: 9px;
        right: 9px;
        font-size: 9px;
        padding: 5px 8px;
    }
    .fb-thumbnail {
        flex-basis: 62px;
        height: 62px;
        border-radius: 9px;
    }
    .fb-thumbnails {
        gap: 7px;
        margin-top: 9px;
    }
    .fb-category-badge {
        font-size: 9px;
        padding: 5px 9px;
        margin-bottom: 9px;
    }
    .fb-product-title {
        font-size: 21px;
        line-height: 1.2;
        margin-bottom: 8px;
    }
    .fb-rating {
        margin-bottom: 12px;
    }
    .fb-product-price-large {
        font-size: 23px;
        margin-bottom: 16px;
    }
    .fb-meta-row {
        padding: 10px 0;
        font-size: 11px;
    }
    .fb-description {
        margin: 18px 0;
    }
    .fb-description-title {
        font-size: 14px;
    }
    .fb-description-text {
        font-size: 12px;
        line-height: 1.65;
    }
    .fb-buy-now-btn {
        min-height: 50px;
        border-radius: 10px;
        font-size: 11px;
    }
    .fb-related-section {
        padding: 30px 0 45px;
    }
    .fb-related-title {
        font-size: 19px;
        margin-bottom: 15px;
    }
    .fb-related-body {
        padding: 11px;
    }
    .fb-related-name {
        font-size: 12px;
    }
    .fb-related-price {
        font-size: 14px;
    }
    .fb-related-button {
        height: 36px;
        font-size: 10px;
    }
}

/* =====================================================
RESPONSIVE FIXES FOR ALL SCREENS
===================================================== */
@media (min-width: 769px) and (max-width: 1024px) {
    .fb-category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
    }
    .fb-footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .fb-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 25px 15px;
    }
}

@media (min-width: 1025px) and (max-width: 1200px) {
    .fb-category-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 25px;
    }
    .fb-product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 30px 18px;
    }
}

/* =====================================================
UTILITY - HIDE SCROLLBARS
===================================================== */
.hide-scrollbar {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}