:root {
    --ink: #0b0b0d;
    --muted: #72686c;
    --line: rgba(255, 255, 255, .36);
    --paper: #fff8f8;
    --soft: #f8ecec;
    --rose: #f05f91;
    --rose-dark: #c94673;
    --sage: #111418;
    --sage-soft: rgba(240, 95, 145, .12);
    --gold: #f2c56f;
    --blush: #ddb0aa;
    --glass: rgba(255, 255, 255, .62);
    --glass-strong: rgba(255, 255, 255, .78);
    --danger: #b44747;
    --success: #277554;
    --shadow: 0 24px 70px rgba(17, 20, 24, .14);
}

* {
    box-sizing: border-box;
}

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;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 14px clamp(18px, 4vw, 54px);
    background: rgba(255, 253, 251, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.main-nav,
.admin-nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.main-nav {
    justify-content: center;
    flex-wrap: wrap;
}

.main-nav a,
.admin-nav a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 8px;
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
}

.main-nav a.active,
.main-nav a:hover,
.admin-nav a.active,
.admin-nav a:hover {
    color: var(--ink);
    background: var(--sage-soft);
}

.main-nav span {
    min-width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--rose);
    color: #fff;
    font-size: 12px;
}

.rate-chip,
.status-pill,
.stock-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 6px 11px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

main {
    min-height: calc(100vh - 120px);
}

.hero {
    min-height: 420px;
    display: grid;
    align-items: end;
    padding: clamp(36px, 8vw, 88px) clamp(18px, 4vw, 54px);
    color: #fff;
    background:
        linear-gradient(90deg, rgba(17, 20, 24, .82), rgba(17, 20, 24, .28)),
        url("https://images.unsplash.com/photo-1445205170230-053b83016050?auto=format&fit=crop&w=1800&q=80") center 34% / cover;
}

.hero-content {
    max-width: 760px;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1,
.page-title h1,
.admin-title h1 {
    margin: 0;
    line-height: 1.03;
    letter-spacing: 0;
}

.hero h1 {
    max-width: 10ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 8vw, 96px);
}

.hero p {
    max-width: 640px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.action-row,
.form-actions,
.filter-bar,
.cart-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-actions {
    margin-top: 26px;
}

.btn,
.icon-btn,
.link-btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 8px;
    padding: 10px 15px;
    background: var(--ink);
    color: #fff;
    font-weight: 850;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.btn:hover,
.icon-btn:hover,
.link-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.btn.primary {
    background: var(--rose);
}

.btn.primary:hover {
    background: var(--rose-dark);
}

.btn.secondary,
.link-btn.secondary {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
}

.btn.ghost,
.link-btn.ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--line);
}

.btn.danger {
    background: var(--danger);
}

.section,
.page-wrap {
    padding: clamp(30px, 5vw, 64px) clamp(18px, 4vw, 54px);
}

.section-header,
.page-title,
.admin-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.section-header h2,
.page-title h1,
.admin-title h1 {
    font-size: clamp(28px, 4vw, 44px);
}

.section-header p,
.page-title p,
.admin-title p {
    margin: 8px 0 0;
    color: var(--muted);
}

.category-strip {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding: 6px 0 18px;
}

.category-strip a {
    flex: 0 0 auto;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--muted);
    font-weight: 800;
}

.category-strip a.active,
.category-strip a:hover {
    color: #fff;
    background: var(--sage);
    border-color: var(--sage);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.product-card,
.summary-box,
.panel,
.admin-card,
.auth-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 35px rgba(17, 20, 24, .05);
}

.product-card {
    overflow: hidden;
}

.product-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--soft);
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
}

.product-card:hover .product-media img {
    transform: scale(1.04);
}

.sale-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--rose);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.product-info {
    padding: 16px;
}

.product-info h3 {
    margin: 0 0 7px;
    font-size: 18px;
}

.product-info p {
    min-height: 45px;
    margin: 0 0 14px;
    color: var(--muted);
    font-size: 14px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 14px;
}

.price {
    font-size: 20px;
    font-weight: 900;
}

.old-price {
    color: var(--muted);
    text-decoration: line-through;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(280px, .9fr) minmax(300px, 1fr);
    gap: clamp(22px, 4vw, 54px);
    align-items: start;
}

.detail-image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 8px;
    background: var(--soft);
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-copy h1 {
    margin: 8px 0 12px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
}

.detail-copy .description {
    color: var(--muted);
    font-size: 17px;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0;
}

.field,
.field-full {
    display: grid;
    gap: 7px;
}

.field-full {
    grid-column: 1 / -1;
}

label {
    color: var(--ink);
    font-size: 13px;
    font-weight: 850;
}

input,
select,
textarea {
    width: 100%;
    min-height: 43px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px 12px;
    background: #fff;
    color: var(--ink);
    outline: none;
}

textarea {
    min-height: 110px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(93, 143, 131, .16);
}

.cart-layout,
.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
    align-items: start;
}

.cart-list {
    display: grid;
    gap: 12px;
}

