:root {
    --ink: #172026;
    --muted: #5e6972;
    --line: #dfe6e8;
    --paper: #ffffff;
    --soft: #f6faf9;
    --mint: #76b7a0;
    --mint-dark: #24745f;
    --coral: #f25f5c;
    --navy: #0f4c5c;
    --gold: #f5b041;
    --shadow: 0 18px 50px rgba(15, 76, 92, 0.14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 25;
    min-height: 38px;
    display: block;
    padding: 6px 6vw;
    color: #fff;
    background: var(--coral);
    font-size: 0.9rem;
    font-weight: 800;
    transition: transform 0.22s ease;
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.top-social {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.top-social a {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: var(--coral);
    background: #fff;
    font-size: 0.82rem;
    font-weight: 900;
}

.announcement-bar.hide-strip {
    transform: translateY(-100%);
}

body.top-strip-hidden .site-header {
    top: 0;
}

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

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

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 6vw;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(223, 230, 232, 0.8);
    backdrop-filter: blur(16px);
}

.announcement-bar + .site-header {
    top: 38px;
}

.brand,
.admin-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand-logo {
    width: auto;
    max-width: 124px;
    height: 38px;
    object-fit: contain;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: var(--radius);
    color: #fff;
    background: var(--navy);
    box-shadow: 0 8px 22px rgba(15, 76, 92, 0.22);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--muted);
    font-size: 0.95rem;
}

.site-nav a:hover {
    color: var(--navy);
}

#menu-toggle-btn {
    display: none;
}

.cart-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 0;
    border-radius: 0;
    color: var(--navy);
    background: transparent;
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.18s ease-in-out;
}

.cart-pill:hover {
    color: var(--coral);
}

.cart-pill .cart-text {
    font-size: 0.9rem;
}

.cart-pill [data-cart-count] {
    display: inline-grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--coral);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
}

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

/* Language Dropdown Selector */
.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropbtn {
    background: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 6px 12px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: background-color 0.18s, border-color 0.18s;
}

.lang-dropbtn:hover {
    background-color: var(--soft);
    border-color: var(--mint);
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #ffffff;
    min-width: 140px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    z-index: 999;
    margin-top: 4px;
    overflow: hidden;
}

.lang-dropdown-content a {
    color: var(--ink);
    padding: 10px 14px;
    text-decoration: none;
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    transition: background-color 0.18s;
}

.lang-dropdown-content a:hover {
    background-color: var(--soft);
    color: var(--navy);
}

.lang-dropdown-content a.active {
    background-color: var(--mint);
    color: #ffffff;
}

.lang-dropdown:hover .lang-dropdown-content {
    display: block;
}

/* Navigation Submenus Dropdown Selector */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropbtn {
    background: none;
    border: none;
    color: var(--muted);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.18s;
}

.nav-item-dropdown:hover .nav-dropbtn {
    color: var(--navy);
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 999;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    overflow: hidden;
}

.nav-dropdown-content a {
    color: var(--muted) !important;
    padding: 10px 16px !important;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: left;
    border-bottom: 1px solid var(--soft) !important;
    transition: background-color 0.18s, color 0.18s;
}

.nav-dropdown-content a:last-child {
    border-bottom: none !important;
}

.nav-dropdown-content a:hover {
    background-color: var(--soft) !important;
    color: var(--navy) !important;
}

.nav-item-dropdown:hover .nav-dropdown-content {
    display: block;
}

@media (max-width: 860px) {
    .nav-item-dropdown {
        display: block;
        width: 100%;
    }
    .nav-dropbtn {
        width: 100%;
        padding: 12px 6vw;
        border-bottom: 1px solid var(--line);
        color: var(--navy);
    }
    .nav-dropdown-content {
        display: block !important;
        position: static;
        box-shadow: none;
        border: none;
        background-color: var(--soft);
        padding-left: 20px;
        min-width: 100%;
    }
    .nav-dropdown-content a {
        border-bottom: none !important;
        padding: 8px 16px !important;
    }
}

.hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    padding: 120px 6vw 70px;
    background-position: center;
    background-size: cover;
}

.hero-slider {
    position: relative;
    min-height: calc(100vh - 38px);
    overflow: hidden;
    background: #10272e;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 130px 6vw 86px;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 0.6s ease, transform 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-dots {
    position: absolute;
    z-index: 3;
    left: 6vw;
    bottom: 32px;
    display: flex;
    gap: 9px;
}

.hero-dots button {
    width: 34px;
    height: 5px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
}

.hero-dots button.active {
    background: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 32, 39, 0.36);
}

.hero-copy {
    position: relative;
    z-index: 1;
    width: min(610px, 100%);
    color: #fff;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--coral);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.hero-copy .eyebrow {
    color: #fff;
}

