/* ═══════════════════════════════════════════════════
   ilias.css  —  Ilias Global  |  CI3 Frontend Styles
   ═══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
    --gold: #c9a84c;
    --blue: #007bff;
    --green: #1a3626;
    --gold-light: #e2c06a;
    --dark: #0d0d0d;
    --dark-mid: #1a1814;
    --dark-green: #1c3028;
    --cream: #faf7f2;
    --border: rgba(0, 0, 0, .08);
    --r: 12px;
    --font-d: 'Cormorant Garamond', Georgia, serif;
    /* --font-d: 'DM Sans', sans-serif; */
    --font-b: 'DM Sans', sans-serif;
    --nav-h: 58px;
    --dot-color: #1e2939;
    --active-nav: #2a4d3e;
}

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

html {
    scroll-behavior: smooth;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

iframe.VIpgJd-ZVi9od-ORHb-OEVmcd.skiptranslate {
    display: none I !important;
    visibility: hidden !important;
}

body {
    top: 0px !important;
}

body {
    font-family: var(--font-b);
    background: #fff;
    color: #111;
    overflow-x: hidden;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--cream);
}

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

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

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

.spin {
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* ════════════════════════════════════════
     PAGE LOADER
  ════════════════════════════════════════ */
#pageLoader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity .5s ease, visibility .5s ease;
}

#pageLoader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    font-family: var(--font-d);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .08em;
    margin-bottom: 1.6rem;
    animation: logoPulse 2s ease-in-out infinite;
}

.loader-logo span {
    color: var(--gold);
}

@keyframes logoPulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

/* Spinning ring */
.loader-ring {
    display: inline-block;
    position: relative;
    width: 56px;
    height: 56px;
    margin-bottom: .9rem;
}

.loader-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 44px;
    height: 44px;
    margin: 6px;
    border: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1.1s cubic-bezier(.5, 0, .5, 1) infinite;
}

.loader-ring div:nth-child(1) {
    border-top-color: var(--gold);
    animation-delay: -.45s;
}

.loader-ring div:nth-child(2) {
    border-top-color: var(--gold-light);
    animation-delay: -.3s;
}

.loader-ring div:nth-child(3) {
    border-top-color: rgba(201, 168, 76, .4);
    animation-delay: -.15s;
}

.loader-ring div:nth-child(4) {
    border-top-color: rgba(201, 168, 76, .15);
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.loader-text {
    font-size: .8rem;
    color: rgba(255, 255, 255, .38);
    letter-spacing: .1em;
    text-transform: uppercase;
}

/* ════════════════════════════════════════
     TOAST
  ════════════════════════════════════════ */
#toastWrap {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    pointer-events: none;
}

.ig-toast {
    min-width: 270px;
    max-width: 330px;
    background: var(--dark);
    color: #fff;
    border-left: 4px solid var(--gold);
    border-radius: 10px;
    padding: .8rem 1.1rem;
    font-size: .85rem;
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .35);
    animation: toastIn .32s ease forwards;
    pointer-events: all;
}

.ig-toast.hiding {
    animation: toastOut .28s ease forwards;
}

.ig-toast.success {
    border-color: #4caf88;
}

.ig-toast.success .ti {
    color: #4caf88;
}

.ig-toast.error {
    border-color: #e05c5c;
}

.ig-toast.error .ti {
    color: #e05c5c;
}

.ig-toast.info {
    border-color: var(--gold);
}

.ig-toast.info .ti {
    color: var(--gold);
}

.ig-toast .ti {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.ig-toast .tc {
    margin-left: auto;
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    font-size: .8rem;
    padding: 0;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

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

@keyframes toastOut {
    from {
        opacity: 1;
        transform: translateX(0)
    }

    to {
        opacity: 0;
        transform: translateX(40px)
    }
}

/* ════════════════════════════════════════
     SKELETON SHIMMER
  ════════════════════════════════════════ */
.sk-box {
    background: linear-gradient(90deg, #f0ede8 25%, #e8e4dd 50%, #f0ede8 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: 6px;
    display: block;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0
    }

    100% {
        background-position: -200% 0
    }
}

/* ════════════════════════════════════════
     NAVBAR
  ════════════════════════════════════════ */
.ig-nav {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1040;
    padding: .5rem 0;
    /* height: var(--nav-h); */
    min-height: 70px;
    display: flex;
    align-items: center;
}

/* Logo */
.site-logo {
    display: inline-flex;
    align-items: center;
}

/* Logo Image */
.logo-img {
    height: 70px;
    width: auto;
    max-width: 180px;
    /* prevents over-expansion */
    object-fit: contain;
    flex-shrink: 0;
    /* 🔥 VERY IMPORTANT */
}

/* Responsive sizes */
@media (max-width: 768px) {
    .logo-img {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 70px;
    }
}

.mob-logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Desktop links */
.dn-links .nav-link {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #6a7282;
    padding: .4rem .68rem;
    transition: color .2s;
}

.dn-links .nav-link:hover {
    color: var(--gold);
}

.dn-links .nav-link.active {
    color: var(--active-nav);
    border-bottom: 2px solid var(--active-nav);
}

.dn-links .nav-link.active:hover {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

.dn-links .dropdown-menu {
    border: 1px solid var(--border);
    border-radius: var(--r);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    padding: .4rem 0;
    min-width: 160px;
}

.dn-links .dropdown-item {
    font-size: .8rem;
    padding: .45rem 1.1rem;
    color: #333;
    transition: background .15s, color .15s;
}

.dn-links .dropdown-item:hover {
    background: var(--cream);
    color: var(--gold);
}

/* Desktop right controls */
.desk-search-wrap {
    position: relative;
}

.search-input-desktop {
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: .5rem 2rem .5rem .9rem;
    font-size: .8rem;
    width: 200px;
    outline: none;
    transition: border-color .2s, width .25s ease;
    font-family: var(--font-b);
}

.search-input-desktop:focus {
    border-color: var(--gold);
}

.desk-search-icon {
    position: absolute;
    right: .7rem;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: .82rem;
    pointer-events: none;
}

/* Desktop dropdown results */
.desk-search-results {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    /* anchors to the right edge of the input */
    width: 340px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--r);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .13);
    max-height: 420px;
    overflow-y: auto;
    z-index: 1060;
    padding: .4rem 0;
}

/* thin gold top accent line */
.desk-search-results::before {
    content: '';
    display: block;
    height: 3px;
    background: var(--gold);
    border-radius: var(--r) var(--r) 0 0;
    margin-bottom: .3rem;
}

/* item inside desktop dropdown */
.desk-sr-item {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .55rem .9rem;
    cursor: pointer;
    transition: background .14s;
    border-bottom: 1px solid rgba(0, 0, 0, .04);
}

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

.desk-sr-item:hover {
    background: var(--cream);
}

.desk-sr-thumb {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: #f5f2ed;
    border: 1px solid rgba(0, 0, 0, .06);
}

.desk-sr-info {
    flex: 1;
    min-width: 0;
}

.desk-sr-title {
    font-size: .84rem;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.desk-sr-preview {
    font-size: .74rem;
    color: #999;
    margin-top: .12rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.desk-sr-price {
    font-size: .8rem;
    color: var(--gold);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.desk-sr-empty {
    text-align: center;
    color: #bbb;
    font-size: .84rem;
    padding: 1.4rem 1rem;
}

/* skeleton rows inside desktop dropdown */
.desk-sr-skel {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .55rem .9rem;
}

/* scrollbar styling for dropdown */
.desk-search-results::-webkit-scrollbar {
    width: 4px;
}

.desk-search-results::-webkit-scrollbar-track {
    background: transparent;
}

.desk-search-results::-webkit-scrollbar-thumb {
    background: #e0dbd4;
    border-radius: 4px;
}

.lang-sel {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: .5rem .5rem;
    font-size: .78rem;
    outline: none;
    cursor: pointer;
    font-family: var(--font-b);
}

.btn-cart-desktop {
    background: #2a4d3e;
    color: #fff;
    border-radius: 25px;
    padding: 10px 15px;
    font-size: .78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: .4rem;
    cursor: pointer;
    border: none;
    transition: background .2s;
    position: relative;
}

.btn-cart-desktop:hover {
    background: #426958;
}

.btn-cart-desktop i {
    font-weight: 700;
}

.cart-badge {
    position: absolute;
    top: -7px;
    right: -7px;
    background: #e05c5c;
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.btn-login-d {
    background: #fbf9fa;
    color: var(--dark);
    border: 1px solid #ebe6e7;
    border-radius: 25px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 10px 20px;
    cursor: pointer;
    transition: background .2s;
}

.btn-login-d:hover {
    background: #ebe6e7;
    color: var(--dark);
    border: 1px solid #ebe6e7;
}

.user-dropdown-btn {
    background: none;
    border: 1px solid #ddd;
    border: none;
    border-radius: 6px;
    padding: .3rem .75rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: .4rem;
    transition: border-color .2s, background .2s;
    font-family: var(--font-b);
}

.user-dropdown-btn:hover {
    border-color: var(--gold);
    background: var(--cream);
}

.user-initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--green);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
}

.user-dd-menu {
    border-radius: var(--r);
    border: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    min-width: 160px;
    padding: .3rem 0;
    margin-top: 19px !important;
}

.user-dd-menu .dropdown-item {
    font-size: .82rem;
    padding: .45rem 1rem;
}

/* Mobile navbar */
.mob-nav {
    padding: 0 0rem;
    position: relative;
    width: 100%;
}

.mob-icon-btn {
    background: none;
    border: none;
    font-size: 1.55rem;
    color: #222;
    cursor: pointer;
    padding: .3rem;
    line-height: 1;
    position: relative;
    transition: color .2s;
}

.mob-icon-btn:hover {
    color: var(--gold);
}

#mobLoginIcon {
    background: none;
    border: none;
    font-size: 1.55rem;
    color: #222;
    cursor: pointer;
    padding: .3rem;
    line-height: 1;
    position: relative;
    transition: color .2s;
}

#mobLoginIcon:hover {
    color: var(--gold);
}

.pos-rel {
    position: relative;
}

.mob-cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #e05c5c;
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    width: 20px;
    height: 21px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ════════════════════════════════════════
     SEARCH PANEL
  ════════════════════════════════════════ */
#searchPanel {
    display: none;
    position: sticky;
    top: var(--nav-h);
    z-index: 1035;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    padding: .85rem 0;
}