.cart-item {
    display: grid;
    grid-template-columns: 92px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.cart-item img {
    width: 92px;
    height: 112px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item h3 {
    margin: 0 0 5px;
    font-size: 18px;
}

.cart-meta,
.muted {
    color: var(--muted);
    font-size: 14px;
}

.summary-box {
    position: sticky;
    top: 92px;
    padding: 18px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.summary-row.total {
    border-bottom: 0;
    font-size: 20px;
    font-weight: 900;
}

.empty-state {
    display: grid;
    place-items: center;
    min-height: 260px;
    padding: 32px;
    border: 1px dashed var(--line);
    border-radius: 8px;
    background: var(--soft);
    text-align: center;
}

.flash {
    margin: 16px clamp(18px, 4vw, 54px) 0;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: #fff;
    font-weight: 750;
}

.flash-success {
    border-color: rgba(39, 117, 84, .3);
    color: var(--success);
    background: #eef8f4;
}

.flash-error {
    border-color: rgba(180, 71, 71, .3);
    color: var(--danger);
    background: #fff0f0;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 26px clamp(18px, 4vw, 54px);
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.site-footer div {
    display: grid;
    gap: 3px;
}

.admin-body {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 100vh;
    background: #f8f8f6;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-right: 1px solid var(--line);
    background: #fff;
}

.admin-nav {
    align-items: stretch;
    flex-direction: column;
}

.admin-nav a {
    justify-content: flex-start;
}

.admin-session {
    margin-top: auto;
    display: grid;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
}

.admin-main {
    padding: 28px clamp(18px, 4vw, 42px);
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.admin-card {
    padding: 18px;
}

.admin-card span {
    display: block;
    color: var(--muted);
    font-size: 13px;
    font-weight: 850;
}

.admin-card strong {
    display: block;
    margin-top: 8px;
    font-size: clamp(24px, 3vw, 34px);
}

.panel {
    padding: 18px;
    margin-top: 18px;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.status-pending { color: #9a6b10; background: #fff7df; }
.status-confirmed { color: #246a7a; background: #e9f8fb; }
.status-preparing { color: #7a4c16; background: #fff0de; }
.status-delivered { color: var(--success); background: #e9f8f1; }
.status-cancelled { color: var(--danger); background: #fff0f0; }

.auth-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        linear-gradient(120deg, rgba(17,20,24,.76), rgba(17,20,24,.2)),
        url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1600&q=80") center / cover;
}

.auth-card {
    width: min(420px, 100%);
    padding: 24px;
    box-shadow: var(--shadow);
}

.auth-card .brand {
    display: inline-flex;
    margin-bottom: 18px;
}

.auth-card h1 {
    margin: 0 0 8px;
    font-size: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.thumb {
    width: 58px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    background: var(--soft);
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .main-nav {
        justify-content: flex-start;
    }

    .rate-chip {
        justify-self: start;
    }

    .product-detail,
    .cart-layout,
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .summary-box {
        position: static;
    }

    .admin-body {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
        height: auto;
    }

    .admin-grid,
    .admin-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: 500px;
    }

    .section-header,
    .page-title,
    .admin-title,
    .site-footer {
        align-items: start;
        flex-direction: column;
    }

    .option-grid,
    .form-grid,
    .admin-grid,
    .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .cart-item {
        grid-template-columns: 76px 1fr;
    }

    .cart-item img {
        width: 76px;
        height: 94px;
    }

    .cart-actions {
        grid-column: 1 / -1;
    }
}

.button,
.icon-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 8px;
    padding: 10px 15px;
    background: var(--ink);
    color: #fff;
    font-weight: 850;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.button:hover,
.icon-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.button-primary {
    background: var(--rose);
}

.button-primary:hover {
    background: var(--rose-dark);
}

.button-light {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
}

.button-dark {
    background: var(--ink);
    color: #fff;
}

.button-wide {
    width: 100%;
}

.button:disabled {
    cursor: not-allowed;
    opacity: .55;
    transform: none;
    box-shadow: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-shop {
    min-height: 480px;
    display: grid;
    align-items: end;
    padding: clamp(40px, 8vw, 90px) clamp(18px, 4vw, 54px);
    color: #fff;
    background:
        linear-gradient(90deg, rgba(17, 20, 24, .82), rgba(17, 20, 24, .22)),
        url("https://images.unsplash.com/photo-1445205170230-053b83016050?auto=format&fit=crop&w=1800&q=80") center 34% / cover;
}

.hero-copy {
    max-width: 720px;
}

.hero-copy h1 {
    margin: 0;
    max-width: 10ch;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 8vw, 98px);
    line-height: 1;
}

.hero-copy p {
    max-width: 650px;
    margin: 18px 0 24px;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(17px, 2vw, 21px);
}

.catalog-shell,
.product-detail,
.cart-layout,
.checkout-layout,
.order-success,
.page-head {
    padding: clamp(30px, 5vw, 64px) clamp(18px, 4vw, 54px);
}

.catalog-toolbar,
.panel-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.catalog-toolbar h2,
.page-head h1,
.order-success h1 {
    margin: 0;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.06;
}

.search-form {
    display: flex;
    gap: 10px;
    align-items: center;
    min-width: min(100%, 420px);
}

.category-tabs {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding: 6px 0 20px;
}

.category-tabs a {
    flex: 0 0 auto;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--muted);
    font-weight: 850;
}

.category-tabs a.active,
.category-tabs a:hover {
    color: #fff;
    background: var(--sage);
    border-color: var(--sage);
}

.product-media span {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--rose);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.product-info small,
td small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

.price-row strong,
.detail-price strong {
    font-size: 22px;
    font-weight: 950;
}

.price-row del,
.detail-price del {
    color: var(--muted);
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10px;
}

.detail-media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 8px;
    background: var(--soft);
}

.detail-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-panel,
.buy-box,
.checkout-form,
.form-stack {
    display: grid;
    gap: 14px;
    align-content: start;
}

.breadcrumb {
    color: var(--muted);
    font-weight: 800;
}

.detail-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.detail-price span {
    color: var(--sage);
    font-weight: 850;
}

.form-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-head.compact {
    padding-bottom: 12px;
}

.cart-table {
    display: grid;
    gap: 12px;
}

.cart-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) 120px auto 42px;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.cart-row img {
    width: 92px;
    height: 112px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-row h3 {
    margin: 0 0 4px;
    font-size: 18px;
}

.cart-row p {
    margin: 0 0 6px;
    color: var(--muted);
}

.icon-button {
    width: 42px;
    padding: 0;
    background: #fff0f0;
    color: var(--danger);
    border: 1px solid rgba(180, 71, 71, .2);
    font-size: 22px;
}

.summary-box h2,
.panel h2 {
    margin-top: 0;
}

.summary-box > div,
.inline-summary > div,
.totals-box > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
}

.summary-box .total-line,
.totals-box > div:last-child {
    border-bottom: 0;
    font-size: 19px;
    font-weight: 900;
}

.order-success {
    max-width: 900px;
}

.inline-summary {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 24px 0;
}

.order-items {
    display: grid;
    gap: 10px;
    margin-bottom: 22px;
}

.order-items article {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 12px;
    padding: 13px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.order-items small {
    color: var(--muted);
}

.in-card {
    margin: 0 0 14px;
}

.split-panel,
.detail-admin-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.metric-big {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 950;
}

.inline-form {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.inline-form select {
    width: auto;
    min-width: 130px;
}

.product-cell {
    display: flex;
    gap: 10px;
    align-items: center;
}

.full-field {
    grid-column: 1 / -1;
}

.check-field {
    display: flex;
    gap: 9px;
    align-items: center;
    min-height: 43px;
    padding-top: 22px;
}

.check-field input {
    width: auto;
    min-height: auto;
}

.totals-box {
    width: min(100%, 420px);
    margin-left: auto;
    margin-top: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}

@media (max-width: 980px) {
    .split-panel,
    .detail-admin-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-shop {
        min-height: 500px;
    }

    .catalog-toolbar,
    .search-form {
        align-items: stretch;
        flex-direction: column;
    }

    .form-grid.two,
    .inline-summary {
        grid-template-columns: 1fr;
    }

    .cart-row {
        grid-template-columns: 76px 1fr;
    }

    .cart-row img {
        width: 76px;
        height: 94px;
    }

    .cart-row label,
    .cart-row > strong,
    .cart-row .icon-button {
        grid-column: 1 / -1;
    }
}

/* Admin refresh */
.auth-body {
    background: #f5f0eb;
}

.auth-page {
    min-height: 100vh;
    padding: clamp(18px, 4vw, 42px);
    background:
        linear-gradient(120deg, rgba(17, 20, 24, .24), rgba(93, 143, 131, .2)),
        url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1800&q=80") center / cover;
}

.auth-shell {
    width: min(1120px, 100%);
    min-height: min(720px, calc(100vh - 48px));
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .52);
    border-radius: 8px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 30px 90px rgba(17, 20, 24, .22);
    backdrop-filter: blur(18px);
}

.auth-showcase {
    display: grid;
    align-items: end;
    min-height: 520px;
    padding: clamp(28px, 5vw, 58px);
    color: #fff;
    background:
        linear-gradient(180deg, rgba(17, 20, 24, .08), rgba(17, 20, 24, .82)),
        url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1400&q=80") center / cover;
}

.auth-showcase-inner {
    max-width: 620px;
}

.auth-showcase h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1;
    letter-spacing: 0;
}

.auth-showcase p {
    max-width: 560px;
    margin: 16px 0 0;
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
}

.auth-highlights {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.auth-highlights span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, .34);
    border-radius: 999px;
    background: rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 13px;
    font-weight: 850;
}

.auth-card {
    width: 100%;
    min-height: 100%;
    display: grid;
    align-content: center;
    gap: 16px;
    padding: clamp(26px, 4vw, 46px);
    border: 0;
    border-radius: 0;
    background: rgba(255, 253, 251, .96);
    box-shadow: none;
}

.auth-logo-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.auth-logo-line img {
    height: 42px;
    width: auto;
    border-radius: 8px;
}

.auth-logo-line span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    white-space: nowrap;
}

.auth-card h2 {
    margin: 0;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.05;
}

.auth-card p {
    margin: -6px 0 6px;
    color: var(--muted);
}

.auth-card label {
    display: grid;
    gap: 8px;
}

.auth-card input {
    min-height: 50px;
    background: #fff;
}

.admin-body {
    grid-template-columns: 280px minmax(0, 1fr);
    background:
        linear-gradient(180deg, #f8f5f1 0%, #f7f8f6 100%);
}

.admin-sidebar {
    gap: 18px;
    padding: 22px;
    border-right: 0;
    background: #111418;
    color: #fff;
    box-shadow: 16px 0 45px rgba(17, 20, 24, .08);
}

.admin-brand img {
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .14);
}

.admin-sidebar-label {
    color: rgba(255, 255, 255, .48);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-nav {
    gap: 7px;
}

.admin-nav a {
    min-height: 46px;
    justify-content: flex-start;
    padding: 11px 12px;
    border: 1px solid transparent;
    color: rgba(255, 255, 255, .7);
}

.admin-nav a span {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .22);
}

.admin-nav a.active,
.admin-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .1);
}

.admin-nav a.active span,
.admin-nav a:hover span {
    background: var(--gold);
}

.admin-session {
    gap: 6px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .66);
}

.admin-session strong {
    color: #fff;
    font-size: 14px;
}

.admin-session a {
    width: max-content;
    margin-top: 6px;
    color: var(--gold);
    font-weight: 850;
}

.admin-main {
    padding: 24px clamp(18px, 4vw, 46px) 42px;
}

.admin-topbar {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: -4px 0 26px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 12px 35px rgba(17, 20, 24, .04);
    backdrop-filter: blur(16px);
}

.admin-topbar div {
    display: grid;
    gap: 2px;
}

.admin-topbar span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.admin-topbar strong {
    font-size: 18px;
}

.admin-title {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.admin-title h1 {
    font-size: clamp(32px, 4vw, 52px);
}

.admin-grid {
    gap: 16px;
}

.admin-card,
.panel {
    border: 1px solid rgba(230, 226, 220, .9);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 18px 45px rgba(17, 20, 24, .06);
}

.admin-card {
    min-height: 132px;
    display: grid;
    align-content: space-between;
    padding: 20px;
}

.admin-card span {
    color: #6c766f;
}

.admin-card strong {
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1;
}

.panel {
    padding: clamp(16px, 2.4vw, 24px);
}

th {
    background: #faf8f5;
    color: #7a746d;
}

td {
    background: rgba(255, 255, 255, .58);
}

tbody tr:hover td {
    background: #fffaf5;
}

.filter-bar {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fbf8f4;
}

.filter-bar input,
.filter-bar select,
.inline-form select {
    min-height: 42px;
    background: #fff;
}

.status-pill {
    border: 0;
    font-weight: 900;
}

@media (max-width: 980px) {
    .auth-shell {
        grid-template-columns: 1fr;
    }

    .auth-showcase {
        min-height: 340px;
    }

    .admin-sidebar {
        position: relative;
        height: auto;
        border-radius: 0;
    }
}

@media (max-width: 640px) {
    .auth-page {
        padding: 0;
    }

    .auth-shell {
        min-height: 100vh;
        border: 0;
        border-radius: 0;
    }

    .auth-showcase {
        min-height: 290px;
    }

    .auth-logo-line {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-topbar {
        align-items: stretch;
        flex-direction: column;
    }

    .inline-form select,
    .inline-form button {
        width: 100%;
    }
}

/* AndiStore brand glassmorphism layer */
body {
    background:
        radial-gradient(circle at 8% 10%, rgba(221, 176, 170, .45), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(240, 95, 145, .16), transparent 24%),
        linear-gradient(135deg, #fff9f9 0%, #f4e9e9 42%, #ffffff 100%);
}

.site-header {
    margin: 12px clamp(12px, 2vw, 22px) 0;
    border: 1px solid rgba(255, 255, 255, .54);
    border-radius: 8px;
    background: rgba(255, 255, 255, .56);
    box-shadow: 0 18px 55px rgba(17, 20, 24, .08);
    backdrop-filter: blur(22px) saturate(140%);
}

.site-header + main {
    margin-top: -60px;
}

.brand img,
.auth-logo-line img,
.admin-brand img {
    height: 52px;
    width: auto;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 14px 35px rgba(17, 20, 24, .18);
}

.main-nav a,
.rate-chip {
    background: rgba(255, 255, 255, .34);
    border: 1px solid rgba(255, 255, 255, .4);
    color: #332f31;
    backdrop-filter: blur(14px);
}

.main-nav a.active,
.main-nav a:hover {
    background: rgba(255, 255, 255, .78);
    color: var(--ink);
    box-shadow: 0 10px 28px rgba(240, 95, 145, .12);
}

.hero-shop {
    min-height: 590px;
    align-items: center;
    padding-top: 130px;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, .88), rgba(5, 5, 5, .38) 58%, rgba(240, 95, 145, .18)),
        url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.hero-copy {
    position: relative;
    padding: clamp(22px, 4vw, 38px);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .26);
    backdrop-filter: blur(16px) saturate(125%);
}

.hero-copy::after {
    content: "AS";
    position: absolute;
    right: 24px;
    bottom: 8px;
    color: rgba(255, 255, 255, .08);
    font-family: Didot, Bodoni 72, "Bodoni MT", Georgia, serif;
    font-size: clamp(90px, 13vw, 180px);
    line-height: .8;
    pointer-events: none;
}

.hero-copy h1 {
    max-width: none;
    font-family: Didot, Bodoni 72, "Bodoni MT", Georgia, serif;
    letter-spacing: -2px;
}

.hero-copy .eyebrow,
.auth-showcase .eyebrow,
.admin-title .eyebrow {
    color: #f7b6bd;
}

.catalog-shell,
.product-detail,
.cart-layout,
.checkout-layout,
.order-success,
.page-head {
    position: relative;
}

.catalog-shell::before,
.page-head::before {
    content: "";
    position: absolute;
    inset: 22px clamp(12px, 4vw, 48px) auto auto;
    width: min(28vw, 230px);
    aspect-ratio: 1;
    background: url("../img/monogram-as.svg") center / contain no-repeat;
    opacity: .1;
    pointer-events: none;
}

.product-card,
.summary-box,
.panel,
.admin-card,
.auth-card,
.cart-row,
.order-items article,
.filter-bar,
.totals-box {
    border: 1px solid rgba(255, 255, 255, .54);
    background: rgba(255, 255, 255, .62);
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px) saturate(135%);
}

.product-card {
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 95, 145, .34);
    box-shadow: 0 30px 90px rgba(17, 20, 24, .16);
}

.product-info h3,
.catalog-toolbar h2,
.page-head h1,
.order-success h1,
.detail-panel h1,
.admin-title h1 {
    font-family: Didot, Bodoni 72, "Bodoni MT", Georgia, serif;
    letter-spacing: -1px;
}

.button,
.btn {
    box-shadow: 0 14px 34px rgba(17, 20, 24, .12);
}

.button-primary,
.btn.primary {
    background: linear-gradient(135deg, #f7a7b4 0%, #f05f91 54%, #c94673 100%);
    color: #fff;
}

.button-light {
    background: rgba(255, 255, 255, .72);
    border-color: rgba(255, 255, 255, .58);
}

.auth-page {
    background:
        linear-gradient(120deg, rgba(5, 5, 5, .42), rgba(240, 95, 145, .2)),
        url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.auth-shell {
    border: 1px solid rgba(255, 255, 255, .52);
    background: rgba(255, 255, 255, .34);
    box-shadow: 0 35px 110px rgba(0, 0, 0, .28);
    backdrop-filter: blur(22px) saturate(145%);
}

.auth-showcase {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, .12), rgba(5, 5, 5, .84)),
        url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1500&q=82") center / cover;
}

.auth-showcase h1,
.auth-card h2 {
    font-family: Didot, Bodoni 72, "Bodoni MT", Georgia, serif;
    letter-spacing: -1px;
}

.auth-card {
    gap: 18px;
    background: rgba(255, 250, 250, .82);
    backdrop-filter: blur(26px) saturate(140%);
}

.auth-card label {
    gap: 9px;
}

.auth-card input {
    min-height: 52px;
    border-color: rgba(255, 255, 255, .64);
    background: rgba(255, 255, 255, .76);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.auth-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 12px;
    padding-top: 6px;
}

.auth-actions .button {
    width: min(100%, 320px);
    min-height: 50px;
}

.admin-body {
    background:
        radial-gradient(circle at 92% 5%, rgba(240, 95, 145, .18), transparent 24%),
        radial-gradient(circle at 16% 82%, rgba(221, 176, 170, .28), transparent 25%),
        linear-gradient(135deg, #fff8f8, #f4eded 52%, #fff);
}

.admin-sidebar {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, .96), rgba(22, 14, 18, .94)),
        url("../img/monogram-as.svg") center 86% / 150px auto no-repeat;
}

