/* Wishlist Boutique Vault Storefront */
:root {
    --white: #ffffff;
    --ink: #101010;
    --soft-ink: #2a2a2a;
    --muted: #6f6b66;
    --line: #e8e2d8;
    --paper: #fbfaf7;
    --sand: #efe8dc;
    --gold: #b9975b;
    --gold-dark: #81622f;
    --danger: #b42335;
    --success: #2f7d45;
    --shadow: 0 24px 70px rgba(16, 16, 16, 0.10);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
}

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

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

.top-strip {
    background: var(--ink);
    color: var(--white);
    text-align: center;
    padding: 9px 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 86px;
    padding: 14px 5.5%;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-box img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--white);
}

.logo-title {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    letter-spacing: 0;
    white-space: nowrap;
    color: var(--ink);
}

.logo-title span {
    color: var(--gold-dark);
    margin-left: 4px;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--white);
    padding: 11px 16px;
    border-radius: 0;
    font-weight: 900;
    cursor: pointer;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}

.nav a {
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--soft-ink);
}

.nav a:hover {
    color: var(--gold-dark);
}

.cart-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 84px;
    padding: 11px 17px;
    background: var(--ink);
    color: var(--white) !important;
}

.cart-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
    font-size: 12px;
    font-weight: 950;
}

.hero {
    position: relative;
    min-height: calc(100vh - 124px);
    display: flex;
    align-items: center;
    padding: 72px 5.5%;
    overflow: hidden;
}

.vault-hero {
    background:
        linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.90) 34%, rgba(255,255,255,.32) 62%, rgba(255,255,255,.06) 100%),
        url("assets/vault-hero.png") center right / cover no-repeat;
}

.hero-content {
    width: min(620px, 100%);
    position: relative;
    z-index: 2;
}

.eyebrow {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-weight: 900;
    font-size: 13px;
    margin-bottom: 18px;
}

.hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(52px, 8vw, 112px);
    line-height: .92;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 24px;
}

.hero p {
    color: var(--soft-ink);
    line-height: 1.8;
    font-size: 18px;
    max-width: 520px;
    margin-bottom: 32px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border: 1px solid var(--ink);
    border-radius: 0;
    background: var(--ink);
    color: var(--white);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.btn:hover {
    transform: translateY(-1px);
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
}

.btn-outline:hover {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--white);
}

.btn-danger {
    border-color: var(--danger);
    background: var(--danger);
}

.btn-block {
    width: 100%;
}

.category-band {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.category-tile {
    min-height: 154px;
    padding: 26px 22px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    background: linear-gradient(180deg, var(--white), var(--paper));
    transition: background .2s ease, color .2s ease;
}

.category-tile:last-child {
    border-right: none;
}

.category-tile span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    color: var(--ink);
}

.category-tile strong {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
}

.category-tile:hover {
    background: var(--ink);
}

.category-tile:hover span,
.category-tile:hover strong {
    color: var(--white);
}

.service-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
}

.service-band div {
    background: var(--paper);
    padding: 34px 5.5%;
}

.service-band span {
    display: block;
    color: var(--gold-dark);
    font-weight: 950;
    letter-spacing: .16em;
    margin-bottom: 12px;
}

.service-band strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    margin-bottom: 8px;
    font-weight: 400;
}

.service-band p {
    color: var(--muted);
    line-height: 1.7;
}

.section {
    padding: 76px 5.5%;
}

.products-section {
    background: var(--white);
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 32px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
}

.section-head p {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 12px;
    font-weight: 900;
}

.section-head h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 400;
}

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

.product-card {
    border: 1px solid var(--line);
    background: var(--white);
    min-width: 0;
}

.product-card img {
    width: 100%;
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
}

.product-body {
    padding: 20px;
}

.product-body .category {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 9px;
}

.product-body h3 {
    font-size: 18px;
    line-height: 1.35;
    min-height: 48px;
    margin-bottom: 10px;
}

.price,
.single-price,
.cart-item-price {
    color: var(--ink);
    font-size: 20px;
    font-weight: 950;
}

.stock-warning {
    color: var(--danger);
    font-weight: 900;
    margin-top: 10px;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
}

.empty {
    grid-column: 1 / -1;
    border: 1px dashed var(--line);
    background: var(--paper);
    padding: 34px;
    text-align: center;
    color: var(--muted);
    line-height: 1.7;
}

.vip-band {
    margin: 0 5.5% 76px;
    padding: 38px;
    background: var(--ink);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.vip-band p {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 8px;
}

.vip-band h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 50px);
    font-weight: 400;
}

.vip-band .btn {
    border-color: var(--white);
    background: var(--white);
    color: var(--ink);
    flex-shrink: 0;
}

.page-card,
.summary-box,
.single-info {
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: 0 14px 36px rgba(16, 16, 16, .04);
}

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

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

.form-group label {
    font-weight: 850;
}

.form-group span {
    color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea,
.qty-row input,
.qty-row select {
    width: 100%;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--ink);
    padding: 14px 13px;
    border-radius: 0;
    font: inherit;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

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

.single {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
    gap: 46px;
    padding: 68px 5.5%;
    align-items: start;
}

.single-img {
    border: 1px solid var(--line);
    background: var(--paper);
    padding: 22px;
}

.single-img > img {
    width: 100%;
    max-height: 720px;
    object-fit: contain;
}

.product-gallery {
    margin-top: 14px !important;
}

.product-gallery img {
    background: var(--white);
}

.single-info {
    padding: 34px;
    position: sticky;
    top: 112px;
}

.single-info h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 16px;
}