.search-panel-inner {
    max-width: 680px;
    margin: 0 auto;
}

.search-bar-wrap {
    position: relative;
}

.search-icon-inner {
    position: absolute;
    left: .9rem;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: .9rem;
    pointer-events: none;
}

.search-bar-wrap input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: .6rem 2.5rem .6rem 2.4rem;
    font-size: .9rem;
    outline: none;
    transition: border-color .2s;
    font-family: var(--font-b);
}

.search-bar-wrap input:focus {
    border-color: var(--gold);
}

.search-clear-btn {
    position: absolute;
    right: .7rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: .85rem;
    color: #aaa;
    cursor: pointer;
}

.search-results-list,
.desk-search-results {
    padding: .3rem 0;
}

.sr-item {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .6rem .8rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background .15s;
}

.sr-item:hover {
    background: var(--cream);
}

.sr-img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    background: #f5f2ed;
    flex-shrink: 0;
}

.sr-title {
    font-size: .86rem;
    font-weight: 600;
    color: #111;
}

.sr-price {
    font-size: .78rem;
    color: var(--gold);
    font-weight: 500;
    margin-top: .15rem;
}

.sr-empty {
    text-align: center;
    color: #bbb;
    font-size: .85rem;
    padding: 1.2rem;
}

/* Search skeleton */
.search-skeleton {
    padding: .5rem 0;
}

.sk-sr-item {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .6rem .8rem;
}

/* ════════════════════════════════════════
     OFF-CANVAS MENU
  ════════════════════════════════════════ */
#menuCanvas {
    width: min(320px, 90vw) !important;
}

.oc-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.1rem 1.2rem;
    border-bottom: 1px solid var(--border);
}

.oc-close-btn {
    background: none;
    border: none;
    font-size: 1.1rem;
    color: #888;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

.oc-close-btn:hover {
    background: var(--cream);
    color: #111;
}

.oc-menu-lang {
    padding: .8rem 1.2rem;
    border-bottom: 1px solid var(--border);
}

.lang-sel-mob {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: .4rem .8rem;
    font-size: .85rem;
    width: 160px;
    outline: none;
    cursor: pointer;
    font-family: var(--font-b);
}

.oc-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.oc-nav-list li a {
    display: block;
    padding: .95rem 1.2rem;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #111;
    border-bottom: 1px solid var(--border);
    transition: color .2s, background .2s;
}

.oc-nav-list li a:hover {
    color: var(--gold);
    background: var(--cream);
}

.oc-signin-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: 1.2rem;
    padding: .7rem 1.1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: var(--cream);
    font-size: .85rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    justify-content: center;
    transition: background .2s, border-color .2s;
    font-family: var(--font-b);
    width: calc(100% - 2.4rem);
    margin-top: auto;
}

.oc-signin-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ════════════════════════════════════════
     OFF-CANVAS CART
  ════════════════════════════════════════ */
.cart-canvas {
    width: min(400px, 100vw) !important;
    display: flex !important;
    flex-direction: column;
}

.cart-oc-header {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: 1.1rem 1.3rem;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.cart-oc-header h5 {
    font-family: var(--font-d);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.cart-items-wrap {
    flex: 1;
    overflow-y: auto;
    padding: .5rem 1.3rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: .9rem 0;
    border-bottom: 1px solid var(--border);
}

.ci-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    background: #f5f2ed;
    flex-shrink: 0;
}

.ci-info {
    flex: 1;
}

.ci-name {
    font-size: .88rem;
    font-weight: 600;
    color: #111;
    margin-bottom: .25rem;
}

.ci-price {
    font-size: .85rem;
    color: var(--gold);
    font-weight: 500;
}

.ci-remove {
    background: none;
    border: none;
    color: #bbb;
    cursor: pointer;
    font-size: .85rem;
    padding: .2rem;
    transition: color .2s;
}

.ci-remove:hover {
    color: #e05c5c;
}

.ci-qty {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: .5rem;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: .9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s, background .2s;
}

.qty-btn:hover {
    border-color: var(--gold);
    background: var(--cream);
}

.qty-num {
    font-size: .88rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #bbb;
}

.cart-empty i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: .75rem;
    color: #ddd;
}

.cart-empty p {
    font-size: .88rem;
    margin-bottom: .75rem;
}

.cart-footer {
    padding: 1.1rem 1.3rem;
    border-top: 1px solid var(--border);
    background: #fff;
    flex-shrink: 0;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: .4rem;
}

.cart-subtotal span:first-child {
    font-size: .9rem;
    font-weight: 600;
    color: #555;
}

.sub-amt {
    font-family: var(--font-d);
    font-size: 1.4rem;
    font-weight: 700;
    color: #111;
}

.cart-note {
    font-size: .75rem;
    color: #aaa;
    margin-bottom: .9rem;
}

.btn-checkout {
    width: 100%;
    background: var(--dark-green);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: .85rem;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
}

.btn-checkout:hover {
    background: #2d4f3c;
}

/* ════════════════════════════════════════
     MODALS
  ════════════════════════════════════════ */
.modal-rounded {
    border-radius: 16px;
    border: none;
    overflow: hidden;
}

.form-label-sm {
    font-size: .78rem;
    font-weight: 600;
    color: #444;
    display: block;
    margin-bottom: .3rem;
}

.ig-input {
    border-radius: 8px !important;
    font-family: var(--font-b);
}

.ig-input:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, .15) !important;
}

.share-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: .5rem .8rem;
    border-radius: 8px;
    transition: background .15s;
    font-size: .75rem;
    color: #444;
    font-family: var(--font-b);
}

.share-action:hover {
    background: var(--cream);
}

.share-action i {
    font-size: 1.6rem;
}

/* ════════════════════════════════════════
     BUTTONS
  ════════════════════════════════════════ */
.btn-gold {
    background: #FFF;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: background .2s, transform .15s;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    color: #fff;
}

.btn-gold-ghost {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, .3) !important;
}

.btn-gold-ghost:hover {
    background: rgba(255, 255, 255, .25);
    transform: translateY(-1px);
}

.btn-gold-sm {
    display: inline-flex;
    align-items: center;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .45rem 1.1rem;
    cursor: pointer;
    transition: background .2s;
}

.btn-gold-sm:hover {
    background: var(--gold-light);
    color: #fff;
}

/* ════════════════════════════════════════
     HERO
  ════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 540px;
    background: url('../img/hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 7, 6, .78) 0%, rgba(8, 7, 6, .35) 65%, transparent 100%);
}

.hero-c {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-family: var(--font-d);
    font-style: italic;
    color: #FFF;
    font-weight: 700;
    font-size: 1.9rem;
    letter-spacing: .04em;
    display: block;
    margin-bottom: .35rem;
}

.hero h1 {
    font-family: var(--font-b);
    font-size: clamp(2.6rem, 7vw, 4.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.06;
    letter-spacing: -.01em;
}

.hero p {
    color: rgba(255, 255, 255, 1);
    font-weight: 700;
    font-size: 1.45rem;
    margin-top: .55rem;
    max-width: 400px;
}

/* ════════════════════════════════════════
     SECTION HELPERS
  ════════════════════════════════════════ */
.sec-title {
    font-family: var(--font-b);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 600;
    text-align: center;
    letter-spacing: -.01em;
}

.sec-sub {
    text-align: center;
    color: #888;
    font-size: .88rem;
    max-width: 520px;
    margin: .4rem auto 0;
}

.divider {
    width: 44px;
    height: 3px;
    background: var(--gold);
    margin: .9rem auto;
    border-radius: 2px;
}

.py-sec {
    padding: 5rem 0;
}

/* ════════════════════════════════════════
     FEATURES
  ════════════════════════════════════════ */
.feat-card {
    text-align: center;
}

.feat-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--r);
    aspect-ratio: 4/3;
    margin-bottom: .9rem;
}

.feat-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

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

.feat-card h5 {
    font-family: var(--font-b);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: .3rem;
}

.feat-card p {
    font-size: 1rem;
    color: #777;
    line-height: 1.6;
}

/* ════════════════════════════════════════
     AI ADVISOR BANNER
  ════════════════════════════════════════ */
