:root {
    --shop-font-body: 'DM Sans', sans-serif;
    --shop-font-display: 'Space Grotesk', sans-serif;
    --shop-ink: #102436;
    --shop-muted: #627089;
    --shop-bg: #f2f8ea;
    --shop-surface: #ffffff;
    --shop-brand: #159365;
    --shop-brand-dark: #0f744f;
    --shop-brand-soft: #dff7eb;
    --shop-accent: #f6d64a;
    --shop-accent-soft: #fff8cf;
    --shop-danger: #dc3f61;
    --shop-line: #d8e4d6;
    --shop-shadow: 0 14px 40px rgba(16, 36, 54, 0.08);
    --shop-radius-lg: 24px;
    --shop-radius-md: 16px;
    --shop-radius-sm: 12px;
}

.shopfront-body {
    margin: 0;
    min-height: 100vh;
    color: var(--shop-ink);
    font-family: var(--shop-font-body);
    background:
        radial-gradient(circle at 12% 6%, rgba(246, 214, 74, 0.42) 0, rgba(246, 214, 74, 0) 36%),
        radial-gradient(circle at 86% 2%, rgba(21, 147, 101, 0.24) 0, rgba(21, 147, 101, 0) 30%),
        linear-gradient(180deg, #f8fce8 0%, #f2f8ea 65%, #f6f8f6 100%);
}

.shopfront-body * {
    box-sizing: border-box;
}

.shop-container-fluid {
    width: 100%;
    max-width: none;
    padding-left: 1.15rem;
    padding-right: 1.15rem;
}

.shopfront-body a {
    color: inherit;
}

.shop-stage {
    animation: shopFadeUp 0.45s ease-out;
}

@keyframes shopFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shopCardRise {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-grid-stagger > [class*='col-'] {
    animation: shopCardRise 0.38s ease-out both;
}

.shop-grid-stagger > [class*='col-']:nth-child(1) {
    animation-delay: 0.03s;
}

.shop-grid-stagger > [class*='col-']:nth-child(2) {
    animation-delay: 0.06s;
}

.shop-grid-stagger > [class*='col-']:nth-child(3) {
    animation-delay: 0.09s;
}

.shop-grid-stagger > [class*='col-']:nth-child(4) {
    animation-delay: 0.12s;
}

.shop-grid-stagger > [class*='col-']:nth-child(5) {
    animation-delay: 0.15s;
}

.shop-grid-stagger > [class*='col-']:nth-child(6) {
    animation-delay: 0.18s;
}

.shop-top-strip {
    background: #153249;
    color: #d5e6f3;
    font-size: 0.83rem;
    font-weight: 500;
}

.shop-top-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 34px;
    gap: 0.75rem;
}

.shop-top-strip strong {
    color: #ffffff;
    font-weight: 700;
}

.shop-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    backdrop-filter: blur(9px);
    background: rgba(246, 250, 235, 0.95);
    border-bottom: 1px solid rgba(21, 147, 101, 0.16);
}

.shop-header-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    min-height: 86px;
}

.shop-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--shop-font-display);
    text-decoration: none;
}

.shop-logo:hover {
    text-decoration: none;
}

.shop-logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #14364a;
    background: linear-gradient(135deg, var(--shop-accent) 0%, #ffd978 100%);
    box-shadow: 0 10px 20px rgba(246, 214, 74, 0.35);
}

.shop-logo-text {
    line-height: 1;
}

.shop-logo-title {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    color: #0f2f45;
}

.shop-logo-sub {
    font-size: 0.72rem;
    color: var(--shop-muted);
    margin-top: 2px;
}

.shop-search {
    position: relative;
    margin: 0;
}

.shop-search .form-control {
    border-radius: 999px;
    border: 1px solid #d4e1d1;
    background: #ffffff;
    padding: 0.7rem 1rem 0.7rem 2.7rem;
    height: auto;
    color: var(--shop-ink);
    box-shadow: inset 0 1px 0 rgba(16, 36, 54, 0.03);
}

.shop-search .form-control:focus {
    border-color: rgba(21, 147, 101, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(21, 147, 101, 0.15);
}

.shop-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #789094;
}

.shop-search .btn {
    position: absolute;
    right: 4px;
    top: 4px;
    border-radius: 999px;
    background: var(--shop-brand);
    border-color: var(--shop-brand);
    color: #ffffff;
    font-weight: 700;
    padding: 0.36rem 1rem;
}

.shop-search .btn:hover,
.shop-search .btn:focus {
    background: var(--shop-brand-dark);
    border-color: var(--shop-brand-dark);
}

.shop-search-suggestions {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #d6e3d3;
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(16, 36, 54, 0.15);
    z-index: 1050;
    max-height: 480px;
    overflow-y: auto;
}

.shop-search-grid {
    display: grid;
    grid-template-columns: minmax(220px, 34%) minmax(0, 66%);
    gap: 0;
}

.shop-search-column {
    min-width: 0;
}

.shop-search-column-left {
    border-right: 1px solid #e8f0e6;
    background: #fbfdfb;
}

.shop-search-suggestion-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.65rem 0.85rem;
    color: #213f55;
    text-decoration: none;
    border-bottom: 1px solid #eef4ec;
}

.shop-search-product-card {
    border: 1px solid #d7e4d8;
    border-radius: 12px;
    margin: 0.45rem 0.6rem;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(22, 47, 64, 0.06);
    position: relative;
}

.shop-search-product-card:last-child {
    margin-bottom: 0.6rem;
}

.shop-search-product-primary {
    border-bottom: 1px dashed #e7efe8;
    border-radius: 12px 12px 0 0;
}

.shop-search-thumb-wrap {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border: 1px solid #d6e3d3;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.shop-search-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.shop-search-attribute-summary {
    padding: 0 0.85rem 0.45rem 3.95rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.shop-search-attribute-chip {
    display: inline-block;
    font-size: 0.72rem;
    line-height: 1.2;
    color: #3f5563;
    background: #f1f7f0;
    border: 1px solid #d6e4d2;
    border-radius: 999px;
    padding: 0.15rem 0.5rem;
}

.shop-search-variation-list {
    margin: 0.1rem 0.55rem 0.55rem 3.55rem;
    padding: 0.35rem 0.2rem 0.15rem 0.75rem;
    border-left: 2px solid #cfe2d3;
    background: #f6fbf7;
    border-radius: 0 10px 10px 0;
}

.shop-search-variation-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #6b7f8c;
    font-weight: 700;
    margin: 0 0 0.3rem;
}

.shop-search-variation-item {
    border: 1px solid #dde9df;
    border-radius: 8px;
    margin-bottom: 0.3rem;
    padding: 0.34rem 0.55rem;
    background: #ffffff;
}

.shop-search-variation-item:last-child {
    margin-bottom: 0;
}

.shop-search-variation-main {
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
    overflow: hidden;
}

.shop-search-main.shop-search-variation-main {
    flex-direction: row;
}

.shop-search-variation-line {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
    max-width: 100%;
    white-space: nowrap;
}

.shop-search-variation-main .shop-search-name,
.shop-search-variation-line .shop-search-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-search-variation-sku {
    font-size: 0.72rem;
    color: #7a8c98;
    font-weight: 500;
    white-space: nowrap;
    flex: 0 0 auto;
}

.shop-search-variation-item.is-oos .shop-search-name,
.shop-search-variation-item.is-oos .shop-search-variation-sku {
    color: #7b8791;
}

.shop-search-price-oos {
    color: #8b5a12;
}

.shop-search-variation-more {
    display: inline-block;
    margin: 0.25rem 0.15rem 0.05rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #2f6a50;
    text-decoration: none;
}

.shop-search-variation-more:hover,
.shop-search-variation-more:focus {
    color: #1f523d;
    text-decoration: underline;
}

.shop-search-suggestion-item:last-child {
    border-bottom: none;
}

.shop-search-suggestions-section + .shop-search-suggestions-section {
    border-top: 1px solid #e8f0e6;
}

.shop-search-suggestions-title {
    display: block;
    padding: 0.45rem 0.85rem 0.35rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #6f8491;
    font-weight: 700;
}

.shop-search-suggestion-item:hover {
    text-decoration: none;
    background: #f4faf3;
    color: #0d5e3f;
}

.shop-search-suggestion-item.is-active {
    text-decoration: none;
    background: #eaf6ed;
    color: #0d5e3f;
}

.shop-search-main {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.shop-search-name {
    font-weight: 600;
    line-height: 1.3;
}

.shop-search-sku {
    color: #6d7e8e;
    font-size: 0.78rem;
    white-space: nowrap;
}

.shop-search-price {
    color: #0f5f3e;
    font-weight: 700;
    font-size: 0.83rem;
    white-space: nowrap;
}

.shop-search-match {
    background: #fff4c7;
    color: inherit;
    border-radius: 3px;
    padding: 0 2px;
}

.shop-search-empty {
    padding: 0.7rem 0.85rem 0.8rem;
    color: #5f7381;
    font-size: 0.84rem;
}

@media (max-width: 991.98px) {
    .shop-search-grid {
        grid-template-columns: 1fr;
    }

    .shop-search-column-left {
        border-right: 0;
        border-bottom: 1px solid #e8f0e6;
    }
}

.shop-search-loading {
    padding: 0.72rem 0.85rem;
    color: #5f7381;
    font-size: 0.84rem;
}

.shop-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shop-action-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #d4e3cf;
    background: #ffffff;
    color: #3f5363;
    text-decoration: none;
    line-height: 1;
    padding: 0;
    overflow: visible;
}

.shop-action-link:hover {
    text-decoration: none;
    color: var(--shop-brand-dark);
    border-color: #add8c0;
}

.shop-action-link i {
    font-size: 0.94rem;
}

.shop-action-link--cart,
.shop-action-link--account,
.shop-action-link--wishlist {
    width: auto;
    min-width: 80px;
    height: 44px;
    border-radius: 999px;
    padding: 0 0.78rem;
    flex-direction: row;
    gap: 0.4rem;
    transition: all 0.2s ease;
}

.shop-action-caption {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #243b4d;
    margin-top: 0;
    letter-spacing: 0.01em;
    line-height: 1;
}

.shop-action-link--cart.has-items {
    border-color: #7ec89f;
    background: linear-gradient(135deg, #f1fff5 0%, #e6f8ec 100%);
    color: #0f744f;
    box-shadow: 0 0 0 2px rgba(21, 147, 101, 0.14), 0 10px 20px rgba(16, 36, 54, 0.09);
    animation: shopCartPulse 1.6s ease-in-out infinite;
}

.shop-action-link--cart.has-items .shop-action-caption {
    color: #0f744f;
}

.shop-action-link--cart.is-flashing {
    animation: shopCartFlash 0.28s ease-in-out 4;
}

.shop-action-badge {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(38%, -38%);
    min-width: 20px;
    height: 18px;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: var(--shop-danger);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.shop-action-link--wishlist:hover,
.shop-action-link--wishlist:focus {
    background: #fff4f8;
    border-color: #e6b8c8;
    color: #a42d55;
}

.shop-action-link--wishlist:hover .shop-action-caption,
.shop-action-link--wishlist:focus .shop-action-caption {
    color: #a42d55;
}

@keyframes shopCartPulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-1px);
    }
}