.single-info p {
    color: var(--muted);
    line-height: 1.8;
}

.single-price {
    color: var(--ink) !important;
    font-size: 28px;
    margin-bottom: 18px;
}

.qty-row {
    display: grid;
    gap: 8px;
    margin: 18px 0;
}

.qty-row label {
    font-weight: 850;
}

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

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

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

.cart-item-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    background: var(--paper);
}

.cart-item-info h3 {
    margin-bottom: 8px;
}

.cart-item-info p {
    color: var(--muted);
    line-height: 1.6;
    margin-top: 6px;
}

.cart-item-subtotal strong {
    color: var(--ink);
}

.remove-link {
    display: inline-flex;
    margin-top: 12px;
    color: var(--danger);
    font-weight: 900;
}

.summary-box,
.checkout-form-card {
    padding: 24px;
    position: sticky;
    top: 112px;
}

.summary-box h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    font-weight: 400;
}

.summary-row,
.checkout-product-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    padding: 14px 0;
    color: var(--muted);
}

.summary-row strong,
.checkout-product-row strong {
    color: var(--ink);
}

.summary-total {
    font-size: 20px;
}

.checkout-note {
    color: var(--muted);
    line-height: 1.6;
    margin-top: 16px;
}

.checkout-error,
.alert,
.error {
    border: 1px solid #f2b8c1;
    background: #fff4f5;
    color: var(--danger);
    padding: 14px 16px;
    margin-bottom: 18px;
    font-weight: 800;
}

.success {
    border: 1px solid #b8dec4;
    background: #f1fbf4;
    color: var(--success);
    padding: 14px 16px;
    margin-bottom: 18px;
    font-weight: 800;
}

.payment-option {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 1px solid var(--line);
    background: var(--paper);
    padding: 16px;
    margin: 18px 0;
}

.payment-option p {
    color: var(--muted);
    line-height: 1.6;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 28px;
    align-items: stretch;
}

.modern-contact-card,
.modern-info-card {
    padding: 34px;
}

.contact-logo-wrap {
    width: 164px;
    height: 164px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    margin-bottom: 24px;
}

.contact-logo {
    width: 132px;
}

.modern-contact-card h1,
.modern-info-card h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    margin-bottom: 14px;
}

.contact-text {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 26px;
}

.whatsapp-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 22px;
    background: #111;
    color: var(--white);
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.wa-circle {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--ink);
    font-size: 12px;
    font-weight: 950;
}

.better-row {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}

.row-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ink);
    color: var(--white);
    font-weight: 950;
    font-size: 12px;
}

.whatsapp-icon {
    background: var(--gold);
    color: var(--ink);
}

.better-row strong {
    display: block;
    margin-bottom: 4px;
}

.better-row span {
    color: var(--muted);
    line-height: 1.6;
}

.footer {
    border-top: 1px solid var(--line);
    background: var(--ink);
    color: rgba(255,255,255,.72);
    text-align: center;
    padding: 34px 5.5%;
    font-size: 14px;
}

.muted-text {
    color: var(--muted);
    line-height: 1.6;
}

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

    .category-band {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-tile:nth-child(3n) {
        border-right: none;
    }
}

@media (max-width: 900px) {
    .header {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border-top: 1px solid var(--line);
        padding-top: 12px;
    }

    .nav.open {
        display: flex;
    }

    .nav a,
    .cart-link {
        width: 100%;
        justify-content: center;
        padding: 14px;
        border-bottom: 1px solid var(--line);
        background: var(--white);
        color: var(--ink) !important;
    }

    .cart-link {
        background: var(--ink);
        color: var(--white) !important;
    }

    .hero {
        min-height: 720px;
        align-items: flex-start;
        padding-top: 68px;
    }

    .vault-hero {
        background:
            linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.88) 42%, rgba(255,255,255,.18) 100%),
            url("assets/vault-hero.png") center bottom / cover no-repeat;
    }

    .service-band,
    .cart-layout,
    .checkout-layout,
    .single,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .summary-box,
    .checkout-form-card,
    .single-info {
        position: static;
    }

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

@media (max-width: 640px) {
    .top-strip {
        font-size: 10px;
        line-height: 1.5;
    }

    .header {
        padding: 12px 4.5%;
    }

    .logo-box img {
        width: 48px;
        height: 48px;
    }

    .logo-title {
        font-size: 20px;
    }

    .hero,
    .section,
    .single {
        padding-left: 4.5%;
        padding-right: 4.5%;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-actions,
    .product-actions {
        grid-template-columns: 1fr;
        display: grid;
    }

    .btn {
        width: 100%;
    }

    .category-band,
    .service-band,
    .grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .category-tile,
    .category-tile:nth-child(3n) {
        border-right: none;
        border-bottom: 1px solid var(--line);
    }

    .section-head {
        display: block;
    }

    .section-head p {
        margin-bottom: 8px;
    }

    .product-body h3 {
        min-height: auto;
    }

    .cart-item-card {
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 14px;
    }

    .cart-item-image img {
        width: 110px;
        height: 110px;
    }

    .vip-band {
        margin: 0 4.5% 56px;
        padding: 28px;
        display: block;
    }

    .vip-band .btn {
        margin-top: 18px;
    }
}