.ai-banner {
    background: linear-gradient(130deg, #8b80b6 0%, #c88a83 55%, #9a584c 100%);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.ai-left {
    flex: 1;
    min-width: 200px;
}

.ai-left h2 {
    font-family: var(--font-b);
    color: #fff;
    font-size: clamp(1.4rem, 5vw, 3.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: .5rem;
}

.ai-left p {
    color: rgba(255, 255, 255, .82);
    font-size: 1.5rem;
}

.ai-bubble {
    background: blur(12px);
    border-radius: 14px;
    padding: 1.3rem 1.5rem;
    min-width: 400px;
    max-width: 400px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
}

.ai-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: #fff;
    margin-bottom: .55rem;
}

.ai-hi {
    font-family: var(--font-d);
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: .25rem;
    color: #fff;
}

.ai-bubble p {
    font-size: 1.125rem;
    color: #fff;
    margin-bottom: .9rem;
}

.btn-start {
    display: inline-block;
    background: var(--cream);
    color: #000;
    border: none;
    border-radius: 6px;
    padding: .5rem .5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
    font-family: var(--font-b);
}

.btn-start:hover {
    background: var(--gold);
    color: #fff;
}

/* ════════════════════════════════════════
     PRODUCTS / CAROUSEL
  ════════════════════════════════════════ */
.products-section {
    background: var(--cream);
}

/* Skeleton card */
.prod-skeleton-card {
    flex-shrink: 0;
    width: calc(33.333% - .75rem);
    background: #fff;
    border-radius: var(--r);
    border: 1px solid rgba(0, 0, 0, .06);
    overflow: hidden;
}

@media(max-width:767px) {
    .prod-skeleton-card {
        width: calc(50% - .55rem);
    }
}

@media(max-width:480px) {
    .prod-skeleton-card {
        width: 82%;
    }

    .btn-login-d{
        padding: 8px 12px;
        font-size: 11px;
    }
}

/* Real card */
.prod-card {
    background: #fff;
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .06);
    transition: box-shadow .25s, transform .25s;
    flex-shrink: 0;
    margin-right: 0.6rem;
    display: flex;
    flex-direction: column;
}

.prod-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
    /* transform: translateY(-3px); */
}

@media(min-width:992px) {
    .prod-card {
        width: calc(20% - .75rem);
    }
}

@media(min-width:992px) and (max-width: 1200px) {
    .prod-card {
        width: calc(25% - .75rem);
    }
}

@media(min-width:768px) and (max-width:991px) {
    .prod-card {
        width: calc(33.333% - .55rem);
    }
}

@media(min-width:576px) and (max-width:768px) {
    .prod-card {
        width: calc(50% - .55rem);
    }
}

@media(max-width:575px) {
    .prod-card {
        width: 82%;
    }
}

/* Wrapper to control overflow */
.prod-img-wrap {
    overflow: hidden;
    border-radius: var(--r) var(--r) 0 0;
    position: relative;
}

/* Default state (FULL image visible) */
.prod-img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    /* 👈 shows full image */
    background: #f5f2ed;
    /* padding: 1.2rem; */
    transition: transform .5s ease, object-fit .5s ease;
}

/* On hover (ZOOM + CROP) */
.prod-card:hover .prod-img {
    transform: scale(1.15);
    /* zoom */
    object-fit: cover;
    /* crop effect */
}

.prod-info {
    padding: .85rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.prod-info h6 {
    font-family: var(--font-b);
    font-size: .92rem;
    font-weight: 600;
    margin-bottom: .2rem;
}

.prod-price {
    font-size: .8rem;
    color: #777;
}

.prod-price strong {
    color: #111;
    font-weight: 600;
}

.prod-price .mem {
    color: var(--gold);
    font-size: .73rem;
}

.prod-atc {
    width: 100%;
    margin-top: auto;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: .38rem;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
    font-family: var(--font-b);
}

.prod-atc:hover {
    background: var(--gold-light);
}

/* Carousel controls */
.car-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .82rem;
    flex-shrink: 0;
    transition: background .2s, border-color .2s;
}

.car-nav:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.car-wrap {
    overflow: hidden;
    flex: 1;
}

.car-track {
    display: flex;
    /* gap: 1.1rem; */
    transition: transform .44s cubic-bezier(.4, 0, .2, 1);
}

.car-dots {
    display: flex;
    justify-content: center;
    gap: .45rem;
    margin-top: .9rem;
}

.car-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.car-dot.active {
    background: var(--dot-color);
    transform: scale(1.3);
}

/* ════════════════════════════════════════
     CERTIFICATIONS
  ════════════════════════════════════════ */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cert-item {
    text-align: center;
}

.cert-badge-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #111;
    margin-bottom: .65rem;
}

.cert-badge-text {
    color: #fff;
    font-weight: 800;
    font-size: .95rem;
    font-family: var(--font-b);
}

.cert-name {
    font-family: var(--font-b);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -.02em;
    display: block;
    line-height: 1;
    margin-bottom: .15rem;
}

.cert-item h6 {
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: .3rem;
    color: #111;
}

.cert-item p {
    font-size: .78rem;
    color: #777;
    line-height: 1.55;
}

/* ════════════════════════════════════════
     TESTIMONIALS
  ════════════════════════════════════════ */
.test-section {
    background: #fff;
}

.quote-m {
    font-family: var(--font-d);
    font-size: 4rem;
    color: var(--gold);
    line-height: .7;
    margin-bottom: .5rem;
}

.test-text {
    font-family: var(--font-b);
    font-style: italic;
    font-size: clamp(.95rem, 2vw, 1.15rem);
    line-height: 1.65;
    font-weight: 700;
    color: #222;
}

.test-author {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #111;
}

.test-role {
    font-size: .75rem;
    color: #888;
}

.stars {
    color: var(--gold);
    font-size: .9rem;
    letter-spacing: 2px;
}

.test-dots {
    display: flex;
    justify-content: center;
    gap: .45rem;
    margin-top: 1.4rem;
}

.test-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.test-dot.active {
    background: var(--dot-color);
    transform: scale(1.3);
}

/* Slider behavior */
.testimonial-item {
    display: none;
    opacity: 0;
    transition: opacity .4s ease;
}

.testimonial-item.active {
    display: block;
    opacity: 1;
}

/* Testimonial box layout with side arrows */
.test-box-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.test-box {
    flex: 1;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 16px;
    padding: 2.5rem 2rem 2rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.test-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .85rem;
    color: #555;
    flex-shrink: 0;
    transition: background .2s, border-color .2s, color .2s;
}

.test-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

@media (max-width: 576px) {
    .test-box-wrap {
        gap: .5rem;
    }

    .test-box {
        padding: 1.8rem 1.2rem 1.5rem;
    }

    .test-arrow {
        width: 34px;
        height: 34px;
        font-size: .78rem;
    }
}

/* ════════════════════════════════════════
     FOOTER
  ════════════════════════════════════════ */
.ig-footer {
    background: #1a3626;
    color: rgba(255, 255, 255, .72);
    padding: 3.5rem 0 1.5rem;
}

.ft-brand-name {
    font-family: var(--font-d);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .06em;
}

.ft-brand-sub {
    font-size: .68rem;
    color: var(--gold);
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: .7rem;
}

.ft-tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, .45);
    line-height: 1.7;
    max-width: 230px;
}

.ft-social {
    display: flex;
    gap: .6rem;
    margin-top: 1rem;
}

.ft-social a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .55);
    font-size: .85rem;
    transition: border-color .2s, color .2s;
}

.ft-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.ft-col-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    margin-bottom: .9rem;
}

.ft-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ft-links li {
    margin-bottom: .45rem;
}

.ft-links li a {
    color: rgba(255, 255, 255, .65);
    font-size: 1rem;
    transition: color .2s;
}

.ft-links li a:hover {
    color: var(--gold);
}

.nl-input {
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 6px 0 0 6px;
    background: rgba(255, 255, 255, .07);
    color: #fff;
    padding: .48rem .8rem;
    font-size: .8rem;
    outline: none;
    flex: 1;
    font-family: var(--font-b);
}

.nl-input::placeholder {
    color: rgba(255, 255, 255, .3);
}

.nl-input:focus {
    border-color: var(--gold);
}

.nl-btn {
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 0 6px 6px 0;
    padding: .48rem .95rem;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.nl-btn:hover {
    background: var(--gold-light);
}

.ft-bottom {
    border-top: 1px solid rgba(255, 255, 255, .07);
    margin-top: 2.5rem;
    padding-top: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, .3);
}

/* ════════════════════════════════════════
     AI FLOAT
  ════════════════════════════════════════ */
.ai-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    /* background: var(--gold); */
    background: linear-gradient(to right, #f6339a, #615fff);
    color: #fff;
    border: none;
    font-size: 2.0rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.ai-float:hover {
    background: var(--gold-light);
    transform: scale(1.08);
    color: #fff;
}

/* ════════════════════════════════════════
     RESPONSIVE TWEAKS
  ════════════════════════════════════════ */
@media (max-width: 992px) {
    .user-dd-menu {
        margin-top: 14px !important;
    }
}

@media (max-width: 767px) {
    .py-sec {
        padding: 3.2rem 0;
    }

    .ai-banner {
        padding: 1.6rem;
        gap: 1.2rem;
    }

    .ai-bubble {
        max-width: 100%;
        min-width: unset;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 420px;
    }

    .ai-float {
        bottom: 1rem;
        right: 1rem;
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .search-input-desktop {
        width: 70px;
    }
}

/* ════════════════════════════════════════
     SHOP PAGE CSS Style
════════════════════════════════════════  */

/* ── Cat Hero ── */
.cat-hero {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    background: #e8e4dc;
}

.cat-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.cat-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, .18) 100%);
}

/* ── Breadcrumb ── */
.cat-breadcrumb-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.1rem;
    padding-bottom: .4rem;
}

.cat-breadcrumb {
    font-size: .8rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: .35rem;
}

.cat-breadcrumb a {
    color: #888;
    transition: color .2s;
}

.cat-breadcrumb a:hover {
    color: var(--gold);
}

.bc-sep {
    color: #ccc;
}

.btn-quick-order {
    font-size: .78rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: .35rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: .38rem .85rem;
    transition: border-color .2s, color .2s;
    cursor: pointer;
    background: #fff;
}

.btn-quick-order:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-quick-order i {
    font-size: .85rem;
}

/* ── Intro ── */
.cat-intro {
    padding-top: 1.4rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border);
}

.cat-intro-inner {
    display: flex;
    gap: 6.5rem;
    align-items: flex-start;
}

.cat-intro-left {
    flex-shrink: 0;
}

.cat-title-line {
    width: 64px;
    height: 4px;
    background: var(--blue);
    border-radius: 2px;
    margin-bottom: .6rem;
}

