:root {
    --wine: #6f2f50;
    --wine-dark: #4e1d37;
    --wine-soft: #8e4b68;
    --rose: #d9a59c;
    --peach: #f1c7b8;
    --cream: #fff9f5;
    --blush: #f8eeea;
    --paper: #fffefd;
    --ink: #2c2027;
    --muted: #75676f;
    --line: #eaded9;
    --success: #2f6b4f;
    --warning: #946b2b;
    --danger: #9b3342;
    --shadow-sm: 0 8px 24px rgba(64, 32, 46, .07);
    --shadow-md: 0 18px 50px rgba(64, 32, 46, .12);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 30px;
    --container: 1240px;
    --font-heading: "Cormorant Garamond", serif;
    --font-product: "Playfair Display", serif;
    --font-body: "DM Sans", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body[data-cursor="flower"] *, body[data-cursor="flower"] {
    cursor: url('../cursors/flower.svg') 16 16, auto;
}

body[data-cursor="gem"] *, body[data-cursor="gem"] {
    cursor: url('../cursors/gem.svg') 11 9, auto;
}

body[data-cursor="heart"] *, body[data-cursor="heart"] {
    cursor: url('../cursors/heart.svg') 10 9, auto;
}

body[data-cursor="sparkle"] *, body[data-cursor="sparkle"] {
    cursor: url('../cursors/sparkle.svg') 16 16, auto;
}

body[data-cursor="rose"] *, body[data-cursor="rose"] {
    cursor: url('../cursors/rose.svg') 10 10, auto;
}

body[data-cursor]:not([data-cursor="default"]) input, body[data-cursor]:not([data-cursor="default"]) textarea {
    cursor: text;
}

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

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

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

button {
    color: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

[hidden] {
    display: none !important;
}

.announcement-bar {
    background: var(--wine);
    color: #fff;
    font-size: 12px;
    letter-spacing: .08em;
}

.announcement-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 254, 253, .94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(234, 222, 217, .8);
}

.header-grid {
    min-height: 80px;
    display: grid;
    grid-template-columns: 260px 1fr auto;
    align-items: center;
    gap: 32px;
}

.brand img {
    width: 228px;
    height: auto;
}

.desktop-nav {
    display: flex;
    justify-content: center;
    gap: 34px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
}

.desktop-nav a {
    position: relative;
    padding: 28px 0;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 0;
    height: 1px;
    background: var(--wine);
    transform: translateX(-50%);
    transition: width .25s ease;
}

.desktop-nav a:hover::after, .desktop-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 7px;
}

.icon-button {
    border: 0;
    background: transparent;
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    position: relative;
    transition: background .2s ease, transform .2s ease;
}

.icon-button:hover {
    background: var(--blush);
    transform: translateY(-1px);
}

.count-badge {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 17px;
    height: 17px;
    display: grid;
    place-items: center;
    padding: 0 4px;
    border-radius: 10px;
    background: var(--wine);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.desktop-search-row {
    padding-bottom: 14px;
}

.header-search {
    max-width: 680px;
    margin-inline: auto;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    background: #fff;
    position: relative;
}

.header-search input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
}

.header-search:focus-within {
    border-color: #c79aaa;
    box-shadow: 0 0 0 4px rgba(111,47,80,.06);
}

.search-suggestions {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 9px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    z-index: 80;
}

.search-suggestion {
    padding: 11px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid var(--line);
}

.search-suggestion:last-child {
    border-bottom: 0;
}

.search-suggestion:hover {
    background: var(--cream);
}

.search-suggestion small {
    color: var(--muted);
}

.mobile-search-trigger, .mobile-bottom-nav {
    display: none;
}

.alert {
    margin: 16px 0;
    padding: 12px 15px;
    border-radius: 12px;
    border: 1px solid;
    font-size: 14px;
}

.alert-success {
    color: var(--success);
    background: #f0f8f4;
    border-color: #b7d9c8;
}

.alert-error, .alert-danger {
    color: var(--danger);
    background: #fff3f4;
    border-color: #edc3c9;
}

.alert-warning {
    color: var(--warning);
    background: #fff8e8;
    border-color: #edd49f;
}

.alert-info {
    color: #355a78;
    background: #f0f7fb;
    border-color: #bed7e9;
}

.hero {
    position: relative;
    overflow: hidden;
    background: var(--blush);
}

.hero-slide {
    display: none;
    min-height: clamp(500px, 66vw, 690px);
    position: relative;
    isolation: isolate;
}

.hero-slide.active {
    display: block;
    animation: fadeIn .75s ease both;
}

.hero-slide-media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

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