.hero h1,
.hero-slider h1 {
    margin: 0;
    font-size: 4.5rem;
    line-height: 0.95;
}

.animated-heading {
    color: transparent;
    background: linear-gradient(90deg, #fff, #a7f3d0, #ffd1cf, #fff);
    background-size: 260% auto;
    -webkit-background-clip: text;
    background-clip: text;
    animation: textColorShift 5s ease-in-out infinite;
}

.text-shift {
    animation: softPulse 2.8s ease-in-out infinite;
}

.hero p,
.hero-slider p {
    max-width: 530px;
    font-size: 1.16rem;
    line-height: 1.7;
}

.hero-actions,
.panel-actions,
.confirm-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 750;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, opacity 0.18s ease;
    white-space: nowrap;
}

.button:hover {
    transform: translateY(-1px);
}

.button:disabled {
    cursor: not-allowed;
    opacity: 0.65;
    transform: none;
}

.button.primary {
    color: #fff;
    background: var(--coral);
    box-shadow: 0 12px 26px rgba(242, 95, 92, 0.26);
}

.button.secondary {
    color: var(--navy);
    background: #fff;
    border-color: var(--line);
}

.button.light {
    color: var(--navy);
    background: #fff;
}

.button.danger {
    color: #fff;
    background: #c73d3d;
}

.button.tiny {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.86rem;
}

.button.loading {
    position: relative;
    pointer-events: none;
}

.button.loading::after {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.section {
    width: min(1180px, 92vw);
    margin: 0 auto;
    padding: 70px 0;
}

.intro-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--line);
}

.intro-band h2,
.section-heading h2,
.order-copy h2 {
    margin: 0;
    max-width: 760px;
    font-size: 2rem;
    line-height: 1.18;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 26px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.category-grid,
.trust-grid,
.color-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.category-card,
.trust-card,
.color-card {
    display: grid;
    gap: 8px;
    min-height: 150px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 76, 92, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.category-card:hover,
.trust-card:hover,
.color-card:hover {
    transform: translateY(-4px);
    border-color: var(--mint);
}

.category-card span,
.trust-card span,
.color-card span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius);
    color: #fff;
    background: var(--navy);
    font-weight: 900;
}

.category-card small,
.trust-card p {
    color: var(--muted);
}

.color-card span {
    border: 1px solid var(--line);
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 76, 92, 0.08);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.product-media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--soft);
}

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

.product-body {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.card-actions,
.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.product-body h3 {
    margin: 0;
    font-size: 1.05rem;
}

.product-body p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-row strong {
    color: var(--navy);
    font-size: 1.12rem;
}

.price-row span {
    color: var(--muted);
    text-decoration: line-through;
}

.order-section {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 34px;
    align-items: start;
    border-top: 1px solid var(--line);
}

.product-detail,
.checkout-layout,
.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 28px;
    align-items: start;
    padding-top: 130px;
}

.product-detail {
    grid-template-columns: 0.95fr 1fr;
}

.product-detail-media {
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--soft);
    box-shadow: var(--shadow);
}

.product-detail-media img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-detail-copy {
    display: grid;
    gap: 16px;
}

.product-detail-copy h1,
.cart-page h1,
.checkout-page h1 {
    margin: 0;
    font-size: 3rem;
    line-height: 1;
}

.detail-price strong {
    font-size: 1.8rem;
}

.stock-line {
    color: var(--muted);
    font-weight: 800;
}

.product-variants {
    display: grid;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 76, 92, 0.08);
}

.product-variants h3 {
    margin: 0;
    font-size: 1rem;
}