@keyframes shopCartFlash {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06);
    }
}

.shop-user-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 44px;
    border: 1px solid #d4e3cf;
    border-radius: 999px;
    padding: 0 0.78rem 0 0.34rem;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1;
    color: #243b4d;
    background: #ffffff;
}

.shop-user-chip:hover,
.shop-user-chip:focus {
    text-decoration: none;
    color: var(--shop-brand-dark);
    border-color: #add8c0;
}

.shop-user-chip.dropdown-toggle::after {
    margin-left: 0.32rem;
    vertical-align: middle;
}

.shop-user-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.74rem;
    font-weight: 700;
    color: #0f3a2c;
    background: var(--shop-brand-soft);
}

.shop-nav-row {
    border-top: 1px solid rgba(21, 147, 101, 0.12);
}

.shop-nav-wrap {
    display: flex;
    align-items: center;
    min-height: 52px;
}

.shop-nav-list {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    padding: 0.55rem 0;
    list-style: none;
}

.shop-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.34rem 0.88rem;
    font-size: 0.89rem;
    font-weight: 600;
    color: #496072;
    text-decoration: none;
    transition: all 0.18s ease;
}

.shop-nav-pill:hover {
    text-decoration: none;
    background: #eff6ec;
    color: #0f374e;
}

.shop-nav-pill.active {
    background: var(--shop-brand-soft);
    color: #0a5a3b;
}

.shop-main {
    padding: 1.55rem 0 2rem;
}

.shop-footer {
    margin-top: 1.2rem;
    border-top: 1px solid rgba(16, 36, 54, 0.12);
    background: linear-gradient(180deg, #f8fbf6 0%, #f1f7ec 100%);
    padding: 1.5rem 0 1rem;
}

.shop-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
}

.shop-footer h5 {
    font-size: 0.95rem;
    margin-bottom: 0.55rem;
    color: #13384d;
}

.shop-footer p,
.shop-footer a {
    display: block;
    color: #5a6f80;
    font-size: 0.86rem;
    line-height: 1.45;
    text-decoration: none;
}

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

.shop-footer-bottom {
    margin-top: 0.9rem;
    border-top: 1px solid rgba(16, 36, 54, 0.08);
    padding-top: 0.65rem;
    color: #607485;
    font-size: 0.82rem;
}

.shop-alert {
    border: 1px solid #d6e3d8;
    border-radius: var(--shop-radius-sm);
    box-shadow: 0 7px 20px rgba(16, 36, 54, 0.06);
}

.shop-surface {
    background: var(--shop-surface);
    border: 1px solid rgba(16, 36, 54, 0.08);
    border-radius: var(--shop-radius-lg);
    box-shadow: var(--shop-shadow);
}

.shop-surface.soft {
    background: linear-gradient(160deg, #ffffff 0%, #fbfef8 100%);
}

.shop-surface-header {
    border-bottom: 1px solid var(--shop-line);
    padding: 1rem 1.2rem;
    font-weight: 700;
}

.shop-padded {
    padding: 1.25rem;
}

.shop-title {
    font-family: var(--shop-font-display);
    font-size: 1.58rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.shop-subtitle {
    color: var(--shop-muted);
    margin-top: 0.25rem;
    font-size: 0.92rem;
}

.shop-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.shop-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: var(--shop-accent-soft);
    color: #8b6a00;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.shop-link-inline {
    color: #1f674f;
    font-weight: 700;
    text-decoration: none;
}

.shop-link-inline:hover {
    color: #0f553f;
    text-decoration: none;
}

.shop-rail-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.shop-rail-control {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid #b8d6c2;
    background: #ffffff;
    color: #0f5f3e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(16, 36, 54, 0.08);
}

.shop-rail-control:hover,
.shop-rail-control:focus {
    background: #eff9f1;
    border-color: #8fc6a6;
    color: #0b5638;
    outline: none;
}

.shop-rail-control:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}

.shop-product-rail-wrap {
    position: relative;
}

.shop-product-rail {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.9rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 0.2rem 0.1rem 0.95rem;
    scrollbar-width: auto;
    scrollbar-color: #88bda0 #e8f2ea;
    cursor: grab;
    scroll-snap-type: x proximity;
}

.shop-product-rail::-webkit-scrollbar {
    height: 12px;
}

.shop-product-rail::-webkit-scrollbar-track {
    background: #e8f2ea;
    border-radius: 999px;
}

.shop-product-rail::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #77b78f 0%, #4d9d71 100%);
    border-radius: 999px;
    border: 2px solid #e8f2ea;
}

.shop-product-rail-item {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: start;
}

.shop-product-rail.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.shop-product-rail.is-dragging a,
.shop-product-rail.is-dragging button {
    pointer-events: none;
}

.shop-rail-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0.55rem auto 0;
    width: 100%;
    padding: 0 0.4rem;
}

.shop-rail-indicator {
    width: 12px;
    height: 12px;
    border: 1px solid #7ab497;
    border-radius: 999px;
    background: #ffffff;
    padding: 0;
    line-height: 0;
    transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.shop-rail-indicator:hover,
.shop-rail-indicator:focus {
    outline: none;
    border-color: #3d946c;
    transform: scale(1.08);
}

.shop-rail-indicator.is-active {
    background: #1b9465;
    border-color: #1b9465;
}

.btn-shop-primary,
.btn-shop-secondary,
.btn-shop-light,
.btn-shop-danger,
.btn-shop-outline {
    border-radius: 12px;
    font-weight: 700;
    border-width: 1px;
    padding: 0.56rem 1rem;
}

.btn-shop-primary {
    background: var(--shop-brand);
    border-color: var(--shop-brand);
    color: #ffffff;
}

.btn-shop-primary:hover,
.btn-shop-primary:focus {
    background: var(--shop-brand-dark);
    border-color: var(--shop-brand-dark);
    color: #ffffff;
}

.btn-shop-secondary {
    background: var(--shop-accent);
    border-color: #e6c433;
    color: #223240;
}

.btn-shop-secondary:hover,
.btn-shop-secondary:focus {
    background: #efcb34;
    border-color: #dcb827;
    color: #1d2f3a;
}

.btn-shop-light {
    background: #ffffff;
    border-color: #d5e0d0;
    color: #354b58;
}

.btn-shop-light:hover,
.btn-shop-light:focus {
    border-color: #bcd4bf;
    color: #223946;
}

.btn-shop-danger {
    background: #fff1f4;
    border-color: #ffcbd6;
    color: #a72543;
}

.btn-shop-danger:hover,
.btn-shop-danger:focus {
    background: #ffe6ec;
    border-color: #f7afbf;
    color: #901e3a;
}

.btn-shop-outline {
    background: transparent;
    border-color: #c8d7c8;
    color: #3f5561;
}

.btn-shop-outline:hover,
.btn-shop-outline:focus {
    border-color: #9ec0ac;
    color: #0f563c;
    background: #edf8f1;
}

.btn-shop-retry {
    background: linear-gradient(135deg, #ffb000 0%, #ff8f00 100%);
    border-color: #f18a00;
    color: #1f2b38;
    box-shadow: 0 8px 18px rgba(241, 138, 0, 0.25);
}

.btn-shop-retry:hover,
.btn-shop-retry:focus {
    background: linear-gradient(135deg, #ffa400 0%, #f58100 100%);
    border-color: #e17b00;
    color: #1a2531;
    box-shadow: 0 10px 20px rgba(226, 123, 0, 0.3);
}

.shop-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border-radius: 999px;
    padding: 0.32rem 0.68rem;
    background: #edf4ff;
    color: #28516f;
    font-weight: 600;
    font-size: 0.77rem;
}

.shop-pill.yellow {
    background: var(--shop-accent-soft);
    color: #8f6500;
}

.shop-pill.green {
    background: var(--shop-brand-soft);
    color: #0f6041;
}

.shop-hero {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(124deg, #115b47 0%, #1f8c67 55%, #2da57f 100%);
    color: #ffffff;
    padding: 2rem;
    box-shadow: 0 22px 48px rgba(16, 36, 54, 0.17);
}

.shop-hero::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 38% 62% 42% 58%;
    right: -60px;
    top: -60px;
    background: rgba(246, 214, 74, 0.26);
}

.shop-hero h1 {
    font-family: var(--shop-font-display);
    font-size: clamp(1.8rem, 2.4vw, 2.6rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 0.7rem;
}

.shop-hero p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.15rem;
    max-width: 560px;
}

.shop-hero-stat {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 0.55rem 0.75rem;
    min-width: 110px;
}

.shop-hero-stat strong {
    display: block;
    font-size: 1rem;
    color: #ffffff;
}

.shop-hero-stat span {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.84);
}

.shop-category-tile {
    border-radius: var(--shop-radius-md);
    border: 1px solid var(--shop-line);
    background: linear-gradient(150deg, #ffffff 0%, #fbfff6 100%);
    padding: 1rem;
    height: 100%;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.shop-category-tile:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(16, 36, 54, 0.09);
}

.shop-category-tile-media {
    width: 100%;
    height: 96px;
    border-radius: 12px;
    border: 1px solid #dfebdc;
    background: #f4f9f2;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.shop-category-tile-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.shop-category-card-media {
    width: 100%;
    height: 128px;
    border-radius: 14px;
    border: 1px solid #dbe8d8;
    background: #f4f9f2;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.shop-category-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.shop-category-tile-name {
    font-family: var(--shop-font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: calc(1.25em * 2);
}

.shop-category-card-head {
    min-width: 0;
}

.shop-category-card-title {
    font-family: var(--shop-font-display);
    min-width: 0;
    margin-right: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: calc(1.3em * 2);
}

.shop-category-card-description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: calc(1.4em * 2);
}

.shop-category-sub-pill {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-category-explore-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
}

.shop-category-explore-btn-text {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-muted {
    color: var(--shop-muted);
}

.product-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #dbe7d9;
    box-shadow: 0 13px 30px rgba(16, 36, 54, 0.07);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    height: 100%;
}

.product-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 35px rgba(16, 36, 54, 0.13);
}

.product-tile-media {
    position: relative;
    background: #f7faf6;
    border-bottom: 1px solid #deeadc;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    max-height: none;
    flex: 0 0 auto;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 10px;
}

.product-image-value-tabs {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    max-width: calc(100% - 16px);
    z-index: 3;
}

.product-tile-wishlist {
    position: absolute;
    top: 8px;
    right: 8px;
    margin: 0;
    z-index: 4;
}

.product-tile-wishlist .btn-shop-danger {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.product-image-value-tabs-detail {
    top: 10px;
    left: 10px;
}

.product-image-value-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 24px;
    max-height: 26px;
    padding: 0.15rem 0.35rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(16, 36, 54, 0.18);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(16, 36, 54, 0.1);
    overflow: hidden;
}

.product-image-value-tab img {
    display: block;
    width: auto;
    height: 20px;
    max-width: 78px;
    object-fit: contain;
}

.product-image-value-tab-text {
    display: inline-block;
    font-size: 0.68rem;
    line-height: 1.05;
    font-weight: 700;
    color: #102436;
    white-space: nowrap;
    max-width: 108px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-image-value-tabs .product-image-value-tab:first-child {
    min-width: 44px;
    min-height: 28px;
    max-height: 30px;
    padding: 0.17rem 0.42rem;
}

.product-image-value-tabs .product-image-value-tab:first-child .product-image-value-tab-text {
    font-size: 0.78rem;
}

.product-tile-media img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-tile-discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #f6d64a 0%, #efb82e 100%);
    color: #4b3500;
    border: 1px solid #e8b12f;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.7rem;
    padding: 0.22rem 0.5rem;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 14px rgba(56, 41, 5, 0.16);
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 0 100%);
}