.cat-title {
    font-family: var(--font-b);
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -.01em;
    color: #111;
    margin: 0;
    -webkit-text-stroke: 1px #000;
    white-space: nowrap;
}

.cat-intro-right {
    flex: 1;
}

.cat-desc {
    font-size: .84rem;
    color: #555;
    line-height: 1.75;
    margin: 0;
}

/* ── Subcategory Tabs ── */
.cat-sub-tabs-wrap {
    padding-top: 1.2rem;
    padding-bottom: .2rem;
}

.cat-sub-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.sub-tab {
    font-family: var(--font-b);
    font-size: .8rem;
    font-weight: 600;
    color: #555;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: .42rem 1.1rem;
    cursor: pointer;
    transition: background .18s, border-color .18s, color .18s;
    white-space: nowrap;
}

.sub-tab:hover {
    border-color: #aaa;
    color: #111;
}

.sub-tab.active {
    background: #111;
    border-color: #111;
    color: #fff;
}

/* ── Main Layout ── */
.cat-shop-wrap {
    padding-top: 1.8rem;
    padding-bottom: 4rem;
}

.cat-layout {
    display: grid;
    /* grid-template-columns: 220px 1fr; */
    gap: 2.2rem;
    align-items: start;
}

/* ── Sidebar ── */
.cat-sidebar {
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
}

.filter-group {
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.1rem;
    margin-bottom: 1.1rem;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .75rem;
    cursor: pointer;
    user-select: none;
}

.filter-group-head span {
    font-size: .82rem;
    font-weight: 700;
    color: #111;
    letter-spacing: .03em;
}

.filter-see-all-link {
    font-size: .75rem;
    color: var(--gold);
    font-weight: 600;
    margin-left: auto;
    margin-right: .6rem;
}

.filter-chev {
    font-size: .72rem;
    color: #888;
    transition: transform .22s;
    flex-shrink: 0;
}

.filter-group.collapsed .filter-chev {
    transform: rotate(180deg);
}

.filter-group-body {
    overflow: hidden;
    transition: max-height .28s ease;
}

.filter-group.collapsed .filter-group-body {
    max-height: 0 !important;
}

/* Checkbox */
.filter-check {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: .52rem;
    cursor: pointer;
    position: relative;
}

.filter-check:last-child {
    margin-bottom: 0;
}

.filter-check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.fc-box {
    width: 16px;
    height: 16px;
    border: 1.5px solid #ccc;
    border-radius: 3px;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .18s, background .18s;
}

.filter-check input:checked~.fc-box {
    background: #111;
    border-color: #111;
}

.filter-check input:checked~.fc-box::after {
    content: '';
    display: block;
    width: 9px;
    height: 6px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
}

.fc-label {
    font-size: .8rem;
    color: #444;
    line-height: 1.4;
}

.filter-see-more {
    font-size: .77rem;
    color: var(--gold);
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    padding: .3rem 0;
    display: block;
    margin-top: .35rem;
}

/* Ingredient search */
.ingredient-search-wrap {
    position: relative;
    margin-bottom: .65rem;
}

.ing-search-icon {
    position: absolute;
    left: .65rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: .75rem;
    color: #aaa;
    pointer-events: none;
}

.ingredient-search-input {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: .42rem .7rem .42rem 2rem;
    font-size: .78rem;
    outline: none;
    font-family: var(--font-b);
    transition: border-color .18s;
}

.ingredient-search-input:focus {
    border-color: var(--gold);
}

.ingredient-list {
    max-height: 180px;
    overflow-y: auto;
    padding-right: .2rem;
}

.ingredient-list::-webkit-scrollbar {
    width: 3px;
}

.ingredient-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

/* ── Shop Toolbar ── */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.1rem;
    padding-bottom: .9rem;
    border-bottom: 1px solid var(--border);
}

.results-count {
    font-size: .8rem;
    color: #888;
}

.sort-wrap {
    display: flex;
    align-items: center;
    gap: .5rem;
    position: relative;
}

.sort-label {
    font-size: .8rem;
    color: #888;
}

.sort-select {
    appearance: none;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: .38rem 1.8rem .38rem .7rem;
    font-size: .78rem;
    font-family: var(--font-b);
    outline: none;
    cursor: pointer;
    background: #fff;
    transition: border-color .18s;
}

.sort-select:focus {
    border-color: var(--gold);
}

.sort-chev {
    position: absolute;
    right: .5rem;
    font-size: .7rem;
    color: #aaa;
    pointer-events: none;
}

/* Mobile filter button */
.mob-filter-btn {
    display: none;
    align-items: center;
    gap: .45rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: .45rem .9rem;
    font-size: .8rem;
    font-weight: 600;
    background: #fff;
    cursor: pointer;
    color: #333;
    margin-bottom: 1rem;
    font-family: var(--font-b);
    transition: border-color .18s;
}

.mob-filter-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.mob-filter-badge {
    background: #111;
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ── Product Grid ── */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.3rem;
}

@media(min-width:1200px) {
    .shop-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Product Card */
.shop-prod-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: var(--r);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow .24s, transform .24s;
}

.shop-prod-card:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, .09);
    transform: translateY(-2px);
}

.shop-prod-card.hidden {
    display: none;
}

.spc-badges {
    position: absolute;
    top: .65rem;
    left: .65rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.spc-badge {
    background: #111;
    color: #fff;
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .07em;
    padding: .22rem .55rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.spc-badge.gold {
    background: var(--gold);
}

.spc-img-link {
    display: block;
}

.spc-img-wrap {
    overflow: hidden;
    aspect-ratio: 1;
    background: #f8f6f2;
}

.spc-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* padding: .8rem; */
    transition: transform .5s ease;
}

.shop-prod-card:hover .spc-img {
    transform: scale(1.07);
}

.spc-footer {
    padding: .85rem 1rem 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: .18rem;
}

.spc-price-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: .3rem;
}

.spc-prices {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.spc-price-retail {
    font-size: .82rem;
    color: #111;
    font-weight: 600;
}

.spc-price-member {
    font-size: .78rem;
    color: var(--gold);
    font-weight: 600;
}

.spc-price-tag {
    font-size: .68rem;
    font-weight: 400;
    color: #888;
}

.spc-price-tag.mem {
    color: var(--gold);
}

.spc-atc {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 6px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .9rem;
    transition: background .18s, transform .15s;
    flex-shrink: 0;
}

.spc-atc:hover {
    background: var(--green);
    transform: scale(1.08);
}

.spc-name {
    font-size: .88rem;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
    display: block;
    transition: color .18s;
}

.spc-name:hover {
    color: var(--gold);
}

.spc-cat {
    font-size: .73rem;
    color: #aaa;
}

.spc-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: .2rem;
    color: var(--gold);
    font-size: .72rem;
}

.spc-review-count {
    font-size: .7rem;
    color: #aaa;
    margin-left: .2rem;
}

/* No results */
.shop-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 1rem;
    color: #bbb;
}

.shop-no-results i {
    font-size: 2.5rem;
    display: block;
    margin-bottom: .75rem;
}

.shop-no-results p {
    font-size: .88rem;
    margin-bottom: .9rem;
    color: #888;
}

/* ── Mobile Filter Drawer ── */
.mob-filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    z-index: 1050;
}

.mob-filter-drawer {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(320px, 88vw);
    background: #fff;
    z-index: 1051;
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 8px 0 32px rgba(0, 0, 0, .12);
}

.mob-filter-drawer.open {
    transform: translateX(0);
}

.mfd-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid var(--border);
    font-size: .9rem;
    font-weight: 700;
    color: #111;
    flex-shrink: 0;
}

.mfd-close {
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    color: #888;
    padding: .2rem;
}

.mfd-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.2rem;
}

.mfd-footer {
    padding: .9rem 1.2rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: .7rem;
    flex-shrink: 0;
}

.mfd-clear {
    flex: 1;
    background: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    color: #555;
    padding: .55rem;
    font-family: var(--font-b);
}

.mfd-apply {
    flex: 2;
    justify-content: center;
    padding: .55rem 1rem;
    font-size: .8rem;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .cat-layout {
        grid-template-columns: 1fr;
    }

    .cat-sidebar {
        display: none;
    }

    .mob-filter-btn {
        display: inline-flex;
    }

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

@media (max-width: 767px) {
    .cat-hero {
        height: 220px;
    }

    .cat-intro-inner {
        flex-direction: column;
        gap: .8rem;
    }

    .cat-title {
        white-space: normal;
    }
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .shop-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: .85rem;
    }

    .spc-footer {
        padding: .7rem .75rem .85rem;
    }

    .spc-name {
        font-size: .82rem;
    }

    .cat-hero {
        height: 180px;
    }

    .shop-toolbar {
        flex-wrap: wrap;
        gap: .5rem;
    }
}

/* ===========================================
    Product Detail Page
    =======================================*/

/* ── Breadcrumb ── */
.pd-breadcrumb {
    display: flex;
    align-items: center;
    gap: .35rem;
    padding: 1rem 0 .5rem;
    font-size: .8rem;
    color: #888;
    flex-wrap: wrap;
}

.pd-breadcrumb a {
    color: #888;
    transition: color .2s;
}

.pd-breadcrumb a:hover {
    color: var(--gold);
}

.pd-breadcrumb span {
    color: var(--gold);
    font-weight: 600;
}

.pd-breadcrumb .bc-sep {
    font-size: .65rem;
    color: #ccc;
}

/* ── Section ── */
.pd-section {
    padding: 2rem 0 4rem;
}

/* ── Two-column grid ──
   Desktop: image LEFT | info+tabs RIGHT
   Mobile:  stack — image, then info+tabs below
── */
.pd-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

