/* =========================
   GLOBAL
========================= */

body {
    min-height: 100vh;
}

/* =========================
   PRODUCT CARD
========================= */

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;

    height: 100%;

    border: 1px solid #eef0f3 !important;
    border-radius: 16px;

    overflow: hidden;
    background: #fff;

    box-shadow: 0 6px 18px rgba(16, 24, 40, 0.06);

    transition: transform .2s ease,
                box-shadow .2s ease;
}

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

    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.12);
}

/* =========================
   IMAGE
========================= */

.product-card__image-wrap {
    position: relative;

    width: 100%;
    height: 240px;

    overflow: hidden;
    background: #f8f9fb;
}

/* IMAGE */
.product-card__image-wrap .product-img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    display: block;

    transition: transform .35s ease;
}

/* HOVER */
.product-card:hover .product-img {
    transform: scale(1.05);
}

/* =========================
   WISHLIST
========================= */

.wishlist-btn {
    position: absolute;

    top: 10px;
    right: 10px;

    z-index: 20;

    width: 38px;
    height: 38px;

    border-radius: 50%;
    border: 1px solid #dc3545;

    background: #fff;
    color: #dc3545;

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

    transition: all .2s ease;
}

.wishlist-btn i {
    transition: transform 0.25s ease, color 0.25s ease;
}

.wishlist-btn.active i {
    color: #fff;
    transform: scale(1.25);
}

.wishlist-btn:active i {
    transform: scale(0.9);
}

.wishlist-btn:hover {
    transform: scale(1.05);
}

/* ACTIVE */
.wishlist-btn.active {
    background: #6c757d;
    border-color: #6c757d;
    color: #fff;
}

/* =========================
   BODY
========================= */

.product-card .card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;

    padding: 14px !important;

    flex: 1;
}

/* TITLE */

.product-title,
.product-card h5,
.product-card h6,
.product-card .card-title {
    margin: 0;

    min-height: 42px;

    font-size: .92rem;
    font-weight: 600;
    line-height: 1.4;

    color: #111827;

    overflow: hidden;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* =========================
   META
========================= */

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;

    font-size: 0.75rem;
    color: #6b7280;
}

.product-sku {
    font-weight: 500;
}

.product-stock {
    font-weight: 600;
}

.product-stock.text-success {
    color: #16a34a !important;
}

.product-stock.text-danger {
    color: #dc2626 !important;
}

.product-particle {
    padding: 2px 6px;

    border-radius: 6px;

    background: #f3f4f6;

    font-size: 0.7rem;
}

/* =========================
   PRICE
========================= */

.product-price {
    margin-top: auto;

    font-size: 1rem;
    font-weight: 700;

    color: #111827;
}

/* =========================
   ACTIONS
========================= */

.product-card__actions {
    display: flex;
    gap: 10px;

    margin-top: 10px;
}

/* HALF WIDTH BUTTONS */

.product-card__actions .btn {
    flex: 1;

    border-radius: 10px;

    padding: 8px 10px;

    font-size: .82rem;
    font-weight: 600;
}

/* VIEW */

.product-card__actions .btn-outline-dark {
    border: 1px solid #111827;
}

.product-card__actions .btn-outline-dark:hover {
    background: #111827;
    color: #fff;
}

/* ADD */

.product-card__actions .btn-dark {
    background: #111827;
    border-color: #111827;
}

.product-card__actions .btn-dark:hover {
    background: #000;
}

/* =========================
   IN CART
========================= */

.in-cart {
    background: #6c757d !important;
    border-color: #6c757d !important;
    color: #fff !important;

    pointer-events: none;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .product-card__image-wrap {
        height: 200px;
    }

    .product-card__actions {
        gap: 8px;
    }

    .product-card__actions .btn {
        padding: 8px;
        font-size: .8rem;
    }
}
/* =========================
   TOASTR
========================= */

#toast-container {
    position: fixed;
    z-index: 999999;
    width: 100%;
    pointer-events: none;
}

#toast-container.toast-top-center {
    top: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
}

#toast-container .toast {
    border-radius: 10px;
    margin-bottom: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    font-size: 14px;
    padding: 12px 16px;
    pointer-events: auto;
}

/* =========================
   FLASH MESSAGES
========================= */

.flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    max-width: 320px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    animation: flashIn 0.35s ease;
}

.flash-success { background: #e9f9ee; border: 1px solid #b7e4c7; color: #1b7a3a; }
.flash-error { background: #fdecec; border: 1px solid #f5c2c7; color: #a4161a; }
.flash-info { background: #e7f1ff; border: 1px solid #b6d4fe; color: #084298; }

@keyframes flashIn {
    from { opacity: 0; transform: translateX(120%); }
    to { opacity: 1; transform: translateX(0); }
}

.flash-message.hide {
    animation: flashOut 0.3s ease forwards;
}

@keyframes flashOut {
    to { opacity: 0; transform: translateX(120%); }
}

/* =========================
   MINI CART PANEL
========================= */

/* =========================
   MINI CART PANEL (STABLE)
========================= */

.mini-cart {
    width: 360px;
    max-width: calc(100vw - 12px);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0,0,0,.12);

    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 99999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;

    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    will-change: transform, opacity;
}

.mini-cart.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* =========================
   HEADER
========================= */

.mini-cart__header {
    padding: 14px 16px;
    border-bottom: 1px solid #eef1f5;
}

/* =========================
   ITEMS WRAPPER
========================= */

.mini-cart-items {
    max-height: 340px;
    overflow-y: auto;
}

/* =========================
   ITEM ROW (🔥 NO SHIFT GRID FIX)
========================= */

.mini-cart-item {
    display: grid;
    grid-template-columns: 52px 1fr 70px;
    align-items: center;

    gap: 10px;
    padding: 10px 14px;

    border-bottom: 1px solid #edf1f5;

    min-height: 76px;
    box-sizing: border-box;
}

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

/* =========================
   IMAGE (LOCKED SIZE)
========================= */

.mini-cart-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    background: #f3f4f6;
    display: block;
}

/* =========================
   TEXT AREA (NO JUMPING)
========================= */

.item-info {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* PRODUCT NAME (SAFE CLAMP) */
.mini-cart-item .fw-semibold {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    overflow: hidden;
    word-break: break-word;

    /* fallback (prevents warning + safer rendering) */
    line-clamp: 2;
}

/* =========================
   QUANTITY CONTROLS (NO SHIFT EVER)
========================= */

.mini-cart-controls {
    display: flex;
    align-items: center;
    gap: 6px;

    margin-top: 4px;

    height: 28px; /* 🔥 LOCK HEIGHT */
}

/* buttons fixed size */
.mini-cart-qty {
    width: 26px;
    height: 26px;
    padding: 0;

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

    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;

    flex: 0 0 auto;
}

/* quantity number NEVER RESIZES LAYOUT */
.mini-cart-qty-value {
    width: 28px;
    text-align: center;
    font-weight: 600;

    display: inline-block;
    flex: 0 0 28px;
}

/* =========================
   PRICE COLUMN (LOCKED)
========================= */

.item-right {
    text-align: right;
    font-weight: 600;
    font-size: 13px;

    white-space: nowrap;
}

/* =========================
   FOOTER
========================= */

.mini-cart__footer {
    padding: 14px 16px;
    border-top: 1px solid #eef1f5;
    background: #fafafa;
}

/* (kept unchanged for brevity - no duplicates found here) */

/* =========================
   CHECKOUT + NOTIFY + OPTIONS
========================= */

/* (unchanged sections kept as-is, no duplicates detected) */

.checkout-container {
    max-width: 980px;
    margin: 0 auto;
}

.checkout-summary {
    position: relative;
}

#notify-stack {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-card {
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: .5rem .6rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.row.g-4 {
    display: flex;
    flex-wrap: wrap;
}

/* =========================
   IKEA-inspired shop refresh
========================= */
:root {
    --shop-blue: #0058a3;
    --shop-blue-dark: #004f93;
    --shop-yellow: #ffdb00;
    --shop-ink: #111111;
    --shop-muted: #595959;
    --shop-bg: #f5f5f5;
    --shop-surface: #ffffff;
    --shop-border: #dfdfdf;
    --shop-radius: 4px;
    --shop-font: "Segoe UI", Roboto, Arial, sans-serif;
}

.shop-body,
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--shop-bg);
    color: var(--shop-ink);
    font-family: var(--shop-font);
    letter-spacing: 0;
}