.variant-chip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.variant-chip {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 3px 10px;
    align-items: center;
    min-height: 58px;
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.variant-chip i {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.variant-chip b {
    min-width: 0;
    overflow-wrap: anywhere;
}

.variant-chip em {
    min-width: 0;
    color: var(--muted);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 750;
    overflow-wrap: anywhere;
}

.compact-stock,
.review-line {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.review-line {
    color: var(--coral);
}

.review-quote {
    margin: 0;
    padding: 16px;
    border-left: 4px solid var(--coral);
    border-radius: var(--radius);
    background: var(--soft);
}

.review-quote p {
    margin: 8px 0 0;
    color: var(--muted);
}

.review-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
}

.review-list {
    display: grid;
    gap: 12px;
}

.rich-product-content {
    padding-top: 16px;
    border-top: 1px solid var(--line);
    line-height: 1.75;
}

.cart-layout,
.checkout-layout {
    padding-top: 0;
}

.cart-items {
    display: grid;
    gap: 12px;
}

.cart-row,
.checkout-item,
.summary-row {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) 82px 110px 36px;
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.cart-row img {
    width: 82px;
    height: 82px;
    border-radius: var(--radius);
    object-fit: cover;
}

.cart-row a {
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 800;
}

.icon-remove {
    width: 34px;
    height: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: #fff;
    background: #c73d3d;
    cursor: pointer;
    font-size: 1.2rem;
}

.cart-summary {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.cart-summary h2 {
    margin: 0;
}

.summary-row,
.checkout-item {
    grid-template-columns: 1fr auto;
    border: 0;
    padding: 8px 0;
    background: transparent;
}

.summary-row.total {
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 1.15rem;
}

.empty-cart,
.success-panel {
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--muted);
    box-shadow: 0 12px 30px rgba(15, 76, 92, 0.08);
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 76, 92, 0.08);
}

.faq-list summary {
    cursor: pointer;
    padding: 16px;
    font-weight: 850;
}

.faq-list p {
    margin: 0;
    padding: 0 16px 16px;
    color: var(--muted);
}

.store-footer {
    padding: 54px 6vw 20px;
    color: #dceced;
    background: #10272e;
}

/* Footer brand/contact - managed in new footer section below */
.footer-brand {
    color: #fff;
}

.store-footer p,
.footer-contact,
.store-footer li {
    color: #b8cccf;
    line-height: 1.65;
}

.store-footer h3 {
    margin: 0 0 12px;
    color: #fff;
}

.store-footer ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.store-footer a:hover {
    color: #fff;
}



.reveal-on-scroll {
    opacity: 1;
    transform: none;
}

.reveal-on-scroll.reveal-ready {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-on-scroll.reveal-ready.revealed {
    opacity: 1;
    transform: translateY(0);
}

.cart-page.reveal-on-scroll,
.checkout-page.reveal-on-scroll,
.product-detail.reveal-on-scroll {
    opacity: 1;
    transform: none;
}

.order-copy p {
    color: var(--muted);
    line-height: 1.7;
}

.order-form,
.auth-panel,
.install-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

.order-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 22px;
}

.checkout-form {
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout-form-section {
    padding: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.checkout-section-title {
    margin: 0 0 18px 0;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid var(--soft);
    padding-bottom: 10px;
}

.checkout-section-title svg {
    width: 20px;
    height: 20px;
    color: var(--coral);
}

.checkout-fields-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.required-star {
    color: var(--coral);
    font-weight: bold;
}

.checkout-submit-btn {
    min-height: 52px;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: var(--radius);
    background: var(--coral);
    box-shadow: 0 12px 26px rgba(242, 95, 92, 0.26);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-submit-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 640px) {
    .checkout-fields-grid {
        grid-template-columns: 1fr;
    }
}


label {
    display: grid;
    gap: 7px;
    color: var(--ink);
    font-weight: 700;
}

label span {
    font-size: 0.9rem;
}

input,
select,
textarea {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px 12px;
    color: var(--ink);
    background: #fff;
    outline: none;
    transition: border 0.18s ease, box-shadow 0.18s ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--mint);
    box-shadow: 0 0 0 4px rgba(118, 183, 160, 0.18);
}

small[data-error-for] {
    min-height: 16px;
    color: #c73d3d;
    font-size: 0.78rem;
    font-weight: 650;
}

.span-2 {
    grid-column: span 2;
}

.toast-root {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1000;
    display: grid;
    gap: 10px;
    width: min(360px, calc(100vw - 36px));
}

.toast {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    padding: 13px 14px;
    color: #fff;
    background: var(--navy);
    box-shadow: 0 20px 44px rgba(15, 76, 92, 0.22);
    animation: toastIn 0.22s ease both;
}

.toast.success {
    background: #1f8a67;
}

.toast.error {
    background: #bd3d3d;
}

.toast.warning {
    background: #b66a11;
}

.toast.info {
    background: var(--navy);
}

.toast strong {
    display: block;
    margin-bottom: 2px;
}

.toast-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    transform-origin: left;
    animation: toastProgress 1s linear both;
}

.error-page {
    min-height: 100vh;
    display: grid;
    place-content: center;
    justify-items: start;
    gap: 10px;
    padding: 40px 6vw;
}

.error-page h1 {
    margin: 0;
    font-size: 3rem;
}

code {
    padding: 2px 6px;
    border-radius: 6px;
    background: var(--soft);
}

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

@keyframes toastIn {
    from { opacity: 0; transform: translateX(16px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
    to { opacity: 0; transform: translateX(16px); }
}

@keyframes toastProgress {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}

@keyframes textColorShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

@keyframes softPulse {
    0%, 100% { opacity: 0.86; }
    50% { opacity: 1; }
}

.menu-toggle {
    display: none;
}
.lang-switcher .lang-btn {
    color: var(--muted);
    font-weight: 700;
    transition: color 0.2s;
}
.lang-switcher .lang-btn.active {
    color: var(--navy);
    border-bottom: 2px solid var(--navy);
}

@media (max-width: 860px) {
    .site-header {
        padding: 12px 4vw;
    }

    .announcement-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .announcement-bar + .site-header {
        top: 78px;
    }

    body.top-strip-hidden .site-header {
        top: 0;
    }

    .menu-toggle {
        display: block !important;
    }

    .site-nav {
        display: none !important;
    }

    .site-nav.mobile-active {
        display: flex !important;
        flex-direction: column !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: #fff !important;
        border-bottom: 1px solid var(--line) !important;
        padding: 15px 6vw !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05) !important;
        max-width: 100% !important;
        z-index: 19 !important;
        gap: 15px !important;
        overflow-x: visible !important;
    }

    .cart-text {
        display: none !important;
    }

    .hero {
        min-height: 76vh;
        padding: 100px 5vw 56px;
        background-position: 58% center;
    }

    .hero-slide {
        padding: 118px 5vw 72px;
    }

    .hero h1,
    .hero-slider h1 {
        font-size: 3rem;
    }

    .intro-band,
    .order-section {
        grid-template-columns: 1fr;
        display: grid;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .category-grid,
    .trust-grid,
    .color-grid,
    .product-detail,
    .cart-layout,
    .checkout-layout,
    .review-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-detail {
        padding-top: 118px;
    }

    .cart-summary {
        position: static;
    }

    .variant-chip-grid {
        grid-template-columns: 1fr;
    }

    .cart-row {
        grid-template-columns: 70px 1fr;
    }

    .cart-row input,
    .cart-row > strong,
    .cart-row .icon-remove {
        grid-column: 2;
    }

    .order-form {
        grid-template-columns: 1fr;
    }

    .span-2 {
        grid-column: span 1;
    }

    .footer-bottom {
        align-items: start;
        flex-direction: column;
    }
}

/* Screenshot-matched storefront sections */
.centered-heading {
    justify-content: center;
    text-align: center;
}

.screenshot-products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.shop-card {
    border-radius: 0;
    border-color: #e5e5e5;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.16);
}

.shop-media {
    display: block;
    aspect-ratio: 1 / 1.08;
    background: #fff;
}

.shop-media img {
    object-fit: contain;
    padding: 8px;
}

.shop-body {
    gap: 9px;
    text-align: center;
    padding: 15px 18px 18px;
}

.shop-body h3 {
    font-size: 1.02rem;
    font-weight: 900;
    color: #333844;
}

.shop-divider {
    height: 1px;
    background: #e5e5e5;
}

.product-price-line {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 9px;
}

.product-price-line strong {
    color: #666;
    font-size: 1.55rem;
    font-weight: 500;
}

.product-price-line em {
    color: #555;
    font-size: 0.88rem;
    font-style: normal;
}

.product-price-line del {
    color: #777;
    font-size: 0.96rem;
}

.shop-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    color: #666;
    font-size: 0.83rem;
    font-weight: 800;
}

.star-row {
    color: #5f646a;
    letter-spacing: 0;
}

.star-row i {
    color: #c7c7c7;
    font-style: normal;
}

.shop-review {
    min-height: 38px;
    margin: 0;
    color: #666;
    font-size: 0.88rem;
}

.shop-card .card-actions {
    justify-content: center;
}

.inline-color-grid {
    margin-top: 28px;
}

.color-strip-card {
    min-height: 230px;
    padding: 0;
    overflow: hidden;
    border-radius: 0;
}

.color-strip-card span {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: 0;
}

.color-strip-card strong {
    display: grid;
    place-items: center;
    min-height: 34px;
    color: #111;
    background: #d8d8d8;
}

.trusted-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 76, 92, 0.08);
}