.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(255,249,245,.98) 0%, rgba(255,249,245,.78) 36%, rgba(255,249,245,.05) 70%);
}

.hero-content {
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 650px;
    padding: 80px 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--wine);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.hero h1, .section-title, .page-hero h1 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.025em;
}

.hero h1 {
    margin: 0;
    font-size: clamp(48px, 6vw, 86px);
    max-width: 720px;
}

.hero p {
    max-width: 520px;
    margin: 22px 0 30px;
    color: #604e57;
    font-size: 17px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border: 0;
    padding: 0;
    border-radius: 50%;
    background: rgba(111,47,80,.25);
    transition: width .25s ease;
}

.hero-dot.active {
    width: 28px;
    border-radius: 99px;
    background: var(--wine);
}

@keyframes fadeIn {
    from {
        opacity: .25;
        transform: scale(1.01);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 0 22px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .03em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.button-primary {
    background: var(--wine);
    color: #fff;
}

.button-primary:hover {
    background: var(--wine-dark);
}

.button-dark {
    background: var(--ink);
    color: #fff;
}

.button-light {
    /* background: #fff; */
    border-color: var(--line);
}

.button-outline {
    border-color: var(--wine);
    color: var(--wine);
    background: transparent;
}

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

.button-sm {
    min-height: 36px;
    padding-inline: 15px;
    font-size: 12px;
}

.button-square {
    width: 46px;
    padding: 0;
    flex: 0 0 46px;
}

.section {
    padding: 90px 0;
}

.section-soft {
    background: var(--cream);
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 38px;
}

.section-title {
    margin: 0;
    font-size: clamp(38px, 5vw, 60px);
}

.section-subtitle {
    margin: 10px 0 0;
    color: var(--muted);
    max-width: 630px;
}

.text-link {
    color: var(--wine);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 1.15;
    background: var(--blush);
    box-shadow: 0 0 0 1px rgba(111,47,80,.05);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.2,.7,.2,1);
}

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

.category-card::after {
    content: "";
    position: absolute;
    inset: 36% 0 0;
    background: linear-gradient(0deg, rgba(45,22,34,.72), transparent);
}

.category-card-content {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 21px;
    color: #fff;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
}

.category-card h3 {
    margin: 0;
    font-family: var(--font-product);
    font-size: 26px;
    font-weight: 500;
}

.category-card span {
    font-size: 12px;
    opacity: .84;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px 20px;
}

.product-card-media {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--blush);
    aspect-ratio: .91;
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.2,.7,.2,1);
}

.product-card:hover .product-card-media img {
    transform: scale(1.035);
}

.product-badges {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 2;
    display: flex;
    gap: 6px;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 25px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: var(--wine);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

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

.product-wishlist-button {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.92);
    color: var(--wine);
    box-shadow: 0 5px 15px rgba(48,28,37,.08);
}

.product-wishlist-button.active {
    background: var(--wine);
    color: #fff;
}

.product-card-body {
    padding: 14px 4px 0;
}

