:root {
    --bg: #fff9f9;
    --surface: #ffffff;
    --surface-soft: #fff2f3;
    --surface-strong: #f8e7ea;
    --text: #2f2430;
    --muted: #6f6571;
    --border: #ead9de;
    --rose: #e9b8c1;
    --rose-deep: #d78395;
    --gold: #c89f32;
    --gold-soft: #efd68d;
    --success: #2d8a54;
    --danger: #b55665;
    --shadow: 0 18px 45px rgba(82, 48, 68, 0.10);
    --radius: 20px;
    --radius-sm: 12px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(180deg, #fffdfd 0%, var(--bg) 100%);
    color: var(--text);
    line-height: 1.6;
}

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

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

p {
    margin: 0 0 1rem;
}

h1,
h2,
h3,
h4 {
    margin: 0 0 0.75rem;
    line-height: 1.15;
    font-family: Georgia, "Times New Roman", serif;
}

h1 {
    font-size: clamp(2.2rem, 4vw, 4rem);
}

h2 {
    font-size: clamp(1.6rem, 3vw, 2.6rem);
}

h3 {
    font-size: 1.25rem;
}

ul {
    padding-left: 1.2rem;
}

.container {
    width: min(var(--container), calc(100% - 2rem));
    margin: 0 auto;
}

.narrow {
    width: min(760px, 100%);
}

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

.lead-text {
    font-size: 1.1rem;
    color: var(--muted);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.announcement-bar {
    background: linear-gradient(90deg, #f7e4e7 0%, #fff5ea 100%);
    color: #6b5761;
    font-size: 0.9rem;
    border-bottom: 1px solid #f0dde2;
}

.announcement-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 0.6rem 0;
}

.announcement-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(234, 217, 222, 0.9);
    line-height: 1.25;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 250, 250, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(227, 205, 212, 0.85);
    box-shadow: 0 10px 30px rgba(82, 48, 68, 0.06);
}

.header-inner {
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) minmax(290px, 360px);
    gap: 1.25rem;
    align-items: center;
    padding: 1rem 0;
}

.logo-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
}

.logo-mark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    box-shadow: var(--shadow);
    flex-shrink: 0;
    object-fit: cover;
}

.logo-mark--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff4f6 0%, #fff7ed 100%);
    font-weight: 800;
    color: var(--text);
}

.logo-text {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.05;
}

.logo-tagline {
    font-size: 0.83rem;
    color: var(--muted);
    margin-top: 0.15rem;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 0;
}

.site-nav > a,
.nav-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 700;
    font-size: 0.96rem;
    line-height: 1;
    box-shadow: 0 6px 18px rgba(82, 48, 68, 0.06);
    position: relative;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.2s ease;
    cursor: pointer;
}

.site-nav > a:hover,
.nav-dropdown__toggle:hover {
    background: linear-gradient(135deg, #fff4f6 0%, #fff8ef 100%);
    border-color: var(--rose-deep);
    color: var(--rose-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(215, 131, 149, 0.18);
}

.site-nav > a:active,
.nav-dropdown__toggle:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(215, 131, 149, 0.14);
}

.site-nav > a:focus-visible,
.nav-dropdown__toggle:focus-visible {
    outline: 3px solid rgba(215, 131, 149, 0.22);
    outline-offset: 3px;
}

.site-nav > a::after,
.nav-dropdown__toggle::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 10px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--rose-deep) 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after,
.nav-dropdown__toggle:hover::after,
.nav-dropdown__toggle:focus-visible::after {
    transform: scaleX(1);
}