.trusted-intro p {
    max-width: 780px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.store-footer {
    position: relative;
    padding: 0;
    color: #fff;
    background: #07543f;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1.05fr 0.95fr 1.42fr;
    gap: 38px;
    width: min(1480px, 100%);
    margin: 0 auto;
    padding: 58px 3.8vw 64px;
}

.footer-link-column h3,
.footer-contact-row strong {
    display: block;
    margin: 0 0 22px;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.1;
    font-weight: 900;
    text-transform: none;
}

.footer-link-column h3::after {
    content: "";
    display: block;
    width: 56px;
    height: 4px;
    margin-top: 17px;
    background: rgba(255, 255, 255, 0.78);
}

.footer-link-column ul {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-link-column a,
.footer-contact-row p,
.footer-social-line a {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-contact-column {
    display: grid;
    gap: 26px;
}

.footer-contact-row {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 14px;
    align-items: start;
}

.footer-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #fff;
    font-size: 1.35rem;
}

.footer-contact-row p {
    margin: 0;
}

.footer-contact-row strong {
    margin-bottom: 8px;
    letter-spacing: 0;
}

.footer-social-line {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    font-size: 1.28rem;
    font-weight: 900;
}

.footer-social-line a {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    font-size: 0.9rem;
    font-weight: 900;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 28px 3.8vw;
    border: 0;
    color: #fff;
    background: #000;
}

.payment-box {
    display: grid;
    gap: 10px;
    justify-items: start;
}

.payment-box strong {
    font-size: 1.2rem;
}

.payment-box div {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.payment-box span {
    display: inline-grid;
    place-items: center;
    min-width: 38px;
    height: 24px;
    padding: 0 6px;
    color: #111;
    background: #fff;
    border-radius: 2px;
    font-size: 0.68rem;
    font-weight: 900;
}

.back-top {
    position: absolute;
    right: 25px;
    bottom: 49px;
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    background: #4c535c;
    font-size: 1.4rem;
    font-weight: 900;
}

@media (max-width: 1180px) {
    .screenshot-products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .footer-contact-column {
        grid-column: span 2;
    }
}

@media (max-width: 760px) {
    .screenshot-products {
        grid-template-columns: 1fr;
    }

    .trusted-intro,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr;
        padding: 42px 6vw 48px;
    }

    .footer-contact-column {
        grid-column: span 1;
    }

    .footer-contact-row {
        grid-template-columns: 48px 1fr;
    }

    .footer-icon {
        width: 48px;
        height: 48px;
    }

    .back-top {
        right: 16px;
        bottom: 22px;
    }
}

@media (max-width: 860px) {
    #menu-toggle-btn {
        display: block;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        border-top: 1px solid var(--line);
        z-index: 99;
    }

    .site-nav.mobile-active {
        display: flex;
    }

    .site-nav a {
        padding: 12px 6vw;
        border-bottom: 1px solid rgba(223, 230, 232, 0.5);
        display: block;
        font-weight: 600;
        color: var(--ink);
    }

    .site-nav a:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .cart-pill .cart-text {
        display: none;
    }
}

/* Golden star rating styling */
.star-row {
    color: #f5b041 !important; /* Premium golden stars */
    letter-spacing: 2px;
}
.star-row i {
    color: #dfe6e8 !important; /* Soft grey empty stars */
    font-style: normal;
}

/* Header actions layout */
.header-desktop-actions {
    display: flex !important;
    align-items: center;
    gap: 12px;
}
.header-mobile-actions {
    display: none;
}

@media (max-width: 860px) {
    .header-desktop-actions {
        display: none !important;
    }
    .header-mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--line);
    }
    .header-mobile-actions .cart-pill {
        align-self: flex-start;
        font-size: 1.35rem;
        padding: 0;
        background: transparent;
        color: var(--navy);
    }
    .lang-mobile-switcher {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 700;
        color: var(--navy);
        font-size: 0.95rem;
    }
    .lang-mobile-switcher .lang-buttons {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .lang-mobile-switcher .lang-btn {
        color: var(--muted);
        text-decoration: none;
        padding: 2px 6px;
        border-radius: var(--radius);
        transition: background-color 0.18s, color 0.18s;
    }
    .lang-mobile-switcher .lang-btn.active {
        color: var(--navy);
        background-color: var(--soft);
        border: 1px solid var(--line);
    }
    .lang-mobile-switcher .divider {
        color: var(--line);
    }
}

