:root {
    --canvas: #faf6f0;
    --canvas-subtle: #f4ede2;
    --surface: #ffffff;
    --surface-tint: #fcfbf9;
    --border: #e8ded1;
    --border-light: #f0e8dc;
    --border-focus: #334c1c;
    --primary: #334c1c;
    --primary-hover: #263a14;
    --primary-light: #eef3e8;
    --gold: #af7b32;
    --gold-light: #fbf4ea;
    --text: #1f1913;
    --text-muted: #6e6255;
    --text-light: #9a8d7f;
    --danger: #c53030;
    --status-green: #2e7d32;
    --status-green-bg: #eaf4eb;
    --status-amber: #b06000;
    --status-amber-bg: #fef7e0;
    --status-purple: #7b1fa2;
    --status-purple-bg: #f3e8fd;
    --status-gray: #5f6368;
    --status-gray-bg: #f1f3f4;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    --container: 1240px;
    --radius-sm: 4px;
    --radius: 6px;
    --radius-lg: 10px;
    --shadow-sm: 0 1px 3px rgba(31, 25, 19, 0.04);
    --shadow: 0 4px 16px rgba(31, 25, 19, 0.06);
    --transition: all 0.2s ease;
}

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

html, body {
    overflow-x: clip;
    max-width: 100vw;
}

.site-shell,
main {
    max-width: 100%;
    overflow-x: clip;
}

body {
    background-color: var(--canvas);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------------- TOPBAR ---------------- */
.topbar {
    background: #fbf7f2;
    border-bottom: 1px solid var(--border-light);
    font-size: 12px;
    color: var(--text-muted);
    padding: 7px 0;
    letter-spacing: 0.02em;
}
.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar__center {
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
}
.topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
}
.topbar__link:hover {
    color: var(--primary);
}

/* ---------------- HEADER ---------------- */
.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.brand-logo,
.mandar-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    line-height: 1;
    position: relative;
    user-select: none;
    transition: var(--transition);
}
.brand-logo:hover,
.mandar-logo:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}
.mandar-logo__wordmark {
    display: inline-flex;
    align-items: baseline;
    line-height: 1;
}
.mandar-logo__en {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--primary);
    text-transform: uppercase;
}
.mandar-logo__hi {
    font-family: 'Rozha One', 'Noto Serif Devanagari', 'Martel', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--gold);
    margin-left: 2px;
    line-height: 1;
}
.mandar-logo__tagline {
    font-family: var(--font-sans);
    font-size: 8.5px;
    font-weight: 700;
    letter-spacing: 0.28em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 3px;
}
.site-footer .mandar-logo__en {
    color: var(--text);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}
.site-nav__link {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}
.site-nav__link:hover,
.site-nav__link.is-active {
    color: var(--primary);
}
.site-nav__link.is-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}
.header-icon-btn {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4px;
    transition: var(--transition);
}
.header-icon-btn:hover {
    color: var(--primary);
}
.cart-badge {
    position: absolute;
    top: -2px;
    right: -4px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ---------------- LUXURY SEARCH PANEL ---------------- */
.header-search-toggle.is-active {
    color: var(--gold);
}

.header-search-panel {
    background: #fdfbf7;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid rgba(175, 123, 50, 0.25);
    box-shadow: 0 16px 36px rgba(31, 25, 19, 0.09);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    padding: 22px 0 20px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.25s;
    pointer-events: none;
}

.header-search-panel.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.header-search-box {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 780px;
    margin: 0 auto;
}

.header-search-input-wrap {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid rgba(175, 123, 50, 0.35);
    border-radius: 999px;
    padding: 5px 6px 5px 18px;
    box-shadow: 0 2px 8px rgba(31, 25, 19, 0.04);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.header-search-input-wrap:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(51, 76, 28, 0.12);
}

.header-search-icon {
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    flex-shrink: 0;
}

.header-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--text);
    padding: 8px 4px;
}

.header-search-input::placeholder {
    color: var(--text-light);
    font-style: normal;
}

.header-search-clear {
    color: var(--text-light);
    font-size: 14px;
    padding: 4px 8px;
    margin-right: 4px;
    text-decoration: none;
    transition: color 0.15s;
}

.header-search-clear:hover {
    color: var(--danger);
}

.header-search-btn {
    background: var(--primary);
    color: #ffffff;
    border: none;
    outline: none;
    padding: 9px 22px;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 2px 6px rgba(51, 76, 28, 0.2);
}

.header-search-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(51, 76, 28, 0.3);
}

.header-search-close {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.header-search-close:hover {
    background: rgba(31, 25, 19, 0.05);
    color: var(--danger);
    border-color: var(--border-focus);
    transform: scale(1.08);
}

.header-search-suggestions {
    max-width: 780px;
    margin: 12px auto 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    padding-left: 12px;
}

.suggestion-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-right: 4px;
}

.suggestion-pill {
    font-size: 11.5px;
    color: var(--text);
    background: rgba(175, 123, 50, 0.09);
    border: 1px solid rgba(175, 123, 50, 0.2);
    padding: 3px 12px;
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.18s ease;
}

.suggestion-pill:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    transform: translateY(-1px);
}

/* ---------------- FLOATING WHATSAPP ---------------- */
.floating-whatsapp {
    position: fixed;
    right: 0;
    top: 45%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid var(--border);
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: -2px 4px 16px rgba(0,0,0,0.08);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
}
.floating-whatsapp:hover {
    background: #fdfaf6;
    padding-left: 14px;
}
.floating-whatsapp span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text);
}