.admin-topbar,
.admin-card,
.panel {
    background: rgba(255, 255, 255, .64);
    border-color: rgba(255, 255, 255, .52);
    backdrop-filter: blur(22px) saturate(135%);
}

.admin-nav a.active,
.admin-nav a:hover {
    background: rgba(255, 255, 255, .13);
    box-shadow: inset 0 0 0 1px rgba(247, 182, 189, .16);
}

.admin-nav a.active span,
.admin-nav a:hover span {
    background: #f05f91;
    box-shadow: 0 0 0 5px rgba(240, 95, 145, .16);
}

.service-info-band {
    display: grid;
    grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
    gap: 22px;
    align-items: stretch;
    padding: clamp(30px, 5vw, 64px) clamp(18px, 4vw, 54px);
}

.service-info-copy,
.service-card,
.checkout-service-note,
.checkout-payment-list article,
.payment-method-card {
    border: 1px solid rgba(255, 255, 255, .54);
    border-radius: 8px;
    background: rgba(255, 255, 255, .6);
    box-shadow: 0 22px 60px rgba(17, 20, 24, .1);
    backdrop-filter: blur(22px) saturate(135%);
}

.service-info-copy {
    display: grid;
    align-content: center;
    padding: clamp(22px, 4vw, 36px);
    background:
        linear-gradient(135deg, rgba(5, 5, 5, .88), rgba(38, 20, 29, .78)),
        url("../img/monogram-as.svg") 92% 92% / 150px auto no-repeat;
    color: #fff;
}

.service-info-copy h2 {
    margin: 0;
    font-family: Didot, Bodoni 72, "Bodoni MT", Georgia, serif;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1;
}

.service-info-copy p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .82);
}

.service-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.service-card {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 22px;
}

.service-card-wide {
    grid-column: 1 / -1;
}

.service-card > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(240, 95, 145, .13);
    color: var(--rose-dark);
    font-weight: 950;
}

.service-card h3,
.payment-method-card h3 {
    margin: 0;
    font-family: Didot, Bodoni 72, "Bodoni MT", Georgia, serif;
    font-size: 30px;
    line-height: 1;
}

.service-card p {
    margin: 0;
    color: var(--muted);
}

.payment-chip-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.payment-chip-list span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border: 1px solid rgba(240, 95, 145, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .7);
    color: #332f31;
    font-weight: 850;
}

.checkout-service-note,
.checkout-payment-list article,
.checkout-zone-list article {
    display: grid;
    gap: 4px;
    margin-top: 12px;
    padding: 12px;
}

.checkout-payment-list,
.checkout-zone-list {
    display: grid;
    gap: 10px;
    margin-top: 12px;
}

.checkout-payment-list > strong,
.checkout-zone-list > strong,
.checkout-service-note > strong {
    color: var(--ink);
}

.checkout-payment-list article,
.checkout-zone-list article {
    border-bottom: 0;
}

.checkout-payment-list article span,
.checkout-zone-list article span {
    font-weight: 900;
}

.checkout-payment-list article small,
.checkout-service-note span {
    color: var(--muted);
}

.checkout-zone-list article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.delivery-zone-field[hidden] {
    display: none;
}

.payment-admin-panel {
    overflow: hidden;
}

.payment-method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.payment-method-card {
    display: grid;
    gap: 16px;
    padding: 18px;
}

.payment-method-card.is-muted {
    opacity: .62;
}

.payment-method-card > div:first-child > span {
    display: inline-flex;
    width: max-content;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(240, 95, 145, .12);
    color: var(--rose-dark);
    font-size: 12px;
    font-weight: 950;
}

.payment-method-card p {
    margin: 8px 0 0;
    color: var(--muted);
}

.payment-method-card dl {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .48);
}

.payment-method-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.payment-method-card dt {
    color: var(--muted);
    font-size: 12px;
    font-weight: 850;
}

.payment-method-card dd {
    margin: 0;
    font-weight: 850;
    text-align: right;
}