/* Final storefront polish */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.site-header,
.header-right-actions,
.brand {
    min-width: 0;
}

.brand {
    flex: 1 1 auto;
}

.header-right-actions {
    flex: 0 0 auto;
}

.brand span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card[data-product-card] {
    cursor: pointer;
}

.product-description-panel {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 76, 92, 0.08);
}

.cart-select-all {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    margin-bottom: 12px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 76, 92, 0.06);
}

.cart-select-all input,
.cart-check input {
    width: 18px;
    min-height: 18px;
    accent-color: var(--coral);
}

.cart-check {
    display: grid;
    place-items: center;
}

.cart-row {
    grid-template-columns: 28px 82px minmax(0, 1fr) 82px 110px 36px;
}

.cart-row.muted {
    opacity: 0.62;
}

.cart-row > div {
    min-width: 0;
}

.cart-row strong,
.cart-row a {
    overflow-wrap: anywhere;
}

.checkout-form {
    align-content: start;
}

.checkout-selection-note {
    color: var(--muted);
    font-weight: 700;
}

.checkout-featured-item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0 16px;
    border-bottom: 1px solid var(--line);
}

.checkout-featured-item img {
    width: 74px;
    height: 74px;
    border-radius: var(--radius);
    object-fit: cover;
    background: var(--soft);
}