/* ---------------- BREADCRUMBS ---------------- */
.breadcrumbs-bar {
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    font-size: 12px;
    color: var(--text-muted);
}
.breadcrumbs-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
}
.breadcrumbs a {
    color: var(--text-muted);
}
.breadcrumbs a:hover {
    color: var(--primary);
}
.breadcrumbs span.current {
    color: var(--text);
    font-weight: 500;
}
.sort-select {
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text);
    cursor: pointer;
}

/* ---------------- HERO SECTIONS ---------------- */
.editorial-hero {
    background: #fcf9f5;
    padding: 56px 0 64px;
    position: relative;
    overflow: hidden;
}
.editorial-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    gap: 48px;
}
.editorial-hero__content {
    max-width: 520px;
}
.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 14px;
    position: relative;
}
.eyebrow--line::after {
    content: '';
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--gold);
    margin-top: 8px;
}
.display-title {
    font-family: var(--font-serif);
    font-size: clamp(38px, 4.4vw, 54px);
    font-weight: 400;
    line-height: 1.12;
    color: var(--text);
    margin-bottom: 20px;
}
.display-title em {
    font-style: italic;
    font-family: var(--font-serif);
}
.hero-lead {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}
.editorial-hero__media {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.editorial-hero__img {
    width: 100%;
    max-width: 560px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* ---------------- BUTTONS ---------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}
.btn--primary {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}
.btn--primary:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
}
.btn--outline {
    background: transparent;
    color: var(--text);
    border-color: #3b3228;
}
.btn--outline:hover {
    background: rgba(51, 76, 28, 0.05);
    border-color: var(--primary);
    color: var(--primary);
}
.btn--full {
    width: 100%;
}
.btn--sm {
    padding: 8px 16px;
    font-size: 11px;
}

/* ---------------- TRUST STRIP (4 & 5 ITEMS) ---------------- */
.trust-strip {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 28px 0;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.trust-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}
.trust-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 2px;
}
.trust-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Stats 5-item strip */
.stats-strip {
    background: #fbf7f1;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 32px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    text-align: center;
}
.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.stat-icon {
    width: 36px;
    height: 36px;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.stat-number {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 600;
    color: var(--text);
}
.stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

/* ---------------- SECTION HEADINGS ---------------- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 44px;
}
.section-title {
    font-family: var(--font-serif);
    font-size: 34px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 1.5px;
    background: var(--gold);
}
.section-subtitle {
    font-size: 14px;
    color: var(--text-muted);
}

/* ---------------- CATEGORY GRID (HOMEPAGE) ---------------- */
.categories-section {
    padding: 64px 0;
}
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.category-card {
    background: var(--surface);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}
.category-card__img-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f0e9df;
}
.category-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.category-card:hover .category-card__img {
    transform: scale(1.04);
}
.category-card__body {
    padding: 16px 12px;
}
.category-card__title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 4px;
}
.category-card__link {
    font-size: 12px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.category-card:hover .category-card__link {
    color: var(--primary);
}

/* ---------------- OUR STORY SECTION (HOMEPAGE) ---------------- */
.story-banner-section {
    background: #f5eee4;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.story-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    align-items: center;
}
.story-banner-content {
    padding: 64px 48px 64px 0;
}
.story-banner-media {
    height: 100%;
    min-height: 380px;
}
.story-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---------------- PRODUCT GRID & CARDS ---------------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.product-card {
    background: transparent;
    transition: var(--transition);
    position: relative;
}
.product-card__media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #eae2d6;
    margin-bottom: 12px;
}
.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-card__img {
    transform: scale(1.03);
}
.product-card__wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a3e31;
    cursor: pointer;
    transition: var(--transition);
}
.product-card__wishlist:hover {
    background: #ffffff;
    color: var(--danger);
}
.product-card__title {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
}
.product-card__price {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}
.product-swatches {
    display: flex;
    gap: 6px;
}
.swatch-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(0,0,0,0.1);
}

/* ---------------- BREADCRUMBS & SHOP ACTION BAR ---------------- */
.shop-hero-banner {
    background: #fbf7f0;
    border-bottom: 1px solid var(--border-light);
    padding: 32px 0;
}

.breadcrumbs-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    padding: 14px 0;
    position: relative;
    z-index: 10;
}

.breadcrumbs-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-muted);
    transition: color 0.2s ease;
    text-decoration: none;
}

.breadcrumbs a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.breadcrumbs span {
    color: #a89d8f;
    user-select: none;
}

.breadcrumbs .current {
    color: var(--text);
    font-weight: 600;
}

.shop-bar-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.shop-products-count {
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
}

.shop-products-count strong {
    color: var(--text);
    font-weight: 700;
}

.shop-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile filter button hidden on desktop */
.mobile-filter-toggle-btn {
    display: none;
    align-items: center;
    gap: 8px;
    height: 38px;
    padding: 0 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--text);
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(31, 25, 19, 0.04);
}

.mobile-filter-toggle-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #faf7f2;
}

.filter-count-badge {
    color: var(--gold);
    font-size: 10px;
    line-height: 1;
}

.sort-select-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.sort-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #ffffff url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%234a3e31' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l4 4 4-4'/%3E%3C/svg%3E") no-repeat right 12px center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 36px 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    min-width: 140px;
    height: 38px;
}