@media (max-width: 980px) {
    .site-header + main {
        margin-top: 0;
    }

    .hero-shop {
        padding-top: 42px;
    }

    .service-info-band {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .site-header {
        margin: 0;
        border-radius: 0;
    }

    .hero-copy {
        padding: 22px;
    }

    .brand img,
    .auth-logo-line img,
    .admin-brand img {
        height: 44px;
    }

    .service-info-grid {
        grid-template-columns: 1fr;
    }
}

/* AndiStore refined black and rose theme */
:root {
    --ink: #1a1115;
    --muted: #9a7f88;
    --line: rgba(255, 182, 203, .22);
    --paper: #120d10;
    --soft: #24161d;
    --rose: #f05f91;
    --rose-dark: #bf315f;
    --sage: #0b090b;
    --sage-soft: rgba(240, 95, 145, .18);
    --gold: #f4c2cb;
    --blush: #f1a7ba;
    --glass: rgba(34, 22, 29, .78);
    --glass-strong: rgba(44, 26, 35, .9);
    --shadow: 0 24px 70px rgba(3, 2, 3, .34);
}

body {
    color: #f8e9ee;
    background:
        radial-gradient(circle at 12% 10%, rgba(240, 95, 145, .22), transparent 30%),
        radial-gradient(circle at 86% 18%, rgba(244, 194, 203, .12), transparent 24%),
        linear-gradient(135deg, #0b080a 0%, #181016 42%, #120d10 100%);
}

.site-header {
    border-color: rgba(240, 95, 145, .22);
    background: rgba(13, 9, 12, .82);
    box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
}

.brand img,
.auth-logo-line img,
.admin-brand img {
    height: 68px;
    border-radius: 8px;
    background: #050505;
    border-color: rgba(240, 95, 145, .28);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .34);
}

.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background:
        radial-gradient(circle at 50% 42%, rgba(240, 95, 145, .26), transparent 34%),
        linear-gradient(135deg, #050405 0%, #140d12 48%, #0a0709 100%);
    opacity: 1;
    visibility: visible;
    transition: opacity .5s ease, visibility .5s ease;
}

.splash-screen.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-logo-wrap {
    display: grid;
    place-items: center;
    width: min(72vw, 430px);
    padding: clamp(20px, 5vw, 34px);
    border: 1px solid rgba(240, 95, 145, .3);
    border-radius: 8px;
    background: rgba(18, 10, 15, .72);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .42), 0 0 70px rgba(240, 95, 145, .14);
    backdrop-filter: blur(18px) saturate(140%);
    animation: splashLogoIn .72s ease both;
}

.splash-logo-wrap img {
    width: min(100%, 360px);
    height: auto;
    border-radius: 8px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .38);
}

@keyframes splashLogoIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.main-nav a,
.rate-chip {
    background: rgba(255, 182, 203, .08);
    border-color: rgba(240, 95, 145, .18);
    color: #f3cbd5;
}

.main-nav a.active,
.main-nav a:hover {
    background: rgba(240, 95, 145, .2);
    color: #fff5f8;
    box-shadow: 0 10px 28px rgba(240, 95, 145, .16);
}