/* ══ LEFT: Gallery ══ */
.pd-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: calc(var(--nav-h) + 1rem);
}

.pd-main-img-wrap {
    position: relative;
    border-radius: var(--r);
    overflow: hidden;
    background: #f8f6f2;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(0, 0, 0, .06);
}

.pd-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: opacity .22s ease;
}

.pd-main-img.switching {
    opacity: 0;
}

.pd-badge {
    position: absolute;
    top: .85rem;
    left: .85rem;
    background: #111;
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .28rem .65rem;
    border-radius: 4px;
    z-index: 2;
}

.pd-thumbs {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
}

.pd-thumb-btn {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    border: 2px solid transparent;
    background: #f8f6f2;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: border-color .2s, box-shadow .2s;
}

.pd-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.pd-thumb-btn:hover {
    border-color: #ccc;
}

.pd-thumb-btn.active {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, .18);
}

/* ══ RIGHT: Info + Tabs ══ */
.pd-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0;
}

.pd-title {
    font-family: var(--font-d);
    font-size: clamp(1.85rem, 3vw, 2.75rem);
    font-weight: 700;
    color: #111;
    line-height: 1.15;
    letter-spacing: -.01em;
    margin: 0;
}

.pd-prices {
    display: flex;
    flex-direction: column;
    gap: .28rem;
}

.pd-price-retail,
.pd-price-member {
    display: flex;
    align-items: baseline;
    gap: .5rem;
}

.pd-price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    font-family: var(--font-b);
}

.pd-price-amount.member {
    color: var(--gold);
}

.pd-price-tag {
    font-size: .8rem;
    color: #888;
}

.pd-price-tag.mem {
    color: var(--gold);
}

.pd-short-desc {
    font-size: .87rem;
    color: #444;
    line-height: 1.85;
}

.pd-short-desc ul,
.pd-short-desc p {
    margin: 0;
}

/* Cart controls */
.pd-cart-block {
    margin-top: .1rem;
}

.pd-qty-row {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
    width: 100%;
}

.pd-qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #333;
    transition: border-color .2s, background .2s;
}

.pd-qty-btn:hover {
    border-color: var(--gold);
    background: var(--cream);
}

.pd-qty-input {
    width: 54px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    font-size: .95rem;
    font-weight: 600;
    font-family: var(--font-b);
    outline: none;
    -moz-appearance: textfield;
    color: #111;
    transition: border-color .2s;
}

.pd-qty-input::-webkit-outer-spin-button,
.pd-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.pd-qty-input:focus {
    border-color: var(--gold);
}

.pd-atc-btn {
    flex: 1;
    min-width: 150px;
    height: 48px;
    background: var(--dark-green);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--font-b);
    transition: background .2s, transform .15s;
}

.pd-atc-btn:hover {
    background: #2d4f3c;
    transform: translateY(-1px);
}

.pd-atc-btn:active {
    transform: translateY(0);
}

.pd-update-btn {
    flex: 1;
    min-width: 150px;
    height: 48px;
    background: var(--gold);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-family: var(--font-b);
    transition: background .2s, transform .15s;
}

.pd-update-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.pd-update-btn:active {
    transform: translateY(0);
}

/* ══ Tabs (live inside pd-info right column) ══ */
.pd-tabs-wrap {
    border-top: 1px solid var(--border);
    padding-top: 1.3rem;
}

.pd-tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
    scrollbar-width: none;
    flex-wrap: nowrap;
    gap: 0;
}

.pd-tabs-nav::-webkit-scrollbar {
    display: none;
}

.pd-tab-btn {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    padding: .6rem 1rem;
    font-size: .77rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #888;
    cursor: pointer;
    white-space: nowrap;
    margin-bottom: -1px;
    font-family: var(--font-b);
    transition: color .2s, border-color .2s;
}

.pd-tab-btn:hover {
    color: #111;
}

.pd-tab-btn.active {
    color: #111;
    border-bottom-color: #111;
}

.pd-tab-content {
    padding: 1.3rem 0 .3rem;
}

.pd-tab-pane {
    display: none;
    font-size: .87rem;
    color: #444;
    line-height: 1.9;
    animation: pdTabIn .22s ease;
}

.pd-tab-pane.active {
    display: block;
}

@keyframes pdTabIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

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

.tab-empty {
    color: #bbb;
    font-size: .85rem;
    padding: 1rem 0;
}

/* Reviews */
.pd-review-item {
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border);
}

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

.pd-review-header {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: .5rem;
}

.pd-reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--dark-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .86rem;
    flex-shrink: 0;
}

.pd-reviewer-name {
    font-size: .82rem;
    font-weight: 700;
    color: #111;
}

.pd-review-date {
    margin-left: auto;
    font-size: .72rem;
    color: #bbb;
    white-space: nowrap;
}

