/* Shared storefront polish: one visual language for non-home pages. */
:root {
    --storefront-ink: #171717;
    --storefront-muted: #666;
    --storefront-line: #e8e4dc;
    --storefront-wash: #faf9f6;
    --storefront-gold: #8a6a37;
}

body:not(.is-home) .page-content {
    padding-top: 34px;
    padding-bottom: 96px;
}

body:not(.is-home) .page-header {
    margin: 16px 0 38px !important;
    padding: 66px 28px 58px;
    border: 1px solid var(--storefront-line);
    border-radius: 22px;
    background:
        radial-gradient(circle at 15% 15%, rgba(138, 106, 55, .08), transparent 34%),
        linear-gradient(135deg, #fbfaf7, #f3f1ec);
}

body:not(.is-home) .page-header h1,
body:not(.is-home) .journal-header h1,
body:not(.is-home) .info-hero h1 {
    color: var(--storefront-ink);
    font-size: clamp(2.35rem, 5vw, 4.3rem);
    line-height: 1.05;
    letter-spacing: -.045em;
    text-wrap: balance;
}

body:not(.is-home) .page-header p,
body:not(.is-home) .journal-header p,
body:not(.is-home) .info-hero p {
    color: var(--storefront-muted);
    font-size: 1rem;
}

body:not(.is-home) .shop-layout {
    gap: 28px;
    margin-top: 0;
}

body:not(.is-home) .shop-sidebar {
    top: 110px;
    padding: 24px;
    border-color: var(--storefront-line);
    box-shadow: 0 14px 34px rgba(35, 28, 16, .05);
}

body:not(.is-home) .shop-main {
    margin-top: 0;
}

body:not(.is-home) .shop-toolbar {
    min-height: 58px;
    margin-bottom: 24px;
    border-color: var(--storefront-line);
    box-shadow: 0 8px 22px rgba(35, 28, 16, .035);
}

body:not(.is-home) .product-card {
    border-color: var(--storefront-line);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(35, 28, 16, .04);
}

body:not(.is-home) .product-card:hover {
    box-shadow: 0 18px 38px rgba(35, 28, 16, .1);
}

body:not(.is-home) .product-image {
    background: var(--storefront-wash);
}

body:not(.is-home) .product-info {
    padding: 22px;
}

body:not(.is-home) .btn-add-cart,
body:not(.is-home) .btn-checkout {
    border-radius: 999px;
}

body:not(.is-home) .product-detail-wrapper {
    gap: 28px;
    margin-bottom: 72px;
}

body:not(.is-home) .product-gallery .main-image-container {
    overflow: hidden;
    border: 1px solid var(--storefront-line);
    border-radius: 20px;
    background: var(--storefront-wash);
}

body:not(.is-home) .product-gallery .main-image-container img {
    border-radius: 0;
}

body:not(.is-home) .product-info-detail {
    padding: 30px;
    border: 1px solid var(--storefront-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(35, 28, 16, .06);
}

body:not(.is-home) .breadcrumb-luxury {
    margin-top: 8px;
    margin-bottom: 24px;
}

body:not(.is-home) .journal-header,
body:not(.is-home) .info-page .info-hero {
    margin: 16px 0 54px;
    padding: 82px 20px 74px;
    border: 1px solid var(--storefront-line);
    border-radius: 22px;
    background:
        radial-gradient(circle at 82% 20%, rgba(138, 106, 55, .1), transparent 28%),
        linear-gradient(135deg, #fbfaf7, #f3f1ec);
}

body:not(.is-home) .journal-header .journal-label {
    color: var(--storefront-gold);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
}

body:not(.is-home) .featured-post-container,
body:not(.is-home) .blog-card,
body:not(.is-home) .faq-item,
body:not(.is-home) .empty-cart,
body:not(.is-home) .cart-table,
body:not(.is-home) .cart-summary,
body:not(.is-home) .coupon-section {
    border-color: var(--storefront-line);
    box-shadow: 0 12px 30px rgba(35, 28, 16, .05);
}

body:not(.is-home) .info-page .info-section,
body:not(.is-home) .info-page .info-section-alt {
    padding-top: 76px;
    padding-bottom: 76px;
}

body:not(.is-home) .info-page .info-hero {
    margin-bottom: 0;
}

body:not(.is-home) .info-page .info-cta {
    border-radius: 20px;
    margin: 24px;
}

body:not(.is-home) .auth-wrapper {
    border: 1px solid var(--storefront-line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(35, 28, 16, .08);
}

body:not(.is-home) .auth-form-container {
    padding: 56px;
}

body:not(.is-home) .auth-form-box {
    max-width: 480px;
}

body:not(.is-home) .empty-cart {
    background: #fff;
}

@media (max-width: 900px) {
    body:not(.is-home) .page-content {
        padding-top: 22px;
        padding-bottom: 72px;
    }

    body:not(.is-home) .page-header,
    body:not(.is-home) .journal-header,
    body:not(.is-home) .info-page .info-hero {
        margin: 8px 0 32px !important;
        padding: 52px 18px 46px;
        border-radius: 16px;
    }

    body:not(.is-home) .page-header h1,
    body:not(.is-home) .journal-header h1,
    body:not(.is-home) .info-hero h1 {
        font-size: clamp(2rem, 9vw, 3.2rem);
    }

    body:not(.is-home) .shop-layout {
        gap: 18px;
    }

    body:not(.is-home) .shop-sidebar {
        position: static;
    }

    body:not(.is-home) .product-info-detail {
        padding: 22px 18px;
        border-radius: 16px;
    }

    body:not(.is-home) .auth-wrapper {
        border-radius: 16px;
    }

    body:not(.is-home) .auth-form-container {
        padding: 34px 18px;
    }

    body:not(.is-home) .info-page .info-section,
    body:not(.is-home) .info-page .info-section-alt {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    body:not(.is-home) .info-page .info-cta {
        margin: 16px;
        border-radius: 16px;
    }
}