.hero-shop {
    background:
        linear-gradient(90deg, rgba(5, 4, 5, .92), rgba(22, 11, 17, .64) 58%, rgba(240, 95, 145, .24)),
        url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.hero-copy {
    border-color: rgba(240, 95, 145, .28);
    background: rgba(12, 8, 11, .5);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

.hero-copy .eyebrow,
.auth-showcase .eyebrow,
.admin-title .eyebrow,
.eyebrow {
    color: #f4a6bc;
}

.section,
.page-wrap,
.service-info-band,
.admin-main {
    color: #f8e9ee;
}

.catalog-toolbar h2,
.section-header h2,
.page-head h1,
.admin-title h1,
.product-info h3,
.service-card h3,
.payment-method-card h3,
.panel h2,
.auth-card h2 {
    color: #fff3f6;
}

.section-header p,
.page-title p,
.admin-title p,
.product-info p,
.service-card p,
.payment-method-card p,
.muted,
small {
    color: #caa9b3;
}

.product-card,
.summary-box,
.panel,
.admin-card,
.auth-card,
.cart-row,
.order-items article,
.filter-bar,
.totals-box,
.service-card,
.checkout-service-note,
.checkout-payment-list article,
.checkout-zone-list article,
.payment-method-card {
    border-color: rgba(240, 95, 145, .2);
    background: rgba(38, 23, 31, .86);
    color: #f8e9ee;
    box-shadow: 0 22px 65px rgba(0, 0, 0, .3);
}

.product-card:hover,
.payment-method-card:hover {
    border-color: rgba(240, 95, 145, .5);
    box-shadow: 0 30px 90px rgba(240, 95, 145, .14);
}

.product-media,
.thumb {
    background: #120d10;
}

.button-primary,
.btn.primary {
    background: linear-gradient(135deg, #ff9fbd 0%, #f05f91 50%, #aa244f 100%);
    color: #fff;
    box-shadow: 0 16px 38px rgba(240, 95, 145, .24);
}

.button-light,
.btn.secondary,
.link-btn.secondary {
    background: rgba(255, 182, 203, .1);
    border-color: rgba(240, 95, 145, .24);
    color: #ffe9f0;
}

.button-dark,
.btn,
.link-btn {
    background: #080608;
    color: #fff3f6;
}

input,
select,
textarea,
.auth-card input,
.filter-bar input,
.filter-bar select,
.inline-form select {
    border-color: rgba(240, 95, 145, .24);
    background: rgba(15, 10, 13, .78);
    color: #fff3f6;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

input::placeholder,
textarea::placeholder {
    color: #a98b95;
}

th {
    background: rgba(16, 10, 14, .92);
    color: #f4a6bc;
}

td {
    background: rgba(38, 23, 31, .68);
    color: #f8e9ee;
}

tbody tr:hover td {
    background: rgba(58, 31, 43, .86);
}

.status-pill,
.stock-pill,
.payment-chip-list span,
.main-nav span {
    background: rgba(240, 95, 145, .18);
    border-color: rgba(240, 95, 145, .25);
    color: #ffdce7;
}

.service-info-copy,
.admin-sidebar {
    background:
        linear-gradient(180deg, rgba(6, 4, 6, .98), rgba(35, 14, 25, .94)),
        url("../img/monogram-as.svg") center 86% / 150px auto no-repeat;
}

.admin-body {
    background:
        radial-gradient(circle at 92% 5%, rgba(240, 95, 145, .2), transparent 24%),
        radial-gradient(circle at 14% 76%, rgba(244, 194, 203, .1), transparent 25%),
        linear-gradient(135deg, #0b080a, #181016 52%, #100b0e);
}

.admin-topbar,
.admin-card,
.admin-main .panel {
    background: rgba(37, 22, 30, .88);
    border-color: rgba(240, 95, 145, .2);
}

.auth-page {
    background:
        linear-gradient(120deg, rgba(5, 5, 5, .72), rgba(240, 95, 145, .24)),
        url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.auth-shell {
    border-color: rgba(240, 95, 145, .22);
    background: rgba(16, 10, 14, .72);
}

.auth-card {
    background: rgba(35, 21, 29, .9);
}

.auth-logo-line span,
.admin-topbar span,
.payment-method-card dt {
    color: #d7a7b6;
}

@media (max-width: 640px) {
    .brand img,
    .auth-logo-line img,
    .admin-brand img {
        height: 56px;
    }

    .splash-logo-wrap {
        width: min(84vw, 360px);
    }
}

/* Luminous pink violet glass theme */
:root {
    --ink: #f8f1ff;
    --muted: #c9b8db;
    --line: rgba(191, 137, 255, .24);
    --paper: #080417;
    --soft: #17102b;
    --rose: #ff7ac8;
    --rose-dark: #9b5cff;
    --sage: #080417;
    --sage-soft: rgba(155, 92, 255, .18);
    --gold: #ffb3de;
    --blush: #d9a8ff;
    --glass: rgba(41, 22, 76, .58);
    --glass-strong: rgba(54, 28, 92, .78);
    --shadow: 0 24px 80px rgba(7, 3, 24, .44);
}

body,
.admin-body {
    color: #f8f1ff;
    background:
        radial-gradient(circle at 12% 0%, rgba(255, 122, 200, .24), transparent 28%),
        radial-gradient(circle at 92% 10%, rgba(66, 86, 255, .22), transparent 24%),
        radial-gradient(circle at 52% 92%, rgba(155, 92, 255, .2), transparent 30%),
        linear-gradient(135deg, #080417 0%, #12072c 45%, #060318 100%);
}

.site-header {
    border-color: rgba(191, 137, 255, .26);
    background: rgba(14, 7, 34, .72);
    box-shadow: 0 18px 55px rgba(6, 2, 22, .34);
}

.brand img,
.auth-logo-line img,
.admin-brand img {
    border-color: rgba(255, 122, 200, .34);
    box-shadow: 0 16px 46px rgba(8, 3, 26, .48), 0 0 34px rgba(155, 92, 255, .18);
}

.splash-screen {
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 122, 200, .28), transparent 30%),
        radial-gradient(circle at 72% 10%, rgba(54, 80, 255, .22), transparent 26%),
        linear-gradient(135deg, #080417 0%, #170734 50%, #060318 100%);
}

.splash-logo-wrap {
    border-color: rgba(255, 122, 200, .38);
    background: linear-gradient(160deg, rgba(74, 35, 116, .52), rgba(17, 8, 42, .7));
    box-shadow: 0 28px 90px rgba(4, 1, 18, .5), 0 0 80px rgba(155, 92, 255, .24);
}

.main-nav a,
.rate-chip,
.button-light,
.btn.secondary,
.link-btn.secondary,
.payment-chip-list span,
.status-pill,
.stock-pill {
    border-color: rgba(191, 137, 255, .26);
    background: rgba(118, 73, 205, .16);
    color: #eadcff;
}

.main-nav a.active,
.main-nav a:hover,
.admin-nav a.active,
.admin-nav a:hover {
    background: linear-gradient(135deg, rgba(255, 122, 200, .24), rgba(155, 92, 255, .22));
    color: #fff;
    box-shadow: 0 10px 34px rgba(155, 92, 255, .2);
}

.hero-shop {
    background:
        linear-gradient(90deg, rgba(8, 4, 23, .94), rgba(24, 9, 52, .7) 58%, rgba(255, 122, 200, .18)),
        url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.hero-copy,
.product-card,
.summary-box,
.panel,
.admin-card,
.auth-card,
.cart-row,
.order-items article,
.filter-bar,
.totals-box,
.service-card,
.checkout-service-note,
.checkout-payment-list article,
.checkout-zone-list article,
.payment-method-card,
.admin-topbar,
.admin-main .panel {
    border-color: rgba(191, 137, 255, .24);
    background: linear-gradient(160deg, rgba(70, 34, 113, .52), rgba(17, 8, 42, .68));
    color: #f8f1ff;
    box-shadow: 0 22px 70px rgba(5, 2, 19, .38);
}

.product-card:hover,
.payment-method-card:hover {
    border-color: rgba(255, 122, 200, .5);
    box-shadow: 0 30px 90px rgba(155, 92, 255, .22);
}

.hero-copy .eyebrow,
.auth-showcase .eyebrow,
.admin-title .eyebrow,
.eyebrow,
.payment-method-card dt,
.admin-topbar span,
.auth-logo-line span {
    color: #ffb3de;
}

.catalog-toolbar h2,
.section-header h2,
.page-head h1,
.admin-title h1,
.product-info h3,
.service-card h3,
.payment-method-card h3,
.panel h2,
.auth-card h2,
.auth-showcase h1 {
    color: #fff8ff;
}

.section-header p,
.page-title p,
.admin-title p,
.product-info p,
.service-card p,
.payment-method-card p,
.muted,
small,
.auth-card p {
    color: #cdbfe2;
}

.button-primary,
.btn.primary {
    background: linear-gradient(135deg, #ff8bd3 0%, #b65cff 52%, #7d5cff 100%);
    color: #fff;
    box-shadow: 0 16px 42px rgba(155, 92, 255, .32);
}

.button-primary:hover,
.btn.primary:hover {
    background: linear-gradient(135deg, #ffa1dc 0%, #c574ff 52%, #8f76ff 100%);
}

.button-dark,
.btn,
.link-btn {
    background: linear-gradient(135deg, #140b2e, #07031a);
    color: #fff8ff;
}

input,
select,
textarea,
.auth-card input,
.filter-bar input,
.filter-bar select,
.inline-form select {
    border-color: rgba(191, 137, 255, .28);
    background: rgba(236, 244, 255, .94);
    color: #191126;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .75);
}

input::placeholder,
textarea::placeholder {
    color: #786d86;
}

th {
    background: rgba(17, 8, 42, .88);
    color: #ffb3de;
}

td {
    background: rgba(44, 22, 77, .58);
    color: #f8f1ff;
}

tbody tr:hover td {
    background: rgba(70, 34, 113, .72);
}

.product-media,
.thumb {
    background: #0e0825;
}

.service-info-copy,
.admin-sidebar {
    background:
        linear-gradient(180deg, rgba(9, 4, 25, .98), rgba(36, 12, 67, .94)),
        url("../img/monogram-as.svg") center 86% / 150px auto no-repeat;
}

.auth-page {
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 122, 200, .24), transparent 30%),
        radial-gradient(circle at 94% 8%, rgba(72, 88, 255, .24), transparent 28%),
        radial-gradient(circle at 50% 100%, rgba(155, 92, 255, .28), transparent 34%),
        linear-gradient(135deg, #080417 0%, #14072d 50%, #060318 100%);
}

.auth-shell {
    border-color: rgba(191, 137, 255, .24);
    background: rgba(18, 8, 42, .56);
    box-shadow: 0 35px 110px rgba(4, 1, 18, .48);
}

.auth-showcase {
    background:
        linear-gradient(180deg, rgba(17, 8, 42, .18), rgba(8, 4, 23, .86)),
        url("https://images.unsplash.com/photo-1441986300917-64674bd600d8?auto=format&fit=crop&w=1500&q=82") center / cover;
}

.auth-card {
    background: linear-gradient(160deg, rgba(82, 39, 125, .55), rgba(22, 9, 48, .78));
}

.auth-actions {
    flex-direction: column;
}

.auth-actions .button {
    width: min(100%, 320px);
}

/* Pink-focused glassmorphism refinement */
:root {
    --ink: #fff4fa;
    --muted: #e7bdd0;
    --line: rgba(255, 154, 207, .28);
    --paper: #0b0710;
    --soft: #21101c;
    --rose: #ff5eb8;
    --rose-dark: #e93394;
    --sage: #0b0710;
    --sage-soft: rgba(255, 94, 184, .2);
    --gold: #ffc5e4;
    --blush: #ff9bcf;
    --glass: rgba(53, 21, 43, .62);
    --glass-strong: rgba(70, 25, 55, .78);
    --shadow: 0 24px 80px rgba(18, 2, 16, .44);
}

body,
.admin-body {
    color: #fff4fa;
    background:
        radial-gradient(circle at 22% 0%, rgba(255, 94, 184, .32), transparent 30%),
        radial-gradient(circle at 76% 8%, rgba(255, 180, 224, .2), transparent 28%),
        radial-gradient(circle at 50% 100%, rgba(255, 76, 166, .2), transparent 34%),
        linear-gradient(135deg, #07040a 0%, #180a17 46%, #0d0610 100%);
}

.site-header {
    border-color: rgba(255, 154, 207, .32);
    background: linear-gradient(135deg, rgba(15, 7, 17, .76), rgba(51, 18, 43, .62));
    box-shadow: 0 18px 55px rgba(18, 2, 16, .38), 0 0 42px rgba(255, 94, 184, .1);
}

.brand img,
.auth-logo-line img,
.admin-brand img {
    border-color: rgba(255, 154, 207, .48);
    box-shadow: 0 16px 46px rgba(10, 2, 12, .5), 0 0 38px rgba(255, 94, 184, .24);
}

.splash-screen {
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 94, 184, .34), transparent 32%),
        radial-gradient(circle at 72% 12%, rgba(255, 180, 224, .18), transparent 26%),
        linear-gradient(135deg, #07040a 0%, #200a1d 52%, #09050d 100%);
}

.splash-logo-wrap {
    border-color: rgba(255, 154, 207, .48);
    background: linear-gradient(155deg, rgba(86, 28, 68, .58), rgba(21, 8, 22, .76));
    box-shadow: 0 28px 90px rgba(10, 2, 12, .54), 0 0 90px rgba(255, 94, 184, .24);
}

.main-nav a,
.rate-chip,
.button-light,
.btn.secondary,
.link-btn.secondary,
.payment-chip-list span,
.status-pill,
.stock-pill {
    border-color: rgba(255, 154, 207, .32);
    background: rgba(255, 94, 184, .12);
    color: #ffe1ef;
}

.main-nav a.active,
.main-nav a:hover,
.admin-nav a.active,
.admin-nav a:hover {
    background: linear-gradient(135deg, rgba(255, 94, 184, .3), rgba(255, 179, 221, .18));
    color: #fff;
    box-shadow: 0 10px 34px rgba(255, 94, 184, .22);
}

.hero-shop {
    background:
        linear-gradient(90deg, rgba(7, 4, 10, .94), rgba(39, 12, 34, .68) 58%, rgba(255, 94, 184, .24)),
        url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.hero-copy,
.product-card,
.summary-box,
.panel,
.admin-card,
.auth-card,
.cart-row,
.order-items article,
.filter-bar,
.totals-box,
.service-card,
.checkout-service-note,
.checkout-payment-list article,
.checkout-zone-list article,
.payment-method-card,
.admin-topbar,
.admin-main .panel {
    border-color: rgba(255, 154, 207, .28);
    background: linear-gradient(155deg, rgba(72, 24, 57, .58), rgba(21, 8, 22, .72));
    color: #fff4fa;
    box-shadow: 0 22px 70px rgba(18, 2, 16, .38);
}

.product-card:hover,
.payment-method-card:hover {
    border-color: rgba(255, 154, 207, .62);
    box-shadow: 0 30px 90px rgba(255, 94, 184, .2);
}

.hero-copy .eyebrow,
.auth-showcase .eyebrow,
.admin-title .eyebrow,
.eyebrow,
.payment-method-card dt,
.admin-topbar span,
.auth-logo-line span {
    color: #ffc0df;
}

.catalog-toolbar h2,
.section-header h2,
.page-head h1,
.admin-title h1,
.product-info h3,
.service-card h3,
.payment-method-card h3,
.panel h2,
.auth-card h2,
.auth-showcase h1 {
    color: #fff7fb;
}

.section-header p,
.page-title p,
.admin-title p,
.product-info p,
.service-card p,
.payment-method-card p,
.muted,
small,
.auth-card p {
    color: #e7bdd0;
}

.button-primary,
.btn.primary {
    background: linear-gradient(135deg, #ffc0df 0%, #ff5eb8 48%, #e93394 100%);
    color: #fff;
    box-shadow: 0 16px 42px rgba(255, 94, 184, .34);
}

.button-primary:hover,
.btn.primary:hover {
    background: linear-gradient(135deg, #ffd0e8 0%, #ff70c0 48%, #f143a1 100%);
}

.button-dark,
.btn,
.link-btn {
    background: linear-gradient(135deg, #2b1024, #09050d);
    color: #fff7fb;
}

input,
select,
textarea,
.auth-card input,
.filter-bar input,
.filter-bar select,
.inline-form select {
    border-color: rgba(255, 154, 207, .34);
    background: rgba(255, 241, 248, .94);
    color: #20101c;
}

input::placeholder,
textarea::placeholder {
    color: #92647d;
}

th {
    background: rgba(25, 8, 23, .9);
    color: #ffc0df;
}

td {
    background: rgba(57, 20, 47, .6);
    color: #fff4fa;
}

tbody tr:hover td {
    background: rgba(78, 27, 62, .76);
}

.product-media,
.thumb {
    background: #120711;
}

.service-info-copy,
.admin-sidebar {
    background:
        linear-gradient(180deg, rgba(8, 4, 10, .98), rgba(54, 15, 43, .94)),
        url("../img/monogram-as.svg") center 86% / 150px auto no-repeat;
}

.auth-page {
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 94, 184, .3), transparent 30%),
        radial-gradient(circle at 82% 6%, rgba(255, 190, 228, .18), transparent 28%),
        radial-gradient(circle at 50% 100%, rgba(255, 76, 166, .24), transparent 34%),
        linear-gradient(135deg, #07040a 0%, #1e0a1d 52%, #09050d 100%);
}

.auth-shell {
    border-color: rgba(255, 154, 207, .3);
    background: rgba(23, 8, 23, .58);
    box-shadow: 0 35px 110px rgba(10, 2, 12, .5);
}

.auth-card {
    background: linear-gradient(155deg, rgba(84, 28, 66, .6), rgba(23, 8, 23, .78));
}

/* Brighter rose correction */
:root {
    --rose: #ff78c8;
    --rose-dark: #ff3fae;
    --muted: #f0c8dc;
    --line: rgba(255, 181, 222, .34);
    --soft: #2b1324;
    --glass: rgba(95, 38, 76, .58);
    --glass-strong: rgba(110, 43, 86, .72);
}

body,
.admin-body {
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 120, 200, .42), transparent 32%),
        radial-gradient(circle at 82% 8%, rgba(255, 202, 232, .26), transparent 30%),
        radial-gradient(circle at 52% 100%, rgba(255, 85, 185, .3), transparent 36%),
        linear-gradient(135deg, #09050a 0%, #241024 46%, #100812 100%);
}

.splash-logo-wrap {
    width: min(56vw, 215px);
    padding: clamp(12px, 3vw, 18px);
    background: linear-gradient(155deg, rgba(130, 48, 102, .62), rgba(37, 13, 34, .72));
    box-shadow: 0 22px 70px rgba(10, 2, 12, .48), 0 0 90px rgba(255, 120, 200, .32);
}

.splash-logo-wrap img {
    width: min(100%, 180px);
}

.splash-screen {
    background:
        radial-gradient(circle at 50% 42%, rgba(255, 120, 200, .48), transparent 32%),
        radial-gradient(circle at 76% 14%, rgba(255, 202, 232, .24), transparent 28%),
        linear-gradient(135deg, #080408 0%, #2d1028 52%, #0b050c 100%);
}

.site-header,
.hero-copy,
.product-card,
.summary-box,
.panel,
.admin-card,
.auth-card,
.cart-row,
.order-items article,
.filter-bar,
.totals-box,
.service-card,
.checkout-service-note,
.checkout-payment-list article,
.checkout-zone-list article,
.payment-method-card,
.admin-topbar,
.admin-main .panel {
    border-color: rgba(255, 181, 222, .36);
    background: linear-gradient(155deg, rgba(104, 39, 82, .64), rgba(31, 12, 29, .66));
}

.button-primary,
.btn.primary {
    background: linear-gradient(135deg, #ffd1e9 0%, #ff78c8 42%, #ff3fae 100%);
    box-shadow: 0 16px 44px rgba(255, 120, 200, .38);
}

.button-primary:hover,
.btn.primary:hover {
    background: linear-gradient(135deg, #ffe0f0 0%, #ff8ed2 42%, #ff55ba 100%);
}

.main-nav a,
.rate-chip,
.button-light,
.btn.secondary,
.link-btn.secondary,
.payment-chip-list span,
.status-pill,
.stock-pill {
    border-color: rgba(255, 181, 222, .38);
    background: rgba(255, 120, 200, .18);
}

.main-nav a.active,
.main-nav a:hover,
.admin-nav a.active,
.admin-nav a:hover {
    background: linear-gradient(135deg, rgba(255, 120, 200, .4), rgba(255, 202, 232, .24));
}

.hero-copy .eyebrow,
.auth-showcase .eyebrow,
.admin-title .eyebrow,
.eyebrow,
.payment-method-card dt,
.admin-topbar span,
.auth-logo-line span {
    color: #ffd1e9;
}

.service-info-copy,
.admin-sidebar {
    background:
        linear-gradient(180deg, rgba(9, 4, 9, .98), rgba(88, 25, 68, .9)),
        url("../img/monogram-as.svg") center 86% / 150px auto no-repeat;
}

.auth-page {
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 120, 200, .42), transparent 32%),
        radial-gradient(circle at 82% 6%, rgba(255, 202, 232, .26), transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(255, 85, 185, .32), transparent 36%),
        linear-gradient(135deg, #09050a 0%, #261024 52%, #100812 100%);
}

.auth-card {
    background: linear-gradient(155deg, rgba(120, 44, 95, .66), rgba(31, 12, 29, .72));
}

@media (max-width: 640px) {
    .splash-logo-wrap {
        width: min(62vw, 190px);
    }

    .splash-logo-wrap img {
        width: min(100%, 160px);
    }
}

/* Boutique ecommerce experience */
.site-header {
    display: block;
    padding: 0;
    overflow: hidden;
}

.site-header + main {
    margin-top: 0;
}

.announcement-bar {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 4vw, 44px);
    padding: 7px 16px;
    border-bottom: 1px solid rgba(255, 181, 222, .22);
    background: linear-gradient(90deg, rgba(255, 120, 200, .28), rgba(255, 202, 232, .14), rgba(255, 120, 200, .28));
    color: #fff7fb;
    font-size: 12px;
    font-weight: 850;
    text-align: center;
    text-transform: uppercase;
}

.shop-header-main {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
    gap: 22px;
    align-items: center;
    padding: 16px clamp(16px, 4vw, 48px) 12px;
}

.header-search {
    display: flex;
    align-items: center;
    max-width: 430px;
    border: 1px solid rgba(255, 181, 222, .34);
    border-radius: 999px;
    background: rgba(255, 120, 200, .12);
    overflow: hidden;
}

.header-search input {
    min-height: 42px;
    flex: 1;
    border: 0;
    background: transparent;
    color: #fff7fb;
}

.header-search input::placeholder {
    color: #f0c8dc;
}

.header-search button {
    width: 44px;
    min-height: 42px;
    border: 0;
    background: rgba(255, 120, 200, .18);
    color: #fff7fb;
    cursor: pointer;
}

.shop-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.shop-actions a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 181, 222, .28);
    border-radius: 999px;
    background: rgba(255, 120, 200, .1);
    color: #ffe1ef;
    font-size: 13px;
    font-weight: 850;
}

.shop-actions .icon-link,
.collection-nav a,
.site-footer nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.shop-actions .icon-link svg,
.collection-nav a svg,
.site-footer nav a svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
    flex: 0 0 auto;
}

.shop-actions .icon-link span {
    line-height: 1;
}

.bag-feedback {
    position: absolute;
    right: 0;
    bottom: -22px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(44, 16, 36, .9);
    color: #fff7fb;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-3px) scale(.94);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.bag-feedback.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.shop-actions a:hover,
.shop-actions a.active {
    background: rgba(255, 120, 200, .24);
    color: #fff;
}

.bag-link span {
    min-width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: #ff78c8;
    color: #1c0817;
    font-size: 12px;
}

.collection-nav {
    justify-content: center;
    gap: 6px;
    padding: 0 clamp(16px, 4vw, 48px) 14px;
    overflow-x: auto;
}

.collection-nav a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex: 0 0 auto;
    min-height: 34px;
    padding: 8px 11px;
    font-size: 12px;
    text-transform: uppercase;
}

.collection-edits,
.shop-look-section,
.account-hero,
.account-grid {
    padding: clamp(30px, 5vw, 64px) clamp(18px, 4vw, 54px);
}

.edit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.edit-card {
    min-height: clamp(220px, 30vw, 390px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 181, 222, .32);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(7, 4, 10, .04), rgba(9, 4, 10, .78)),
        radial-gradient(circle at 28% 18%, rgba(255, 202, 232, .34), transparent 26%),
        linear-gradient(135deg, rgba(255, 120, 200, .34), rgba(45, 16, 38, .86));
    box-shadow: 0 24px 70px rgba(18, 2, 16, .28);
    overflow: hidden;
}

.edit-card-2 {
    background:
        linear-gradient(180deg, rgba(7, 4, 10, .04), rgba(9, 4, 10, .78)),
        radial-gradient(circle at 70% 12%, rgba(255, 211, 235, .3), transparent 28%),
        linear-gradient(135deg, rgba(255, 91, 183, .38), rgba(52, 18, 46, .86));
}

.edit-card-3 {
    background:
        linear-gradient(180deg, rgba(7, 4, 10, .04), rgba(9, 4, 10, .78)),
        radial-gradient(circle at 34% 10%, rgba(255, 181, 222, .32), transparent 30%),
        linear-gradient(135deg, rgba(255, 133, 203, .34), rgba(39, 13, 34, .88));
}

.edit-card-4 {
    background:
        linear-gradient(180deg, rgba(7, 4, 10, .04), rgba(9, 4, 10, .78)),
        radial-gradient(circle at 74% 20%, rgba(255, 202, 232, .32), transparent 26%),
        linear-gradient(135deg, rgba(255, 76, 166, .35), rgba(47, 16, 40, .88));
}

.edit-card span {
    max-width: 12ch;
    color: #fff7fb;
    font-family: Didot, Bodoni 72, "Bodoni MT", Georgia, serif;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
}

.edit-card strong {
    width: max-content;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 241, 248, .92);
    color: #2b1024;
    font-size: 12px;
    text-transform: uppercase;
}

.shop-look-section {
    display: grid;
    grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
    gap: 18px;
    align-items: stretch;
}

.shop-look-copy,
.look-card,
.account-card {
    border: 1px solid rgba(255, 181, 222, .32);
    border-radius: 8px;
    background: linear-gradient(155deg, rgba(104, 39, 82, .64), rgba(31, 12, 29, .66));
    box-shadow: 0 22px 70px rgba(18, 2, 16, .28);
}

.shop-look-copy {
    display: grid;
    align-content: center;
    padding: clamp(22px, 4vw, 36px);
}

.shop-look-copy h2,
.account-hero h1,
.account-card h2 {
    margin: 0;
    color: #fff7fb;
    font-family: Didot, Bodoni 72, "Bodoni MT", Georgia, serif;
    line-height: 1;
}

.shop-look-copy h2,
.account-hero h1 {
    font-size: clamp(34px, 5vw, 62px);
}

.shop-look-copy p,
.account-hero p,
.account-card p {
    color: #e7bdd0;
}

.shop-look-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.look-card {
    overflow: hidden;
}

.site-footer nav a {
    position: relative;
    transition: transform .2s ease, color .2s ease;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
    transform: translateY(-1px);
}

.look-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: #120711;
}

.look-card span,
.look-card strong {
    display: block;
    padding: 0 12px;
}

.look-card span {
    margin-top: 12px;
    color: #fff4fa;
    font-weight: 850;
}

.look-card strong {
    padding-bottom: 14px;
    color: #ffc0df;
}

.account-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(255, 181, 222, .22);
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.account-card {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 22px;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    position: relative;
    overflow: hidden;
}

.account-card > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 120, 200, .18);
    color: #ffd1e9;
    font-weight: 950;
}

.account-card::after {
    content: "";
    position: absolute;
    inset: auto -12% -35% auto;
    width: 180px;
    height: 180px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 193, 229, .28), rgba(255, 193, 229, 0) 66%);
    opacity: 0;
    transform: scale(.82);
    transition: opacity .24s ease, transform .24s ease;
    pointer-events: none;
}

.account-card:hover,
.account-card:focus-within {
    transform: translateY(-6px);
    border-color: rgba(236, 103, 181, .36);
    box-shadow: 0 28px 70px rgba(236, 103, 181, .18);
}

.account-card:hover::after,
.account-card:focus-within::after {
    opacity: 1;
    transform: scale(1);
}

.account-track-form {
    display: grid;
    gap: 10px;
}

.footer-newsletter {
    display: grid;
    gap: 8px;
    min-width: min(100%, 360px);
}

.footer-newsletter label {
    color: #ffc0df;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-newsletter div {
    display: flex;
    gap: 8px;
}

.footer-newsletter input {
    min-width: 0;
}

.site-footer nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 980px) {
    .shop-header-main {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .header-search,
    .shop-actions {
        width: min(100%, 560px);
        justify-content: center;
    }

    .edit-grid,
    .shop-look-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-look-section,
    .account-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .announcement-bar {
        flex-direction: column;
        gap: 2px;
    }

    .shop-header-main {
        padding: 12px;
    }

    .shop-actions a {
        flex: 1 1 auto;
    }

    .edit-grid,
    .shop-look-grid {
        grid-template-columns: 1fr;
    }

    .edit-card {
        min-height: 240px;
    }

    .account-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-newsletter div,
    .site-footer nav {
        justify-content: stretch;
        flex-direction: column;
    }
}

/* Oh Polly inspired boutique header, AndiStore pink edition */
:root {
    --rose: #ff73c7;
    --rose-dark: #f23caf;
    --muted: #7f526c;
    --line: rgba(236, 103, 181, .24);
    --soft: #ffe8f4;
    --glass: rgba(255, 223, 240, .72);
    --glass-strong: rgba(255, 237, 247, .9);
}

body,
.admin-body {
    background:
        radial-gradient(circle at 18% 0%, rgba(255, 115, 199, .34), transparent 30%),
        radial-gradient(circle at 82% 4%, rgba(255, 214, 236, .34), transparent 28%),
        radial-gradient(circle at 50% 100%, rgba(255, 91, 183, .2), transparent 36%),
        linear-gradient(135deg, #fff0f8 0%, #ffd9ed 44%, #fff7fb 100%);
    color: #2c1024;
}

.site-header {
    margin: 0;
    border: 0;
    border-bottom: 1px solid rgba(236, 103, 181, .22);
    border-radius: 0;
    background: rgba(255, 242, 249, .9);
    color: #2c1024;
    box-shadow: 0 12px 38px rgba(236, 103, 181, .12);
    backdrop-filter: blur(18px) saturate(150%);
}

.announcement-bar {
    min-height: 32px;
    padding: 7px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .44);
    background: linear-gradient(90deg, #ff73c7 0%, #ffaad8 52%, #ff73c7 100%);
    color: #fff;
    font-size: 11px;
    letter-spacing: .04em;
}

.shop-header-main {
    grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
    padding: 18px clamp(18px, 4vw, 58px) 14px;
}

.brand img,
.auth-logo-line img,
.admin-brand img {
    height: 60px;
    border-color: rgba(236, 103, 181, .28);
    box-shadow: 0 12px 34px rgba(236, 103, 181, .18);
}

.header-search {
    max-width: 440px;
    border: 1px solid rgba(236, 103, 181, .34);
    border-radius: 999px;
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 12px 30px rgba(236, 103, 181, .12), inset 0 1px 0 rgba(255, 255, 255, .8);
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.header-search:focus-within {
    border-color: rgba(242, 60, 175, .56);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 36px rgba(236, 103, 181, .2), 0 0 0 4px rgba(255, 115, 199, .12);
}

.header-search input {
    min-height: 44px;
    padding: 0 14px 0 18px;
    background: transparent;
    color: #2c1024;
}

.header-search input::placeholder {
    color: #8d5c76;
}

.header-search button {
    width: auto;
    min-height: 36px;
    margin-right: 4px;
    padding: 0 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffb7dc 0%, #ff73c7 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.shop-actions {
    gap: 18px;
}

.shop-actions a {
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #2c1024;
    font-size: 13px;
    text-transform: uppercase;
}

.shop-actions a:hover,
.shop-actions a.active {
    background: transparent;
    color: #f23caf;
}

.bag-link span {
    background: #ff73c7;
    color: #fff;
}

.collection-nav {
    padding: 0 clamp(18px, 4vw, 58px) 13px;
    border-top: 1px solid rgba(236, 103, 181, .12);
}

.collection-nav a {
    min-height: 38px;
    padding: 10px 13px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #3a1830;
    font-size: 12px;
    letter-spacing: .04em;
}

.collection-nav a.active,
.collection-nav a:hover {
    background: transparent;
    color: #f23caf;
    box-shadow: inset 0 -2px 0 #ff73c7;
}

.collection-nav .category-link svg {
    opacity: .78;
}

.hero-shop {
    background:
        linear-gradient(90deg, rgba(44, 16, 36, .58), rgba(255, 115, 199, .18) 58%, rgba(255, 242, 249, .08)),
        url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1900&q=82") center / cover;
}

.hero-copy,
.product-card,
.summary-box,
.panel,
.admin-card,
.auth-card,
.cart-row,
.order-items article,
.filter-bar,
.totals-box,
.service-card,
.checkout-service-note,
.checkout-payment-list article,
.checkout-zone-list article,
.payment-method-card,
.admin-topbar,
.admin-main .panel,
.shop-look-copy,
.look-card,
.account-card {
    border-color: rgba(236, 103, 181, .24);
    background: rgba(255, 240, 248, .78);
    color: #2c1024;
    box-shadow: 0 20px 60px rgba(236, 103, 181, .12);
}

.hero-copy {
    background: rgba(255, 240, 248, .22);
    color: #fff;
}

.catalog-toolbar h2,
.section-header h2,
.page-head h1,
.admin-title h1,
.product-info h3,
.service-card h3,
.payment-method-card h3,
.panel h2,
.auth-card h2,
.auth-showcase h1,
.shop-look-copy h2,
.account-hero h1,
.account-card h2 {
    color: #2c1024;
}

.hero-copy h1,
.hero-copy p,
.hero-copy .eyebrow {
    color: #fff;
}

.section-header p,
.page-title p,
.admin-title p,
.product-info p,
.service-card p,
.payment-method-card p,
.muted,
small,
.auth-card p,
.shop-look-copy p,
.account-hero p,
.account-card p {
    color: #7f526c;
}

.button-primary,
.btn.primary {
    background: linear-gradient(135deg, #ffb7dc 0%, #ff73c7 48%, #f23caf 100%);
    box-shadow: 0 14px 34px rgba(236, 103, 181, .28);
}

.button-light,
.btn.secondary,
.link-btn.secondary,
.payment-chip-list span,
.status-pill,
.stock-pill {
    border-color: rgba(236, 103, 181, .28);
    background: rgba(255, 255, 255, .58);
    color: #3a1830;
}

.edit-card {
    background:
        linear-gradient(180deg, rgba(255, 240, 248, .08), rgba(44, 16, 36, .44)),
        radial-gradient(circle at 28% 18%, rgba(255, 231, 244, .58), transparent 28%),
        linear-gradient(135deg, rgba(255, 115, 199, .52), rgba(255, 173, 216, .36));
}

.edit-card-2,
.edit-card-3,
.edit-card-4 {
    background:
        linear-gradient(180deg, rgba(255, 240, 248, .08), rgba(44, 16, 36, .42)),
        radial-gradient(circle at 68% 16%, rgba(255, 231, 244, .52), transparent 30%),
        linear-gradient(135deg, rgba(255, 91, 183, .5), rgba(255, 197, 230, .34));
}

.look-card span,
.look-card strong {
    color: #2c1024;
}

@media (max-width: 980px) {
    .shop-header-main {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .header-search,
    .shop-actions {
        width: min(100%, 560px);
    }
}

.catalog-toolbar,
.section-header,
.page-head,
.admin-title,
.account-hero {
    color: #2c1024;
}

.category-tabs a,
.search-form input,
.search-form button {
    color: #2c1024;
}

.search-form {
    padding: 8px;
    border: 1px solid rgba(236, 103, 181, .28);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 12px 30px rgba(236, 103, 181, .1);
}

.search-form input {
    border: 0;
    background: transparent;
}

.search-form .button,
.search-form button {
    min-height: 38px;
    border-radius: 999px;
}

/* Contrast correction for pale surfaces */
.page-head,
.catalog-toolbar,
.section-header,
.account-hero,
.admin-title,
.summary-box,
.panel,
.cart-row,
.look-card,
.account-card,
.service-card,
.payment-method-card {
    color: #2c1024;
}

.page-head .eyebrow,
.catalog-toolbar .eyebrow,
.section-header .eyebrow,
.account-hero .eyebrow,
.admin-title .eyebrow,
.summary-box h2,
.summary-box .total-line,
.checkout-service-note strong,
.checkout-zone-list > strong,
.checkout-payment-list > strong {
    color: #91295f;
}

.product-info small,
td small,
.order-items small,
.summary-box > div span,
.summary-box p,
.checkout-service-note span,
.checkout-payment-list article small,
.payment-method-card dt,
.site-footer span,
.site-footer nav a,
.footer-newsletter input,
.category-tabs a,
.look-card span,
.account-card p,
.service-card p,
.product-info p,
.muted,
small {
    color: #6b3853;
}

.site-footer strong,
.footer-newsletter label,
.site-footer nav a:hover,
.site-footer nav a:focus-visible,
.product-info h3,
.look-card strong,
.account-card h2,
.service-card h3,
.payment-method-card h3,
.checkout-payment-list article span,
.checkout-zone-list article span {
    color: #2c1024;
}

.category-tabs a {
    border-color: rgba(236, 103, 181, .3);
    background: rgba(255, 255, 255, .76);
}

.category-tabs a.active,
.category-tabs a:hover {
    color: #fff;
    background: linear-gradient(135deg, #ff9bd3 0%, #f23caf 100%);
    border-color: transparent;
}

.page-head.compact {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(236, 103, 181, .18);
}

.site-footer span {
    color: #5b2845;
}

.footer-newsletter label {
    color: #7d1f55;
    letter-spacing: .05em;
}

.footer-newsletter input {
    border: 1px solid rgba(236, 103, 181, .34);
    background: rgba(255, 255, 255, .88);
    color: #2c1024;
}

.footer-newsletter input::placeholder {
    color: #8b5974;
}

/* Header navigation contrast correction */
.shop-actions a,
.shop-actions .icon-link span {
    color: #351328;
    font-weight: 900;
}

.shop-actions a svg {
    color: currentColor;
}

.collection-nav {
    gap: 10px;
}

.collection-nav a {
    border: 1px solid rgba(236, 103, 181, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .52);
    color: #7d1f55;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(236, 103, 181, .08);
}

.collection-nav a span,
.collection-nav a svg {
    color: currentColor;
    opacity: 1;
}

.collection-nav a.active,
.collection-nav a:hover,
.collection-nav a:focus-visible {
    background: linear-gradient(135deg, #ffb2da 0%, #ff73c7 100%);
    color: #fff;
    box-shadow: 0 14px 30px rgba(236, 103, 181, .18);
}

.collection-nav .category-link svg {
    opacity: 1;
}

.product-card[data-product-card] {
    position: relative;
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.product-card[data-product-card]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 155, 211, .12));
    opacity: 0;
    transition: opacity .28s ease;
    pointer-events: none;
}

.product-card[data-product-card]:hover,
.product-card[data-product-card]:focus-within {
    transform: translateY(-5px);
    box-shadow: 0 26px 60px rgba(236, 103, 181, .18);
    border-color: rgba(236, 103, 181, .38);
}

.product-card[data-product-card]:hover::after,
.product-card[data-product-card]:focus-within::after,
.product-card[data-product-card].is-adding::after {
    opacity: 1;
}

.product-card[data-product-card] .product-media {
    position: relative;
}

.product-card[data-product-card] .product-media img {
    transition: transform .35s ease, filter .35s ease;
}

.product-card[data-product-card]:hover .product-media img,
.product-card[data-product-card]:focus-within .product-media img,
.product-card[data-product-card].is-adding .product-media img {
    transform: scale(1.05);
    filter: saturate(1.08);
}

.product-card-cue {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .54);
    border-radius: 999px;
    background: rgba(44, 16, 36, .66);
    color: #fff7fb;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    box-shadow: 0 12px 26px rgba(21, 7, 18, .24);
}

.product-card-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 14px;
}

.product-card-preview span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: #7d1f55;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.product-card-preview span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 0 0 4px rgba(242, 60, 175, .12);
}

.product-card .card-actions .button-primary {
    position: relative;
    overflow: hidden;
}

.detail-media,
.product-detail {
    position: relative;
}

.detail-media {
    overflow: hidden;
}

.detail-media img {
    transition: transform .35s ease, filter .35s ease;
}

.product-detail:hover .detail-media img,
.product-detail:focus-within .detail-media img,
.product-detail.is-adding .detail-media img {
    transform: scale(1.04);
    filter: saturate(1.08);
}

.product-detail.is-adding .detail-media {
    box-shadow: 0 28px 72px rgba(236, 103, 181, .24);
}

.detail-cue {
    right: 16px;
    bottom: 16px;
}

.detail-preview {
    margin-bottom: 18px;
}

.product-card.is-adding {
    transform: translateY(-7px) scale(.995);
    border-color: rgba(242, 60, 175, .46);
    box-shadow: 0 28px 72px rgba(236, 103, 181, .24);
}

.product-card.is-adding .card-actions .button-primary {
    background: linear-gradient(135deg, #ff91cf 0%, #f23caf 100%);
}

.bag-link {
    position: relative;
    min-width: 46px;
}

.bag-link.is-receiving {
    animation: bagPulse .5s ease;
}

.bag-link.is-receiving span {
    animation: bagBadgePulse .5s ease;
}

.bag-link span {
    min-width: 24px;
}

.cart-flyer {
    position: fixed;
    z-index: 1200;
    object-fit: cover;
    pointer-events: none;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(44, 16, 36, .28);
    transition: transform .52s cubic-bezier(.22, 1, .36, 1), opacity .52s ease, border-radius .52s ease;
}

.account-card > .account-card-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(145deg, rgba(255, 196, 227, .92), rgba(255, 129, 198, .38));
    color: #7d1f55;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .48), 0 12px 24px rgba(236, 103, 181, .18);
}

.account-card-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.account-card:hover .account-card-icon,
.account-card:focus-within .account-card-icon {
    transform: translateY(-2px) scale(1.04);
    color: #6d1648;
}

.account-card > .account-card-icon {
    transition: transform .22s ease, color .22s ease, box-shadow .22s ease;
}

.account-card .button {
    transition: transform .2s ease, box-shadow .2s ease;
}

.account-card:hover .button,
.account-card:focus-within .button {
    transform: translateY(-1px);
}

@keyframes bagPulse {
    0% {
        transform: translateY(0);
    }

    45% {
        transform: translateY(-3px) scale(1.03);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes bagBadgePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 60, 175, 0);
    }

    55% {
        box-shadow: 0 0 0 10px rgba(242, 60, 175, .12);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(242, 60, 175, 0);
    }
}

@media (max-width: 640px) {
    .shop-actions .icon-link span {
        display: none;
    }

    .bag-feedback {
        right: auto;
        left: 50%;
        bottom: -26px;
        transform: translate(-50%, -3px) scale(.94);
    }

    .bag-feedback.is-visible {
        transform: translate(-50%, 0) scale(1);
    }

    .product-card-preview {
        gap: 6px;
    }

    .product-card-preview span,
    .product-card-cue {
        font-size: 10px;
    }

    .account-card > .account-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 14px;
    }
}