.sort-select:hover {
    border-color: #bfaea0;
}

.sort-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(51, 76, 28, 0.12);
}

.filter-sidebar-header {
    display: none;
}

.filter-backdrop {
    display: none;
}

/* ---------------- SHOP PAGE LAYOUT ---------------- */
.shop-page-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 36px;
    padding: 36px 0 64px;
}
.filter-sidebar {
    border-right: 1px solid var(--border-light);
    padding-right: 24px;
}

/* ---------------- SHOP PAGE RESPONSIVENESS ---------------- */
@media (max-width: 860px) {
    .shop-hero-banner {
        padding: 24px 0;
    }
    .shop-hero-banner .container {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .shop-hero-banner .container > div:last-child {
        display: none !important;
    }

    .breadcrumbs-bar {
        padding: 12px 0 10px;
    }

    .breadcrumbs-bar__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .breadcrumbs {
        font-size: 12px;
        padding-bottom: 2px;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }
    .breadcrumbs::-webkit-scrollbar {
        display: none;
    }

    .shop-bar-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 12px;
        padding-top: 10px;
        border-top: 1px solid var(--border-light);
    }

    .shop-products-count {
        font-size: 12px;
    }

    .shop-controls {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .mobile-filter-toggle-btn {
        display: inline-flex;
        height: 36px;
        padding: 0 14px;
        font-size: 12px;
    }

    .sort-select {
        height: 36px;
        padding: 6px 30px 6px 12px;
        font-size: 12px;
        min-width: 120px;
    }

    /* Mobile drawer for filter sidebar */
    .shop-page-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px 0 48px;
    }

    .filter-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        background: #ffffff;
        z-index: 1000;
        padding: 24px 20px;
        overflow-y: auto;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        border-right: none;
    }

    .filter-sidebar.is-open {
        transform: translateX(0);
    }

    .filter-sidebar-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--border-light);
        margin-bottom: 16px;
    }

    .filter-sidebar-close {
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        padding: 4px 8px;
        color: var(--text);
        line-height: 1;
    }

    .filter-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        backdrop-filter: blur(2px);
    }

    .filter-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }
}
.filter-group {
    border-bottom: 1px solid var(--border-light);
    padding: 18px 0;
}
.filter-group__title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 14px;
}
.filter-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
}
.filter-label input[type="radio"],
.filter-label input[type="checkbox"] {
    accent-color: var(--primary);
}
.filter-label:hover {
    color: var(--primary);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}
.pagination-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}
.pagination-btn.is-active,
.pagination-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

/* ---------------- PRODUCT DETAIL PAGE ---------------- */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 32px 0 64px;
}
.product-gallery {
    display: flex;
    gap: 16px;
}
.gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 72px;
    flex-shrink: 0;
}
.thumb-item {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 1.5px solid transparent;
}
.thumb-item.is-active {
    border-color: var(--primary);
}
.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-main {
    position: relative;
    flex-grow: 1;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 1 / 1.05;
    background: #f0e9df;
}
.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-badge-new {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #6e5944;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}
.gallery-arrow--prev { left: 12px; }
.gallery-arrow--next { right: 12px; }

.product-buy-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}
.stars {
    color: #c98a2c;
    letter-spacing: 2px;
}
.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.product-price {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 600;
    color: var(--text);
}
.tax-note {
    font-size: 12px;
    color: var(--text-muted);
}

.feature-strip-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    text-align: center;
}
.feature-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text);
}
.feature-strip-item svg {
    color: var(--gold);
}

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
}
.qty-btn {
    background: none;
    border: none;
    width: 32px;
    height: 36px;
    font-size: 14px;
    cursor: pointer;
    color: var(--text);
}
.qty-val {
    width: 36px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}
.in-stock-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--status-green);
    font-size: 12px;
    font-weight: 600;
}

/* Tabs */
.product-tabs-header {
    display: flex;
    border-bottom: 1px solid var(--border);
    gap: 32px;
    margin-bottom: 24px;
}
.tab-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 12px 0;
    cursor: pointer;
    position: relative;
}
.tab-link.is-active {
    color: var(--text);
}
.tab-link.is-active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #3b3228;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}
.feature-card-item {
    text-align: center;
}
.feature-card-item img {
    border-radius: var(--radius-sm);
    aspect-ratio: 16 / 10;
    object-fit: cover;
    margin-bottom: 8px;
}
.feature-card-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
}

/* ---------------- STEPPERS (HOW WE DELIVER / CRAFT) ---------------- */
.stepper-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
    margin: 40px 0;
    text-align: center;
}
.stepper-5::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 1px;
    border-top: 1px dashed #d6c8b4;
    z-index: 1;
}
.step-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 12px;
}
.step-circle.is-done {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}
.step-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}
.step-desc {
    font-size: 11px;
    color: var(--text-muted);
    max-width: 170px;
    line-height: 1.4;
}

/* ---------------- CHECKOUT STEPPER (1-2-3-4) ---------------- */
.checkout-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 36px;
}
.co-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}
.co-step-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #f0e8dc;
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 12px;
}
.co-step.is-active .co-step-num {
    background: var(--primary);
    color: #ffffff;
}
.co-step.is-active {
    color: var(--text);
    font-weight: 600;
}
.co-step.is-done .co-step-num {
    background: #eaf4eb;
    color: var(--status-green);
}
.co-step-line {
    width: 60px;
    height: 1px;
    background: var(--border);
}