.checkout-featured-item div {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.checkout-featured-item small,
.checkout-featured-item span {
    color: var(--muted);
    font-weight: 700;
}

.checkout-featured-item strong {
    overflow-wrap: anywhere;
}

.cart-drawer-shell {
    position: fixed;
    inset: 0;
    z-index: 1000;
    pointer-events: none;
}

.cart-drawer-shell.active {
    pointer-events: auto;
}

.cart-drawer-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(15, 20, 24, 0.42);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cart-drawer-shell.active .cart-drawer-backdrop {
    opacity: 1;
}

.cart-drawer {
    position: absolute;
    top: 0;
    right: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    width: min(420px, 92vw);
    height: 100%;
    background: #fff;
    box-shadow: -18px 0 42px rgba(15, 20, 24, 0.18);
    transform: translateX(100%);
    transition: transform 0.24s ease;
}

.cart-drawer-shell.active .cart-drawer {
    transform: translateX(0);
}

.cart-drawer header,
.cart-drawer footer {
    padding: 18px;
    border-bottom: 1px solid var(--line);
}

.cart-drawer footer {
    display: grid;
    gap: 10px;
    border-top: 1px solid var(--line);
    border-bottom: 0;
}

.cart-drawer header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cart-drawer header h2 {
    margin: 0;
    font-size: 1.35rem;
}

.cart-drawer header small {
    color: var(--muted);
    font-weight: 800;
}

.cart-drawer-close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.cart-drawer-items {
    display: grid;
    align-content: start;
    gap: 14px;
    overflow: auto;
    padding: 18px;
}

.cart-drawer-row {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.cart-drawer-row img {
    width: 74px;
    height: 74px;
    border-radius: var(--radius);
    object-fit: cover;
    background: var(--soft);
}

.cart-drawer-row div {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.cart-drawer-row strong {
    overflow-wrap: anywhere;
}

.cart-drawer-row span {
    color: var(--muted);
    font-weight: 800;
}

.cart-drawer-qty {
    display: flex !important;
    align-items: center;
    gap: 8px;
}

.cart-drawer-qty input {
    width: 68px;
    min-height: 34px;
    padding: 6px 8px;
}

.cart-drawer-qty button {
    border: 0;
    background: transparent;
    color: var(--coral);
    font-weight: 800;
    cursor: pointer;
}

.cart-drawer-open {
    overflow: hidden;
}

.delivery-area-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.delivery-area-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    cursor: pointer;
}

.delivery-area-options input {
    width: auto;
}

.delivery-area-options span {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    font-weight: 800;
}

.delivery-area-options strong {
    color: var(--coral);
}

.product-review-layout {
    grid-template-columns: minmax(0, 1fr);
}

.review-list {
    display: grid;
    gap: 14px;
}

.review-card {
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 76, 92, 0.08);
}

.review-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.review-card h3,
.review-card p {
    margin: 0;
}

.review-card p {
    color: var(--muted);
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.review-card small {
    color: var(--muted);
    font-weight: 700;
}

.review-title {
    color: var(--navy);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-weight: 900;
    white-space: nowrap;
}

.review-rating span {
    letter-spacing: 0;
}

.review-rating i {
    color: #cfd8db;
    font-style: normal;
}

.review-rating b {
    color: var(--ink);
    font-size: 0.92rem;
}

.review-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 260px));
    gap: 12px;
    align-items: start;
}

.review-media-grid img,
.review-media-grid video {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    object-fit: cover;
}

.review-form-panel {
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.review-form {
    max-width: 720px;
}

.footer-brand-logo {
    width: auto;
    max-width: 160px;
    max-height: 54px;
    object-fit: contain;
}

.trusted-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: 22px;
    align-items: stretch;
    margin-bottom: 20px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 249, 0.92)),
        url("../img/hero-baby-products.png") center / cover;
    box-shadow: var(--shadow);
}

.trusted-copy {
    display: grid;
    gap: 14px;
    align-content: center;
}

.trusted-copy h2 {
    max-width: 720px;
    margin: 0;
    color: var(--navy);
    font-size: 2.2rem;
    line-height: 1.08;
}

.trusted-copy p {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.trusted-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trusted-stats {
    display: grid;
    gap: 12px;
}

.trusted-stats span {
    display: grid;
    gap: 4px;
    padding: 18px;
    border: 1px solid rgba(223, 230, 232, 0.85);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.82);
}

.trusted-stats strong {
    color: var(--coral);
    font-size: 1.55rem;
}

.trusted-stats small {
    color: var(--navy);
    font-weight: 850;
}

#trusted .trust-card {
    min-height: 170px;
}

#trusted .trust-card span {
    background: var(--coral);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 190px;
    gap: 14px;
}

.gallery-tile {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--soft);
    box-shadow: 0 12px 30px rgba(15, 76, 92, 0.09);
}

.gallery-tile.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.24s ease;
}

.gallery-tile:hover img {
    transform: scale(1.04);
}

.gallery-tile span {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    border-radius: var(--radius);
    color: #fff;
    background: rgba(16, 39, 46, 0.76);
    font-weight: 850;
    overflow-wrap: anywhere;
}