a {
    color: var(--shop-blue);
}

.shop-navbar {
    background: var(--shop-blue);
    border-bottom: 6px solid var(--shop-yellow);
    box-shadow: none;
}

.shop-navbar .container-fluid {
    min-height: 64px;
    padding-right: clamp(12px, 2vw, 28px);
    padding-left: clamp(12px, 2vw, 28px);
}

.shop-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 800;
    white-space: nowrap;
}

.shop-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: var(--shop-blue);
    background: var(--shop-yellow);
    border-radius: 50%;
}

.shop-nav-link,
.shop-icon-link {
    color: #ffffff !important;
    font-weight: 700;
}

.shop-nav-link {
    border-radius: var(--shop-radius);
    padding: 8px 8px !important;
    white-space: nowrap;
}

.shop-nav-link:hover,
.shop-nav-link:focus,
.shop-icon-link:hover,
.shop-icon-link:focus {
    color: var(--shop-ink) !important;
    background: var(--shop-yellow);
}

.shop-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
}

.shop-navbar__collapse-shell {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    flex-wrap: nowrap;
}

.shop-navbar__menu {
    flex: 1 1 auto;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 2px;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.shop-navbar__menu::-webkit-scrollbar {
    display: none;
}

.shop-navbar__menu .nav-item {
    flex: 0 0 auto;
}

.shop-navbar__search {
    flex: 0 1 250px;
    min-width: 210px;
}

.shop-navbar__search .input-group {
    flex-wrap: nowrap;
}

.shop-navbar__search .form-control {
    min-width: 0;
}

.shop-navbar__actions {
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    margin-left: 0;
}

.shop-navbar__menu .shop-nav-link {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.shop-navbar .navbar-toggler {
    background: #ffffff;
    border: 0;
    border-radius: var(--shop-radius);
}

.shop-main {
    flex: 1;
    padding: 32px 0 44px;
}

.shop-footer {
    color: #ffffff;
    background: var(--shop-blue);
    border-top: 6px solid var(--shop-yellow);
    font-weight: 700;
}

.shop-hero {
    display: grid;
    align-items: center;
    min-height: 380px;
    padding: clamp(32px, 6vw, 76px);
    color: #ffffff;
    background:
        linear-gradient(90deg, rgba(0, 88, 163, 0.96), rgba(0, 88, 163, 0.72)),
        url("../images/default.svg") center/cover;
    border-radius: var(--shop-radius);
}

.shop-hero__content {
    max-width: 760px;
}

.shop-kicker {
    color: var(--shop-yellow);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.shop-section-title {
    color: var(--shop-ink);
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: 0;
}

.shop-cta {
    color: #ffffff;
    background: var(--shop-blue);
    border-radius: var(--shop-radius);
}

.btn {
    border-radius: var(--shop-radius);
    font-weight: 750;
}

.btn-primary,
.btn-success,
.product-card__actions .btn-dark {
    color: #ffffff !important;
    background: var(--shop-blue) !important;
    border-color: var(--shop-blue) !important;
}

.btn-primary:hover,
.btn-success:hover,
.product-card__actions .btn-dark:hover {
    background: var(--shop-blue-dark) !important;
    border-color: var(--shop-blue-dark) !important;
}

.btn-warning {
    color: var(--shop-ink);
    background: var(--shop-yellow);
    border-color: var(--shop-yellow);
}

.btn-outline-primary,
.product-card__actions .btn-outline-dark {
    color: var(--shop-blue);
    border-color: var(--shop-blue);
}

.btn-outline-primary:hover,
.product-card__actions .btn-outline-dark:hover {
    color: #ffffff;
    background: var(--shop-blue);
    border-color: var(--shop-blue);
}

.card,
.product-card,
.shop-category-card,
.checkout-card,
.summary-box,
.mini-cart {
    background: var(--shop-surface);
    border: 1px solid var(--shop-border) !important;
    border-radius: var(--shop-radius) !important;
    box-shadow: none !important;
}

.product-card,
.shop-category-card {
    overflow: hidden;
    transition: border-color .16s ease, transform .16s ease;
}

.product-card:hover,
.shop-category-card:hover {
    border-color: var(--shop-blue) !important;
    transform: translateY(-2px);
    box-shadow: none !important;
}

.product-card__image-wrap,
.shop-category-card .card-img-top {
    background: #eeeeee;
}

.product-card:hover .product-img {
    transform: none;
}

.product-card .card-body,
.shop-category-card .card-body {
    padding: 16px !important;
}

.product-title,
.product-card h5,
.product-card h6,
.product-card .card-title {
    color: var(--shop-ink);
    font-weight: 800;
}

.product-price {
    color: var(--shop-ink);
    font-size: 1.08rem;
}

.product-particle {
    background: #f0f0f0;
    border-radius: var(--shop-radius);
}

.product-card__actions .btn {
    border-radius: var(--shop-radius);
}

.wishlist-btn {
    border-color: var(--shop-border);
    color: var(--shop-ink);
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background: var(--shop-yellow);
    border-color: var(--shop-yellow);
    color: var(--shop-ink);
}

.badge.bg-danger {
    color: var(--shop-ink);
    background: var(--shop-yellow) !important;
}

.mini-cart__header,
.mini-cart__footer {
    border-color: var(--shop-border);
}

.mini-cart__footer {
    background: #f7f7f7;
}

.form-control,
.form-select {
    border-color: var(--shop-border);
    border-radius: var(--shop-radius);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--shop-blue);
    box-shadow: 0 0 0 .2rem rgba(0, 88, 163, .14);
}

.option-card {
    border-color: var(--shop-border);
    border-radius: var(--shop-radius);
}

@media (max-width: 991.98px) {
    .shop-navbar .navbar-collapse {
        padding: 12px 0 8px;
    }

    .shop-navbar__collapse-shell {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .shop-navbar .navbar-nav {
        align-items: stretch !important;
        width: 100%;
    }

    .shop-nav-link {
        margin: 2px 0;
    }

    .shop-navbar__search {
        max-width: none;
        min-width: 0;
        width: 100%;
    }

    .shop-navbar__actions {
        display: grid !important;
        gap: 10px 8px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch !important;
        margin-left: 0;
        width: 100%;
    }

    .shop-navbar__actions > .nav-item {
        margin: 0 !important;
        width: 100%;
    }

    .language-switcher {
        grid-column: 1 / -1;
        margin: 0 !important;
        width: 100%;
    }

    .language-switcher__toggle {
        justify-content: center !important;
        min-height: 44px;
        padding-left: 14px !important;
        padding-right: 14px !important;
        width: 100%;
    }

    .language-switcher__menu {
        min-width: 100%;
    }

    .shop-navbar__auth-link,
    .shop-navbar__wishlist-link,
    .shop-navbar__cart-link,
    .shop-navbar__action--profile > .shop-nav-link {
        align-items: center;
        display: inline-flex;
        justify-content: center;
        min-height: 44px;
        width: 100%;
    }

    .shop-navbar__auth-link {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .shop-navbar__cart-link {
        gap: 8px;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .shop-navbar__wishlist-link {
        gap: 8px;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .shop-navbar__wishlist-label {
        color: inherit;
        display: inline-block;
        font-size: .84rem;
        font-weight: 900;
        line-height: 1;
        text-transform: none;
    }

    .shop-navbar__cart-label {
        color: inherit;
        display: inline-block;
        font-size: .84rem;
        font-weight: 900;
        line-height: 1;
        text-transform: none;
    }

    .shop-navbar__cart-link .badge {
        position: static !important;
        transform: none !important;
        margin-left: auto;
    }

    .shop-navbar__action--profile > .shop-nav-link {
        justify-content: flex-start;
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .shop-hero {
        min-height: 300px;
        padding: 28px;
    }
}

/* =========================
   Seed calendar kit storefront
========================= */
:root {
    --shop-blue: #2f6b3f;
    --shop-blue-dark: #214d2f;
    --shop-yellow: #e8c35d;
    --shop-ink: #18251b;
    --shop-muted: #66736a;
    --shop-bg: #ffffff;
    --shop-surface: #ffffff;
    --shop-border: #dfe9df;
    --shop-radius: 6px;
    --shop-font: "Segoe UI", Roboto, Arial, sans-serif;
    --shop-serif: Georgia, "Times New Roman", serif;
}

.shop-body,
body {
    background: #ffffff;
    color: var(--shop-ink);
}

.shop-promo-bar {
    background: #183f27;
    color: #ffffff;
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .01em;
}

.shop-utility-bar {
    background: #ffffff;
    border-bottom: 1px solid var(--shop-border);
    color: var(--shop-muted);
}

.shop-utility-links a,
.shop-utility-contact span {
    color: var(--shop-muted);
}

.shop-navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--shop-border);
    box-shadow: none;
}

.shop-navbar .container-fluid {
    min-height: 78px;
}

.shop-brand {
    color: var(--shop-ink) !important;
    font-family: var(--shop-font);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 850;
    letter-spacing: -.02em;
    text-transform: none;
}

.shop-brand-mark {
    width: 42px;
    height: 42px;
    border: 1px solid #b7d7b7;
    border-radius: 50%;
    color: #ffffff;
    background: var(--shop-blue);
    font-family: var(--shop-font);
    font-size: 18px;
}

.shop-nav-link,
.shop-icon-link {
    color: var(--shop-ink) !important;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: none;
}

.shop-nav-link {
    padding: 10px 11px !important;
}

.shop-nav-link:hover,
.shop-nav-link:focus,
.shop-icon-link:hover,
.shop-icon-link:focus {
    color: var(--shop-blue-dark) !important;
    background: #eef7ee;
}

.shop-icon-link {
    border-color: var(--shop-border);
    background: #f8fbf7;
}

.shop-category-nav {
    background: #f6faf5;
    border-bottom: 1px solid var(--shop-border);
}

.shop-category-nav__scroll {
    align-items: center;
    gap: 12px;
}

.shop-category-nav__label {
    flex: 0 0 auto;
    color: var(--shop-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.shop-category-nav__scroll a {
    padding: 11px 14px;
    color: var(--shop-blue-dark);
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

.shop-category-nav__scroll a:hover {
    color: var(--shop-blue-dark);
    border-color: #cfe2cf;
    background: #ffffff;
}

.shop-main {
    padding: 30px 0 56px;
}

.shop-hero {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    border: 1px solid #d8e8d8;
    border-radius: 18px;
    color: var(--shop-ink);
    background:
        radial-gradient(circle at 88% 24%, rgba(232, 195, 93, .34), transparent 22%),
        radial-gradient(circle at 78% 76%, rgba(92, 151, 91, .22), transparent 26%),
        linear-gradient(105deg, #f8fff5 0%, #eef8ed 54%, #ffffff 100%);
}

.shop-hero::after {
    content: "";
    position: absolute;
    right: clamp(24px, 8vw, 120px);
    bottom: 36px;
    width: clamp(180px, 28vw, 340px);
    aspect-ratio: 1;
    border-radius: 28px;
    border: 1px solid #cfe2cf;
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        repeating-linear-gradient(90deg, #dbeadb 0 1px, transparent 1px 28px),
        repeating-linear-gradient(0deg, #dbeadb 0 1px, transparent 1px 28px);
    box-shadow: 0 20px 60px rgba(47, 107, 63, .14);
}

.shop-hero__content {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.shop-kicker {
    color: var(--shop-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.shop-hero h1,
.shop-section-title {
    color: var(--shop-ink);
    font-family: var(--shop-serif);
    font-weight: 700;
    letter-spacing: 0;
}

.shop-hero h1 {
    max-width: 620px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: .98;
}

.shop-hero .lead {
    max-width: 560px;
    color: #465448;
}

.shop-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.seed-feature-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--shop-border);
    border-radius: 14px;
    background: var(--shop-border);
}

.seed-feature-band > div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 72px;
    padding: 18px;
    background: #ffffff;
    color: var(--shop-ink);
    font-weight: 800;
}

.seed-feature-band i {
    color: var(--shop-blue);
    font-size: 20px;
}

.card,
.product-card,
.shop-category-card,
.checkout-card,
.summary-box,
.mini-cart {
    border-color: var(--shop-border) !important;
    border-radius: 12px !important;
    background: #ffffff;
    box-shadow: none !important;
}

.product-card:hover,
.shop-category-card:hover {
    border-color: #b7d7b7 !important;
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(47, 107, 63, .10) !important;
}

.product-card__image-wrap {
    height: 270px;
    background: #f6faf5;
}

.product-title,
.product-card h5,
.product-card h6,
.product-card .card-title {
    color: var(--shop-ink);
    font-family: var(--shop-font);
    font-size: 1rem;
    font-weight: 850;
}

.product-particle {
    background: #f6faf5;
    color: var(--shop-muted);
}

.product-price,
.product-card .card-text {
    color: var(--shop-blue-dark);
    font-size: 1.08rem;
    font-weight: 900;
}

.btn {
    border-radius: 999px;
    letter-spacing: 0;
    text-transform: none;
}

.btn-primary,
.btn-success,
.product-card__actions .btn-dark {
    color: #ffffff !important;
    background: var(--shop-blue) !important;
    border-color: var(--shop-blue) !important;
}

.btn-primary:hover,
.btn-success:hover,
.product-card__actions .btn-dark:hover {
    background: var(--shop-blue-dark) !important;
    border-color: var(--shop-blue-dark) !important;
}

.btn-warning {
    color: #253018;
    background: var(--shop-yellow);
    border-color: var(--shop-yellow);
}

.btn-outline-primary,
.btn-outline-light,
.product-card__actions .btn-outline-dark {
    color: var(--shop-blue);
    border-color: var(--shop-blue);
    background: #ffffff;
}

.btn-outline-primary:hover,
.btn-outline-light:hover,
.product-card__actions .btn-outline-dark:hover {
    color: #ffffff;
    background: var(--shop-blue);
    border-color: var(--shop-blue);
}

.wishlist-btn {
    color: var(--shop-blue);
    border-color: #d9e8d9;
    background: rgba(255,255,255,.94);
}

.wishlist-btn:hover,
.wishlist-btn.active {
    color: #ffffff;
    background: var(--shop-blue);
    border-color: var(--shop-blue);
}

.badge.bg-danger,
.shop-icon-link .badge {
    color: #ffffff !important;
    background: #d0663f !important;
}

.shop-cta {
    border: 1px solid #d8e8d8;
    border-radius: 18px;
    color: var(--shop-ink);
    background: #f6faf5;
}

.shop-footer {
    padding: 56px 0 24px;
    color: #dcebdd;
    background: #183f27;
    border-top: 0;
}

.shop-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 850;
    text-decoration: none;
}

.shop-footer .shop-brand-mark {
    color: #183f27;
    background: #e8c35d;
    border-color: #e8c35d;
}

.shop-footer h6 {
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.shop-footer a {
    display: block;
    margin: 8px 0;
    color: #dcebdd;
    text-decoration: none;
}

.shop-footer a:hover {
    color: #ffffff;
}

.shop-footer-copy {
    color: #c8dac9;
    line-height: 1.7;
}

.shop-footer-form {
    display: flex;
    gap: 8px;
}

.shop-footer-form .form-control {
    background: #ffffff;
}

.shop-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.16);
    color: #b8cfba;
    font-size: 13px;
}

@media (max-width: 991.98px) {
    .shop-navbar .container-fluid {
        min-height: 66px;
    }

    .shop-brand {
        font-size: 22px;
    }

    .shop-hero::after {
        opacity: .28;
        right: -70px;
    }

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

@media (max-width: 575.98px) {
    .shop-hero {
        min-height: 390px;
        padding: 28px 22px;
    }

    .shop-hero h1 {
        font-size: 42px;
    }

    .seed-feature-band {
        grid-template-columns: 1fr;
    }

    .shop-footer-form {
        flex-direction: column;
    }
}

/* =========================
   Light four-seasons illustration final override
========================= */
body,
.shop-body {
    background: #ffffff !important;
    color: #18251b;
}

body .shop-promo-bar {
    background: #183f27;
}

body .shop-utility-bar,
body .shop-navbar,
body .shop-category-nav {
    background: #ffffff;
    border-color: #dfe9df;
}

body .shop-brand {
    color: #18251b !important;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    font-weight: 850;
    letter-spacing: -.02em;
}

body .shop-brand-mark {
    color: #ffffff;
    background: #2f6b3f;
    border-color: #b7d7b7;
}

body .shop-hero {
    min-height: 500px;
    border: 1px solid #d8e8d8;
    border-radius: 18px;
    color: #18251b;
    background:
        linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.93) 42%, rgba(255,255,255,.45) 68%, rgba(255,255,255,.14) 100%),
        url("../images/hero-four-seasons-light-seed-calendar.png") center right / cover no-repeat;
    box-shadow: none;
}

body .shop-hero h1 {
    color: #18251b;
    text-shadow: none;
}

body .shop-hero .lead {
    color: #465448;
}

body .shop-kicker {
    color: #2f6b3f;
}

body .shop-hero .btn-warning {
    color: #253018;
    background: #e8c35d;
    border-color: #e8c35d;
}

body .shop-hero .btn-outline-light {
    color: #2f6b3f;
    border-color: #2f6b3f;
    background: #ffffff;
}

body .shop-hero .btn-outline-light:hover {
    color: #ffffff;
    background: #2f6b3f;
    border-color: #2f6b3f;
}

body .seed-feature-band {
    border: 1px solid #dfe9df;
    border-radius: 14px;
    background: #dfe9df;
}

body .seed-feature-band > div {
    color: #18251b;
    background: #ffffff;
    border-top: 3px solid currentColor;
}

body .seed-feature-band .season-spring,
body .seed-feature-band .season-spring i {
    color: #7aa322;
}

body .seed-feature-band .season-summer,
body .seed-feature-band .season-summer i {
    color: #2f8b23;
}

body .seed-feature-band .season-autumn,
body .seed-feature-band .season-autumn i {
    color: #d96f2c;
}

body .seed-feature-band .season-winter,
body .seed-feature-band .season-winter i {
    color: #2b95aa;
}

body .seed-feature-band span {
    color: #18251b;
}

body .shop-footer {
    background: #183f27;
}

/* =========================
   Absolute final four seasons override
========================= */
body .shop-promo-bar,
body .shop-footer {
    background: #050705;
}

body .shop-hero {
    min-height: 540px;
    border: 0;
    border-radius: 0;
    color: #fbfff1;
    background:
        linear-gradient(90deg, rgba(5,7,5,.94) 0%, rgba(5,7,5,.84) 38%, rgba(5,7,5,.38) 62%, rgba(5,7,5,.06) 100%),
        url("../images/hero-four-seasons-seed-calendar.png") center / cover no-repeat;
    box-shadow: 0 24px 70px rgba(5, 7, 5, .24);
}

body .shop-hero h1 {
    color: #fbfff1;
    text-shadow: 0 2px 18px rgba(0,0,0,.34);
}

body .shop-hero .lead {
    color: rgba(251,255,241,.86);
}

body .shop-kicker {
    color: #d7f37f;
}

body .shop-hero .btn-warning {
    color: #050705;
    background: #d7f37f;
    border-color: #d7f37f;
}

body .shop-hero .btn-outline-light {
    color: #fbfff1;
    border-color: rgba(251,255,241,.7);
    background: rgba(5,7,5,.18);
}

body .shop-hero .btn-outline-light:hover {
    color: #050705;
    background: #fbfff1;
    border-color: #fbfff1;
}

body .seed-feature-band {
    border: 0;
    border-radius: 0;
    background: #050705;
}

body .seed-feature-band > div {
    color: #fbfff1;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 34%),
        #050705;
    border-top: 3px solid currentColor;
}

body .seed-feature-band .season-spring,
body .seed-feature-band .season-spring i {
    color: #d7f37f;
}

body .seed-feature-band .season-summer,
body .seed-feature-band .season-summer i {
    color: #69bf18;
}

body .seed-feature-band .season-autumn,
body .seed-feature-band .season-autumn i {
    color: #f28b35;
}

body .seed-feature-band .season-winter,
body .seed-feature-band .season-winter i {
    color: #bfefff;
}

body .seed-feature-band span {
    color: #fbfff1;
}

body .shop-footer {
    background:
        radial-gradient(circle at 12% 0%, rgba(215,243,127,.16), transparent 24%),
        radial-gradient(circle at 88% 0%, rgba(242,139,53,.16), transparent 24%),
        #050705;
}

/* =========================
   Absolute final four seasons override
========================= */
body .shop-promo-bar,
body .shop-footer {
    background: #050705;
}

body .shop-hero {
    min-height: 540px;
    border: 0;
    border-radius: 0;
    color: #fbfff1;
    background:
        linear-gradient(90deg, rgba(5,7,5,.94) 0%, rgba(5,7,5,.84) 38%, rgba(5,7,5,.38) 62%, rgba(5,7,5,.06) 100%),
        url("../images/hero-four-seasons-seed-calendar.png") center / cover no-repeat;
    box-shadow: 0 24px 70px rgba(5, 7, 5, .24);
}

body .shop-hero h1 {
    color: #fbfff1;
    text-shadow: 0 2px 18px rgba(0,0,0,.34);
}

body .shop-hero .lead {
    color: rgba(251,255,241,.86);
}

body .shop-kicker {
    color: #d7f37f;
}

body .shop-hero .btn-warning {
    color: #050705;
    background: #d7f37f;
    border-color: #d7f37f;
}

body .shop-hero .btn-outline-light {
    color: #fbfff1;
    border-color: rgba(251,255,241,.7);
    background: rgba(5,7,5,.18);
}

body .shop-hero .btn-outline-light:hover {
    color: #050705;
    background: #fbfff1;
    border-color: #fbfff1;
}

body .seed-feature-band {
    border: 0;
    border-radius: 0;
    background: #050705;
}

body .seed-feature-band > div {
    color: #fbfff1;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 34%),
        #050705;
    border-top: 3px solid currentColor;
}

body .seed-feature-band .season-spring,
body .seed-feature-band .season-spring i {
    color: #d7f37f;
}

body .seed-feature-band .season-summer,
body .seed-feature-band .season-summer i {
    color: #69bf18;
}

body .seed-feature-band .season-autumn,
body .seed-feature-band .season-autumn i {
    color: #f28b35;
}

body .seed-feature-band .season-winter,
body .seed-feature-band .season-winter i {
    color: #bfefff;
}

body .seed-feature-band span {
    color: #fbfff1;
}

body .shop-footer {
    background:
        radial-gradient(circle at 12% 0%, rgba(215,243,127,.16), transparent 24%),
        radial-gradient(circle at 88% 0%, rgba(242,139,53,.16), transparent 24%),
        #050705;
}

/* =========================
   Final four seasons override
========================= */
.shop-promo-bar,
.shop-footer {
    background: #050705;
}

.shop-hero {
    min-height: 540px;
    border: 0;
    border-radius: 0;
    color: #fbfff1;
    background:
        linear-gradient(90deg, rgba(5,7,5,.94) 0%, rgba(5,7,5,.84) 38%, rgba(5,7,5,.38) 62%, rgba(5,7,5,.06) 100%),
        url("../images/hero-four-seasons-seed-calendar.png") center / cover no-repeat;
    box-shadow: 0 24px 70px rgba(5, 7, 5, .24);
}

.shop-hero h1 {
    color: #fbfff1;
    text-shadow: 0 2px 18px rgba(0,0,0,.34);
}

.shop-hero .lead {
    color: rgba(251,255,241,.86);
}

.shop-kicker {
    color: #d7f37f;
}

.shop-hero .btn-warning {
    color: #050705;
    background: #d7f37f;
    border-color: #d7f37f;
}

.shop-hero .btn-outline-light {
    color: #fbfff1;
    border-color: rgba(251,255,241,.7);
    background: rgba(5,7,5,.18);
}

.shop-hero .btn-outline-light:hover {
    color: #050705;
    background: #fbfff1;
    border-color: #fbfff1;
}

.seed-feature-band {
    border: 0;
    border-radius: 0;
    background: #050705;
}

.seed-feature-band > div {
    color: #fbfff1;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 34%),
        #050705;
    border-top: 3px solid currentColor;
}

.seed-feature-band .season-spring,
.seed-feature-band .season-spring i {
    color: #d7f37f;
}

.seed-feature-band .season-summer,
.seed-feature-band .season-summer i {
    color: #69bf18;
}

.seed-feature-band .season-autumn,
.seed-feature-band .season-autumn i {
    color: #f28b35;
}

.seed-feature-band .season-winter,
.seed-feature-band .season-winter i {
    color: #bfefff;
}

.seed-feature-band span {
    color: #fbfff1;
}

.shop-footer {
    background:
        radial-gradient(circle at 12% 0%, rgba(215,243,127,.16), transparent 24%),
        radial-gradient(circle at 88% 0%, rgba(242,139,53,.16), transparent 24%),
        #050705;
}

/* =========================
   Four seasons ornamental theme
========================= */
:root {
    --season-cream: #fbfff1;
    --season-spring: #d7f37f;
    --season-summer: #69bf18;
    --season-autumn: #f28b35;
    --season-winter: #bfefff;
    --season-black: #050705;
}

.shop-promo-bar,
.shop-footer {
    background: var(--season-black);
}

.shop-navbar {
    border-bottom: 1px solid #dbe8d1;
}

.shop-brand {
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: .02em;
}

.shop-brand-mark {
    color: var(--season-black);
    background: var(--season-spring);
    border-color: #a7ce45;
}

.shop-hero {
    min-height: 540px;
    border: 0;
    border-radius: 0;
    color: var(--season-cream);
    background:
        linear-gradient(90deg, rgba(5,7,5,.94) 0%, rgba(5,7,5,.84) 38%, rgba(5,7,5,.38) 62%, rgba(5,7,5,.06) 100%),
        url("../images/hero-four-seasons-seed-calendar.png") center / cover no-repeat;
    box-shadow: 0 24px 70px rgba(5, 7, 5, .24);
}

.shop-hero__content {
    max-width: 650px;
}

.shop-kicker {
    color: var(--season-spring);
    letter-spacing: .18em;
}

.shop-hero h1 {
    color: var(--season-cream);
    text-shadow: 0 2px 18px rgba(0,0,0,.34);
}

.shop-hero .lead {
    color: rgba(251,255,241,.86);
}

.shop-hero .btn-warning {
    color: var(--season-black);
    background: var(--season-spring);
    border-color: var(--season-spring);
}

.shop-hero .btn-outline-light {
    color: var(--season-cream);
    border-color: rgba(251,255,241,.7);
    background: rgba(5,7,5,.18);
}

.shop-hero .btn-outline-light:hover {
    color: var(--season-black);
    background: var(--season-cream);
    border-color: var(--season-cream);
}

.seed-feature-band {
    border: 0;
    border-radius: 0;
    background: var(--season-black);
}

.seed-feature-band > div {
    color: var(--season-cream);
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 34%),
        var(--season-black);
    border-top: 3px solid currentColor;
}

.seed-feature-band .season-spring,
.seed-feature-band .season-spring i {
    color: var(--season-spring);
}

.seed-feature-band .season-summer,
.seed-feature-band .season-summer i {
    color: var(--season-summer);
}

.seed-feature-band .season-autumn,
.seed-feature-band .season-autumn i {
    color: var(--season-autumn);
}

.seed-feature-band .season-winter,
.seed-feature-band .season-winter i {
    color: var(--season-winter);
}

.seed-feature-band span {
    color: var(--season-cream);
}

.shop-section-title {
    font-family: Georgia, "Times New Roman", serif;
}

.product-card:hover,
.shop-category-card:hover {
    border-color: #97bf3f !important;
}

.product-price,
.product-card .card-text {
    color: #3d7d17;
}

.btn-primary,
.btn-success,
.product-card__actions .btn-dark {
    background: #1f5e26 !important;
    border-color: #1f5e26 !important;
}

.btn-primary:hover,
.btn-success:hover,
.product-card__actions .btn-dark:hover {
    background: #123f18 !important;
    border-color: #123f18 !important;
}

.shop-category-nav__scroll a:hover {
    border-color: #b6da6a;
}

.shop-footer {
    background:
        radial-gradient(circle at 12% 0%, rgba(215,243,127,.16), transparent 24%),
        radial-gradient(circle at 88% 0%, rgba(242,139,53,.16), transparent 24%),
        var(--season-black);
}

.shop-footer .shop-brand-mark {
    background: var(--season-spring);
    border-color: var(--season-spring);
}

@media (max-width: 991.98px) {
    .shop-hero {
        min-height: 460px;
        background-position: center right;
    }
}

/* =========================
   LaHome-inspired boutique catalogue refresh
========================= */
:root {
    --shop-blue: #78624d;
    --shop-blue-dark: #594635;
    --shop-yellow: #c7a36f;
    --shop-ink: #342c24;
    --shop-muted: #766c61;
    --shop-bg: #f7f3ed;
    --shop-surface: #ffffff;
    --shop-border: #e5ded4;
    --shop-radius: 2px;
    --shop-font: "Segoe UI", Roboto, Arial, sans-serif;
    --shop-serif: Georgia, "Times New Roman", serif;
}

.shop-body,
body {
    background:
        linear-gradient(180deg, #fbf8f2 0%, var(--shop-bg) 360px),
        var(--shop-bg);
    color: var(--shop-ink);
}

.shop-promo-bar {
    background: #5f5144;
    color: #fffaf3;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    text-align: center;
}

.shop-promo-bar a {
    display: block;
    padding: 8px 12px;
    color: inherit;
    text-decoration: none;
}

.shop-utility-bar {
    background: #fbf8f2;
    border-bottom: 1px solid var(--shop-border);
    color: var(--shop-muted);
    font-size: 13px;
}

.shop-utility-bar .container-fluid,
.shop-navbar .container-fluid,
.shop-category-nav .container-fluid {
    padding-right: clamp(16px, 4vw, 56px);
    padding-left: clamp(16px, 4vw, 56px);
}

.shop-utility-contact,
.shop-utility-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

.shop-utility-links a {
    color: var(--shop-muted);
    text-decoration: none;
}

.shop-utility-links a:hover {
    color: var(--shop-ink);
}

.shop-navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--shop-border);
    box-shadow: 0 10px 30px rgba(75, 58, 42, .06);
}

.shop-navbar .container-fluid {
    min-height: 82px;
}

.shop-brand {
    color: var(--shop-ink) !important;
    font-family: var(--shop-serif);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.shop-brand-mark {
    width: 42px;
    height: 42px;
    border: 1px solid var(--shop-yellow);
    border-radius: 50%;
    color: var(--shop-ink);
    background: #fffaf3;
    font-family: var(--shop-serif);
    font-size: 24px;
    font-weight: 400;
}

.shop-nav-link,
.shop-icon-link {
    color: var(--shop-ink) !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.shop-nav-link:hover,
.shop-nav-link:focus,
.shop-icon-link:hover,
.shop-icon-link:focus {
    color: var(--shop-blue-dark) !important;
    background: #f3eadf;
}

.shop-icon-link {
    border-color: var(--shop-border);
    background: #fffaf3;
}

.shop-category-nav {
    background: #efe6da;
    border-bottom: 1px solid #dccfbe;
}

.shop-category-nav__scroll {
    display: flex;
    gap: clamp(16px, 3vw, 34px);
    overflow-x: auto;
    scrollbar-width: thin;
}

.shop-category-nav__scroll a {
    flex: 0 0 auto;
    padding: 13px 0;
    color: #4d4035;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
}

.shop-category-nav__scroll a:hover {
    color: #8a5b32;
}

.shop-main {
    padding: 28px 0 52px;
}

.shop-main > .container {
    max-width: 1320px;
}

.shop-hero {
    min-height: 430px;
    color: #fffaf3;
    background:
        linear-gradient(90deg, rgba(61, 49, 39, .9), rgba(61, 49, 39, .38)),
        radial-gradient(circle at 80% 30%, rgba(199, 163, 111, .5), transparent 32%),
        linear-gradient(135deg, #80684f, #c1ab8e);
    border-radius: 0;
}

.shop-hero__content {
    max-width: 640px;
}

.shop-kicker {
    color: #ead8bc;
    font-size: 12px;
    letter-spacing: .18em;
}

.shop-hero h1,
.shop-section-title {
    color: var(--shop-ink);
    font-family: var(--shop-serif);
    font-weight: 400;
    letter-spacing: .02em;
}

.shop-hero h1 {
    color: #fffaf3;
}

.shop-hero .lead {
    max-width: 560px;
    color: #f4eadb;
}

.card,
.product-card,
.shop-category-card,
.checkout-card,
.summary-box,
.mini-cart {
    border-color: var(--shop-border) !important;
    border-radius: 0 !important;
    background: var(--shop-surface);
    box-shadow: 0 12px 34px rgba(72, 55, 39, .06) !important;
}

.product-card,
.shop-category-card {
    transition: border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.product-card:hover,
.shop-category-card:hover {
    border-color: #c9b89f !important;
    transform: translateY(-3px);
    box-shadow: 0 18px 42px rgba(72, 55, 39, .12) !important;
}

.product-card__image-wrap {
    height: 270px;
    background: #eee7dd;
}

.product-card__image-wrap .product-img,
.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.product-title,
.product-card h5,
.product-card h6,
.product-card .card-title {
    min-height: 48px;
    color: var(--shop-ink);
    font-family: var(--shop-serif);
    font-size: 1.02rem;
    font-weight: 400;
}

.product-meta {
    color: #8b8176;
}

.product-particle {
    background: #f6f0e7;
    color: #6f6257;
}

.product-price,
.product-card .card-text {
    color: #7c4c2a;
    font-size: 1.08rem;
    font-weight: 800;
}

.btn {
    border-radius: 0;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.btn-primary,
.btn-success,
.product-card__actions .btn-dark {
    color: #fffaf3 !important;
    background: #6f5741 !important;
    border-color: #6f5741 !important;
}

.btn-primary:hover,
.btn-success:hover,
.product-card__actions .btn-dark:hover {
    background: #523f30 !important;
    border-color: #523f30 !important;
}

.btn-warning {
    color: #33281f;
    background: #d3b47f;
    border-color: #d3b47f;
}

.btn-outline-primary,
.product-card__actions .btn-outline-dark {
    color: #6f5741;
    border-color: #9d8468;
}

.btn-outline-primary:hover,
.product-card__actions .btn-outline-dark:hover {
    color: #fffaf3;
    background: #6f5741;
    border-color: #6f5741;
}

.wishlist-btn {
    border-color: rgba(255,255,255,.86);
    color: #6f5741;
    background: rgba(255, 250, 243, .92);
}

.wishlist-btn:hover,
.wishlist-btn.active {
    color: #fffaf3;
    background: #6f5741;
    border-color: #6f5741;
}

.badge.bg-danger,
.shop-icon-link .badge {
    color: #fffaf3 !important;
    background: #9b3f2e !important;
}

.shop-footer {
    color: #f8efe3;
    background: #4a3a2d;
    border-top: 1px solid #6c5745;
}

@media (max-width: 991.98px) {
    .shop-navbar .container-fluid {
        min-height: 68px;
    }

    .shop-brand {
        font-size: 28px;
    }

    .shop-utility-contact {
        display: none;
    }

    .shop-hero {
        min-height: 340px;
    }
}

/* =========================
   Final four seasons brand layer
========================= */
:root {
    --shop-blue: #2f6b3f;
    --shop-blue-dark: #214d2f;
    --shop-yellow: #e8c35d;
    --shop-ink: #18251b;
    --shop-muted: #66736a;
    --shop-bg: #ffffff;
    --shop-surface: #ffffff;
    --shop-border: #dfe9df;
    --shop-radius: 6px;
    --shop-font: "Segoe UI", Roboto, Arial, sans-serif;
    --shop-serif: Georgia, "Times New Roman", serif;
}

.shop-body,
body {
    background: #ffffff !important;
    color: var(--shop-ink);
}

.shop-promo-bar {
    background: #050705;
    color: #ffffff;
}

.shop-utility-bar,
.shop-navbar,
.shop-category-nav {
    background: #ffffff;
    border-color: var(--shop-border);
}

.shop-navbar {
    box-shadow: none;
}

.shop-brand {
    color: var(--shop-ink) !important;
    font-family: var(--shop-font);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 850;
    letter-spacing: -.02em;
    text-transform: none;
}

.shop-brand-mark {
    color: #ffffff;
    background: var(--shop-blue);
    border-color: #b7d7b7;
    font-family: var(--shop-font);
    font-size: 18px;
}

.shop-nav-link,
.shop-icon-link {
    color: var(--shop-ink) !important;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .01em;
    text-transform: none;
}

.shop-nav-link:hover,
.shop-nav-link:focus,
.shop-icon-link:hover,
.shop-icon-link:focus {
    color: var(--shop-blue-dark) !important;
    background: #eef7ee;
}

.shop-icon-link {
    border-color: var(--shop-border);
    background: #f8fbf7;
}

.shop-category-nav {
    background: #f6faf5;
}

.shop-category-nav__scroll {
    align-items: center;
    gap: 12px;
}

.shop-category-nav__label {
    flex: 0 0 auto;
    color: var(--shop-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.shop-category-nav__scroll a {
    padding: 11px 14px;
    color: var(--shop-blue-dark);
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
}

.shop-category-nav__scroll a:hover {
    border-color: #cfe2cf;
    background: #ffffff;
}

.shop-hero {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    color: #fbfff1;
    background:
        linear-gradient(90deg, rgba(5,7,5,.94) 0%, rgba(5,7,5,.84) 38%, rgba(5,7,5,.38) 62%, rgba(5,7,5,.06) 100%),
        url("../images/hero-four-seasons-seed-calendar.png") center / cover no-repeat;
    box-shadow: 0 24px 70px rgba(5, 7, 5, .24);
}

.shop-hero::after {
    content: none;
}

.shop-hero::before {
    content: none;
}

.shop-hero__content {
    position: relative;
    z-index: 2;
    max-width: 620px;
}

.shop-kicker {
    color: #d7f37f;
}

.shop-hero h1,
.shop-section-title {
    font-family: var(--shop-serif);
    font-weight: 700;
}

.shop-section-title {
    color: var(--shop-ink);
}

.shop-hero h1 {
    max-width: 620px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: .98;
    color: #fbfff1;
    text-shadow: 0 2px 18px rgba(0,0,0,.34);
}

.shop-hero .lead {
    color: rgba(251,255,241,.86);
}

.seed-feature-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #050705;
}

.seed-feature-band > div {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 72px;
    padding: 18px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 34%),
        #050705;
    color: #fbfff1;
    font-weight: 800;
    border-top: 3px solid currentColor;
}

.seed-feature-band i {
    font-size: 20px;
}

.seed-feature-band .season-spring,
.seed-feature-band .season-spring i {
    color: #d7f37f;
}

.seed-feature-band .season-summer,
.seed-feature-band .season-summer i {
    color: #69bf18;
}

.seed-feature-band .season-autumn,
.seed-feature-band .season-autumn i {
    color: #f28b35;
}

.seed-feature-band .season-winter,
.seed-feature-band .season-winter i {
    color: #bfefff;
}

.seed-feature-band span {
    color: #fbfff1;
}

.card,
.product-card,
.shop-category-card,
.checkout-card,
.summary-box,
.mini-cart {
    border-color: var(--shop-border) !important;
    border-radius: 12px !important;
    background: #ffffff;
    box-shadow: none !important;
}

.product-card:hover,
.shop-category-card:hover {
    border-color: #b7d7b7 !important;
    box-shadow: 0 16px 34px rgba(47, 107, 63, .10) !important;
}

.product-card__image-wrap {
    background: #f6faf5;
}

.product-title,
.product-card h5,
.product-card h6,
.product-card .card-title {
    color: var(--shop-ink);
    font-family: var(--shop-font);
    font-weight: 850;
}

.product-particle {
    background: #f6faf5;
    color: var(--shop-muted);
}

.product-price,
.product-card .card-text {
    color: var(--shop-blue-dark);
    font-weight: 900;
}

.btn {
    border-radius: 999px;
    letter-spacing: 0;
    text-transform: none;
}

.btn-primary,
.btn-success,
.product-card__actions .btn-dark {
    color: #ffffff !important;
    background: var(--shop-blue) !important;
    border-color: var(--shop-blue) !important;
}

.btn-primary:hover,
.btn-success:hover,
.product-card__actions .btn-dark:hover {
    background: var(--shop-blue-dark) !important;
    border-color: var(--shop-blue-dark) !important;
}

.btn-warning {
    color: #253018;
    background: var(--shop-yellow);
    border-color: var(--shop-yellow);
}

.btn-outline-primary,
.btn-outline-light,
.product-card__actions .btn-outline-dark {
    color: var(--shop-blue);
    border-color: var(--shop-blue);
    background: #ffffff;
}

.btn-outline-primary:hover,
.btn-outline-light:hover,
.product-card__actions .btn-outline-dark:hover {
    color: #ffffff;
    background: var(--shop-blue);
    border-color: var(--shop-blue);
}

.wishlist-btn {
    color: var(--shop-blue);
    border-color: #d9e8d9;
    background: rgba(255,255,255,.94);
}

.wishlist-btn:hover,
.wishlist-btn.active {
    color: #ffffff;
    background: var(--shop-blue);
    border-color: var(--shop-blue);
}

.badge.bg-danger,
.shop-icon-link .badge {
    color: #ffffff !important;
    background: #d0663f !important;
}

.shop-cta {
    border: 1px solid #d8e8d8;
    border-radius: 18px;
    color: var(--shop-ink);
    background: #f6faf5;
}

.shop-footer {
    padding: 56px 0 24px;
    color: #dcebdd;
    background: #183f27;
    border-top: 0;
}

.shop-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 850;
    text-decoration: none;
}

.shop-footer .shop-brand-mark {
    color: #183f27;
    background: #e8c35d;
    border-color: #e8c35d;
}

.shop-footer h6 {
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.shop-footer a {
    display: block;
    margin: 8px 0;
    color: #dcebdd;
    text-decoration: none;
}

.shop-footer a:hover {
    color: #ffffff;
}

.shop-footer-copy {
    color: #c8dac9;
    line-height: 1.7;
}

.shop-footer-form {
    display: flex;
    gap: 8px;
}

.shop-footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.16);
    color: #b8cfba;
    font-size: 13px;
}

@media (max-width: 991.98px) {
    .shop-brand {
        font-size: 22px;
    }

    .shop-hero::after,
    .shop-hero::before {
        opacity: 1;
    }

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

@media (max-width: 575.98px) {
    .shop-hero {
        min-height: 390px;
        padding: 28px 22px;
    }

    .shop-hero h1 {
        font-size: 42px;
    }

    .seed-feature-band {
        grid-template-columns: 1fr;
    }

    .shop-footer-form {
        flex-direction: column;
    }
}