/* ---------------- CARDS & SHELLS ---------------- */
.white-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}
.address-select-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
    cursor: pointer;
}
.address-select-card.is-selected {
    border-color: var(--primary);
    background: #fdfcf9;
}
.pill-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}
.pill-badge--green {
    background: var(--status-green-bg);
    color: var(--status-green);
}
.pill-badge--amber {
    background: var(--status-amber-bg);
    color: var(--status-amber);
}
.pill-badge--purple {
    background: var(--status-purple-bg);
    color: var(--status-purple);
}
.pill-badge--gray {
    background: var(--status-gray-bg);
    color: var(--status-gray);
}

/* ---------------- ACCOUNT SIDEBAR ---------------- */
.account-section {
    padding: 36px 0 64px;
    background: #faf6f0;
}
.account-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 36px;
}
.account-nav {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.account-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition);
}
.account-nav-item:last-child {
    border-bottom: none;
}
.account-nav-item.is-active,
.account-nav-item:hover {
    background: #fdf5ec;
    color: #8c5d23;
}
.account-nav-item.is-active {
    font-weight: 600;
    border-left: 3px solid #8c5d23;
}

.need-help-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    margin-top: 16px;
}
.need-help-card h4 {
    font-size: 13px;
    margin-bottom: 8px;
}
.account-card {
    padding: 32px;
}
.account-form-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}

/* Responsive Account Components */
.account-order-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 24px;
    align-items: start;
}
.account-sub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.stepper-responsive-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}
.account-filter-tabs {
    scrollbar-width: none;
}
.account-filter-tabs::-webkit-scrollbar {
    display: none;
}

/* ---------------- RESPONSIVE ACCOUNT ORDER CARDS (LUXURY DIV REPLACEMENT FOR TABLES) ---------------- */
.account-order-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}
.account-order-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 18px 20px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
}
.account-order-card:hover {
    border-color: var(--border);
    box-shadow: 0 4px 16px rgba(31, 25, 19, 0.05);
}
.account-order-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-light);
}
.account-order-card__id-group {
    display: flex;
    align-items: center;
    gap: 8px;
}
.account-order-card__id {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.02em;
}
.account-order-card__date {
    font-size: 11.5px;
    color: var(--text-muted);
}
.account-order-card__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.account-order-card__preview {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}
.account-order-card__thumb {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    border: 1px solid var(--border-light);
    flex-shrink: 0;
}
.account-order-card__info {
    min-width: 0;
}
.account-order-card__item-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 320px;
}
.account-order-card__item-count {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 2px;
}
.account-order-card__price-tag {
    text-align: right;
    flex-shrink: 0;
}
.account-order-card__price-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.account-order-card__price-value {
    font-size: 16.5px;
    font-weight: 700;
    color: var(--text);
}
.account-order-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding-top: 10px;
    border-top: 1px solid #faf7f2;
    flex-wrap: wrap;
}
.account-order-card__courier {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--primary);
    font-weight: 600;
}
.account-order-card__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

/* ---------------- TRACK ORDER RESPONSIVE LAYOUT ---------------- */
.track-search-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.track-search-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1 1 480px;
    min-width: 0;
}
.track-search-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f5eee4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.track-search-content {
    flex: 1;
    min-width: 0;
}
.track-search-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}
.track-search-form .form-input {
    flex: 1;
    min-width: 0;
    max-width: 280px;
    padding: 8px 12px;
    font-size: 13px;
}
.track-search-form .btn {
    white-space: nowrap;
    flex-shrink: 0;
}
.track-search-help {
    border-left: 1px solid var(--border-light);
    padding-left: 24px;
    flex: 0 0 auto;
}

.track-order-summary-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 18px;
    margin-bottom: 24px;
}
.track-order-details-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

@media (max-width: 768px) {
    .track-search-card {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 16px !important;
        padding: 20px 18px !important;
    }
    .track-search-left {
        flex: 1 1 100% !important;
        width: 100% !important;
    }
    .track-search-form {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }
    .track-search-form .form-input {
        max-width: 100% !important;
        width: 100% !important;
    }
    .track-search-form .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
    .track-search-help {
        border-left: none !important;
        border-top: 1px solid var(--border-light) !important;
        padding-left: 0 !important;
        padding-top: 14px !important;
        width: 100% !important;
    }
    .track-search-help .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
    .track-order-summary-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px 12px !important;
    }
    .track-order-summary-grid > div:last-child {
        grid-column: 1 / -1 !important;
    }
    .track-order-details-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

@media (max-width: 480px) {
    .track-search-card {
        padding: 16px 14px !important;
    }
    .track-search-left {
        gap: 12px !important;
    }
    .track-search-icon {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
    }
    .track-order-summary-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 12px 10px !important;
    }
}

/* ---------------- TABLES ---------------- */
.custom-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}
.custom-table th {
    text-align: left;
    padding: 12px 16px;
    font-weight: 600;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.custom-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}
.custom-table tr:hover td {
    background: #faf7f2;
}

/* ---------------- FORMS ---------------- */
.form-group {
    margin-bottom: 18px;
}
.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #ffffff;
    font-size: 13px;
    color: var(--text);
    transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-row-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