.site-nav > a.active {
    background: linear-gradient(135deg, var(--gold) 0%, #e7c97d 100%);
    color: #3b2433;
    border-color: #ddb85b;
    box-shadow: 0 12px 26px rgba(200, 159, 50, 0.22);
}

.site-nav > a.active::after {
    transform: scaleX(1);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    width: min(880px, 92vw);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 22px 50px rgba(82, 48, 68, 0.16);
    padding: 1rem;
    display: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
    display: grid;
}

.nav-dropdown__item {
    border: 1px solid #f1e2e7;
    border-radius: 18px;
    padding: 0.9rem;
    background: linear-gradient(180deg, #fffdfd 0%, #fff8f9 100%);
}

.nav-dropdown__parent {
    display: block;
    font-weight: 800;
    margin-bottom: 0.55rem;
    color: var(--text);
}

.nav-dropdown__children {
    display: grid;
    gap: 0.4rem;
}

.nav-dropdown__children a {
    color: var(--muted);
    font-size: 0.95rem;
    padding: 0.2rem 0;
}

.nav-dropdown__children a:hover {
    color: var(--rose-deep);
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.8rem;
    min-width: 0;
}

.header-search {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(82, 48, 68, 0.06);
    min-width: 0;
    flex: 1 1 auto;
    max-width: 100%;
}

.header-search input {
    border: 0;
    outline: none;
    padding: 0.85rem 1rem;
    min-width: 0;
    width: 100%;
    background: transparent;
    color: var(--text);
}

.header-search button {
    border: 0;
    background: linear-gradient(135deg, var(--rose) 0%, #f0d6a2 100%);
    color: #41263a;
    padding: 0.85rem 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.25s ease;
    white-space: nowrap;
    flex: 0 0 auto;
}

.header-search button:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-weight: 700;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    min-height: 44px;
    box-shadow: 0 8px 22px rgba(82, 48, 68, 0.06);
    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.25s ease;
    flex: 0 0 auto;
}

.cart-link:hover {
    border-color: var(--rose-deep);
    color: var(--rose-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(215, 131, 149, 0.15);
}

.cart-badge {
    display: inline-flex;
    min-width: 1.5rem;
    justify-content: center;
    padding: 0.1rem 0.45rem;
    border-radius: 999px;
    background: var(--text);
    color: #fff;
    font-size: 0.75rem;
    margin-left: 0.35rem;
}

.mobile-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    background: #fff;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(82, 48, 68, 0.08);
    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease,
        box-shadow 0.25s ease;
}

.mobile-nav-toggle:hover {
    border-color: var(--rose-deep);
    color: var(--rose-deep);
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(215, 131, 149, 0.14);
}

.mobile-nav-panel {
    display: none;
    width: 100%;
}

.mobile-nav-panel.is-open {
    display: block;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.section {
    padding: 4rem 0;
}

.section-soft {
    background: linear-gradient(180deg, rgba(249, 235, 238, 0.55) 0%, rgba(255, 248, 241, 0.65) 100%);
}

.hero-section {
    padding: 4rem 0 2rem;
}

.hero-grid,
.two-col-layout,
.product-detail-grid,
.cart-layout,
.checkout-layout,
.shop-layout,
.footer-grid {
    display: grid;
    gap: 2rem;
}

.hero-grid {
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
}

.hero-copy p {
    max-width: 62ch;
}

.hero-actions,
.cta-actions,
.product-actions-inline,
.stack-actions,
.hero-actions--center {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.hero-actions {
    margin: 1.5rem 0 2rem;
}

.hero-actions--center {
    justify-content: center;
}

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

.stat-card,
.card-panel,
.card-surface,
.category-card,
.trust-card,
.table-card,
.success-card,
.product-detail-card {
    background: var(--surface);
    border: 1px solid rgba(226, 211, 218, 0.95);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stat-card {
    padding: 1rem;
}

.stat-card strong {
    display: block;
    font-size: 1.3rem;
    color: var(--gold);
    font-family: Georgia, "Times New Roman", serif;
}

.hero-media img,
.card-surface img,
.product-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.card-surface {
    overflow: hidden;
}

.card-surface--compact {
    padding: 1rem 1.1rem;
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
    margin-bottom: 1.8rem;
}

.section-head--compact {
    margin-bottom: 1.25rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.category-card {
    padding: 1.4rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.product-card:hover {
    transform: translateY(-4px);
}

.category-icon {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--surface-soft) 0%, #fff8ed 100%);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.product-grid--compact .product-card__media img {
    aspect-ratio: 1 / 1;
}

.product-card {
    background: var(--surface);
    border: 1px solid rgba(226, 211, 218, 0.95);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-card__media {
    position: relative;
    display: block;
}

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

.product-card__placeholder,
.cart-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, #fcebed 0%, #fff6e9 100%);
    font-size: 3rem;
}

.product-card__placeholder--large {
    font-size: 5rem;
    border-radius: inherit;
}

.product-badge {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    background: var(--text);
    color: #fff;
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-card__body {
    padding: 1rem 1rem 1.25rem;
}

.product-meta {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card h3 {
    font-size: 1.25rem;
    margin: 0.35rem 0;
}

.product-card p {
    color: var(--muted);
    font-size: 0.95rem;
    min-height: 3rem;
}

.product-price-row,
.product-price-stack,
.info-row,
.summary-row,
.results-bar,
.checkout-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.product-price {
    font-size: 1.15rem;
    font-weight: 800;
}

.product-price--large {
    font-size: 2rem;
    font-family: Georgia, "Times New Roman", serif;
}

.old-price {
    color: #9a8c94;
    text-decoration: line-through;
    margin-left: 0.4rem;
}

.stock-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
}

.in-stock {
    background: rgba(45, 138, 84, 0.12);
    color: var(--success);
}

.out-stock {
    background: rgba(181, 86, 101, 0.12);
    color: var(--danger);
}

.btn,
.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.9rem 1.25rem;
    font-weight: 700;
    border: 0;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.page-link:hover,
.header-search button:hover {
    transform: translateY(-1px);
}

.btn-small {
    padding: 0.65rem 1rem;
    font-size: 0.88rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, #d8b76b 45%, var(--rose-deep) 100%);
    color: #fff;
    box-shadow: 0 14px 30px rgba(200, 159, 50, 0.25);
}

.btn-secondary {
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text);
}

.btn-ghost,
.text-button {
    background: transparent;
    color: var(--rose-deep);
    border: none;
    padding: 0;
    font-weight: 700;
}

.disabled-link {
    opacity: 0.55;
    pointer-events: none;
}

.page-hero {
    padding: 3rem 0 1rem;
}

.page-hero--small p {
    color: var(--muted);
}

.shop-layout {
    grid-template-columns: 290px 1fr;
    align-items: start;
}

.filters-panel,
.order-summary-panel,
.product-detail-card {
    padding: 1.5rem;
    position: sticky;
    top: 7rem;
}

.results-bar {
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.active-filters,
.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chip,
.chip-color {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #fff2f4 0%, #fff8ef 100%);
    border: 1px solid var(--border);
    font-size: 0.9rem;
}

.color-dot {
    width: 0.95rem;
    height: 0.95rem;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold) 0%, #d8b76b 45%, var(--rose-deep) 100%);
    color: #fff;
    font-weight: 800;
    font-size: 0.96rem;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(200, 159, 50, 0.22);
    transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.text-link:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(200, 159, 50, 0.3);
    filter: brightness(1.03);
}

.text-link:focus-visible {
    outline: 3px solid rgba(215, 131, 149, 0.22);
    outline-offset: 3px;
}

.text-link::after {
    content: "";
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.text-link:hover::after {
    transform: translateX(3px);
}

.product-detail-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
}

.product-gallery {
    min-height: 520px;
}

.option-block {
    margin: 1.2rem 0;
}

.mini-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.mini-info-card {
    background: linear-gradient(180deg, #fff8fa 0%, #fff8f1 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem;
    font-size: 0.92rem;
}

.mini-info-card strong {
    display: block;
    margin-bottom: 0.3rem;
}

.form-control,
select.form-control,
textarea.form-control,
input[type="search"],
input[type="number"],
input[type="email"],
input[type="text"],
textarea,
select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    padding: 0.85rem 1rem;
    font: inherit;
    color: inherit;
}

.form-control:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid rgba(215, 131, 149, 0.18);
    border-color: var(--rose-deep);
}

.stack-form {
    display: grid;
    gap: 1rem;
}

.stack-form--compact {
    gap: 0.85rem;
}

.form-group {
    display: grid;
    gap: 0.45rem;
}

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

.form-group--full {
    grid-column: 1 / -1;
}

.checkbox-group {
    gap: 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 600;
}

.checkbox-label input {
    width: auto;
}

.field-error {
    color: var(--danger);
    font-size: 0.9rem;
}

.two-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.card-panel {
    padding: 1.5rem;
}

.cart-layout {
    grid-template-columns: 1.5fr 0.75fr;
    align-items: start;
}

.table-card {
    overflow: hidden;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.cart-table th,
.cart-table td {
    padding: 1rem;
    border-bottom: 1px solid #f0e6e9;
    text-align: left;
    vertical-align: top;
}

.cart-product {
    display: flex;
    gap: 0.9rem;
    align-items: center;
}

.cart-product img,
.cart-thumb-placeholder {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 14px;
    flex-shrink: 0;
}

.cart-inline-form {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.quantity-input {
    width: 90px;
}

.total-row {
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 1px solid var(--border);
}

.checkout-layout {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: start;
}

.checkout-items {
    display: grid;
    gap: 1rem;
    margin-bottom: 1rem;
}

.checkout-item {
    padding: 0.85rem 0;
    border-bottom: 1px solid #f1e4e7;
}

.payment-note {
    margin: 0.5rem 0 1rem;
}

.success-card {
    text-align: center;
}

.order-items-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
    text-align: left;
}

.order-items-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid #f0e3e7;
    padding-bottom: 0.75rem;
}

.banner-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    padding: 1.75rem 2rem;
    border-radius: var(--radius);
    background: linear-gradient(120deg, #fff7f8 0%, #fff6ec 100%);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

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

.trust-card {
    padding: 1.25rem;
}

.bullet-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 1.2rem;
}

.bullet-item {
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #fff7f9 0%, #fff9f2 100%);
    border: 1px solid var(--border);
    font-weight: 600;
}

.contact-card-list {
    display: grid;
    gap: 1rem;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem 1.15rem;
    box-shadow: var(--shadow);
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
}

.prose-block p:last-child {
    margin-bottom: 0;
}

.site-footer {
    margin-top: 2rem;
    background: linear-gradient(180deg, #2f2430 0%, #3b2b3d 100%);
    color: #f9eef2;
}

.footer-grid {
    grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
    padding: 3rem 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.newsletter-form {
    display: grid;
    gap: 0.75rem;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #f3dfe8;
}

.messages-wrapper {
    padding-top: 1rem;
    display: grid;
    gap: 0.75rem;
}

.flash-message {
    padding: 1rem 1.2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow);
}

.flash-success {
    border-color: rgba(45, 138, 84, 0.25);
}

.flash-error {
    border-color: rgba(181, 86, 101, 0.25);
}

.flash-info {
    border-color: rgba(200, 159, 50, 0.25);
}

.pagination {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.page-current {
    font-weight: 700;
}

.floating-whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 20;
    background: #22c55e;
    color: #fff;
    padding: 1rem 1.2rem;
    border-radius: 999px;
    box-shadow: 0 18px 35px rgba(34, 197, 94, 0.35);
    font-weight: 700;
}

.order-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    padding: 1rem 1.6rem;
    min-height: 56px;
    border-radius: 999px;
    font-weight: 800;
    text-align: center;
    line-height: 1.1;
}

.order-btn .btn-main {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.order-btn .btn-sub {
    font-size: 0.78rem;
    opacity: 0.9;
    font-weight: 600;
}

.order-btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 18px 36px rgba(200, 159, 50, 0.3);
}

.product-actions-inline {
    align-items: stretch;
}

.order-btn {
    flex: 1.2;
}

.btn-secondary {
    flex: 1;
}

.footer-links a:hover,
.social-links a:hover {
    color: var(--rose-deep);
}

@media (max-width: 1240px) {
    .header-inner {
        grid-template-columns: minmax(200px, 240px) minmax(0, 1fr) minmax(260px, 320px);
        gap: 1rem;
    }

    .site-nav > a,
    .nav-dropdown__toggle {
        padding: 0.75rem 1rem;
        font-size: 0.92rem;
    }

    .nav-dropdown__menu {
        width: min(760px, 94vw);
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1080px) {
    .header-inner {
        grid-template-columns: 1fr auto;
        grid-template-areas:
            "logo toggle"
            "actions actions";
        gap: 1rem;
    }

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

    .mobile-nav-toggle {
        display: inline-flex;
        grid-area: toggle;
        justify-self: end;
    }

    .site-nav {
        display: none;
    }

    .header-actions {
        grid-area: actions;
        flex-wrap: wrap;
        justify-content: space-between;
    }

.mobile-nav-panel {
    display: none;
    width: 100%;
    border-top: 1px solid var(--border);
    background: #fff;
    padding: 0 0 1rem;
}

.mobile-nav-panel.is-open {
    display: block;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-nav-panel__inner {
    display: grid;
    gap: 0.8rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

    .mobile-nav-panel__inner > a,
    .mobile-nav-group summary,
    .mobile-subgroup summary,
    .mobile-subgroup__content a {
        display: block;
        width: 100%;
        padding: 0.95rem 1rem;
        border-radius: 16px;
        border: 1px solid var(--border);
        background: #fff;
        font-weight: 700;
    }

    .mobile-nav-group,
    .mobile-subgroup {
        display: grid;
        gap: 0.6rem;
    }

    .mobile-nav-group summary,
    .mobile-subgroup summary {
        cursor: pointer;
        list-style: none;
    }

    .mobile-nav-group summary::-webkit-details-marker,
    .mobile-subgroup summary::-webkit-details-marker {
        display: none;
    }

    .mobile-nav-group__content,
    .mobile-subgroup__content {
        display: grid;
        gap: 0.55rem;
        padding-left: 0.35rem;
    }

    .mobile-subgroup__content a {
        font-weight: 600;
        color: var(--muted);
    }

    .hero-grid,
    .product-detail-grid,
    .cart-layout,
    .checkout-layout,
    .shop-layout,
    .footer-grid,
    .two-col-layout {
        grid-template-columns: 1fr;
    }

    .filters-panel,
    .order-summary-panel,
    .product-detail-card {
        position: static;
    }

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

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

@media (max-width: 760px) {

    .announcement-bar__inner {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 0.5rem;
        padding: 0.5rem 0;
        overflow: hidden;
    }

    .announcement-pill {
        flex: 1 1 0;
        min-width: 0;
        font-size: 0.72rem;
        padding: 0.38rem 0.45rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .announcement-pill:last-child {
        display: none;
    }

    .footer-bottom__inner,
    .banner-cta,
    .results-bar,
    .product-price-row,
    .checkout-item,
    .summary-row,
    .product-actions-inline,
    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-inner {
        padding: 0.85rem 0;
    }

    .header-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .header-search {
        width: 100%;
    }

    .header-search input {
        min-width: 0;
        width: 100%;
    }

    .header-search button {
        white-space: nowrap;
    }

    .cart-link {
        width: 100%;
    }

    .logo-wrap {
        gap: 0.7rem;
    }

    .logo-mark {
        width: 48px;
        height: 48px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-tagline {
        font-size: 0.78rem;
    }

    .mobile-nav-panel__inner > a,
    .mobile-nav-group summary,
    .mobile-subgroup summary,
    .mobile-subgroup__content a {
        padding: 0.85rem 0.9rem;
        font-size: 0.95rem;
    }

    .stat-grid,
    .form-grid,
    .mini-info-grid,
    .category-grid,
    .product-grid,
    .trust-grid,
    .bullet-grid {
        grid-template-columns: 1fr;
    }

    .cart-table,
    .cart-table thead,
    .cart-table tbody,
    .cart-table th,
    .cart-table td,
    .cart-table tr {
        display: block;
        width: 100%;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tr {
        padding: 1rem;
        border-bottom: 1px solid #f0e6e9;
    }

    .cart-table td {
        padding: 0.5rem 0;
        border-bottom: 0;
    }

    .cart-inline-form {
        flex-wrap: wrap;
    }

    .footer-bottom__inner {
        align-items: flex-start;
    }
}

.hero-cta {
    font-size: 1.1rem;
    padding: 1.1rem 1.8rem;
    min-height: 60px;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 18px 38px rgba(200, 159, 50, 0.32);
    transform: scale(1.05);
    animation: pulseGlow 2.5s infinite;
}

.hero-cta:hover {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 24px 48px rgba(200, 159, 50, 0.4);
}

.hero-actions {
    align-items: center;
}

.hero-actions .btn-primary {
    flex: 1.2;
}

.hero-actions .btn-secondary {
    flex: 1;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 18px 38px rgba(200, 159, 50, 0.32);
    }
    50% {
        box-shadow: 0 24px 52px rgba(200, 159, 50, 0.45);
    }
    100% {
        box-shadow: 0 18px 38px rgba(200, 159, 50, 0.32);
    }
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
    transition: all 0.25s ease;
}

.whatsapp-btn:hover {
    background: #20c45a;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
    color: #fff;
}

.wa-icon {
    font-size: 1.05rem;
}

@media (max-width: 760px) {
    .page-hero {
        padding: 2rem 0 0.75rem;
    }

    .page-hero .container,
    .page-hero .container.narrow {
        width: min(100%, calc(100% - 2rem));
        margin: 0 auto;
    }

    .page-hero h1 {
        font-size: 2.1rem;
        line-height: 1.12;
        margin-bottom: 0.75rem;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .page-hero p {
        font-size: 0.98rem;
        line-height: 1.55;
        margin-bottom: 0;
    }
}


.mobile-direct-category {
    display: block;
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: #fff;
    font-weight: 700;
}