.product-tile-body {
    padding: 0.78rem 0.78rem 0.82rem;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.product-tile-category {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-tile-name {
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.3;
    margin: 0.2rem 0 0.36rem;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
    min-height: 0;
}

.product-price-wrap {
    line-height: 1.22;
}

.product-price {
    font-size: 1rem;
    font-weight: 800;
    color: #12354a;
    font-family: var(--shop-font-display);
}

.product-price-old {
    margin-left: 0.25rem;
    color: #95a2af;
    text-decoration: line-through;
    font-size: 0.81rem;
    font-weight: 600;
}

.product-rating {
    font-size: 0.76rem;
    color: #576a7c;
}

.product-rating i {
    color: #f2bd18;
}

.product-tile-actions .btn {
    min-height: 42px;
    white-space: nowrap;
}

.product-tile-actions--variable {
    width: 100%;
}

.product-tile-actions--variable .btn {
    flex: 1 1 0;
    min-width: 0;
}

.shop-qty-control,
.product-card-qty-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #c8d7c8;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(16, 36, 54, 0.03);
    padding: 0;
    min-width: 0;
    width: 100%;
    overflow: visible;
    height: 42px;
    position: relative;
}

.shop-qty-control--compact {
    height: 40px;
    border-radius: 12px;
}

.shop-qty-control--cart {
    height: 34px;
    border-radius: 10px;
}

.shop-qty-btn,
.product-card-qty-btn {
    border: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: #3f5561;
    font-weight: 700;
    font-size: 1.1rem;
    width: 32px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex: 0 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
    opacity: 1;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.shop-qty-control--cart .shop-qty-btn {
    width: 30px;
    font-size: 1rem;
}

.shop-qty-btn > span,
.product-card-qty-btn > span {
    display: none;
}

.shop-qty-btn::before,
.product-card-qty-btn::before {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    color: #31495a;
    pointer-events: none;
}

.shop-qty-control--cart .shop-qty-btn::before {
    font-size: 1.05rem;
}

.shop-qty-btn.js-shop-qty-dec::before,
.product-card-qty-btn.js-card-qty-dec::before {
    content: "\2212";
}

.shop-qty-btn.js-shop-qty-inc::before,
.product-card-qty-btn.js-card-qty-inc::before {
    content: "+";
}

.shop-qty-btn:hover,
.shop-qty-btn:focus,
.product-card-qty-btn:hover,
.product-card-qty-btn:focus {
    color: #243746;
    background: transparent !important;
}

.shop-qty-btn.js-shop-qty-dec,
.product-card-qty-btn.js-card-qty-dec {
    border-right: 0;
}

.shop-qty-btn.js-shop-qty-inc,
.product-card-qty-btn.js-card-qty-inc {
    border-left: 0;
}

.shop-qty-input,
.product-card-qty-input {
    position: absolute;
    inset: 0;
    width: 100%;
    border: 0;
    background: transparent !important;
    text-align: center;
    font-weight: 700;
    color: #102436;
    padding: 0 4px;
    height: 42px;
    line-height: 1.1;
    font-size: 1rem;
    border-radius: 0;
    -moz-appearance: textfield;
    appearance: textfield;
    z-index: 1;
    pointer-events: auto;
    caret-color: #102436;
    overflow: visible;
}

.shop-qty-control--cart .shop-qty-input {
    height: 34px;
    font-size: 0.98rem;
}

.shop-qty-input::-webkit-outer-spin-button,
.shop-qty-input::-webkit-inner-spin-button,
.product-card-qty-input::-webkit-outer-spin-button,
.product-card-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    opacity: 0;
}

.shop-qty-input[readonly] {
    pointer-events: none;
}

.js-simple-card-add-form {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
    align-items: stretch;
}

.js-simple-card-add-form .btn,
.js-simple-card-add-form .product-card-qty-wrap {
    min-width: 0;
}

#shopVariantQuickAddDropdown .dropdown-menu {
    max-height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
}

#shopVariantQuickAddSelectedLabel {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

#shopVariantQuickAddSelectedPrice {
    flex: 0 0 auto;
    white-space: nowrap;
    max-width: 40%;
    overflow: hidden;
    text-overflow: ellipsis;
}

#shopVariantQuickAddMenu .variant-direct-option {
    align-items: flex-start !important;
    gap: 0.75rem;
}

.shop-variant-quick-add-image-wrap {
    width: 108px;
    height: 108px;
    border: 1px solid #d9e4d5;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

.shop-variant-quick-add-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.shop-variant-quick-add-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.shop-variant-quick-add-qty-wrap {
    flex: 0 0 108px;
    width: 108px;
}

#shopVariantQuickAddQty {
    font-weight: 700;
}

.shop-panel {
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #d9e4d5;
    box-shadow: 0 12px 26px rgba(16, 36, 54, 0.07);
}

.shop-panel-body {
    padding: 1rem;
}

.shop-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #4f6578;
    margin-bottom: 0.36rem;
}

.shopfront-body .form-control,
.shopfront-body .custom-select,
.shopfront-body select.form-control,
.shopfront-body input.form-control,
.shopfront-body textarea.form-control {
    border-radius: 12px;
    border: 1px solid #cfdccf;
    color: #223948;
    font-size: 0.92rem;
    min-height: 42px;
}

.shopfront-body .form-control:focus,
.shopfront-body .custom-select:focus,
.shopfront-body select.form-control:focus,
.shopfront-body input.form-control:focus,
.shopfront-body textarea.form-control:focus {
    border-color: rgba(21, 147, 101, 0.6);
    box-shadow: 0 0 0 0.2rem rgba(21, 147, 101, 0.14);
}

.shopfront-body textarea.form-control {
    min-height: 96px;
}

.shopfront-body .breadcrumb {
    font-size: 0.86rem;
}

.shopfront-body .breadcrumb a {
    color: #2a6b52;
    font-weight: 600;
}

.shop-cta-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.shop-summary-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.9rem;
}

.shop-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.shop-summary-row.total {
    border-top: 1px dashed #d4ddd2;
    padding-top: 0.65rem;
    margin-top: 0.35rem;
    font-size: 1rem;
    font-weight: 800;
    color: #163749;
}

.shop-table {
    width: 100%;
}

.shop-table thead th {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #5a6f80;
    border-bottom-width: 1px;
    border-color: #d5e0d3;
}

.shop-table td {
    border-color: #e2e9df;
    vertical-align: middle;
}

.shop-empty {
    text-align: center;
    border: 1px dashed #c7d8c4;
    border-radius: var(--shop-radius-md);
    padding: 2rem 1rem;
    color: #5c6f77;
    background: #fbfdf9;
}

.shop-empty i {
    font-size: 2.2rem;
    color: #9fb1a8;
    margin-bottom: 0.55rem;
}

.shop-checkout-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #3d5668;
    padding: 0.28rem 0.68rem;
    border-radius: 999px;
    background: #edf5f2;
    border: 1px solid #d0e2d7;
    cursor: pointer;
    transition: all 0.16s ease;
    white-space: nowrap;
    flex: 0 0 auto;
}

.shop-checkout-wizard {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.1rem;
}

.shop-checkout-step:hover,
.shop-checkout-step:focus {
    text-decoration: none;
    background: #e7f1ed;
    border-color: #b8d8c6;
    outline: none;
}

.shop-checkout-step.active {
    background: #e4f6ea;
    border-color: #a7d9b9;
    color: #0f6645;
}

.shop-checkout-step i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #ffffff;
    font-size: 0.65rem;
    color: #37617d;
}

.shop-checkout-step.is-complete i {
    background: #0f6645;
    color: #ffffff;
}