.pd-review-text {
    font-size: .84rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ══ Responsive ══ */
@media (max-width: 991px) {
    .pd-layout {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .pd-gallery {
        position: static;
        max-width: 500px;
        /* margin: 0 auto; */
        width: 100%;
    }

    .pd-thumbs {
        justify-content: center;
    }

    /* tabs are already inside pd-info, so they naturally appear below cart on mobile */
}

@media (max-width: 575px) {

    .pd-gallery {
        max-width: 300px;
    }

    .pd-section {
        padding: 1rem 0 2.5rem;
    }

    .pd-title {
        font-size: 1.6rem;
    }

    .pd-thumb-btn {
        width: 58px;
        height: 58px;
    }

    .pd-qty-row {
        gap: .4rem;
    }

    .pd-qty-btn {
        width: 36px;
        height: 44px;
    }

    .pd-qty-input {
        width: 46px;
        height: 44px;
        font-size: .88rem;
    }

    .pd-atc-btn,
    .pd-update-btn {
        min-width: 0;
        flex: 1;
        height: 44px;
        font-size: .72rem;
        padding: 0 .5rem;
    }

    .pd-tab-btn {
        padding: .55rem .7rem;
        font-size: .7rem;
    }

    .pd-atc-btn,
    .pd-update-btn {
        flex: 1 1 auto;   /* allow shrink */
        min-width: 120px; /* reduce from 150px */
    }
}
.car-track {
    display: flex;
    will-change: transform;
}

.prod-card {
    flex: 0 0 auto;
}

/* ════════════════════════════════════════
     MOBILE WIDTH ALIGNMENT FIXES
════════════════════════════════════════ */

/* Prevent any element from causing horizontal scroll/page stretch */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Match nav padding to page sections on mobile so header aligns with body */
@media (max-width: 991px) {
    .ig-nav .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}


/* ── Existing review list ───────────────────────────── */
.pd-reviews-list {
    margin-bottom: 2rem;
}

.pd-review-item {
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--border, #eee);
}

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

.pd-review-header {
    display: flex;
    align-items: center;
    gap: .7rem;
    margin-bottom: .5rem;
}

.pd-reviewer-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--dark-green, #2d5a3d);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .86rem;
    flex-shrink: 0;
}

.pd-reviewer-name {
    font-size: .82rem;
    font-weight: 700;
    color: #111;
}

.pd-review-date {
    margin-left: auto;
    font-size: .72rem;
    color: #bbb;
    white-space: nowrap;
}

.pd-review-stars .rv-star-icon {
    color: var(--gold, #c9a84c);
    font-size: .8rem;
}

.pd-review-stars .bi-star {
    color: #ddd;
}

.pd-review-text {
    font-size: .84rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* ── Form card ──────────────────────────────────────── */
.rv-form-card {
    background: #f5f7f4;
    border: 1px solid #e4e9e3;
    border-radius: 12px;
    padding: 1.6rem 1.8rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.rv-form-title {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    color: #111;
    font-family: var(--font-b, sans-serif);
}

/* ── Field groups ───────────────────────────────────── */
.rv-field-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.rv-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: #666;
    font-family: var(--font-b, sans-serif);
}

.rv-input,
.rv-textarea {
    width: 100%;
    border: 1px solid #dde2db;
    border-radius: 8px;
    padding: .65rem .85rem;
    font-size: .875rem;
    color: #222;
    background: #fff;
    outline: none;
    resize: vertical;
    font-family: var(--font-b, sans-serif);
    transition: border-color .2s;
    box-sizing: border-box;
}

.rv-input[readonly] {
    background: #f0f0ee;
    color: #777;
    cursor: default;
}

.rv-input:focus,
.rv-textarea:focus {
    border-color: var(--gold, #c9a84c);
}

.rv-textarea {
    min-height: 100px;
}

/* ── Star picker ────────────────────────────────────── */
.rv-star-picker {
    display: flex;
    gap: .25rem;
}

.rv-star-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    transition: color .15s, transform .1s;
    line-height: 1;
}

.rv-star-btn.active,
.rv-star-btn:hover,
.rv-star-btn.hovered {
    color: var(--gold, #c9a84c);
}

.rv-star-btn:hover {
    transform: scale(1.15);
}

/* ── Submit button ──────────────────────────────────── */
.rv-submit-btn {
    align-self: flex-start;
    background: var(--dark-green, #2d5a3d);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: .7rem 1.6rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-b, sans-serif);
    transition: background .2s, transform .15s;
}

.rv-submit-btn:hover {
    background: #254f35;
    transform: translateY(-1px);
}

.rv-submit-btn:active {
    transform: translateY(0);
}

.rv-submit-btn:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
}

/* ── Notice (not eligible / guest) ─────────────────── */
.rv-notice {
    margin-top: 1rem;
    padding: .9rem 1.1rem;
    background: #f5f7f4;
    border: 1px solid #e4e9e3;
    border-radius: 8px;
    font-size: .84rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.rv-notice a {
    color: var(--gold, #c9a84c);
    font-weight: 600;
}

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 575px) {
    .rv-form-card {
        padding: 1.2rem 1rem;
    }
}

/* <!-- ══════════════════════════════════════════════════════════
     CHECKOUT PAGE CSS
══════════════════════════════════════════════════════════ */
/* ── Section ── */
.co-section {
    padding: 1.5rem 0 4rem;
}

.co-page-header {
    margin-bottom: 1.8rem;
}

.co-page-title {
    font-family: var(--font-d);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #111;
    margin: 0 0 .2rem;
}

.co-page-sub {
    font-size: .85rem;
    color: #888;
    margin: 0;
}

/* ── Card ── */
.co-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: var(--r, 12px);
    overflow: hidden;
}

.co-card-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.4rem;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    background: #fafaf9;
}

.co-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--dark-green, #1c3028);
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.co-card-title {
    font-family: var(--font-b);
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.co-continue-link {
    font-size: .78rem;
    color: var(--gold, #c9a84c);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .3rem;
}

.co-continue-link:hover {
    color: var(--gold-light, #e2c06a);
}

.co-card-body {
    padding: 1.4rem;
}

/* ── Address list ── */
.co-address-list {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    margin-bottom: .9rem;
}

.co-address-item {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: .9rem 1rem;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    position: relative;
}

.co-address-item:hover {
    border-color: #aaa;
    background: #fafaf9;
}

.co-address-item:has(.co-addr-radio:checked),
.co-address-item.selected {
    border-color: var(--dark-green, #1c3028);
    background: #f4f8f5;
}

.co-addr-indicator {
    flex-shrink: 0;
    padding-top: .15rem;
}

.co-addr-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: #fff;
    transition: border-color .2s, background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.co-addr-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    transition: background .2s;
}

.co-address-item:has(.co-addr-radio:checked) .co-addr-dot,
.co-address-item.selected .co-addr-dot {
    border-color: var(--dark-green, #1c3028);
}

.co-address-item:has(.co-addr-radio:checked) .co-addr-dot::after,
.co-address-item.selected .co-addr-dot::after {
    background: var(--dark-green, #1c3028);
}

.co-addr-content {
    flex: 1;
    min-width: 0;
}

.co-addr-name {
    font-size: .88rem;
    font-weight: 700;
    color: #111;
    margin-bottom: .3rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.co-addr-phone {
    font-weight: 400;
    color: #666;
}

.co-addr-badge {
    background: var(--dark-green, #1c3028);
    color: #fff;
    font-size: .65rem;
    padding: .15rem .5rem;
    border-radius: 20px;
    font-weight: 600;
}

.co-addr-line {
    font-size: .82rem;
    color: #555;
    line-height: 1.55;
}

.co-addr-edit-btn {
    flex-shrink: 0;
    background: none;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: #888;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}

.co-addr-edit-btn:hover {
    border-color: var(--gold, #c9a84c);
    color: var(--gold, #c9a84c);
}

/* ── Add address button ── */
.co-add-addr-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: .75rem 1rem;
    background: none;
    font-size: .85rem;
    font-weight: 600;
    color: #666;
    width: 100%;
    cursor: pointer;
    transition: border-color .2s, color .2s;
    font-family: var(--font-b);
}

.co-add-addr-btn:hover {
    border-color: var(--gold, #c9a84c);
    color: var(--gold, #c9a84c);
}

/* ── Form ── */
.co-form-divider {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #888;
    margin: 1.2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: .7rem;
}

.co-form-divider::before,
.co-form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #eee;
}

.co-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: #555;
    display: block;
    margin-bottom: .35rem;
    font-family: var(--font-b);
}

.co-req {
    color: #e05c5c;
}

.co-field {
    display: flex;
    flex-direction: column;
}

.co-input,
.co-select {
    border: 1px solid #dde0dc;
    border-radius: 8px;
    padding: .6rem .85rem;
    font-size: .875rem;
    color: #222;
    background: #fff;
    outline: none;
    font-family: var(--font-b);
    transition: border-color .2s;
    width: 100%;
}

.co-input:focus,
.co-select:focus {
    border-color: var(--gold, #c9a84c);
}

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

.co-textarea {
    min-height: 80px;
    resize: vertical;
}

.co-radio-group {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.co-radio-opt {
    cursor: pointer;
}

.co-radio-opt input {
    display: none;
}

.co-radio-box {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: .45rem .9rem;
    font-size: .82rem;
    font-weight: 600;
    color: #555;
    transition: border-color .2s, background .2s, color .2s;
}

.co-radio-opt input:checked~.co-radio-box {
    border-color: var(--dark-green, #1c3028);
    background: #f4f8f5;
    color: var(--dark-green, #1c3028);
}

/* ── Buttons ── */
.co-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--dark-green, #1c3028);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: .65rem 1.4rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-b);
    transition: background .2s, transform .15s;
}

.co-btn-primary:hover {
    background: #2d4f3c;
    transform: translateY(-1px);
}

.co-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: none;
    border: 1px solid #ddd;
    color: #555;
    border-radius: 8px;
    padding: .65rem 1.2rem;
    font-size: .8rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-b);
    transition: border-color .2s, color .2s;
}

.co-btn-ghost:hover {
    border-color: #aaa;
    color: #111;
}

.co-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: none;
    border: 1px solid var(--dark-green, #1c3028);
    color: var(--dark-green, #1c3028);
    border-radius: 8px;
    padding: .55rem 1.1rem;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-b);
    transition: background .2s;
}

.co-btn-outline:hover {
    background: #f4f8f5;
}

/* ── Order table ── */
.co-order-table-wrap {
    overflow-x: auto;
}

.co-order-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .82rem;
}

.co-order-table thead tr {
    background: #fafaf9;
    border-bottom: 1px solid #eee;
}

.co-order-table th {
    padding: .65rem 1rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #888;
    white-space: nowrap;
}

.co-order-table td {
    padding: .75rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    vertical-align: top;
}

.co-order-table tbody tr:last-child td {
    border-bottom: none;
}

.co-prod-name {
    font-weight: 600;
    color: #111;
    margin-bottom: .2rem;
}

.co-qty-badge {
    background: #f0ede8;
    color: #555;
    font-size: .7rem;
    font-weight: 700;
    padding: .1rem .45rem;
    border-radius: 4px;
    margin-left: .3rem;
}

.co-prod-meta {
    font-size: .75rem;
    color: #999;
}

.co-unavail {
    opacity: .5;
}

.co-unavail-badge {
    display: inline-block;
    background: #fde8e8;
    color: #e05c5c;
    font-size: .68rem;
    font-weight: 700;
    padding: .15rem .5rem;
    border-radius: 4px;
    margin-top: .3rem;
}

.co-price-cell {
    display: flex;
    flex-direction: column;
    gap: .1rem;
}

.co-price-old {
    font-size: .72rem;
    color: #bbb;
    text-decoration: line-through;
}

.co-item-total {
    font-weight: 600;
    color: #111;
}

/* ── Totals ── */
.co-totals {
    padding: .5rem 1rem 0;
}

.co-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    font-size: .85rem;
    color: #555;
}

.co-total-row:last-child {
    border-bottom: none;
}

.co-free {
    color: #4caf88;
    font-weight: 600;
}

.co-saving-row,
.co-coupon-row {
    color: #4caf88;
}

.co-save-amt {
    color: #4caf88;
    font-weight: 600;
}

.co-grand-row {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    padding-top: .85rem;
    border-top: 2px solid #eee !important;
}

.co-grand-amt {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-green, #1c3028);
}

/* ── Coupon strip ── */
.co-coupon-strip {
    padding: .9rem 1rem;
    border-top: 1px solid rgba(0, 0, 0, .06);
}

.co-coupon-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: none;
    border: 1px dashed var(--gold, #c9a84c);
    border-radius: 8px;
    padding: .5rem 1rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--gold, #c9a84c);
    cursor: pointer;
    font-family: var(--font-b);
    transition: background .2s;
}

.co-coupon-btn:hover {
    background: rgba(201, 168, 76, .07);
}

.co-coupon-remove-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: none;
    border: 1px solid #fdc;
    border-radius: 8px;
    padding: .5rem 1rem;
    font-size: .8rem;
    font-weight: 600;
    color: #e05c5c;
    cursor: pointer;
    font-family: var(--font-b);
    transition: background .2s;
}

.co-coupon-remove-btn:hover {
    background: #fde8e8;
}

/* ── Payment list ── */
.co-payment-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin-bottom: 1.3rem;
}

.co-pay-item {
    display: flex;
    align-items: center;
    gap: .9rem;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: .85rem 1rem;
    cursor: pointer;
    transition: border-color .2s, background .2s;
}

.co-pay-item:has(.co-pay-radio:checked) {
    border-color: var(--dark-green, #1c3028);
    background: #f4f8f5;
}

.co-pay-check {
    flex-shrink: 0;
}

.co-pay-check i {
    font-size: 1.1rem;
    color: #ccc;
    transition: color .2s;
}

.co-pay-item:has(.co-pay-radio:checked) .co-pay-check i {
    color: var(--dark-green, #1c3028);
}

.co-pay-info {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.co-pay-label {
    font-size: .87rem;
    font-weight: 600;
    color: #111;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.co-pay-sub {
    font-size: .75rem;
    color: #888;
}

.co-pay-extra {
    background: #f8f9f7;
    border-radius: 8px;
    padding: 1rem;
    margin-top: .3rem;
    margin-left: 2.2rem;
}

/* ── Captcha ── */
.co-captcha-row {
    display: flex;
    align-items: center;
    gap: .7rem;
    flex-wrap: wrap;
}

.co-captcha-q {
    font-size: .88rem;
    font-weight: 600;
    color: #444;
}

.co-captcha-input {
    width: 90px !important;
    text-align: center;
}

/* ── Place order button ── */
.co-place-order-btn {
    padding: 0px 20px;
    width: 100%;
    height: 56px;
    background: var(--dark-green, #1c3028);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    cursor: pointer;
    font-family: var(--font-b);
    transition: background .2s, transform .15s;
}

.co-place-order-btn:hover {
    background: #2d4f3c;
    transform: translateY(-1px);
}

.co-place-order-btn:active {
    transform: translateY(0);
}

.co-place-order-btn:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
}

.co-grand-inline {
    background: rgba(255, 255, 255, .15);
    border-radius: 6px;
    padding: .2rem .6rem;
    font-size: .8rem;
    margin-left: auto;
}

/* ── Modal ── */
.co-modal-rounded {
    border-radius: 16px;
    border: none;
    overflow: hidden;
}

.co-modal-header {
    background: #fafaf9;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    padding: 1rem 1.4rem;
}

.co-modal-body {
    padding: 1.4rem;
}

/* ── Coupon table ── */
.co-coupon-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .85rem;
}

.co-coupon-table th {
    padding: .6rem .8rem;
    background: #f5f7f4;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #888;
    border-bottom: 1px solid #eee;
}

.co-coupon-table td {
    padding: .75rem .8rem;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
}

.co-coupon-table tr:last-child td {
    border-bottom: none;
}

.co-coupon-code {
    background: #f0ede8;
    color: #111;
    font-weight: 700;
    font-family: monospace;
    padding: .25rem .6rem;
    border-radius: 5px;
    letter-spacing: .08em;
}

.co-btn-apply-coupon {
    background: var(--dark-green, #1c3028);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: .38rem .9rem;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-b);
    transition: background .2s;
}

.co-btn-apply-coupon:hover {
    background: #2d4f3c;
}

/* ── Success modal ── */
.co-success-icon {
    font-size: 3.5rem;
    color: #4caf88;
    margin-bottom: .9rem;
    line-height: 1;
}

.co-success-title {
    font-family: var(--font-d);
    font-size: 1.6rem;
    font-weight: 700;
    color: #111;
    margin-bottom: .35rem;
}

.co-success-sub {
    font-size: .87rem;
    color: #666;
    margin-bottom: .3rem;
}

.co-success-order {
    font-size: .85rem;
    color: #333;
}

/* ── New address form animation ── */
.co-new-addr-form {
    margin-top: .5rem;
}

/* ── Responsive ── */
@media (max-width:767px) {
    .co-card-body {
        padding: 1rem;
    }

    .co-card-header {
        padding: .85rem 1rem;
    }

    .co-address-item {
        padding: .75rem .85rem;
    }

    .co-order-table th,
    .co-order-table td {
        padding: .55rem .7rem;
    }

    .co-place-order-btn {
        height: 52px;
        font-size: .78rem;
    }

    .co-grand-inline {
        display: none;
    }
}

@media (max-width:575px) {
    .co-section {
        padding: 1rem 0 2.5rem;
    }

    .co-radio-group {
        gap: .5rem;
    }
}

/* <!-- ══════════════════════════════════════════════════════════
     Order Details PAGE STYLES
══════════════════════════════════════════════════════════ --> */

/* ── Order Detail Page ── */
.od-section {
    padding: 1.8rem 0 4rem;
}

/* ── Page header ── */
.od-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.od-page-title {
    font-family: var(--font-d);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #111;
    margin: 0 0 .2rem;
}

.od-page-sub {
    font-size: .82rem;
    color: #888;
    margin: 0;
}

/* ── Status pill ── */
.od-status-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    border-radius: 20px;
    padding: .4rem 1rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* ── Cards ── */
.od-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.od-card-header {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .9rem 1.3rem;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    background: #fafaf9;
}

.od-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--dark-green, #1c3028);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
}

.od-card-title {
    font-family: var(--font-b);
    font-size: .92rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.od-card-body {
    padding: 1.2rem 1.3rem;
}

/* ── Info grid (order / payment / address) ── */
.od-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

@media(max-width: 991px) {
    .od-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 575px) {
    .od-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Info rows ── */
.od-info-row {
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.od-info-item {}

.od-info-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: .18rem;
    display: block;
}

.od-info-val {
    font-size: .88rem;
    font-weight: 600;
    color: #222;
    line-height: 1.45;
}

.od-info-val.muted {
    font-weight: 400;
    color: #555;
}

/* ── Payment table ── */
.od-price-table {
    width: 100%;
    border-collapse: collapse;
}

.od-price-table tr td {
    padding: .42rem 0;
    font-size: .85rem;
    color: #555;
}

.od-price-table tr td:first-child {
    font-weight: 600;
    color: #333;
}

.od-price-table tr td:last-child {
    text-align: right;
}

.od-price-table .od-grand-row td {
    padding-top: .7rem;
    border-top: 2px solid #eee;
    font-size: .95rem;
    font-weight: 700;
    color: #111;
}

.od-price-table .od-grand-row td:last-child {
    color: var(--dark-green, #1c3028);
}

/* ── Product row ── */
.od-product-item {
    display: flex;
    gap: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

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

.od-prod-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: contain;
    background: #f8f6f2;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, .06);
    padding: .3rem;
}

.od-prod-info {
    flex: 1;
    min-width: 0;
}

.od-prod-name {
    font-size: .9rem;
    font-weight: 600;
    color: #111;
    margin-bottom: .25rem;
    line-height: 1.4;
    display: block;
    transition: color .18s;
}

.od-prod-name:hover {
    color: var(--gold, #c9a84c);
}

.od-prod-meta {
    font-size: .77rem;
    color: #999;
    margin-bottom: .1rem;
}

.od-prod-price {
    font-size: .88rem;
    font-weight: 600;
    color: #333;
}

.od-prod-actions {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}

/* ── Cancel badge ── */
.od-cancel-info {
    background: #fef2f2;
    border: 1px solid #fcd5d5;
    border-radius: 8px;
    padding: .7rem .9rem;
    margin-top: .7rem;
    font-size: .8rem;
    color: #e05c5c;
    line-height: 1.55;
}

.od-cancel-info strong {
    display: block;
    margin-bottom: .15rem;
    color: #c0392b;
}

/* ── Refund badge ── */
.od-refund-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border-radius: 6px;
    padding: .28rem .65rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-top: .4rem;
}

.od-refund-badge.pending {
    background: #fefce8;
    color: #b45309;
}

.od-refund-badge.process {
    background: #eff6ff;
    color: #1d4ed8;
}

.od-refund-badge.complete {
    background: #f0fdf4;
    color: #166534;
}

.od-refund-badge.wait {
    background: #fef2f2;
    color: #e05c5c;
}

/* ── Timeline ── */
.od-timeline {
    display: flex;
    align-items: flex-start;
    gap: 0;
    padding: .5rem 0 .2rem;
    overflow-x: auto;
    scrollbar-width: none;
    position: relative;
}

.od-timeline::-webkit-scrollbar {
    display: none;
}

.od-tl-step {
    flex: 1;
    min-width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* connector line between steps */
.od-tl-step::before {
    content: '';
    position: absolute;
    top: 14px;
    left: calc(-50% + 14px);
    right: calc(50% + 14px);
    height: 3px;
    background: #e5e7eb;
    z-index: 0;
}

.od-tl-step:first-child::before {
    display: none;
}

/* filled connector for completed steps */
.od-tl-step.done::before {
    background: var(--dark-green, #1c3028);
}

.od-tl-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 3px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: #ccc;
    z-index: 1;
    transition: all .25s;
    flex-shrink: 0;
}

.od-tl-step.done .od-tl-dot {
    border-color: var(--dark-green, #1c3028);
    background: var(--dark-green, #1c3028);
    color: #fff;
}

.od-tl-step.current .od-tl-dot {
    border-color: var(--gold, #c9a84c);
    background: var(--gold, #c9a84c);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(201, 168, 76, .2);
}

.od-tl-label {
    font-size: .7rem;
    font-weight: 600;
    color: #aaa;
    margin-top: .45rem;
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
}

.od-tl-step.done .od-tl-label,
.od-tl-step.current .od-tl-label {
    color: #111;
}

/* ── Action buttons ── */
.od-action-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border-radius: 8px;
    padding: .45rem .95rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .05em;
    cursor: pointer;
    border: none;
    font-family: var(--font-b);
    transition: background .18s, transform .15s;
}

.od-action-btn:hover {
    transform: translateY(-1px);
}

.od-action-btn.danger {
    background: #fef2f2;
    color: #e05c5c;
    border: 1px solid #fcd5d5;
}

.od-action-btn.danger:hover {
    background: #fde8e8;
}

.od-action-btn.primary {
    background: var(--dark-green, #1c3028);
    color: #fff;
}

.od-action-btn.primary:hover {
    background: #2d4f3c;
}

.od-action-btn.gold {
    background: var(--gold, #c9a84c);
    color: #fff;
}

.od-action-btn.gold:hover {
    background: var(--gold-light, #e2c06a);
}

/* ── Download invoice link ── */
.od-download-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--dark-green, #1c3028);
    border: 1px solid #c8dbd0;
    border-radius: 8px;
    padding: .4rem .85rem;
    background: #f4f8f5;
    cursor: pointer;
    transition: background .18s;
    font-family: var(--font-b);
}

.od-download-btn:hover {
    background: #e8f3ec;
}

/* ── Modals ── */
.od-modal-header {
    background: #fafaf9;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.od-modal-header .od-card-icon {
    flex-shrink: 0;
}

.od-modal-title {
    font-size: .95rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    flex: 1;
}

.od-modal-body {
    padding: 1.3rem 1.4rem;
}

.od-modal-footer {
    padding: .9rem 1.4rem;
    border-top: 1px solid rgba(0, 0, 0, .07);
    display: flex;
    gap: .6rem;
    justify-content: flex-end;
    background: #fafaf9;
}

/* ── Bank account card ── */
.od-bank-card {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: .85rem 1rem;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    margin-bottom: .6rem;
}

.od-bank-card:has(input:checked) {
    border-color: var(--dark-green, #1c3028);
    background: #f4f8f5;
}

.od-bank-radio {
    display: none;
}

.od-bank-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: #fff;
    flex-shrink: 0;
    margin-top: .15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .2s;
}

.od-bank-dot::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    transition: background .2s;
}

.od-bank-card:has(input:checked) .od-bank-dot {
    border-color: var(--dark-green, #1c3028);
}

.od-bank-card:has(input:checked) .od-bank-dot::after {
    background: var(--dark-green, #1c3028);
}

.od-bank-info {
    flex: 1;
    min-width: 0;
}

.od-bank-name {
    font-size: .87rem;
    font-weight: 700;
    color: #111;
}

.od-bank-meta {
    font-size: .78rem;
    color: #666;
    line-height: 1.55;
    margin-top: .2rem;
}

/* ── Form elements (inside modals) ── */
.od-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: #666;
    display: block;
    margin-bottom: .35rem;
    font-family: var(--font-b);
}

.od-input,
.od-textarea,
.od-select {
    width: 100%;
    border: 1px solid #dde0dc;
    border-radius: 8px;
    padding: .6rem .85rem;
    font-size: .875rem;
    color: #222;
    background: #fff;
    outline: none;
    font-family: var(--font-b);
    transition: border-color .2s;
}

.od-input:focus,
.od-textarea:focus,
.od-select:focus {
    border-color: var(--gold, #c9a84c);
}

.od-textarea {
    min-height: 90px;
    resize: vertical;
}

/* ── Add new bank section toggle ── */
.od-add-bank-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    border: 2px dashed #ddd;
    border-radius: 10px;
    padding: .7rem 1rem;
    background: none;
    font-size: .83rem;
    font-weight: 600;
    color: #666;
    width: 100%;
    cursor: pointer;
    transition: border-color .2s, color .2s;
    font-family: var(--font-b);
    margin-top: .5rem;
}

.od-add-bank-btn:hover {
    border-color: var(--gold, #c9a84c);
    color: var(--gold, #c9a84c);
}

/* ── Responsive ── */
@media(max-width:767px) {
    .od-card-body {
        padding: 1rem;
    }

    .od-card-header {
        padding: .8rem 1rem;
    }

    .od-product-item {
        gap: .75rem;
    }

    .od-prod-img {
        width: 64px;
        height: 64px;
    }
}

@media(max-width:575px) {
    .od-section {
        padding: 1rem 0 2.5rem;
    }

    .od-prod-actions {
        flex-direction: column;
        gap: .35rem;
    }
}

/* =========================================
    About use
================================= */

/* ── HERO ── */
.about-hero {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 7, 6, .75) 0%, rgba(8, 7, 6, .4) 60%, transparent 100%);
}

.about-hero-c {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    font-family: var(--font-b);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -.01em;
    text-align: center;
}

.about-hero p {
    color: rgba(255, 255, 255, .9);
    font-size: 1.1rem;
    margin-top: .4rem;
    font-family: var(--font-b);
    font-weight: 400;
    text-align: center;
}

/* ── SECTION HELPERS ── */
.py-sec {
    padding: 5rem 0;
}

.sec-title {
    font-family: var(--font-b);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -.01em;
}

.sec-sub {
    color: #888;
    font-size: .88rem;
    max-width: 520px;
    margin: .4rem auto 0;
    text-align: center;
}

.divider {
    width: 60px;
    height: 3px;
    background: #007bff;
    border-radius: 2px;
}

.cat-title-line {
    width: 64px;
    height: 4px;
    background: var(--blue);
    border-radius: 2px;
    margin-bottom: .6rem;
}

/* ── CEO SECTION ── */
.ceo-section {
    padding: 5rem 0;
    background: #fff;
}

.ceo-img-wrap {
    border-radius: var(--r);
    overflow: hidden;
    aspect-ratio: 3/4;
    max-width: 340px;
    width: 100%;
}

.ceo-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.ceo-name {
    font-family: var(--font-b);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #111;
    margin-bottom: .1rem;
}

.ceo-title {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.3rem;
}

.ceo-bio {
    font-size: 0.95rem;
    color: #000;
    line-height: 1.85;
}

.ceo-bio p+p {
    margin-top: .8rem;
}

.leadership-section {
    margin-top: 2rem;
}

.leadership-title {
    font-size: 1.2rem;
    font-weight: bolder;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: .75rem;
    border-bottom: 1px solid #ddd;
}

.leadership-list {
    list-style: disc;
    padding: 0;
    margin: 0;
}

.leadership-list li {
    font-size: .95rem;
    color: #000;
    padding: .3rem 0;
    padding-left: 1rem;
    position: relative;
    line-height: 1.6;
    border-bottom: none;
}

.leadership-list li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.sig-section {
    margin-top: 1.8rem;
}

.sig-title {
    font-size: 1.2rem;
    font-weight: bolder;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: .6rem;
    border-bottom: 1px solid #ddd;
}

.sig-text {
    font-family: var(--font-b);
    font-size: 1.05rem;
    color: #000;
    line-height: 1.7;
}

/* ── ABOUT ILIAS GLOBAL ── */
.about-ig-section {
    background: #fff;
    padding: 4.5rem 0;
}

.about-ig-label {
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -.01em;
    color: #000;
    -webkit-text-stroke: 1px #000;
}

.about-ig-body {
    font-size: 0.95rem;
    color: #000;
    line-height: 1.8;
}

.about-ig-body p+p {
    margin-top: .75rem;
}

/* ── JOIN US BANNER ── */
.join-banner {
    background: #f8f9fa;
    padding: 4rem 0;
}

.join-eyebrow {
    font-size: .72rem;
    font-weight: bolder;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: .3rem;
}

.join-body-bar {
    width: 70px;
    height: 2px;
    background: #007bff;
    margin: 0 auto 24px auto;
    /* center + space below */
    border-radius: 2px;
}

.join-title {
    font-family: var(--font-b);
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #000;
}

.join-title span {
    color: #000;
}

.join-body {
    font-size: .88rem;
    color: #000;
    line-height: 1.8;
    max-width: 800px;
}

/* ── QUANTUM ENERGY ── */
.quantum-section {
    padding: 5rem 0;
    background: #fff;
}

.quantum-img {
    border-radius: var(--r);
    overflow: hidden;
    aspect-ratio: 1;
    max-width: 420px;
    width: 100%;
}

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

.quantum-label {
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -.01em;
    color: #000;
    -webkit-text-stroke: 1px #000;
}

.quantum-body {
    font-size: .84rem;
    color: #000;
    line-height: 1.8;
}

.quantum-body p+p {
    margin-top: .75rem;
}

/* ── OUR TEAM ── */
.team-section {
    padding: 5rem 0;
}

.team-card {
    background: #fff;
    border-radius: var(--r);
    overflow: hidden;
    /* border: 1px solid rgba(0, 0, 0, .06); */
    text-align: center;
    padding-bottom: 1.5rem;
    height: 100%;
}

.team-card-img-wrap {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.1rem;
    overflow: hidden;
    background: #f5f2ed;
    border-radius: 50%;
}

.team-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .5s ease;
}

.team-card:hover .team-card-img-wrap img {
    transform: scale(1.05);
}

.team-name {
    font-family: var(--font-b);
    font-size: 1.05rem;
    font-weight: 700;
    color: #000;
    margin-bottom: .15rem;
    padding: 0 1rem;
}

.team-role {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: .8rem;
}

.team-bio {
    font-size: .78rem;
    color: #777;
    line-height: 1.7;
    padding: 0 1.1rem;
}

/* ── RESPONSIVE ── */
@media (min-width: 1200px) {
    .ceo-img-wrap {
        min-width: 545px;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .ceo-img-wrap {
        min-width: 460px;
    }
}

@media (min-width: 767px) and (max-width: 992px) {
    .ceo-img-wrap {
        min-width: 360px;
    }
}

@media (max-width: 767px) {
    .py-sec {
        padding: 3.2rem 0;
    }

    .about-hero {
        min-height: 320px;
    }

    .ceo-img-wrap {
        max-width: 280px;
        margin: 0 auto;
    }

    .quantum-img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .about-hero {
        min-height: 260px;
    }

}

/* ========================
    Contact section
======================= */
.contact-section {
    background: #f5f3ef;
    padding: 80px 0;
}

.contact-title {
    font-family: var(--font-d);
    font-size: 48px;
    font-weight: 500;
    /* letter-spacing: 2px; */
    color: var(--dark);
}

.contact-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin-top: 6px;
}

/* Card */
.contact-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--r);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Left */
.contact-left-title {
    font-family: var(--font-d);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
}

.contact-item {
    gap: 15px;
    margin-bottom: 10px;
}

.contact-icon {
    color: var(--gold);
    font-size: 18px;
}

.contact-main {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.contact-sub {
    font-size: 13px;
    color: #6c757d;
    margin-top: 3px;
}

/* Form */
.form-label {
    font-size: 13px;
    color: #333;
    margin-bottom: 5px;
}

.custom-input {
    height: 44px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}

textarea.custom-input {
    height: auto;
}

section.custom-select {
    height: 44px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* Button */
.contact-btn {
    background: linear-gradient(90deg, #163d2c, #1f4e36);
    color: #fff;
    border-radius: 6px;
    padding: 12px;
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 600;
    border: none;
}

.contact-btn:hover {
    opacity: 0.9;
}

@media (min-width: 992px) {
    .contact-item {
        margin-bottom: 50px;
    }

    .contact-icon {
        margin-top: 4px;
    }
}