.gallery-caption {
    display: block;
    font-size: 0.74rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
    font-style: normal;
}


.footer-contact-column {
    align-content: start;
}

.footer-brand-name {
    margin: 0;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
}

.footer-copyright {
    max-width: 720px;
    color: #fff;
    line-height: 1.6;
}

.footer-copyright p {
    margin: 0;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.payment-card {
    position: relative;
    min-width: 54px;
    height: 30px;
    padding: 0 8px 0 22px;
    overflow: hidden;
    border-radius: 5px;
    color: #111;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.16);
    font-size: 0.7rem;
    font-weight: 950;
}

.payment-card::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--coral);
    transform: translateY(-50%);
    box-shadow: 6px 0 0 rgba(15, 76, 92, 0.9);
}

.payment-card.visa {
    color: #113d91;
}

.payment-card.paypal {
    color: #003087;
}

.payment-card.amex {
    color: #016fd0;
}

@media (max-width: 980px) {
    .screenshot-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail,
    .checkout-layout,
    .cart-layout,
    .trusted-showcase {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 860px) {
    .site-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 10px;
    }

    .announcement-bar {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .site-nav {
        grid-column: 1 / -1;
    }

    .header-right-actions {
        display: flex !important;
        grid-column: 3;
        justify-self: end;
        min-width: 44px;
    }

    .mobile-header-cart {
        display: inline-flex;
        align-self: center;
    }

    #menu-toggle-btn {
        display: inline-grid !important;
        place-items: center;
        position: relative;
        z-index: 60;
        width: 40px;
        min-width: 40px;
        height: 40px;
        color: transparent !important;
        font-size: 0 !important;
        transform: none;
    }

    #menu-toggle-btn::before {
        content: "\2630";
        color: var(--navy);
        font-size: 1.35rem;
        line-height: 1;
    }

    .announcement-inner > span {
        display: block;
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .brand {
        grid-column: 1;
        max-width: calc(100% - 54px);
        gap: 8px;
    }

    .brand-logo {
        max-width: 86px;
    }

    .hero-slider {
        min-height: 88vh;
    }

    .hero-copy {
        width: 82vw;
        max-width: 320px;
    }

    .hero h1,
    .hero-slider h1,
    .hero-copy .eyebrow,
    .hero p,
    .hero-slider p {
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .cart-row {
        grid-template-columns: 28px 70px minmax(0, 1fr);
    }

    .cart-row input[data-cart-qty],
    .cart-row > strong,
    .cart-row .icon-remove {
        grid-column: 3;
    }

    .checkout-featured-item {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .checkout-featured-item b {
        grid-column: 2;
    }

    .cart-drawer-row {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .cart-drawer-row b {
        grid-column: 2;
    }

    .delivery-area-options {
        grid-template-columns: 1fr;
    }

    .review-card-head {
        flex-direction: column;
    }

    .review-media-grid {
        grid-template-columns: 1fr;
    }

    .trusted-copy h2 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-auto-rows: 160px;
    }
}

@media (max-width: 520px) {
    .screenshot-products {
        grid-template-columns: 1fr;
    }

    .hero h1,
    .hero-slider h1,
    .product-detail-copy h1,
    .cart-page h1,
    .checkout-page h1 {
        font-size: 1.55rem;
        line-height: 1.05;
    }

    .button {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .product-actions,
    .card-actions,
    .hero-actions {
        width: 100%;
    }

    .trusted-showcase {
        padding: 18px;
    }

    .trusted-stats {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 210px;
    }

    .gallery-tile.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ==============================
   SHOP PRODUCT CARDS
================================= */
.shop-card {
    display: flex;
    flex-direction: column;
}

.shop-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--soft);
}

.shop-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.shop-card:hover .shop-media img {
    transform: scale(1.05);
}

.shop-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
    flex: 1;
}

.shop-body h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 750;
    line-height: 1.4;
}

.shop-body h3 a {
    color: var(--ink);
    text-decoration: none;
    transition: color 0.18s;
}

.shop-body h3 a:hover {
    color: var(--navy);
}

.shop-divider {
    height: 1px;
    background: var(--line);
    margin: 4px 0;
}

.product-price-line {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.product-price-line strong {
    color: var(--coral);
    font-size: 1.15rem;
    font-weight: 900;
}

.product-price-line em {
    color: var(--muted);
    font-style: normal;
    font-size: 0.82rem;
}

.product-price-line del {
    color: var(--muted);
    font-size: 0.88rem;
    text-decoration: line-through;
}

.shop-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 700;
}

.shop-review {
    margin: 0;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.5;
    font-style: italic;
    border-left: 3px solid var(--mint);
    padding-left: 8px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.sale-badge {
    background: var(--coral);
    color: #fff;
}

.new-badge {
    background: var(--mint-dark);
    color: #fff;
}

/* ==============================
   SECTION HEADING VARIANTS
================================= */
.centered-heading {
    justify-content: center;
    text-align: center;
    margin-bottom: 32px;
}

.section-title-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--coral), var(--mint));
}