.shop-checkout-step.is-current {
    background: linear-gradient(135deg, #16a05f 0%, #0f7d4e 100%);
    border-color: #0f7d4e;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(10, 92, 59, 0.22);
    transform: translateY(-1px);
}

.shop-checkout-step.is-current i {
    background: #ffffff;
    color: #0f7d4e;
}

.shop-checkout-step.is-current span {
    color: #ffffff;
}

.shop-payment-option {
    border: 1px solid #d6e2d6;
    border-radius: 13px;
    padding: 0.72rem 0.85rem;
    margin-bottom: 0.65rem;
    transition: all 0.16s ease;
}

.shop-payment-option:hover {
    border-color: #add4bb;
    background: #f6fdf9;
}

.shop-payment-option.active {
    border-color: #83c39f;
    background: #eefaf3;
}

.shop-sticky {
    position: sticky;
    top: 122px;
}

.shop-info-banner {
    border: 1px solid #f2df9b;
    background: #fff8da;
    color: #6f5b1b;
    border-radius: 12px;
    padding: 0.55rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.shop-blog-content {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.shop-blog-content::after {
    content: '';
    display: block;
    clear: both;
}

.shop-blog-content > *:first-child {
    margin-top: 0;
}

.shop-blog-content img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 1rem auto;
    border-radius: 14px;
}

.shop-blog-content figure,
.shop-blog-content .wp-caption,
.shop-blog-content div,
.shop-blog-content p,
.shop-blog-content span {
    max-width: 100%;
}

.shop-blog-content table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.shop-blog-content iframe,
.shop-blog-content embed,
.shop-blog-content object,
.shop-blog-content video {
    max-width: 100%;
}

.shop-blog-content [style*='float:left'],
.shop-blog-content [style*='float: left'],
.shop-blog-content .alignleft {
    float: left;
    max-width: min(46%, 320px);
    margin: 0.4rem 1rem 0.85rem 0;
}

.shop-blog-content [style*='float:right'],
.shop-blog-content [style*='float: right'],
.shop-blog-content .alignright {
    float: right;
    max-width: min(46%, 320px);
    margin: 0.4rem 0 0.85rem 1rem;
}

.shop-blog-content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.shop-blog-content [style*='width:'],
.shop-blog-content [width] {
    max-width: 100%;
}

.shop-blog-content .shop-blog-cta-wrap {
    display: inline-flex;
    margin: 0.55rem 0.65rem 0.85rem 0;
    vertical-align: top;
}

.shop-blog-content .shop-blog-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 58px;
    padding: 0.95rem 1.7rem;
    border-radius: 18px;
    border: 1px solid transparent;
    box-shadow: 0 16px 28px rgba(20, 42, 74, 0.12);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.15;
    text-decoration: none !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.shop-blog-content .shop-blog-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(20, 42, 74, 0.16);
}

.shop-blog-content .shop-blog-cta--whatsapp {
    color: #ffffff !important;
    background: linear-gradient(135deg, #18a95e 0%, #2fd36b 100%);
}

.shop-blog-content .shop-blog-cta--primary {
    color: #123a68 !important;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
    border-color: #0d4c91;
}

.shop-blog-lead__content {
    min-width: 0;
}

.shop-blog-lead__title {
    word-break: break-word;
}

.shop-about-hero {
    position: relative;
    overflow: hidden;
    padding: 2.4rem 2.2rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at 82% 22%, rgba(255, 214, 91, 0.24), rgba(255, 214, 91, 0) 34%),
        linear-gradient(135deg, #0f355b 0%, #164b73 38%, #163f7f 68%, #1f7d6c 100%);
    color: #ffffff;
    box-shadow: 0 24px 54px rgba(14, 36, 61, 0.18);
}

.shop-about-hero__backdrop {
    position: absolute;
    inset: auto -64px -92px auto;
    width: 280px;
    height: 280px;
    border-radius: 46% 54% 40% 60%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.shop-about-hero__kicker {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.shop-about-hero__title {
    font-family: var(--shop-font-display);
    font-size: clamp(2.1rem, 4vw, 3.35rem);
    line-height: 1.02;
    margin-bottom: 0.9rem;
    max-width: 620px;
}

.shop-about-hero__intro {
    max-width: 640px;
    font-size: 1.02rem;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.86);
}

.shop-about-hero__panel {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 24px;
    background: rgba(7, 24, 43, 0.28);
    backdrop-filter: blur(6px);
    padding: 1.2rem;
}

.shop-about-hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.shop-about-hero__metric {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.9rem 0.8rem;
    text-align: center;
}

.shop-about-hero__metric-value {
    font-family: var(--shop-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.15;
}

.shop-about-hero__metric-label {
    margin-top: 0.35rem;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-about-hero__support {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.95rem 1rem;
}

.shop-about-hero__support-title {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.shop-about-hero__support-copy {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    font-size: 0.94rem;
}

.shop-about-highlight {
    height: 100%;
}

.shop-about-highlight__icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 0.95rem;
    background: linear-gradient(135deg, #eef7ff 0%, #d7f3e8 100%);
    color: #164b73;
    font-size: 1.1rem;
}

.shop-about-highlight__title {
    font-family: var(--shop-font-display);
    font-size: 1.28rem;
    margin-bottom: 0.55rem;
    color: #14354d;
}

.shop-about-highlight__copy {
    color: var(--shop-muted);
    line-height: 1.7;
}

.shop-about-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.shop-about-summary__item {
    position: relative;
    overflow: hidden;
    border: 1px solid #dbe7f2;
    border-radius: 22px;
    padding: 1.15rem 1.2rem;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    box-shadow: 0 16px 34px rgba(14, 36, 61, 0.07);
}

.shop-about-summary__item::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, #1a5f8d 0%, #31a76d 100%);
}

.shop-about-summary__value {
    font-family: var(--shop-font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: #15364f;
    margin-bottom: 0.35rem;
}

.shop-about-summary__label {
    color: var(--shop-muted);
    line-height: 1.65;
    font-size: 0.93rem;
}

.shop-about-section {
    position: relative;
    overflow: hidden;
}

.shop-about-section::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, #1a5f8d 0%, #31a76d 100%);
}

.shop-about-section__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-bottom: 0.9rem;
    background: #eef5fb;
    color: #1d567f;
    font-weight: 700;
}

.shop-about-section__title {
    font-family: var(--shop-font-display);
    font-size: 1.52rem;
    margin-bottom: 0.85rem;
    color: #15364f;
}

.shop-about-section__copy {
    color: var(--shop-muted);
    line-height: 1.76;
}

.shop-about-section__copy + .shop-about-section__copy {
    margin-top: 0.85rem;
}

.shop-about-section__list {
    margin-top: 1rem;
    padding-left: 1.1rem;
    color: var(--shop-muted);
}

.shop-about-section__list li + li {
    margin-top: 0.45rem;
}

.shop-about-section--product-range,
.shop-about-section--clientele,
.shop-about-section--our-journey {
    background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.shop-about-section__list--product-range {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    padding-left: 0;
    list-style: none;
}

.shop-about-section__list--product-range li {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0.75rem 0.9rem;
    border-radius: 16px;
    background: linear-gradient(135deg, #eef7ff 0%, #edf9f1 100%);
    color: #173f5f;
    font-weight: 600;
    box-shadow: inset 0 0 0 1px rgba(26, 95, 141, 0.08);
}

.shop-about-section__list--product-range li::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-right: 0.7rem;
    background: linear-gradient(135deg, #1a5f8d 0%, #31a76d 100%);
    flex: 0 0 auto;
}

.shop-about-section__list--clientele {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    padding-left: 0;
    list-style: none;
}

.shop-about-section__list--clientele li {
    min-height: 78px;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    border: 1px solid #e2ebf3;
    background: #ffffff;
    color: #173f5f;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(14, 36, 61, 0.06);
    display: flex;
    align-items: center;
}

.shop-about-section__list--our-journey {
    padding-left: 0;
    list-style: none;
    position: relative;
}

.shop-about-section__list--our-journey::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, rgba(26, 95, 141, 0.32) 0%, rgba(49, 167, 109, 0.32) 100%);
}

.shop-about-section__list--our-journey li {
    position: relative;
    margin-left: 0;
    padding: 0 0 0.95rem 2rem;
    color: #35536b;
    line-height: 1.72;
}

.shop-about-section__list--our-journey li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    background: linear-gradient(135deg, #1a5f8d 0%, #31a76d 100%);
    box-shadow: 0 0 0 1px rgba(26, 95, 141, 0.14);
}

.shop-about-contact-card__title {
    font-family: var(--shop-font-display);
    font-size: 1.55rem;
    color: #15364f;
}

.shop-about-contact-card__copy {
    color: var(--shop-muted);
    line-height: 1.72;
}

.shop-about-contact-card__list {
    display: grid;
    gap: 0.55rem;
    color: #244761;
    font-size: 0.94rem;
}

.shop-contact-hero {
    position: relative;
    overflow: hidden;
    padding: 2.25rem 2.1rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at 84% 20%, rgba(255, 222, 172, 0.2), rgba(255, 222, 172, 0) 32%),
        linear-gradient(135deg, #1d3151 0%, #24517d 48%, #2f7c8f 100%);
    color: #ffffff;
    box-shadow: 0 24px 52px rgba(20, 52, 80, 0.16);
}

.shop-contact-hero__backdrop {
    position: absolute;
    inset: auto -54px -78px auto;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.shop-contact-hero__kicker {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.shop-contact-hero__title {
    font-family: var(--shop-font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.04;
    margin-bottom: 0.8rem;
    max-width: 660px;
}

.shop-contact-hero__intro {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.72;
}

.shop-contact-hero__panel {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: rgba(10, 31, 50, 0.22);
    backdrop-filter: blur(6px);
    padding: 1.1rem 1.15rem;
}

.shop-contact-hero__panel-title {
    font-family: var(--shop-font-display);
    font-size: 1.08rem;
    margin-bottom: 0.85rem;
}

.shop-contact-hero__metrics {
    display: grid;
    gap: 0.8rem;
}

.shop-contact-hero__metric {
    display: grid;
    gap: 0.15rem;
}

.shop-contact-hero__metric strong {
    font-size: 1.08rem;
}

.shop-contact-hero__metric span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.93rem;
}

.shop-contact-highlight {
    height: 100%;
}

.shop-contact-highlight__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #edf8fc 0%, #eef6ff 100%);
    color: #22658a;
    font-size: 1rem;
}

.shop-contact-highlight__copy {
    color: #496175;
    line-height: 1.68;
}

.shop-contact-card {
    border: 1px solid #dde8ef;
    background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

.shop-contact-card__eyebrow,
.shop-contact-form__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
    background: #ecf7fb;
    color: #246789;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-contact-card__title,
.shop-contact-form__title {
    font-family: var(--shop-font-display);
    font-size: 1.65rem;
    color: #163751;
    margin-bottom: 0.95rem;
}

.shop-contact-card__section + .shop-contact-card__section {
    margin-top: 1.45rem;
    padding-top: 1.45rem;
    border-top: 1px solid #e7eef4;
}

.shop-contact-card__section-title {
    font-family: var(--shop-font-display);
    font-size: 1.12rem;
    color: #163751;
    margin-bottom: 0.55rem;
}

.shop-contact-card__line {
    color: #51677a;
    line-height: 1.72;
}

.shop-contact-card__line + .shop-contact-card__line {
    margin-top: 0.3rem;
}

.shop-contact-card__link {
    display: inline-flex;
    align-items: center;
    margin-top: 0.7rem;
    color: #0f6c8c;
    font-weight: 600;
}

.shop-contact-card__link:hover {
    color: #0b5974;
    text-decoration: none;
}

.shop-contact-form__copy {
    color: #5c7387;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.shop-contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.shop-contact-form__full {
    grid-column: 1 / -1;
}

.shop-contact-form__label {
    display: block;
    margin-bottom: 0.45rem;
    color: #28475f;
    font-weight: 600;
    font-size: 0.93rem;
}

.shop-contact-form__label span {
    color: #d35757;
}

.shop-contact-form .form-control {
    min-height: 52px;
    border-radius: 14px;
    border-color: #d7e4ec;
    box-shadow: none;
}

.shop-contact-form textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.shop-contact-form .form-control:focus {
    border-color: #6daac4;
    box-shadow: 0 0 0 0.18rem rgba(56, 131, 170, 0.12);
}

.shop-contact-form__submit {
    min-width: 160px;
}

.shop-enquiry-hero {
    position: relative;
    overflow: hidden;
    padding: 2.25rem 2.1rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at 84% 20%, rgba(255, 201, 164, 0.22), rgba(255, 201, 164, 0) 32%),
        linear-gradient(135deg, #223863 0%, #3f2b84 48%, #b0159b 100%);
    color: #ffffff;
    box-shadow: 0 24px 52px rgba(44, 31, 96, 0.16);
}

.shop-enquiry-hero__backdrop {
    position: absolute;
    inset: auto -54px -78px auto;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.shop-enquiry-hero__kicker {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.shop-enquiry-hero__title {
    font-family: var(--shop-font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.04;
    margin-bottom: 0.8rem;
    max-width: 660px;
}

.shop-enquiry-hero__intro {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.72;
}

.shop-enquiry-hero__panel {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: rgba(36, 18, 80, 0.22);
    backdrop-filter: blur(6px);
    padding: 1.1rem 1.15rem;
}

.shop-enquiry-hero__panel-title {
    font-family: var(--shop-font-display);
    font-size: 1.08rem;
    margin-bottom: 0.85rem;
}

.shop-enquiry-hero__metrics {
    display: grid;
    gap: 0.8rem;
}

.shop-enquiry-hero__metric {
    display: grid;
    gap: 0.15rem;
}

.shop-enquiry-hero__metric strong {
    font-size: 1.08rem;
}

.shop-enquiry-hero__metric span {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.93rem;
}

.shop-enquiry-highlight {
    height: 100%;
}

.shop-enquiry-highlight__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #fff0fb 0%, #f5efff 100%);
    color: #7f2c9c;
    font-size: 1rem;
}

.shop-enquiry-highlight__copy {
    color: #5b5277;
    line-height: 1.68;
}

.shop-enquiry-form__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
    background: #f6ecff;
    color: #853aa3;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-enquiry-form__title {
    font-family: var(--shop-font-display);
    font-size: 1.65rem;
    color: #2a2557;
    margin-bottom: 0.35rem;
}

.shop-enquiry-form__copy {
    color: #6b6685;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.shop-enquiry-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.shop-enquiry-form__full {
    grid-column: 1 / -1;
}

.shop-enquiry-form__label {
    display: block;
    margin-bottom: 0.45rem;
    color: #403c6f;
    font-weight: 600;
    font-size: 0.93rem;
}

.shop-enquiry-form__label span {
    color: #d35757;
}

.shop-enquiry-form .form-control,
.shop-enquiry-form select.form-control {
    min-height: 52px;
    border-radius: 14px;
    border-color: #dddaf0;
    box-shadow: none;
}

.shop-enquiry-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.shop-enquiry-form .form-control:focus,
.shop-enquiry-form select.form-control:focus {
    border-color: #b26cd0;
    box-shadow: 0 0 0 0.18rem rgba(151, 73, 183, 0.12);
}

.shop-enquiry-form .form-control-file {
    display: block;
    width: 100%;
    padding: 0.8rem 0.95rem;
    border: 1px solid #dddaf0;
    border-radius: 14px;
    background: #ffffff;
}

.shop-enquiry-form__submit {
    min-width: 160px;
}

.shop-enquiry-aside__title {
    font-family: var(--shop-font-display);
    font-size: 1.42rem;
    color: #2a2557;
}

.shop-enquiry-aside__copy {
    color: #6d6787;
    line-height: 1.72;
}

.shop-enquiry-aside__details {
    display: grid;
    gap: 0.5rem;
    color: #554e73;
    font-size: 0.93rem;
}

.shop-faq-hero {
    position: relative;
    overflow: hidden;
    padding: 2.25rem 2.1rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at 82% 24%, rgba(255, 208, 98, 0.22), rgba(255, 208, 98, 0) 34%),
        linear-gradient(135deg, #12395f 0%, #1e567f 45%, #2f6e8e 100%);
    color: #ffffff;
    box-shadow: 0 24px 52px rgba(12, 38, 65, 0.16);
}

.shop-faq-hero__orb {
    position: absolute;
    inset: auto -48px -70px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.shop-faq-hero__kicker {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.shop-faq-hero__title {
    font-family: var(--shop-font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.04;
    margin-bottom: 0.8rem;
    max-width: 620px;
}

.shop-faq-hero__intro {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.72;
}

.shop-faq-hero__panel {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    background: rgba(6, 21, 38, 0.26);
    backdrop-filter: blur(6px);
    padding: 1.1rem 1.15rem;
}

.shop-faq-hero__panel-title {
    font-family: var(--shop-font-display);
    font-size: 1.08rem;
    margin-bottom: 0.8rem;
}

.shop-faq-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.shop-faq-hero__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.78rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 600;
}

.shop-faq-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.shop-faq-summary__item {
    border: 1px solid #dce8f1;
    border-radius: 22px;
    padding: 1.1rem 1.15rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 14px 30px rgba(12, 38, 65, 0.06);
}

.shop-faq-summary__value {
    font-family: var(--shop-font-display);
    font-size: 1.32rem;
    font-weight: 700;
    color: #14354d;
    margin-bottom: 0.35rem;
}

.shop-faq-summary__label {
    color: var(--shop-muted);
    line-height: 1.65;
    font-size: 0.93rem;
}

.shop-faq-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
}

.shop-faq-card__index {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #eef7ff 0%, #edf8f0 100%);
    color: #1b5f87;
    font-weight: 700;
    flex: 0 0 44px;
}

.shop-faq-card__question {
    font-family: var(--shop-font-display);
    font-size: 1.34rem;
    line-height: 1.35;
    color: #14354d;
    margin-bottom: 0.7rem;
}

.shop-faq-card__answer {
    color: var(--shop-muted);
    line-height: 1.74;
}

.shop-faq-card__answer + .shop-faq-card__answer {
    margin-top: 0.65rem;
}

.shop-faq-aside__title {
    font-family: var(--shop-font-display);
    font-size: 1.42rem;
    color: #15364f;
}

.shop-faq-aside__copy {
    color: var(--shop-muted);
    line-height: 1.72;
}

.shop-faq-aside__details {
    display: grid;
    gap: 0.5rem;
    color: #254660;
    font-size: 0.93rem;
}

.shop-privacy-hero {
    position: relative;
    overflow: hidden;
    padding: 2.25rem 2.1rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at 84% 20%, rgba(197, 180, 255, 0.24), rgba(197, 180, 255, 0) 32%),
        linear-gradient(135deg, #1f2754 0%, #314783 45%, #4f6fb1 100%);
    color: #ffffff;
    box-shadow: 0 24px 52px rgba(28, 41, 87, 0.17);
}

.shop-privacy-hero__glow {
    position: absolute;
    inset: auto -52px -74px auto;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.shop-privacy-hero__kicker {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.shop-privacy-hero__title {
    font-family: var(--shop-font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.04;
    margin-bottom: 0.8rem;
    max-width: 660px;
}

.shop-privacy-hero__intro {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.72;
}

.shop-privacy-hero__panel {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: rgba(18, 27, 59, 0.28);
    backdrop-filter: blur(6px);
    padding: 1.1rem 1.15rem;
}

.shop-privacy-hero__panel-title {
    font-family: var(--shop-font-display);
    font-size: 1.08rem;
    margin-bottom: 0.8rem;
}

.shop-privacy-hero__timeline {
    display: grid;
    gap: 0.8rem;
}

.shop-privacy-hero__timeline div {
    display: grid;
    gap: 0.15rem;
}

.shop-privacy-hero__timeline strong {
    font-size: 1.18rem;
}

.shop-privacy-hero__timeline span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
}

.shop-privacy-highlight {
    height: 100%;
}

.shop-privacy-highlight__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #edf2ff 0%, #f4f7ff 100%);
    color: #3453a2;
    font-size: 1rem;
}

.shop-privacy-highlight__copy {
    color: #455271;
    line-height: 1.68;
}

.shop-privacy-block {
    border: 1px solid #dde5f2;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.shop-privacy-block__title {
    font-family: var(--shop-font-display);
    font-size: 1.6rem;
    color: #25375e;
    margin-bottom: 1rem;
}

.shop-privacy-rule-list {
    margin: 0;
    padding-left: 1.1rem;
    color: #526078;
}

.shop-privacy-rule-list li + li {
    margin-top: 0.55rem;
}

.shop-privacy-aside__title {
    font-family: var(--shop-font-display);
    font-size: 1.42rem;
    color: #25375e;
}

.shop-privacy-aside__copy {
    color: #60708a;
    line-height: 1.72;
}

.shop-privacy-aside__details {
    display: grid;
    gap: 0.5rem;
    color: #495973;
    font-size: 0.93rem;
}

.shop-privacy-note-block {
    border: 1px solid #dde5f2;
    background: linear-gradient(180deg, #fbfcff 0%, #f2f6ff 100%);
}

.shop-privacy-note-block__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
    background: #eaf0ff;
    color: #405fa8;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-privacy-note-block__copy {
    color: #526078;
    line-height: 1.74;
}

.shop-terms-hero {
    position: relative;
    overflow: hidden;
    padding: 2.25rem 2.1rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at 84% 18%, rgba(255, 224, 163, 0.24), rgba(255, 224, 163, 0) 32%),
        linear-gradient(135deg, #4a3521 0%, #8a6035 46%, #c78c3e 100%);
    color: #ffffff;
    box-shadow: 0 24px 52px rgba(90, 57, 18, 0.16);
}

.shop-terms-hero__glow {
    position: absolute;
    inset: auto -52px -74px auto;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.shop-terms-hero__kicker {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.shop-terms-hero__title {
    font-family: var(--shop-font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.04;
    margin-bottom: 0.8rem;
    max-width: 660px;
}

.shop-terms-hero__intro {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.72;
}

.shop-terms-hero__panel {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: rgba(59, 32, 10, 0.24);
    backdrop-filter: blur(6px);
    padding: 1.1rem 1.15rem;
}

.shop-terms-hero__panel-title {
    font-family: var(--shop-font-display);
    font-size: 1.08rem;
    margin-bottom: 0.8rem;
}

.shop-terms-hero__timeline {
    display: grid;
    gap: 0.8rem;
}

.shop-terms-hero__timeline div {
    display: grid;
    gap: 0.15rem;
}

.shop-terms-hero__timeline strong {
    font-size: 1.18rem;
}

.shop-terms-hero__timeline span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
}

.shop-terms-highlight {
    height: 100%;
}

.shop-terms-highlight__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #fff7e8 0%, #fff3dc 100%);
    color: #9b6b24;
    font-size: 1rem;
}

.shop-terms-highlight__copy {
    color: #67563f;
    line-height: 1.68;
}

.shop-terms-block,
.shop-terms-note-block {
    border: 1px solid #eadfcb;
    background: linear-gradient(180deg, #fffdf9 0%, #fff8ef 100%);
}

.shop-terms-block__title {
    font-family: var(--shop-font-display);
    font-size: 1.6rem;
    color: #5a3d1e;
    margin-bottom: 1rem;
}

.shop-terms-rule-list {
    margin: 0;
    padding-left: 1.1rem;
    color: #6c5a42;
}

.shop-terms-rule-list li + li {
    margin-top: 0.55rem;
}

.shop-terms-note-block__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
    background: #fff0d7;
    color: #9a6926;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-terms-note-block__copy {
    color: #6c5a42;
    line-height: 1.74;
}

.shop-terms-aside__title {
    font-family: var(--shop-font-display);
    font-size: 1.42rem;
    color: #5a3d1e;
}

.shop-terms-aside__copy {
    color: #75644e;
    line-height: 1.72;
}

.shop-terms-aside__details {
    display: grid;
    gap: 0.5rem;
    color: #5f4f3b;
    font-size: 0.93rem;
}

.shop-policy-hero {
    position: relative;
    overflow: hidden;
    padding: 2.25rem 2.1rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at 82% 24%, rgba(255, 178, 120, 0.2), rgba(255, 178, 120, 0) 34%),
        linear-gradient(135deg, #4d1d3e 0%, #7a2947 45%, #b2543a 100%);
    color: #ffffff;
    box-shadow: 0 24px 52px rgba(53, 20, 39, 0.16);
}

.shop-policy-hero__glow {
    position: absolute;
    inset: auto -46px -70px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.shop-policy-hero__kicker {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.shop-policy-hero__title {
    font-family: var(--shop-font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.04;
    margin-bottom: 0.8rem;
    max-width: 660px;
}

.shop-policy-hero__intro {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.72;
}

.shop-policy-hero__panel {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    background: rgba(33, 8, 24, 0.22);
    backdrop-filter: blur(6px);
    padding: 1.1rem 1.15rem;
}

.shop-policy-hero__panel-title {
    font-family: var(--shop-font-display);
    font-size: 1.08rem;
    margin-bottom: 0.8rem;
}

.shop-policy-hero__timeline {
    display: grid;
    gap: 0.8rem;
}

.shop-policy-hero__timeline div {
    display: grid;
    gap: 0.15rem;
}

.shop-policy-hero__timeline strong {
    font-size: 1.18rem;
}

.shop-policy-hero__timeline span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
}

.shop-policy-highlight {
    height: 100%;
}

.shop-policy-highlight__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #fff1eb 0%, #fff7ea 100%);
    color: #8b3f47;
    font-size: 1rem;
}

.shop-policy-highlight__copy {
    color: #4b3b50;
    line-height: 1.68;
}

.shop-policy-note-block {
    border: 1px solid #eadfd7;
    background: linear-gradient(180deg, #fffdfb 0%, #fff7f1 100%);
}

.shop-policy-note-block__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
    background: #fff1e9;
    color: #934b44;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-policy-note-block__list {
    display: grid;
    gap: 0.65rem;
}

.shop-policy-note-block__item {
    color: #604d58;
    line-height: 1.7;
}

.shop-policy-block__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.7rem;
    background: #fff1e9;
    color: #934b44;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-policy-block__title {
    font-family: var(--shop-font-display);
    font-size: 1.6rem;
    color: #4a2a42;
    margin-bottom: 1rem;
}

.shop-policy-step-list,
.shop-policy-rule-list {
    margin: 0;
    padding-left: 1.1rem;
    color: #625360;
}

.shop-policy-step-list li + li,
.shop-policy-rule-list li + li {
    margin-top: 0.55rem;
}

.shop-policy-aside__title {
    font-family: var(--shop-font-display);
    font-size: 1.42rem;
    color: #4a2a42;
}

.shop-policy-aside__copy {
    color: #6a5a67;
    line-height: 1.72;
}

.shop-policy-aside__details {
    display: grid;
    gap: 0.5rem;
    color: #5a4856;
    font-size: 0.93rem;
}

.shop-shipping-hero {
    position: relative;
    overflow: hidden;
    padding: 2.25rem 2.1rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at 82% 24%, rgba(171, 255, 210, 0.18), rgba(171, 255, 210, 0) 34%),
        linear-gradient(135deg, #17424d 0%, #1a6c74 45%, #3f9777 100%);
    color: #ffffff;
    box-shadow: 0 24px 52px rgba(15, 54, 59, 0.16);
}

.shop-shipping-hero__glow {
    position: absolute;
    inset: auto -46px -70px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.shop-shipping-hero__kicker {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.shop-shipping-hero__title {
    font-family: var(--shop-font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.04;
    margin-bottom: 0.8rem;
    max-width: 660px;
}

.shop-shipping-hero__intro {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.72;
}

.shop-shipping-hero__panel {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    background: rgba(9, 30, 30, 0.22);
    backdrop-filter: blur(6px);
    padding: 1.1rem 1.15rem;
}

.shop-shipping-hero__panel-title {
    font-family: var(--shop-font-display);
    font-size: 1.08rem;
    margin-bottom: 0.8rem;
}

.shop-shipping-hero__timeline {
    display: grid;
    gap: 0.8rem;
}

.shop-shipping-hero__timeline div {
    display: grid;
    gap: 0.15rem;
}

.shop-shipping-hero__timeline strong {
    font-size: 1.18rem;
}

.shop-shipping-hero__timeline span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.92rem;
}

.shop-shipping-highlight {
    height: 100%;
}

.shop-shipping-highlight__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #ecfbf6 0%, #eefbff 100%);
    color: #1d7168;
    font-size: 1rem;
}

.shop-shipping-highlight__copy {
    color: #36595e;
    line-height: 1.68;
}

.shop-shipping-block__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.7rem;
    background: #eaf7f0;
    color: #216a62;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-shipping-block__title {
    font-family: var(--shop-font-display);
    font-size: 1.6rem;
    color: #21414a;
    margin-bottom: 1rem;
}

.shop-shipping-rule-list {
    margin: 0;
    padding-left: 1.1rem;
    color: #55686b;
}

.shop-shipping-rule-list li + li {
    margin-top: 0.55rem;
}

.shop-shipping-note-block {
    border: 1px solid #d8eadf;
    background: linear-gradient(180deg, #fbfffd 0%, #f4fbf7 100%);
}

.shop-shipping-note-block__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
    background: #eaf7f0;
    color: #216a62;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-shipping-note-block__copy {
    color: #4f6660;
    line-height: 1.7;
}

.shop-shipping-aside__title {
    font-family: var(--shop-font-display);
    font-size: 1.42rem;
    color: #21414a;
}

.shop-shipping-aside__copy {
    color: #5c6e69;
    line-height: 1.72;
}

.shop-shipping-aside__details {
    display: grid;
    gap: 0.5rem;
    color: #546863;
    font-size: 0.93rem;
}

.shop-warranty-hero {
    position: relative;
    overflow: hidden;
    padding: 2.35rem 2.15rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at 84% 20%, rgba(116, 220, 255, 0.18), rgba(116, 220, 255, 0) 34%),
        linear-gradient(135deg, #0f2f55 0%, #184d7a 45%, #207a79 100%);
    color: #ffffff;
    box-shadow: 0 24px 52px rgba(12, 38, 65, 0.18);
}

.shop-warranty-hero__glow {
    position: absolute;
    inset: auto -52px -82px auto;
    width: 260px;
    height: 260px;
    border-radius: 42% 58% 60% 40%;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.shop-warranty-hero__kicker {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.shop-warranty-hero__title {
    font-family: var(--shop-font-display);
    font-size: clamp(2rem, 3.8vw, 3.05rem);
    line-height: 1.04;
    margin-bottom: 0.85rem;
    max-width: 620px;
}

.shop-warranty-hero__intro {
    max-width: 630px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.72;
    font-size: 1rem;
}

.shop-warranty-hero__panel {
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    background: rgba(5, 22, 40, 0.28);
    backdrop-filter: blur(6px);
    padding: 1.15rem 1.2rem;
}

.shop-warranty-hero__panel-title {
    font-family: var(--shop-font-display);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.shop-warranty-hero__panel-list {
    padding-left: 1.1rem;
    color: rgba(255, 255, 255, 0.82);
}

.shop-warranty-hero__panel-list li + li {
    margin-top: 0.45rem;
}

.shop-warranty-highlight {
    height: 100%;
}

.shop-warranty-highlight__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, #edf7ff 0%, #ecfbf3 100%);
    color: #1b5f87;
    font-size: 1rem;
}

.shop-warranty-highlight__copy {
    color: #2f4f68;
    line-height: 1.68;
}

.shop-warranty-definition {
    border: 1px solid #dbe8f2;
    background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
}

.shop-warranty-definition__title {
    font-family: var(--shop-font-display);
    font-size: 1.45rem;
    color: #15364f;
    margin-bottom: 0.65rem;
}

.shop-warranty-definition__copy {
    color: var(--shop-muted);
    line-height: 1.76;
}

.shop-warranty-block__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.7rem;
    background: #eef6fb;
    color: #1c5a85;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-warranty-block__title {
    font-family: var(--shop-font-display);
    font-size: 1.65rem;
    color: #14354d;
    margin-bottom: 1rem;
}

.shop-warranty-claim-grid {
    display: grid;
    gap: 1rem;
}

.shop-warranty-claim-card {
    border: 1px solid #dce8f2;
    border-radius: 22px;
    padding: 1rem 1.05rem;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.shop-warranty-claim-card__title {
    font-family: var(--shop-font-display);
    font-size: 1.18rem;
    color: #15364f;
    margin-bottom: 0.7rem;
}

.shop-warranty-claim-card__steps {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--shop-muted);
}

.shop-warranty-claim-card__steps li + li {
    margin-top: 0.5rem;
}

.shop-warranty-rule-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--shop-muted);
}

.shop-warranty-rule-list li + li {
    margin-top: 0.55rem;
}

.shop-warranty-aside__title {
    font-family: var(--shop-font-display);
    font-size: 1.45rem;
    color: #15364f;
}

.shop-warranty-aside__copy {
    color: var(--shop-muted);
    line-height: 1.72;
}

.shop-warranty-aside__details {
    display: grid;
    gap: 0.55rem;
    color: #254660;
    font-size: 0.93rem;
}

.shop-warranty-aside-panel {
    margin-top: 0;
}

.shop-warranty-brand-card__title {
    font-family: var(--shop-font-display);
    font-size: 1.24rem;
    color: #15364f;
    margin-bottom: 0.9rem;
}

.shop-warranty-brand-card__items {
    display: grid;
    gap: 0.6rem;
}

.shop-warranty-brand-card__item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #35536b;
    line-height: 1.55;
}

.shop-warranty-brand-card__item i {
    color: #1c5a85;
    margin-top: 0.18rem;
    width: 16px;
    flex: 0 0 16px;
}

.shop-warranty-brand-card__item a {
    color: #204d76;
    word-break: break-word;
}

.shop-warranty-brand-card__item a:hover {
    color: #163852;
    text-decoration: none;
}

.shopfront-body .page-item.active .page-link {
    background: var(--shop-brand);
    border-color: var(--shop-brand);
}

.shopfront-body .page-link {
    color: #2c5b46;
    border-color: #d2e0d0;
}

.shopfront-body .page-link:hover {
    color: #163d2d;
    background: #eff9f1;
}

.shop-auth-shell {
    margin: 2rem auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 26px 62px rgba(16, 36, 54, 0.19);
    background: #ffffff;
    border: 1px solid #d8e3d7;
}

.shop-auth-hero {
    position: relative;
    min-height: 560px;
    padding: 2.6rem 2.2rem;
    color: #ffffff;
    background:
        radial-gradient(circle at 85% 15%, rgba(246, 214, 74, 0.38), rgba(246, 214, 74, 0) 48%),
        linear-gradient(135deg, #0e4d55 0%, #15714e 56%, #239a66 100%);
}

.shop-auth-hero::after {
    content: '';
    position: absolute;
    inset: auto -70px -120px auto;
    width: 320px;
    height: 320px;
    border-radius: 44% 56% 58% 42%;
    background: rgba(255, 255, 255, 0.12);
}

.shop-auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--shop-font-display);
    margin-bottom: 1.4rem;
}

.shop-auth-brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #173749;
    background: linear-gradient(135deg, #ffe16d 0%, #ffd24a 100%);
}

.shop-auth-brand-title {
    font-size: 1.24rem;
    font-weight: 700;
}

.shop-auth-brand-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.78);
}

.shop-auth-hero h1 {
    font-family: var(--shop-font-display);
    font-size: clamp(2rem, 2.8vw, 2.65rem);
    line-height: 1.05;
    margin-bottom: 0.9rem;
}

.shop-auth-hero p {
    color: rgba(255, 255, 255, 0.87);
    max-width: 430px;
}

.shop-auth-badges {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.shop-auth-badge {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.65rem 0.75rem;
    font-size: 0.88rem;
}

.shop-auth-form-wrap {
    padding: 2.3rem 2.1rem;
    background: #ffffff;
}

.shop-auth-form-wrap h2 {
    font-family: var(--shop-font-display);
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
}

.shop-auth-meta {
    color: var(--shop-muted);
    margin-bottom: 1.15rem;
    font-size: 0.9rem;
}

.shop-auth-input-group {
    margin-bottom: 0.85rem;
}

.shop-auth-input-group label {
    display: block;
    margin-bottom: 0.32rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #4f6578;
}

.shop-auth-input-group .form-control {
    border-radius: 12px;
    min-height: 46px;
    border: 1px solid #ccdacc;
    background: #fcfffb;
}

.shop-auth-input-group .form-control:focus {
    border-color: rgba(21, 147, 101, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(21, 147, 101, 0.14);
}

.shop-auth-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 1rem;
}

.shop-auth-helper {
    color: var(--shop-muted);
    font-size: 0.84rem;
}

.shop-auth-link {
    color: #226f52;
    font-weight: 700;
    text-decoration: none;
}

.shop-auth-link:hover {
    color: #0f553f;
    text-decoration: none;
}

.shop-auth-alert {
    border-radius: 12px;
}

@media (max-width: 1199.98px) {
    .shop-sticky {
        position: static;
    }
}

@media (max-width: 991.98px) {
    .shop-container-fluid {
        padding-left: 0.78rem;
        padding-right: 0.78rem;
    }

    .shop-header-main {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            'logo actions'
            'search search';
        gap: 0.85rem;
        padding: 0.8rem 0 0.95rem;
    }

    .shop-logo {
        grid-area: logo;
    }

    .shop-search {
        grid-area: search;
    }

    .shop-header-actions {
        grid-area: actions;
        justify-content: flex-end;
    }

    .shop-user-chip {
        min-height: 42px;
        padding-right: 0.7rem;
    }

    .shop-action-link--cart,
    .shop-action-link--account,
    .shop-action-link--wishlist {
        min-width: 82px;
        height: 42px;
        padding: 0 0.7rem;
    }

    .shop-nav-wrap {
        min-height: 0;
    }

    .shop-nav-list {
        flex-wrap: wrap;
        padding-top: 0;
    }

    .shop-main {
        padding-top: 1rem;
    }

    .shop-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-auth-hero {
        min-height: 320px;
        padding: 1.7rem 1.4rem;
    }

    .shop-auth-form-wrap {
        padding: 1.6rem 1.2rem;
    }

    .shop-blog-lead__inner {
        align-items: flex-start !important;
    }

    .shop-blog-lead__actions {
        width: 100%;
    }

    .shop-blog-lead__button {
        width: 100%;
    }

    .shop-blog-content .shop-blog-cta {
        min-width: 200px;
        min-height: 54px;
        padding: 0.9rem 1.35rem;
    }

    .shop-about-hero {
        padding: 1.8rem 1.45rem;
    }

    .shop-about-hero__panel {
        margin-top: 0.35rem;
    }

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

    .shop-about-summary {
        grid-template-columns: 1fr;
    }

    .shop-about-section {
        padding-left: 1.15rem;
    }

    .shop-about-section__list--product-range,
    .shop-about-section__list--clientele {
        grid-template-columns: 1fr;
    }

    .shop-contact-hero {
        padding: 1.8rem 1.45rem;
    }

    .shop-contact-form__grid {
        grid-template-columns: 1fr;
    }

    .shop-enquiry-hero {
        padding: 1.8rem 1.45rem;
    }

    .shop-enquiry-form__grid {
        grid-template-columns: 1fr;
    }

    .shop-faq-summary {
        grid-template-columns: 1fr;
    }

    .shop-faq-hero {
        padding: 1.8rem 1.45rem;
    }

    .shop-privacy-hero,
    .shop-terms-hero,
    .shop-policy-hero {
        padding: 1.8rem 1.45rem;
    }

    .shop-shipping-hero {
        padding: 1.8rem 1.45rem;
    }

    .shop-warranty-hero {
        padding: 1.8rem 1.45rem;
    }
}

@media (max-width: 575.98px) {
    .shop-title {
        font-size: 1.32rem;
    }

    .shop-top-strip-inner {
        min-height: 30px;
        font-size: 0.74rem;
    }

    .shop-logo-title {
        font-size: 1.04rem;
    }

    .shop-search .form-control {
        padding-left: 2.4rem;
    }

    .shop-search-icon {
        left: 0.9rem;
    }

    .shop-action-link {
        width: 46px;
        height: 46px;
    }

    .shop-action-link--cart,
    .shop-action-link--account,
    .shop-action-link--wishlist {
        min-width: 44px;
        width: 44px;
        height: 44px;
        padding: 0;
    }

    .shop-action-link--cart .shop-action-caption,
    .shop-action-link--account .shop-action-caption,
    .shop-action-link--wishlist .shop-action-caption {
        display: none;
    }

    .shop-surface,
    .shop-panel,
    .shop-hero {
        border-radius: 18px;
    }

    .shop-padded,
    .shop-panel-body {
        padding: 0.85rem;
    }

    .shop-auth-shell {
        margin-top: 1rem;
        margin-bottom: 1rem;
        border-radius: 18px;
    }

    .shop-auth-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-footer-grid {
        grid-template-columns: 1fr;
    }

    .shop-rail-controls {
        width: 100%;
        justify-content: flex-end;
    }

    .shop-rail-control {
        width: 38px;
        height: 38px;
    }

    .shop-product-rail {
        gap: 0.7rem;
    }

    .shop-product-rail-item {
        flex: 0 0 calc((100% - 0.7rem) / 2);
        min-width: calc((100% - 0.7rem) / 2);
        max-width: calc((100% - 0.7rem) / 2);
    }

    .shop-blog-content img,
    .shop-blog-content [style*='float:left'],
    .shop-blog-content [style*='float: left'],
    .shop-blog-content [style*='float:right'],
    .shop-blog-content [style*='float: right'],
    .shop-blog-content .alignleft,
    .shop-blog-content .alignright {
        float: none !important;
        max-width: 100%;
        width: 100%;
        margin: 0.85rem 0;
    }

    .shop-blog-lead__logo {
        width: 50px !important;
        height: 50px !important;
    }

    .shop-blog-lead__title {
        font-size: 1.2rem !important;
    }

    .shop-blog-content .shop-blog-cta-wrap {
        display: flex;
        width: 100%;
        margin: 0.55rem 0;
    }

    .shop-blog-content .shop-blog-cta {
        width: 100%;
        min-width: 0;
        font-size: 0.98rem;
        border-radius: 16px;
    }

    .shop-about-hero {
        padding: 1.3rem 1rem;
        border-radius: 22px;
    }

    .shop-about-hero__backdrop {
        width: 180px;
        height: 180px;
        inset: auto -38px -58px auto;
    }

    .shop-about-hero__panel {
        padding: 0.95rem;
        border-radius: 18px;
    }

    .shop-about-hero__metrics {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .shop-about-hero__metric {
        text-align: left;
        padding: 0.8rem 0.85rem;
    }

    .shop-about-hero__title {
        font-size: 1.85rem;
    }

    .shop-about-hero__intro,
    .shop-about-hero__support-copy,
    .shop-about-summary__label,
    .shop-about-highlight__copy,
    .shop-about-section__copy,
    .shop-about-contact-card__copy,
    .shop-about-section__list {
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .shop-about-section__title,
    .shop-about-contact-card__title {
        font-size: 1.25rem;
    }

    .shop-about-section {
        padding-left: 0.95rem;
    }

    .shop-about-section__eyebrow {
        min-width: 38px;
        height: 38px;
        border-radius: 12px;
        margin-bottom: 0.7rem;
        font-size: 0.88rem;
    }

    .shop-about-highlight__icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        margin-bottom: 0.75rem;
    }

    .shop-about-summary__item {
        border-radius: 18px;
        padding: 1rem;
    }

    .shop-about-summary__value {
        font-size: 1.18rem;
    }

    .shop-about-contact-card__list {
        gap: 0.45rem;
        font-size: 0.88rem;
    }

    .shop-about-section__list--product-range li,
    .shop-about-section__list--clientele li {
        min-height: 0;
        padding: 0.8rem 0.9rem;
    }

    .shop-about-section__list--our-journey li {
        padding-left: 1.7rem;
    }

    .shop-about-section__list--our-journey li::before {
        width: 16px;
        height: 16px;
        top: 0.5rem;
    }

    .shop-about-section__list--our-journey::before {
        left: 8px;
    }

    .shop-faq-hero {
        padding: 1.3rem 1rem;
        border-radius: 22px;
    }

    .shop-faq-hero__orb {
        width: 150px;
        height: 150px;
        inset: auto -28px -44px auto;
    }

    .shop-faq-hero__panel {
        border-radius: 18px;
        padding: 0.95rem;
    }

    .shop-faq-hero__title {
        font-size: 1.82rem;
    }

    .shop-faq-hero__intro,
    .shop-faq-summary__label,
    .shop-faq-card__answer,
    .shop-faq-aside__copy,
    .shop-faq-aside__details {
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .shop-faq-card {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .shop-faq-card__question,
    .shop-faq-aside__title {
        font-size: 1.2rem;
    }

    .shop-faq-summary__item {
        border-radius: 18px;
        padding: 1rem;
    }

    .shop-faq-summary__value {
        font-size: 1.15rem;
    }

    .shop-contact-hero {
        padding: 1.3rem 1rem;
        border-radius: 22px;
    }

    .shop-contact-hero__backdrop {
        width: 150px;
        height: 150px;
        inset: auto -28px -44px auto;
    }

    .shop-contact-hero__panel {
        border-radius: 18px;
        padding: 0.95rem;
    }

    .shop-contact-hero__title {
        font-size: 1.82rem;
    }

    .shop-contact-hero__intro,
    .shop-contact-highlight__copy,
    .shop-contact-card__line,
    .shop-contact-form__copy,
    .shop-contact-form__label {
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .shop-contact-card__title,
    .shop-contact-form__title,
    .shop-contact-card__section-title {
        font-size: 1.2rem;
    }

    .shop-enquiry-hero {
        padding: 1.3rem 1rem;
        border-radius: 22px;
    }

    .shop-enquiry-hero__backdrop {
        width: 150px;
        height: 150px;
        inset: auto -28px -44px auto;
    }

    .shop-enquiry-hero__panel {
        border-radius: 18px;
        padding: 0.95rem;
    }

    .shop-enquiry-hero__title {
        font-size: 1.82rem;
    }

    .shop-enquiry-hero__intro,
    .shop-enquiry-highlight__copy,
    .shop-enquiry-form__copy,
    .shop-enquiry-form__label,
    .shop-enquiry-aside__copy,
    .shop-enquiry-aside__details {
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .shop-enquiry-form__title,
    .shop-enquiry-aside__title {
        font-size: 1.2rem;
    }

    .shop-privacy-hero,
    .shop-terms-hero,
    .shop-policy-hero {
        padding: 1.3rem 1rem;
        border-radius: 22px;
    }

    .shop-privacy-hero__glow,
    .shop-terms-hero__glow,
    .shop-policy-hero__glow {
        width: 150px;
        height: 150px;
        inset: auto -28px -44px auto;
    }

    .shop-privacy-hero__panel,
    .shop-terms-hero__panel,
    .shop-policy-hero__panel {
        border-radius: 18px;
        padding: 0.95rem;
    }

    .shop-privacy-hero__title,
    .shop-terms-hero__title,
    .shop-policy-hero__title {
        font-size: 1.82rem;
    }

    .shop-privacy-hero__intro,
    .shop-privacy-highlight__copy,
    .shop-privacy-rule-list,
    .shop-privacy-aside__copy,
    .shop-privacy-aside__details,
    .shop-privacy-note-block__copy,
    .shop-terms-hero__intro,
    .shop-terms-highlight__copy,
    .shop-terms-rule-list,
    .shop-terms-aside__copy,
    .shop-terms-aside__details,
    .shop-terms-note-block__copy,
    .shop-policy-hero__intro,
    .shop-policy-highlight__copy,
    .shop-policy-note-block__item,
    .shop-policy-step-list,
    .shop-policy-rule-list,
    .shop-policy-aside__copy,
    .shop-policy-aside__details {
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .shop-privacy-block__title,
    .shop-privacy-aside__title,
    .shop-terms-block__title,
    .shop-terms-aside__title,
    .shop-policy-block__title,
    .shop-policy-aside__title {
        font-size: 1.2rem;
    }

    .shop-shipping-hero {
        padding: 1.3rem 1rem;
        border-radius: 22px;
    }

    .shop-shipping-hero__glow {
        width: 150px;
        height: 150px;
        inset: auto -28px -44px auto;
    }

    .shop-shipping-hero__panel {
        border-radius: 18px;
        padding: 0.95rem;
    }

    .shop-shipping-hero__title {
        font-size: 1.82rem;
    }

    .shop-shipping-hero__intro,
    .shop-shipping-highlight__copy,
    .shop-shipping-rule-list,
    .shop-shipping-note-block__copy,
    .shop-shipping-aside__copy,
    .shop-shipping-aside__details {
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .shop-shipping-block__title,
    .shop-shipping-aside__title {
        font-size: 1.2rem;
    }

    .shop-warranty-hero {
        padding: 1.3rem 1rem;
        border-radius: 22px;
    }

    .shop-warranty-hero__glow {
        width: 170px;
        height: 170px;
        inset: auto -34px -54px auto;
    }

    .shop-warranty-hero__panel {
        border-radius: 18px;
        padding: 0.95rem;
    }

    .shop-warranty-hero__title {
        font-size: 1.82rem;
    }

    .shop-warranty-hero__intro,
    .shop-warranty-highlight__copy,
    .shop-warranty-definition__copy,
    .shop-warranty-claim-card__steps,
    .shop-warranty-rule-list,
    .shop-warranty-aside__copy,
    .shop-warranty-aside__details,
    .shop-warranty-brand-card__item {
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .shop-warranty-block__title,
    .shop-warranty-definition__title,
    .shop-warranty-aside__title,
    .shop-warranty-brand-card__title {
        font-size: 1.2rem;
    }
}

/* Header categories dropdown */
.shop-categories-dropdown {
    position: relative;
}

.shop-categories-menu {
    display: block;
    width: min(1240px, calc(100vw - 2rem));
    padding: 0.85rem;
    position: fixed;
    left: 50%;
    top: var(--shop-dropdown-top, 128px);
    margin-top: 0;
    border-radius: 16px;
    border: 1px solid #d6e4d8;
    background: #ffffff;
    box-shadow: 0 22px 40px rgba(16, 36, 54, 0.16);
    transform: translateX(-50%) translateY(-8px) scale(0.985);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1200;
    transition:
        opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.2s linear;
}

.shop-categories-dropdown.is-open > .shop-categories-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
}

.shop-categories-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem 0.3rem 0.75rem;
    border-bottom: 1px solid #e7efe6;
    margin-bottom: 0.75rem;
    font-size: 0.92rem;
}

.shop-categories-menu-head strong {
    color: #17384e;
}

.shop-categories-menu-head a {
    color: var(--shop-brand-dark);
    font-weight: 700;
    text-decoration: none;
}

.shop-categories-grid {
    column-count: 4;
    column-gap: 0.75rem;
    max-height: min(68vh, 760px);
    overflow-y: auto;
    padding-right: 0.2rem;
}

.shop-category-group {
    border: 1px solid #e6eee4;
    border-radius: 12px;
    background:
        linear-gradient(180deg, #fcfefb 0%, #f9fdf8 100%);
    padding: 0.72rem 0.78rem;
    display: inline-block;
    width: 100%;
    margin: 0 0 0.75rem;
    break-inside: avoid;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.shop-category-parent {
    display: inline-block;
    font-weight: 700;
    color: #16364c;
    text-decoration: none;
    margin-bottom: 0.3rem;
}

.shop-category-parent:hover {
    color: #0a5a3b;
    text-decoration: none;
}

.shop-category-children {
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
    padding-top: 0.14rem;
}

.shop-category-child-link {
    color: #3f5568;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.35;
    font-weight: 500;
}

.shop-category-child-link:hover {
    color: #0f5f3e;
}

.shop-category-grandchildren {
    margin-top: 0.16rem;
    padding-left: 0.75rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.14rem;
}

.shop-category-grandchildren a {
    color: #6a7f8e;
    text-decoration: none;
    font-size: 0.82rem;
    line-height: 1.3;
}

.shop-category-grandchildren a:hover {
    color: #0f5f3e;
}

.shop-category-empty {
    color: #667789;
    font-size: 0.9rem;
    padding: 0.5rem;
}

.shop-brands-dropdown {
    position: relative;
}

.shop-price-list-dropdown {
    position: relative;
}

.shop-price-list-menu {
    width: min(280px, calc(100vw - 2rem));
    padding: 0.5rem;
    margin-top: 0;
    top: calc(100% + 0.2rem);
    left: 0;
    border-radius: 16px;
    border: 1px solid #d6e4d8;
    box-shadow: 0 18px 36px rgba(16, 36, 54, 0.12);
}

.shop-price-list-link {
    display: block;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 0.55rem 0.7rem;
    color: #16364c;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.35;
}

.shop-price-list-link:hover {
    text-decoration: none;
    color: #0a5a3b;
    border-color: #cae2cf;
    background: #f4fbf1;
}

.shop-brands-menu {
    width: min(520px, calc(100vw - 2rem));
    padding: 0.85rem;
    margin-top: 0;
    top: calc(100% + 0.2rem);
    left: 0;
    border-radius: 16px;
    border: 1px solid #d6e4d8;
    box-shadow: 0 18px 36px rgba(16, 36, 54, 0.12);
}

.shop-brands-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.shop-brand-link {
    display: block;
    border: 1px solid #e6eee4;
    background: #fbfef9;
    color: #16364c;
    border-radius: 10px;
    padding: 0.5rem 0.65rem;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.3;
}

.shop-brand-link:hover {
    text-decoration: none;
    color: #0a5a3b;
    border-color: #cae2cf;
    background: #f4fbf1;
}

@media (max-width: 991.98px) {
    .shop-categories-menu {
        width: min(96vw, 900px);
        max-height: calc(100vh - 150px);
        overflow-y: auto;
    }

    .shop-categories-grid {
        column-count: 2;
        max-height: none;
        overflow: visible;
    }

    .shop-brands-menu {
        width: 100%;
        margin-top: 0.5rem;
    }

    .shop-price-list-menu {
        width: 100%;
        margin-top: 0.5rem;
    }

    .shop-brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .shop-price-list-dropdown {
        padding-bottom: 0.35rem;
        margin-bottom: -0.35rem;
    }

    .shop-price-list-dropdown:hover > .shop-price-list-menu,
    .shop-price-list-dropdown:focus-within > .shop-price-list-menu {
        display: block;
    }

    .shop-brands-dropdown {
        padding-bottom: 0.35rem;
        margin-bottom: -0.35rem;
    }

    .shop-brands-dropdown:hover > .shop-brands-menu,
    .shop-brands-dropdown:focus-within > .shop-brands-menu {
        display: block;
    }
}

@media (max-width: 575.98px) {
    .shop-categories-grid {
        column-count: 1;
    }

    .shop-brands-grid {
        grid-template-columns: 1fr;
    }
}