/* ---------------- FOOTER ---------------- */
.site-footer {
    background: #fbf7f1;
    border-top: 1px solid var(--border);
    padding: 56px 0 24px;
    color: var(--text);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
    gap: 32px;
    margin-bottom: 48px;
}
.footer-col__title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 18px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
}
.footer-links a {
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--primary);
}
.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 12px;
}
.newsletter-input {
    flex-grow: 1;
    border: 1px solid var(--border);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    padding: 10px 14px;
    font-size: 12px;
    background: #ffffff;
}
.newsletter-btn {
    background: #2b2216;
    color: #ffffff;
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 0 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-muted);
}
.footer-bottom a {
    color: var(--text-muted);
    margin: 0 8px;
}
.footer-bottom a:hover {
    color: var(--primary);
}

/* ---------------- MOBILE DRAWER NAVIGATION ---------------- */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 6px;
    margin-right: 8px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.mobile-nav-toggle:hover {
    color: var(--primary);
    background: rgba(51, 76, 28, 0.05);
}

.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: #faf6f0;
    z-index: 10001;
    box-shadow: 4px 0 24px rgba(0,0,0,0.18);
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.mobile-nav-drawer.is-open {
    transform: translateX(0);
}

.mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(31, 25, 19, 0.55);
    backdrop-filter: blur(3px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-header {
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
}

.mobile-nav-close {
    background: none;
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    color: var(--danger);
    border-color: var(--danger);
}

.mobile-nav-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.is-active {
    color: var(--primary);
}

.mobile-nav-categories {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px 0 12px 14px;
}

.mobile-nav-cat-item {
    font-size: 12px;
    color: var(--text-muted);
    transition: var(--transition);
}

.mobile-nav-cat-item:hover {
    color: var(--primary);
    padding-left: 4px;
}

.mobile-nav-divider {
    height: 1px;
    background: var(--border);
    margin: 12px 0;
}

.mobile-nav-footer {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav-account-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    transition: var(--transition);
}

.mobile-nav-account-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.mobile-nav-wa-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    background: #203c14;
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.mobile-nav-wa-btn:hover {
    background: #2a4c1c;
}

.mobile-nav-info {
    font-size: 10.5px;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
    margin-top: 4px;
}

/* ---------------- SHOP CONTROLS & MOBILE FILTER DRAWER ---------------- */
.shop-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-filter-toggle-btn {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-filter-toggle-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-count-badge {
    color: var(--primary);
    font-size: 8px;
}

.filter-sidebar-header {
    display: none;
}

.filter-sidebar-close {
    background: none;
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 14px;
}

/* ---------------- CART & CHECKOUT RESPONSIVE LAYOUTS ---------------- */
.cart-section {
    padding: 44px 0 64px;
    background: var(--canvas);
}

.cart-layout,
.checkout-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 32px;
    align-items: start;
    width: 100%;
}

.cart-items-card {
    padding: 32px;
}

.cart-summary-card {
    padding: 28px;
}

.cart-page-title {
    font-family: var(--font-serif);
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 12px;
    color: var(--text);
}

/* Free Shipping Progress Bar */
.cart-shipping-progress-wrap {
    margin-bottom: 28px;
    background: #fbf7f0;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
}

.cart-shipping-progress-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
    gap: 8px;
}

.cart-shipping-status.is-free,
.cart-shipping-val.is-free {
    color: var(--status-green);
    font-weight: 600;
}

.cart-progress-bar-bg {
    width: 100%;
    height: 5px;
    background: #e8ded1;
    border-radius: 3px;
    overflow: hidden;
}

.cart-progress-bar-fill {
    height: 100%;
    background: var(--primary);
    transition: width 0.4s ease;
    border-radius: 3px;
}

/* Desktop Table View */
.cart-desktop-table {
    display: block;
    width: 100%;
    overflow-x: auto;
}

.cart-mobile-list {
    display: none;
}

.cart-remove-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 16px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cart-remove-btn:hover {
    background: #fbeae8;
    color: var(--danger);
}

/* Coupon & Actions Bar */
.cart-coupon-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-light);
    padding-top: 20px;
    margin-top: 16px;
    flex-wrap: wrap;
    gap: 14px;
}

.cart-coupon-col {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cart-coupon-form {
    display: flex;
    gap: 8px;
}

.cart-coupon-input {
    width: 180px;
    padding: 8px 12px;
    font-size: 12px;
    text-transform: uppercase;
}

.cart-clear-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.cart-clear-btn:hover {
    color: var(--danger);
}

/* Order Summary Card */
.cart-summary-title {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text);
}