/* ==============================
   CONTACT SECTION
================================= */
.contact-section-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
    padding: 48px;
    background: linear-gradient(135deg, var(--navy) 0%, #1a5f72 100%);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.contact-left {
    display: grid;
    gap: 20px;
}

.contact-left h2 {
    margin: 0;
    color: #fff;
    font-size: 2.2rem;
    line-height: 1.15;
}

.contact-desc {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    font-size: 1rem;
}

.contact-info-list {
    display: grid;
    gap: 16px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-icon {
    display: grid;
    place-items: center;
    min-width: 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-info-item div {
    display: grid;
    gap: 2px;
}

.contact-info-item strong {
    color: #fff;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.contact-info-item p {
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.contact-info-item p a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.18s;
}

.contact-info-item p a:hover {
    color: var(--gold);
}

.contact-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-social strong {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.contact-social a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 900;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.contact-social a:hover {
    background: var(--coral);
    transform: translateY(-2px);
}

.contact-right {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.contact-form h3 {
    margin: 0 0 20px;
    color: var(--navy);
    font-size: 1.3rem;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.contact-form-grid .span-2 {
    grid-column: span 2;
}

.contact-form label span {
    font-size: 0.85rem;
    font-weight: 750;
    color: var(--muted);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px 12px;
    color: var(--ink);
    background: var(--soft);
    transition: border-color 0.18s, box-shadow 0.18s;
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(15, 76, 92, 0.1);
    background: #fff;
}

/* ==============================
   FOOTER - COMPLETE REWRITE
================================= */
.store-footer {
    color: #dceced;
    background: #10272e;
    padding: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) 1.4fr;
    gap: 0;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 54px 5vw 40px;
    column-gap: 36px;
}

.footer-link-column {
    display: grid;
    align-content: start;
    gap: 6px;
}

.footer-link-column h3 {
    margin: 0 0 14px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--coral);
}

.footer-link-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.footer-link-column ul li a {
    color: #b8cccf;
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.18s, padding-left 0.18s;
    display: inline-block;
}

.footer-link-column ul li a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-contact-column {
    display: grid;
    align-content: start;
    gap: 16px;
}

.footer-brand-logo {
    width: auto;
    max-width: 140px;
    max-height: 50px;
    object-fit: contain;
}

.footer-brand-name {
    margin: 0;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-icon {
    min-width: 28px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-row p {
    margin: 0;
    color: #b8cccf;
    font-size: 0.88rem;
    line-height: 1.55;
}

.footer-contact-row p strong {
    display: block;
    color: rgba(255,255,255,0.65);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 2px;
}

.footer-social-line {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.footer-social-line strong {
    color: rgba(255,255,255,0.6);
    font-size: 0.82rem;
    width: 100%;
}

.footer-social-line a {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-size: 0.88rem;
    font-weight: 900;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.footer-social-line a:hover {
    background: var(--coral);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 5vw;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b8cccf;
    font-size: 0.85rem;
}

.footer-copyright {
    color: #b8cccf;
    line-height: 1.6;
}

.footer-copyright p {
    margin: 0;
}

.payment-box {
    display: grid;
    gap: 8px;
    text-align: right;
}

.payment-box strong {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-end;
}

.back-top {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    font-size: 1.2rem;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(15, 76, 92, 0.3);
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.back-top:hover {
    background: var(--coral);
    transform: translateY(-3px);
}

/* Footer responsive */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: repeat(2, 1fr) 1.3fr;
        row-gap: 32px;
    }
    .footer-contact-column {
        grid-column: 1 / -1;
    }
}

@media (max-width: 640px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        padding: 40px 5vw 30px;
        column-gap: 20px;
        row-gap: 28px;
    }
    .footer-contact-column {
        grid-column: 1 / -1;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .payment-box {
        text-align: center;
    }
    .payment-methods {
        justify-content: center;
    }
    .contact-section-inner {
        grid-template-columns: 1fr;
        padding: 28px 20px;
        gap: 28px;
    }
    .contact-form-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-grid .span-2 {
        grid-column: span 1;
    }
}

/* ==============================
   RICH PAGE / DYNAMIC PAGE
================================= */
.dynamic-page-wrap {
    padding-top: 130px !important;
    min-height: 60vh;
}

.rich-page-content h1,
.rich-page-content h2,
.rich-page-content h3 {
    color: var(--navy);
}

.rich-page-content a {
    color: var(--coral);
    text-decoration: underline;
}

.rich-page-content ul,
.rich-page-content ol {
    padding-left: 1.4em;
    line-height: 1.9;
}