.product-category {
    color: var(--muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.product-card h3 {
    margin: 6px 0 8px;
    font-family: var(--font-product);
    font-size: 18px;
    line-height: 1.32;
    font-weight: 500;
}

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

.product-price strong {
    font-size: 14px;
    color: var(--wine);
}

.product-price del {
    font-size: 12px;
    color: #a5989f;
}

.instagram-shell {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.instagram-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.instagram-avatar {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--wine);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 26px;
    overflow: hidden;
}

.instagram-header-info {
    flex: 1;
}

.instagram-header-info h3 {
    margin: 0;
    font-size: 18px;
}

.instagram-meta {
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-size: 13px;
    margin-top: 4px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.instagram-post {
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--blush);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.instagram-post:hover img {
    transform: scale(1.04);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.story-carousel {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 620px;
    background: var(--blush);
}

.story-slide {
    display: none;
    position: absolute;
    inset: 0;
}

.story-slide.active {
    display: block;
    animation: fadeIn .8s ease both;
}

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

.story-copy h2 {
    font-family: var(--font-heading);
    font-size: clamp(44px, 5vw, 66px);
    line-height: 1;
    margin: 0 0 22px;
    font-weight: 500;
}

.story-copy p {
    color: var(--muted);
    font-size: 16px;
}

.story-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px;
}

.story-value {
    padding: 18px;
    border-radius: 16px;
    background: var(--cream);
    border: 1px solid var(--line);
}

.story-value strong {
    display: block;
    color: var(--wine);
    margin-bottom: 3px;
}

.crafted-section {
    min-height: 420px;
    display: grid;
    place-items: center;
    text-align: center;
    background: radial-gradient(circle at top, #030303, #7a3555 72%);
    color: #fff;
    padding: 80px 20px;
}

.crafted-inner {
    max-width: 820px;
}

.crafted-section h2 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(50px, 7vw, 80px);
    line-height: 1;
    margin: 0 0 20px;
}

.crafted-section p {
    max-width: 680px;
    margin: 0 auto 26px;
    color: rgba(255,255,255,.86);
    font-size: 17px;
}

.page-hero {
    padding: 72px 0 52px;
    background: linear-gradient(135deg, #fff9f5, #f5dedb);
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(48px, 6vw, 72px);
}

.page-hero p {
    margin: 12px 0 0;
    max-width: 620px;
    color: var(--muted);
}

.breadcrumbs {
    margin-bottom: 13px;
    color: var(--wine);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.shop-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 44px;
}

.shop-sidebar {
    align-self: start;
    position: sticky;
    top: 165px;
}

.filter-block {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
}

.filter-block:first-child {
    padding-top: 0;
}

.filter-block h3 {
    margin: 0 0 13px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.filter-options {
    display: grid;
    gap: 8px;
}

.filter-options a, .filter-checkbox {
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.filter-options a:hover, .filter-options a.active {
    color: var(--wine);
    font-weight: 600;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
}

.shop-toolbar select {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 36px 10px 14px;
    background: #fff;
}

.shop-results {
    color: var(--muted);
    font-size: 13px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 50px;
}

.pagination a, .pagination span {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.pagination .active {
    background: var(--wine);
    color: #fff;
    border-color: var(--wine);
}

.mobile-filter-button {
    display: none;
}

.product-detail {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: start;
}

.product-gallery {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 14px;
    position: sticky;
    top: 165px;
}

.product-thumbs {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.product-thumb {
    border: 1px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    padding: 0;
    background: var(--blush);
    aspect-ratio: 1;
}

.product-thumb.active {
    border-color: var(--wine);
}

.product-main-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--blush);
    aspect-ratio: .93;
}

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

.product-info {
    padding: 20px 0;
}

.product-info h1 {
    font-family: var(--font-product);
    font-weight: 500;
    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.08;
    margin: 7px 0 14px;
}

.product-info .price-large {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    color: var(--wine);
    margin-bottom: 18px;
}

.product-info .price-large del {
    font-size: 15px;
    color: #a5989f;
}

.product-rating {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--muted);
    font-size: 13px;
}

.stars {
    color: #ad7955;
    letter-spacing: 2px;
}

.product-description {
    color: var(--muted);
    margin: 18px 0 28px;
}

.variant-group {
    margin: 20px 0;
}

.variant-group > label {
    display: block;
    font-weight: 700;
    margin-bottom: 9px;
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variant-option {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 15px;
    background: #fff;
}

.variant-option.active {
    border-color: var(--wine);
    background: var(--wine);
    color: #fff;
}

.product-purchase-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    margin-top: 22px;
}

.quantity-control {
    border: 1px solid var(--line);
    border-radius: 999px;
    display: grid;
    grid-template-columns: 36px 1fr 36px;
    align-items: center;
    overflow: hidden;
}

.quantity-control button {
    border: 0;
    background: transparent;
    height: 44px;
}

.quantity-control input {
    border: 0;
    text-align: center;
    width: 100%;
    outline: 0;
}

.product-meta-list {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.product-tabs {
    margin-top: 60px;
    border-top: 1px solid var(--line);
}

.product-tab {
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.product-tab h3 {
    font-family: var(--font-product);
    margin: 0 0 10px;
}

.pre-line {
    white-space: pre-line;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 7px;
}

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

.form-group label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.input, .select, .textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    padding: 12px 14px;
    outline: 0;
    color: var(--ink);
    min-height: 46px;
}

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

.input:focus, .select:focus, .textarea:focus {
    border-color: #c89bab;
    box-shadow: 0 0 0 4px rgba(111,47,80,.06);
}

.form-help {
    color: var(--muted);
    font-size: 12px;
}

.form-error {
    color: var(--danger);
    font-size: 12px;
}

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

.card h2, .card h3 {
    margin-top: 0;
}

.cart-layout, .checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 40px;
    align-items: start;
}

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

.cart-item {
    display: grid;
    grid-template-columns: 110px minmax(0,1fr) auto;
    gap: 18px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.cart-item img {
    width: 110px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 14px;
    background: var(--blush);
}

.cart-item h3 {
    font-family: var(--font-product);
    margin: 0 0 5px;
    font-weight: 500;
}

.cart-item-meta {
    color: var(--muted);
    font-size: 12px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.cart-item-total {
    font-weight: 700;
    white-space: nowrap;
}

.summary-card {
    position: sticky;
    top: 165px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 9px 0;
}

.summary-total {
    border-top: 1px solid var(--line);
    margin-top: 10px;
    padding-top: 18px;
    font-size: 18px;
    font-weight: 800;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    border: 1px dashed var(--line);
    border-radius: var(--radius-lg);
}

.empty-state h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin: 0 0 8px;
}

.payment-option {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    margin-bottom: 10px;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.payment-details {
    margin: 10px 0 0 27px;
    color: var(--muted);
    font-size: 13px;
}

.payment-transaction {
    margin-top: 12px;
}

.checkout-note {
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--cream);
    color: var(--muted);
    font-size: 12px;
}

.account-layout {
    display: grid;
    grid-template-columns: 240px minmax(0,1fr);
    gap: 35px;
}

.account-nav {
    position: sticky;
    top: 165px;
    display: grid;
    gap: 5px;
    align-self: start;
}

.account-nav a {
    padding: 11px 13px;
    border-radius: 10px;
    color: var(--muted);
}

.account-nav a.active, .account-nav a:hover {
    background: var(--blush);
    color: var(--wine);
}

.order-table {
    width: 100%;
    border-collapse: collapse;
}

.order-table th, .order-table td {
    text-align: left;
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.order-table th {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 27px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--blush);
    color: var(--wine);
    font-size: 11px;
    font-weight: 700;
}

.auth-shell {
    min-height: 70vh;
    display: grid;
    place-items: center;
    padding: 70px 20px;
    background: var(--cream);
}

.auth-card {
    width: min(100%, 470px);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
}

.auth-card h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1;
    margin: 0 0 8px;
    font-weight: 500;
}

.auth-card > p {
    color: var(--muted);
    margin-top: 0;
}

.auth-card form {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 55px;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    line-height: 1;
    margin-top: 0;
    font-weight: 500;
}

.contact-list {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.contact-list strong {
    display: block;
    color: var(--wine);
}

.site-footer {
    background: #301b27;
    color: rgba(255,255,255,.8);
    padding: 70px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr repeat(3, 1fr);
    gap: 50px;
}

.footer-brand img {
    filter: brightness(0) invert(1);
    opacity: .93;
    width: 220px;
}

.site-footer h3 {
    color: #fff;
    font-family: var(--font-product);
    font-weight: 500;
    font-size: 17px;
    margin: 4px 0 15px;
}

.site-footer a {
    display: block;
    margin: 8px 0;
    font-size: 13px;
}

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

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 15px;
    margin-top: 20px;
}

.social-links a {
    margin: 0;
}

.newsletter-input {
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-input input {
    flex: 1;
    min-width: 0;
    height: 46px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    padding: 0 16px;
    background: rgba(255,255,255,.07);
    color: #fff;
    outline: 0;
}

.newsletter-input input::placeholder {
    color: rgba(255,255,255,.5);
}

.footer-contact {
    font-size: 12px;
    margin-top: 18px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 50px;
    padding-top: 20px;
    font-size: 11px;
}

.search-drawer {
    position: fixed;
    inset: 0;
    z-index: 90;
}

.search-drawer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(40,20,30,.45);
}

.search-drawer-panel {
    position: relative;
    margin-left: auto;
    width: min(100%, 520px);
    height: 100%;
    background: #fff;
    padding: 22px;
    animation: slideIn .25s ease;
}

.search-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

@keyframes slideIn {
    from {
        transform: translateX(40px);
        opacity: 0;
    }
    to {
        transform: none;
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .header-grid {
        grid-template-columns: 220px 1fr auto;
        gap: 20px;
    }
    .desktop-nav {
        gap: 20px;
    }
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    .footer-grid > div:last-child {
        grid-column: 1 / -1;
        max-width: 560px;
    }
    .cart-layout, .checkout-layout {
        grid-template-columns: 1fr 330px;
    }
}

@media (max-width: 780px) {
    body {
        padding-bottom: 67px;
    }
    .container {
        width: min(calc(100% - 28px), var(--container));
    }
    .announcement-secondary {
        display: none;
    }
    .announcement-inner {
        justify-content: center;
        text-align: center;
        min-height: 30px;
    }
    .site-header {
        top: 0;
    }
    .header-grid {
        min-height: 67px;
        display: flex;
        justify-content: space-between;
        gap: 12px;
    }
    .brand {
        flex: 1;
        min-width: 0;
    }
    .brand img {
        width: 168px;
    }
    .desktop-nav, .desktop-search-row, .header-wishlist {
        display: none;
    }
    .mobile-search-trigger {
        display: inline-grid;
    }
    .header-actions {
        gap: 2px;
    }
    .header-actions .icon-button {
        width: 36px;
        height: 36px;
    }
    .hero-slide {
        min-height: 560px;
    }
    .hero-slide::after {
        background: linear-gradient(180deg, rgba(255,249,245,.92) 0%, rgba(255,249,245,.82) 56%, rgba(255,249,245,.35) 100%);
    }
    .hero-content {
        justify-content: flex-start;
        padding-top: 85px;
    }
    .hero h1 {
        font-size: clamp(46px, 14vw, 64px);
    }
    .hero p {
        font-size: 15px;
        max-width: 90%;
    }
    .section {
        padding: 64px 0;
    }
    .section-head {
        align-items: start;
        flex-direction: column;
        margin-bottom: 28px;
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .category-card {
        aspect-ratio: .9;
        border-radius: 20px;
    }
    .category-card-content {
        left: 14px;
        right: 14px;
        bottom: 14px;
        display: block;
    }
    .category-card h3 {
        font-size: 20px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 12px;
    }
    .product-card h3 {
        font-size: 16px;
    }
    .instagram-shell {
        padding: 16px;
    }
    .instagram-header {
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .instagram-header .button {
        margin-left: 78px;
    }
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .story-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .story-carousel {
        min-height: 490px;
    }
    .story-values {
        grid-template-columns: 1fr;
    }
    .shop-layout {
        display: block;
    }
    .shop-sidebar {
        display: none;
        position: fixed;
        z-index: 100;
        inset: 0 20% 0 0;
        padding: 26px 20px;
        background: #fff;
        overflow: auto;
        box-shadow: var(--shadow-md);
    }
    .shop-sidebar.open {
        display: block;
    }
    .mobile-filter-button {
        display: inline-flex;
    }
    .shop-toolbar {
        gap: 8px;
        flex-wrap: wrap;
    }
    .shop-toolbar select {
        margin-left: auto;
    }
    .product-detail {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .product-gallery {
        position: static;
        grid-template-columns: 1fr;
    }
    .product-thumbs {
        order: 2;
        flex-direction: row;
        overflow-x: auto;
    }
    .product-thumb {
        flex: 0 0 64px;
    }
    .product-main-image {
        aspect-ratio: 1;
    }
    .cart-layout, .checkout-layout, .account-layout, .contact-grid {
        grid-template-columns: 1fr;
    }
    .summary-card, .account-nav {
        position: static;
    }
    .account-nav {
        grid-template-columns: repeat(2, 1fr);
    }
    .cart-item {
        grid-template-columns: 82px minmax(0,1fr);
    }
    .cart-item img {
        width: 82px;
    }
    .cart-item-total {
        grid-column: 2;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
    .form-group.full {
        grid-column: auto;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }
    .footer-brand, .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .mobile-bottom-nav {
        position: fixed;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 70;
        min-height: 67px;
        padding: 7px 8px max(7px, env(safe-area-inset-bottom));
        background: rgba(255,254,253,.97);
        border-top: 1px solid var(--line);
        box-shadow: 0 -6px 25px rgba(55,31,43,.07);
        backdrop-filter: blur(15px);
    }
    .mobile-bottom-nav a {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        color: var(--muted);
        font-size: 10px;
    }
    .mobile-bottom-nav a.active {
        color: var(--wine);
    }
    .mobile-bottom-nav b {
        position: absolute;
        top: 1px;
        right: calc(50% - 21px);
        background: var(--wine);
        color: #fff;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        font-size: 9px;
    }
    .order-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 460px) {
    .header-actions .icon-button {
        width: 34px;
    }
    .brand img {
        width: 150px;
    }
    .category-grid {
        grid-template-columns: 1fr 1fr;
    }
    .product-grid {
        grid-template-columns: 1fr 1fr;
    }
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand, .footer-grid > div:last-child {
        grid-column: auto;
    }
    .product-purchase-row {
        grid-template-columns: 108px 1fr;
    }
}

/* =========================================================
   UI refresh Ã¢â‚¬â€œ Phoolify home, header, cards, search, footer
   ========================================================= */
:root {
    --wine: #7b3355;
    --wine-dark: #5d2340;
    --wine-soft: #9f5f7d;
    --rose: #e9c2cf;
    --peach: #f5d7cb;
    --cream: #fff8f8;
    --blush: #f8f1f4;
    --paper: #fffdfd;
    --ink: #24151d;
    --muted: #766670;
    --line: #ecdee4;
    --shadow-sm: 0 10px 30px rgba(57, 26, 40, .07);
    --shadow-md: 0 22px 60px rgba(57, 26, 40, .12);
    --shadow-lg: 0 32px 90px rgba(57, 26, 40, .14);
}

body {
    background:
        radial-gradient(circle at top left, rgba(233, 194, 207, .25), transparent 32%),
        linear-gradient(180deg, #fffdfd 0%, #fff9fb 100%);
}

body[data-cursor="default"],
body[data-cursor="default"] * {
    cursor: auto;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.announcement-bar {
    background: linear-gradient(90deg, var(--wine-dark), var(--wine));
}

.site-header {
    padding: 14px 0 16px;
    border-bottom: 0;
    background: rgba(255, 253, 253, .82);
}

.header-shell {
    min-height: 78px;
    display: grid;
    grid-template-columns: auto auto minmax(260px, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 14px 18px;
    border: 1px solid rgba(123, 51, 85, .08);
    border-radius: 28px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 14px 40px rgba(49, 27, 36, .06);
    backdrop-filter: blur(18px);
}

.brand img {
    width: 210px;
}

.desktop-nav {
    justify-content: flex-start;
    gap: 26px;
    padding-inline: 6px;
}

.desktop-nav a {
    padding: 12px 0;
    color: #473541;
}

.desktop-nav a::after {
    bottom: 4px;
    height: 2px;
    border-radius: 99px;
}

.desktop-nav a.active,
.desktop-nav a:hover {
    color: var(--wine);
}

.header-search {
    max-width: none;
    min-height: 52px;
    border-color: transparent;
    background: linear-gradient(180deg, #fff, #fffafb);
    box-shadow: inset 0 0 0 1px rgba(123, 51, 85, .10);
    padding: 0 8px 0 16px;
}

.header-search:focus-within {
    border-color: transparent;
    box-shadow: inset 0 0 0 1px rgba(123, 51, 85, .22), 0 0 0 5px rgba(123, 51, 85, .08);
}

.header-search-icon {
    display: inline-flex;
    color: #8c7280;
}

.header-search input {
    min-width: 0;
    font-size: 14px;
}

.header-search-submit {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--wine), #a84276);
    box-shadow: 0 10px 24px rgba(123, 51, 85, .26);
    transition: transform .2s ease, box-shadow .2s ease;
}

.header-search-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(123, 51, 85, .28);
}

.search-suggestions-rich {
    padding: 8px;
    border-radius: 20px;
}

.search-suggestion-rich {
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 14px;
}

.search-suggestion-rich:hover {
    background: var(--cream);
}

.search-suggestion-thumb {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--blush);
}

.search-suggestion-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-suggestion-copy {
    min-width: 0;
}

.search-suggestion-copy strong,
.search-suggestion-copy span {
    display: block;
}

.search-suggestion-copy strong {
    font-size: 13px;
    line-height: 1.35;
}

.search-suggestion-copy span {
    color: var(--muted);
    font-size: 12px;
}

.search-suggestion-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.search-type-pill {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 9px;
    border-radius: 999px;
    background: rgba(123, 51, 85, .08);
    color: var(--wine);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.search-empty {
    padding: 12px 10px;
    color: var(--muted);
    font-size: 13px;
}

.header-actions {
    gap: 8px;
}

.icon-button {
    width: 42px;
    height: 42px;
}

.icon-button:hover {
    background: rgba(123, 51, 85, .08);
}

.cart-pill {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(123, 51, 85, .10);
    background: linear-gradient(180deg, #fff, #fff9fb);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(57, 26, 40, .05);
}

.cart-pill-icon {
    display: inline-flex;
    color: var(--wine);
}

.cart-pill-count {
    min-width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    padding-inline: 4px;
    border-radius: 999px;
    background: var(--wine);
    color: #fff;
    font-size: 10px;
}

.hero.hero-luxe {
    background: transparent;
    padding: 10px 0 0;
}

.hero-slide {
    min-height: clamp(510px, 62vw, 680px);
}

.hero-slide::after {
    display: none;
}

.hero-background {
    /* position: absolute; */
    /* inset: 0; */
    /* background:
        radial-gradient(circle at 0% 0%, rgba(245, 215, 203, .9), transparent 30%),
        radial-gradient(circle at 100% 100%, rgba(233, 194, 207, .8), transparent 28%),
        linear-gradient(120deg, #fbf1ed 0%, #f7eef5 45%, #f6f5ff 100%); */
}

.hero-shell-grid {
    min-height: inherit;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    align-items: center;
    gap: 54px;
    padding: 48px 48px;
    border-radius: 20px;
    overflow: hidden;
    background-image: linear-gradient(#e9c2cfb5, rgb(255 255 255 / 67%)), url(../images/bgbanner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
}

.hero-copy {
    max-width: 620px;
}

.hero h1 {
    font-size: clamp(54px, 6vw, 88px);
    line-height: .92;
    letter-spacing: -.05em;
}

.hero p {
    color: #5d4e57;
    font-size: 17px;
    max-width: 560px;
    margin-bottom: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-feature-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .66);
    color: #5d3d4e;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 24px rgba(53, 24, 37, .05);
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.hero-image-card {
    width: 100%;
    max-width: 520px;
    border-radius: 34px;
    overflow: hidden;
    background: rgba(255, 255, 255, .75);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,.65);
}

.hero-image-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.hero-controls-row {
    margin-top: -50px;
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-dots {
    position: static;
    transform: none;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.hero-dot {
    width: 10px;
    height: 10px;
    background: rgba(123, 51, 85, .2);
}

.hero-dot.active {
    width: 34px;
}

.hero-nav,
.slider-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-nav-button {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    font-size: 22px;
    line-height: 1;
    background: #fff;
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(57, 26, 40, .09);
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.slider-nav-button:hover {
    transform: translateY(-2px);
    background: var(--wine);
    color: #fff;
}

.section-compact {
    padding-top: 48px;
    padding-bottom: 34px;
}

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

.trust-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255,255,255,.8);
    border: 1px solid rgba(123, 51, 85, .08);
    box-shadow: var(--shadow-sm);
}

.trust-card strong {
    display: block;
    margin-bottom: 6px;
    color: var(--wine);
    font-size: 18px;
}

.trust-card span {
    display: block;
    color: var(--muted);
    font-size: 13px;
}

.section-soft {
    background: linear-gradient(180deg, rgba(248, 241, 244, .82), rgba(255, 250, 252, .92));
}

.category-grid-enhanced {
    gap: 22px;
}

.category-card {
    box-shadow: var(--shadow-sm);
    border-radius: 30px;
    border: 1px solid rgba(123, 51, 85, .06);
}

.category-card::after {
    inset: 44% 0 0;
    background: linear-gradient(0deg, rgba(33, 18, 26, .80), rgba(33, 18, 26, .02));
}

.category-card-content {
    align-items: center;
}

.category-card-cta {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(10px);
}

.products-carousel {
    border-radius: 30px;
    padding: 18px;
    background: rgba(255,255,255,.76);
    border: 1px solid rgba(123, 51, 85, .08);
    box-shadow: var(--shadow-sm);
}

.slider-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
    padding-inline: 4px;
}

.slider-kicker {
    font-size: 12px;
    font-weight: 800;
    color: var(--wine);
    letter-spacing: .1em;
    text-transform: uppercase;
}

.slider-viewport {
    overflow: hidden;
}

.slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 48px) / 4);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding-bottom: 2px;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.slider-item {
    min-width: 0;
    scroll-snap-align: start;
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 12px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,250,252,.95));
    border: 1px solid rgba(123, 51, 85, .08);
    box-shadow: 0 16px 36px rgba(57, 26, 40, .07);
    transition: transform .22s ease, box-shadow .22s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(57, 26, 40, .11);
}

.product-card-media {
    border-radius: 20px;
    background: linear-gradient(180deg, #faf3f6, #f5ecef);
}

.product-card-media img {
    aspect-ratio: .96;
}

.product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 16px 6px 6px;
}

.product-meta-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-stock {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.product-stock-in {
    color: #256446;
    background: rgba(47, 107, 79, .10);
}

.product-stock-low {
    color: #926321;
    background: rgba(148, 107, 43, .12);
}

.product-stock-out {
    color: #9b3342;
    background: rgba(155, 51, 66, .11);
}

.product-card h3 {
    margin-bottom: 10px;
    font-size: 19px;
}

.product-card-description {
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-bottom {
    margin-top: auto;
    display: grid;
    gap: 14px;
}

.product-price strong {
    font-size: 17px;
}

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

.quick-cart-form {
    margin: 0;
}

.quick-cart-form .button,
.product-card-actions .button {
    min-height: 38px;
    padding-inline: 16px;
}

.editorial-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 28px;
    align-items: stretch;
}

.editorial-card,
.editorial-mini-card {
    padding: 34px;
    border-radius: 30px;
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(123, 51, 85, .08);
    box-shadow: var(--shadow-sm);
}

.editorial-card h2 {
    margin: 0 0 14px;
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 54px);
    line-height: .98;
    font-weight: 500;
}

.editorial-card > p {
    color: var(--muted);
    font-size: 15px;
}

.editorial-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 24px;
}

.editorial-points div {
    padding: 18px;
    border-radius: 18px;
    background: var(--blush);
}

.editorial-points strong,
.mini-step {
    display: block;
    color: var(--wine);
}

.editorial-points span,
.editorial-mini-card p {
    color: var(--muted);
    font-size: 13px;
}

.editorial-stack {
    display: grid;
    gap: 16px;
}

.mini-step {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
}

.editorial-mini-card h3 {
    margin: 0 0 8px;
    font-family: var(--font-product);
    font-size: 24px;
    font-weight: 500;
}

.story-carousel,
.instagram-shell {
    box-shadow: var(--shadow-sm);
}

.story-value {
    background: #fff;
}

.site-footer {
    margin-top: 0;
    background:
        radial-gradient(circle at top left, rgba(168, 66, 118, .24), transparent 28%),
        linear-gradient(180deg, #2e1724 0%, #211019 100%);
    padding-top: 56px;
}

.footer-cta {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    align-items: center;
    padding: 28px;
    margin-bottom: 42px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.footer-cta .eyebrow {
    color: #f0bfd1;
}

.footer-cta h2 {
    margin: 0 0 10px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 52px);
    line-height: .98;
    font-weight: 500;
}

.footer-cta p {
    margin: 0;
    color: rgba(255,255,255,.74);
}

.footer-newsletter-form .newsletter-input {
    flex-wrap: nowrap;
}

.footer-newsletter-form .newsletter-input input {
    background: rgba(255,255,255,.11);
}

.footer-grid {
    align-items: start;
}

.footer-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.footer-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.76);
    font-size: 12px;
}

.footer-contact-block {
    margin: 0 0 16px;
    font-size: 13px;
}

.footer-contact-block strong,
.footer-contact-block span {
    display: block;
}

.footer-contact-block strong {
    color: #fff;
    margin-bottom: 3px;
}

.footer-bottom {
    font-size: 12px;
}

@media (max-width: 1180px) {
    .header-shell {
        grid-template-columns: auto 1fr auto;
        gap: 14px;
    }

    .desktop-nav {
        display: none;
    }

    .header-search-desktop {
        min-width: 0;
    }

    .hero-shell-grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, .85fr);
        gap: 28px;
    }

    .slider-track {
        grid-auto-columns: calc((100% - 32px) / 3);
    }

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

    .editorial-grid,
    .footer-cta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .site-header {
        padding: 10px 0 12px;
    }

    .header-shell {
        min-height: 68px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 22px;
    }

    .brand img {
        width: 160px;
    }

    .header-search-desktop,
    .header-wishlist {
        display: none;
    }

    .mobile-search-trigger {
        display: inline-grid;
    }

    .cart-pill {
        min-height: 40px;
        padding: 0 12px;
    }

    .cart-pill span:not(.cart-pill-count) {
        display: none;
    }

    .hero-shell-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-top: 28px;
        padding-bottom: 84px;
    }

    .hero-slide {
        min-height: 0;
    }

    .hero-copy {
        order: 1;
    }

    .hero-visual {
        order: 2;
        justify-content: center;
    }

    .hero-image-card {
        max-width: 100%;
    }

    .hero h1 {
        font-size: clamp(42px, 12vw, 62px);
    }

    .hero p {
        margin-top: 18px;
        font-size: 15px;
    }

    .hero-controls-row {
        margin-top: -42px;
        gap: 12px;
    }

    .trust-strip,
    .editorial-points {
        grid-template-columns: 1fr;
    }

    .slider-track {
        grid-auto-columns: calc((100% - 14px) / 2);
        gap: 14px;
    }

    .product-card {
        border-radius: 20px;
    }

    .section-compact {
        padding-top: 32px;
    }

    .footer-cta {
        padding: 22px;
        border-radius: 24px;
    }

    .footer-newsletter-form .newsletter-input {
        flex-wrap: wrap;
    }

    .footer-newsletter-form .button {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .slider-track {
        grid-auto-columns: 84%;
    }

    .hero-controls-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-nav,
    .slider-nav {
        align-self: flex-start;
    }

    .section-title {
        font-size: clamp(32px, 10vw, 46px);
    }

    .category-card h3 {
        font-size: 18px;
    }

    .search-suggestion-rich {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .search-suggestion-meta {
        grid-column: 2;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