.cart-summary-lines {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
    margin-bottom: 16px;
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.cart-summary-line.is-discount {
    color: var(--danger);
}

.cart-summary-total-wrap {
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
    margin-bottom: 24px;
}

.cart-summary-total-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.cart-summary-total-label {
    font-size: 14px;
    display: block;
    color: var(--text);
}

.cart-summary-tax-note {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
}

.cart-summary-total-amount {
    font-size: 24px;
    font-family: var(--font-serif);
    color: var(--text);
}

.cart-cta-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.cart-cta-primary {
    padding: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.cart-cta-secondary {
    padding: 12px;
    border-color: var(--border);
}

.cart-security-badge {
    background: #fefbf6;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Empty Cart State */
.cart-empty-card {
    padding: 64px 32px;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cart-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #f5eee4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.cart-empty-title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 8px;
}

.cart-empty-desc {
    font-size: 13px;
    color: var(--text-muted);
    max-width: 440px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.cart-empty-btn {
    padding: 14px 36px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.checkout-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px 16px;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.checkout-stepper::-webkit-scrollbar {
    display: none;
}

.co-step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.co-step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.co-step.is-active .co-step-num {
    background: var(--primary);
    color: #ffffff;
}

.co-step.is-active span {
    color: var(--text);
    font-weight: 700;
}

.co-step.is-done .co-step-num {
    background: var(--status-green);
    color: #ffffff;
}

.co-step-line {
    width: 32px;
    height: 1px;
    background: var(--border);
    flex-shrink: 0;
}

/* ---------------- ACCOUNT RESPONSIVE LAYOUTS ---------------- */
.account-welcome-card {
    padding: 0;
    overflow: hidden;
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    background: #fdfcf9;
}
.account-welcome-text {
    padding: 32px;
}
.account-welcome-img {
    display: flex;
    justify-content: flex-end;
    height: 140px;
}
.account-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

/* ---------------- COMPREHENSIVE RESPONSIVE BREAKPOINTS ---------------- */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 992px) {
    .site-nav {
        display: none !important;
    }
    .mobile-nav-toggle {
        display: flex !important;
    }
    .mobile-filter-toggle-btn {
        display: inline-flex !important;
    }
    .filter-sidebar-header {
        display: flex !important;
    }
    .filter-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 300px;
        max-width: 82vw;
        background: #faf6f0;
        z-index: 10001;
        padding: 24px;
        overflow-y: auto;
        box-shadow: 4px 0 24px rgba(0,0,0,0.18);
        transform: translateX(-100%);
        transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .filter-sidebar.is-open {
        transform: translateX(0);
    }
    .shop-page-grid {
        grid-template-columns: 1fr !important;
    }
    .editorial-hero__grid,
    .story-banner-grid,
    .product-detail-layout,
    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .editorial-hero__media {
        justify-content: center;
    }
    .account-layout {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow-x: hidden !important;
    }
    .account-order-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
    }
    .account-sub-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 14px !important;
        width: 100% !important;
    }
    .account-sidebar {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        overflow: visible !important;
    }
    .account-nav {
        display: flex !important;
        flex-wrap: wrap !important;
        overflow: visible !important;
        white-space: normal !important;
        gap: 8px !important;
        padding: 4px 0 12px 0 !important;
        margin: 0 0 12px 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .account-nav > form {
        display: contents !important;
    }
    .account-nav-item {
        flex: 0 1 auto !important;
        white-space: nowrap !important;
        padding: 7px 13px !important;
        background: #ffffff !important;
        border: 1px solid var(--border) !important;
        border-radius: 24px !important;
        font-size: 12px !important;
        text-decoration: none !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        color: var(--text-muted) !important;
        cursor: pointer !important;
    }
    .account-nav-item:hover {
        background: #faf7f2 !important;
        color: var(--primary) !important;
        border-color: var(--border) !important;
    }
    .account-nav-item.is-active {
        background: #203c14 !important;
        color: #ffffff !important;
        border-color: #203c14 !important;
        box-shadow: 0 2px 8px rgba(32, 60, 20, 0.15) !important;
    }
    .account-nav-item.is-active svg {
        stroke: #ffffff !important;
    }
    .account-nav-item.is-active span {
        color: #ffffff !important;
    }
    .need-help-card {
        display: none;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .site-header__inner {
        height: 62px;
    }
    .mandar-logo__en {
        font-size: 26px;
    }
    .mandar-logo__hi {
        font-size: 28px;
    }
    .mandar-logo__tagline {
        font-size: 7.5px;
        letter-spacing: 0.22em;
    }
    .header-actions {
        gap: 12px;
    }
    .topbar__origin,
    .topbar__help {
        display: none;
    }
    .topbar__inner {
        justify-content: center;
        text-align: center;
    }
    .topbar__center {
        font-size: 11px;
    }
    
    /* Product Gallery */
    .product-gallery {
        display: flex;
        flex-direction: column-reverse;
        gap: 12px;
    }
    .gallery-thumbs {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 4px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .gallery-thumbs::-webkit-scrollbar {
        display: none;
    }
    .thumb-item {
        width: 58px;
        height: 58px;
        flex-shrink: 0;
    }
    .feature-strip-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .product-tabs-header {
        overflow-x: auto;
        white-space: nowrap;
        display: flex;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        border-bottom: 1px solid var(--border);
    }
    .product-tabs-header::-webkit-scrollbar {
        display: none;
    }
    .tab-link {
        flex-shrink: 0;
        padding: 12px 14px;
        font-size: 11px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
    .product-card {
        padding: 10px;
    }
    .product-card__title {
        font-size: 12px;
    }
    .product-card__price {
        font-size: 13px;
    }

    /* Cart Page Mobile Responsiveness */
    .cart-section {
        padding: 20px 0 40px;
    }

    .cart-items-card,
    .cart-summary-card {
        padding: 20px 16px;
    }

    .cart-page-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .cart-shipping-progress-labels {
        font-size: 11.5px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    /* Switch from table to mobile cards on mobile */
    .cart-desktop-table {
        display: none !important;
    }

    .cart-mobile-list {
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-bottom: 18px;
    }

    .cart-mobile-item {
        position: relative;
        background: #fdfcfa;
        border: 1px solid var(--border-light);
        border-radius: var(--radius);
        padding: 14px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        box-shadow: 0 1px 3px rgba(31, 25, 19, 0.03);
    }

    .cart-mobile-remove-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.04);
        border: none;
        cursor: pointer;
        color: var(--text-muted);
        font-size: 14px;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        z-index: 2;
    }
    .cart-mobile-remove-btn:hover {
        background: #fbeae8;
        color: var(--danger);
    }

    .cart-mobile-item__top {
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }

    .cart-mobile-item__media {
        flex-shrink: 0;
        width: 68px;
        height: 68px;
        border-radius: var(--radius-sm);
        overflow: hidden;
        background: #f0e9df;
        display: block;
    }

    .cart-mobile-item__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .cart-mobile-item__info {
        flex: 1;
        min-width: 0;
        padding-right: 24px;
    }

    .cart-mobile-item__title {
        font-size: 13.5px;
        font-weight: 600;
        color: var(--text);
        text-decoration: none;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .cart-mobile-item__title:hover {
        color: var(--primary);
    }

    .cart-mobile-item__meta {
        font-size: 11px;
        color: var(--text-muted);
        margin-top: 3px;
        display: flex;
        flex-direction: column;
        gap: 1px;
    }

    .cart-mobile-item__unit-price {
        font-size: 12px;
        font-weight: 600;
        color: var(--primary);
        margin-top: 4px;
    }

    .cart-mobile-item__bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 10px;
        border-top: 1px dashed var(--border-light);
    }

    .cart-mobile-item__subtotal {
        display: flex;
        align-items: baseline;
        gap: 6px;
    }

    .cart-mobile-item__subtotal-label {
        font-size: 11px;
        color: var(--text-muted);
    }

    .cart-mobile-item__subtotal-val {
        font-size: 14.5px;
        color: var(--text);
    }

    /* Coupon form full width on mobile */
    .cart-coupon-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .cart-coupon-col {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .cart-coupon-form {
        width: 100%;
        display: flex;
    }

    .cart-coupon-input {
        flex: 1;
        width: auto;
    }

    .cart-clear-btn {
        align-self: flex-start;
        padding: 4px 0;
    }

    /* Stepper on mobile */
    .checkout-stepper {
        gap: 6px !important;
        padding: 12px 6px !important;
        justify-content: center !important;
        overflow: hidden !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .co-step {
        gap: 4px !important;
        flex-shrink: 0 !important;
    }
    .co-step span {
        display: none !important;
    }
    .co-step.is-active span {
        display: inline-block !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        color: var(--primary) !important;
        white-space: nowrap !important;
    }
    .co-step-num {
        width: 22px !important;
        height: 22px !important;
        font-size: 11px !important;
        flex-shrink: 0 !important;
    }
    .co-step-line {
        width: 14px !important;
        min-width: 6px !important;
        flex-shrink: 1 !important;
    }

    .account-section {
        padding: 12px 0 32px;
    }
    .white-card {
        padding: 18px 14px !important;
    }

    /* Account Order Cards on Mobile */
    .account-order-card {
        padding: 14px 12px !important;
        gap: 10px !important;
    }
    .account-order-card__body {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    .account-order-card__item-name {
        max-width: 160px !important;
    }
    .account-order-card__footer {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 8px !important;
    }
    .account-order-card__actions {
        width: 100% !important;
        margin-left: 0 !important;
    }
    .account-order-card__actions .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }

    /* Account metric */
    .account-welcome-card {
        grid-template-columns: 1fr;
    }
    .account-welcome-img {
        display: none;
    }
    .account-welcome-text {
        padding: 24px;
    }
    .account-metric-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
    .account-order-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        width: 100% !important;
    }
    .account-sub-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }

    /* Form rows */
    .form-row-2,
    .form-row-3 {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    .account-card {
        padding: 20px 16px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .account-card h1 {
        font-size: 24px !important;
    }
    .account-form-actions {
        display: flex;
        flex-direction: column-reverse;
        gap: 10px;
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 10px;
        box-sizing: border-box !important;
    }
    .account-form-actions .btn {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        justify-content: center;
        text-align: center;
        padding: 12px 18px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .floating-whatsapp {
        bottom: 20px;
        top: auto;
        transform: none;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        padding: 0;
        right: 16px;
        justify-content: center;
        box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    }
    .floating-whatsapp span {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    .display-title {
        font-size: 32px;
        line-height: 1.15;
    }
    .hero-lead {
        font-size: 13.5px;
        margin-bottom: 24px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }
    .header-search-box {
        gap: 8px;
    }
    .header-search-input {
        font-size: 13px;
    }
    .header-search-btn {
        padding: 8px 16px;
        font-size: 10px;
    }
}

/* ---------------- FLASH ALERTS & TOASTS ---------------- */
.flash-alert {
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    animation: fadeIn 0.3s ease;
}
.flash-alert--success {
    background: #eaf4eb;
    color: #1b5e20;
    border-color: #c8e6c9;
}
.flash-alert--error {
    background: #fbeae8;
    color: #b71c1c;
    border-color: #ffcdd2;
}
.flash-alert--info {
    background: #fdf8eb;
    color: #8c6b2d;
    border-color: #f7e6c4;
}
.flash-alert button {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
}
.flash-alert button:hover {
    opacity: 1;
}

.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.toast-popup {
    background: #2b2216;
    color: #ffffff;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    animation: slideUpToast 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    transition: opacity 0.3s ease, transform 0.3s ease;
    border-left: 3px solid var(--gold);
}
.toast-popup--success {
    border-left-color: #4caf50;
}
.toast-popup--error {
    border-left-color: #f44336;
}
@keyframes slideUpToast {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Product Tabs Panel Swapping */
.product-tab-pane {
    display: none;
}
.product-tab-pane.is-active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Address & Payment option selected state */
.address-select-card.is-selected,
.payment-option-card.is-selected {
    border-color: var(--primary) !important;
    background: #faf7f2 !important;
}

/* ==========================================================================
   TRUST STRIP & LUXURY FOOTER
   ========================================================================== */
.trust-strip {
    background: #ffffff;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    padding: 34px 0;
    margin-top: 50px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 14px;
    border-radius: var(--radius);
    background: #faf6f0;
    border: 1px solid rgba(232, 222, 209, 0.6);
    transition: all 0.25s ease;
}

.trust-item:hover {
    background: #f5eedf;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31, 25, 19, 0.05);
}

.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2d5c3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(175, 123, 50, 0.08);
}

.trust-item:hover .trust-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: scale(1.06);
}

.trust-title {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 3px;
}

.trust-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.35;
}

/* --- SITE FOOTER --- */
.site-footer {
    background: #fbf8f3;
    border-top: 1px solid var(--border);
    padding: 64px 0 28px;
    color: var(--text);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.6fr;
    gap: 44px;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand .mandar-logo {
    display: inline-flex;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 3px rgba(31, 25, 19, 0.04);
}

.footer-social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(51, 76, 28, 0.2);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col__title {
    font-family: var(--font-sans);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 9px;
}

.footer-col__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    opacity: 0.85;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links li a {
    font-size: 13.5px;
    color: #5d5145;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
    line-height: 1.4;
}

.footer-links li a:hover {
    color: var(--primary);
    transform: translateX(4px);
    font-weight: 500;
}

.footer-newsletter-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    align-items: stretch;
    border-radius: var(--radius);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--border);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(31, 25, 19, 0.04);
}

.newsletter-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(51, 76, 28, 0.12);
}

.newsletter-input {
    flex: 1;
    min-width: 0;
    border: none;
    padding: 12px 16px;
    font-size: 13px;
    color: var(--text);
    background: transparent;
    outline: none;
    font-family: inherit;
}

.newsletter-input::placeholder {
    color: #9e9184;
}

.newsletter-btn {
    border: none;
    background: var(--primary);
    color: #ffffff;
    padding: 0 18px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: var(--primary-hover);
}

.newsletter-reassurance {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--text-light);
    margin-top: 9px;
}

.newsletter-success {
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--status-green);
    background: var(--status-green-bg);
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    margin-top: 12px;
    font-weight: 600;
    border: 1px solid rgba(46, 125, 50, 0.2);
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-bottom__links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom__sep {
    color: var(--border);
}

.footer-bottom a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.footer-heart {
    color: #c53030;
    display: inline-block;
    animation: footerHeartBeat 2.5s infinite;
}

@keyframes footerHeartBeat {
    0%, 100% { transform: scale(1); }
    15% { transform: scale(1.25); }
    30% { transform: scale(1); }
    45% { transform: scale(1.15); }
}

/* --- PAYMENT BADGES STRIP --- */
.footer-payments-strip {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px dashed rgba(232, 222, 209, 0.8);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-payments-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.footer-payments-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pay-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 4px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--text-muted);
    box-shadow: 0 1px 2px rgba(31, 25, 19, 0.03);
}

/* --- RESPONSIVE FOOTER --- */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px 24px;
    }
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 500px;
        margin-bottom: 10px;
    }
    .footer-newsletter-col {
        grid-column: 1 / -1;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .trust-strip {
        padding: 24px 0;
        margin-top: 30px;
    }
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px 10px;
    }
    .trust-item {
        padding: 8px 10px;
        gap: 10px;
    }
    .trust-icon {
        width: 38px;
        height: 38px;
    }
    .trust-icon svg {
        width: 20px;
        height: 20px;
    }
    .trust-title {
        font-size: 11.5px;
    }
    .trust-desc {
        font-size: 11px;
    }

    .site-footer {
        padding: 44px 0 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px 18px;
    }
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        margin-bottom: 4px;
    }
    .footer-newsletter-col {
        grid-column: 1 / -1;
        max-width: 100%;
        margin-top: 6px;
        padding-top: 24px;
        border-top: 1px solid var(--border-light);
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        margin-top: 36px;
        padding-top: 20px;
    }
    .footer-bottom__links {
        justify-content: center;
    }
    .footer-payments-strip {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    .footer-payments-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px 8px;
    }
    .trust-item {
        padding: 8px 6px;
        gap: 8px;
    }
    .trust-title {
        font-size: 11px;
    }
    .trust-desc {
        font-size: 10px;
    }
    .footer-tagline {
        font-size: 12.5px;
    }
    .footer-links li a {
        font-size: 13px;
    }
    .account-metric-grid {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }
    .account-nav {
        gap: 6px !important;
        margin-bottom: 12px !important;
    }
    .account-nav-item {
        padding: 6px 11px !important;
        font-size: 11.5px !important;
        gap: 5px !important;
    }
    .account-nav-item svg {
        width: 14px !important;
        height: 14px !important;
    }
}

