/* ============================================
   Studio 4 Atelier — Premium Ceramic Brand
   Final Production CSS — Organized & Deduplicated
   ============================================

   Structure:
   1. Root / Variables
   2. Reset / Base
   3. Typography
   4. Layout
   5. Header / Navigation
   6. Hero
   7. Product Cards
   8. Product Detail
   9. Cart
   10. Blog
   11. Pages (About, Contact, Info, 404)
   12. Footer
   13. Floating Actions
   14. Admin Panel
   15. Animations
   16. Responsive
   ============================================ */

/* ===========================================
   1. ROOT / VARIABLES
   =========================================== */
:root {
    --black: #0a0a0a;
    --anthracite: #1a1a1a;
    --charcoal: #2d2d2d;
    --stone: #8a8278;
    --warm-gray: #c5bfb6;
    --light-warm: #e8e3dc;
    --cream: #f5f1eb;
    --off-white: #faf8f5;
    --white: #ffffff;
    --accent: #a09486;
    --accent-dark: #7a6e62;

    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-sans: 'Outfit', 'Helvetica Neue', sans-serif;

    --nav-height: 64px;
    --container: 1340px;
    --gap: 24px;

    --radius-xs: 2px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-pill: 999px;

    --shadow-xs: 0 1px 3px rgba(10, 10, 10, 0.04);
    --shadow-sm: 0 4px 12px rgba(10, 10, 10, 0.06);
    --shadow-md: 0 8px 24px rgba(10, 10, 10, 0.08);
    --shadow-lg: 0 16px 48px rgba(10, 10, 10, 0.1);
    --shadow-float: 0 20px 50px rgba(10, 10, 10, 0.18);

    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    --btn-height: 48px;
    --btn-height-sm: 38px;
    --input-height: 48px;
}

/* ===========================================
   2. RESET / BASE
   =========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--anthracite);
    background: var(--off-white);
    line-height: 1.65;
    overflow-x: hidden;
}
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
}
a:hover { opacity: 0.75; }
img { max-width: 100%; height: auto; display: block; }
button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}
ul { list-style: none; }
input, select, textarea {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 300;
}

/* ===========================================
   3. TYPOGRAPHY
   =========================================== */
.section-label {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 14px;
}
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.2;
}

/* ===========================================
   4. LAYOUT
   =========================================== */
.section {
    padding: 100px 40px;
}
.section-dark {
    background: var(--anthracite);
    color: var(--off-white);
}
.section-cream {
    background: var(--cream);
}
.section-warm {
    background: var(--light-warm);
}
.section-inner {
    max-width: var(--container);
    margin: 0 auto;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

/* ===========================================
   5. HEADER / NAVIGATION
   =========================================== */
.main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    padding: 0 40px;
    background: rgba(10, 10, 10, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background 0.4s var(--ease-smooth), box-shadow 0.4s var(--ease-smooth);
}
.main-nav.scrolled {
    background: rgba(10, 10, 10, 0.97);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-inner {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--off-white);
    flex-shrink: 0;
}
.nav-logo:hover { opacity: 1; }

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-links a {
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: var(--warm-gray);
    position: relative;
    white-space: nowrap;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--warm-gray);
    transition: width 0.3s var(--ease-out);
}
.nav-links a:hover {
    opacity: 1;
    color: var(--off-white);
}
.nav-links a:hover::after { width: 100%; }

/* Dropdown */
.nav-item-has-dropdown {
    padding-bottom: 0;
}
.nav-link-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.nav-dropdown-toggle {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--warm-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xs);
    transition: all 0.3s var(--ease-smooth);
}
.nav-dropdown-toggle span {
    width: 6px;
    height: 6px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.3s var(--ease-smooth);
}
.nav-dropdown-toggle:hover,
.nav-item-has-dropdown.open .nav-dropdown-toggle {
    color: var(--off-white);
    border-color: rgba(255, 255, 255, 0.22);
    opacity: 1;
}
.nav-item-has-dropdown.open .nav-dropdown-toggle span {
    transform: rotate(-135deg) translateY(-1px);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 16px);
    left: -12px;
    min-width: 220px;
    padding: 10px;
    background: rgba(14, 13, 12, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-sm);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    display: grid;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s var(--ease-smooth);
}
.nav-dropdown a {
    padding: 9px 14px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: var(--warm-gray);
    border-radius: var(--radius-xs);
    transition: background 0.2s, color 0.2s;
}
.nav-dropdown a::after { display: none; }
.nav-dropdown a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--off-white);
}
.nav-item-has-dropdown:hover .nav-dropdown,
.nav-item-has-dropdown.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Cart Link in Nav */
.nav-item-cart {
    margin-left: 6px;
}
.nav-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.nav-cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}
.nav-cart-count {
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-style: normal;
    font-size: 0.65rem;
    color: var(--warm-gray);
    letter-spacing: 0.04em;
    transition: all 0.3s;
}
.nav-cart-count.has-items {
    background: rgba(255, 255, 255, 0.12);
    color: var(--off-white);
    border-color: rgba(255, 255, 255, 0.18);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
    z-index: 1001;
}
.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--off-white);
    transition: all 0.35s var(--ease-smooth);
    transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ===========================================
   6. HERO SECTION
   =========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: var(--black);
    overflow: hidden;
    padding: 0 40px 60px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(12, 11, 10, 0.15) 0%, rgba(12, 11, 10, 0.4) 50%, rgba(12, 11, 10, 0.82) 100%),
        radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 40%);
}
.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-image-link {
    display: block;
    width: 100%;
    height: 100%;
}
.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transform: scale(1.02);
    transition: transform 1.4s var(--ease-smooth), opacity 0.5s var(--ease-smooth);
}
.hero-image-link:hover .hero-main-image {
    transform: scale(1.06);
    opacity: 0.88;
}
.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}
.hero-svg-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: var(--container);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: 12px;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--off-white);
    text-align: center;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeUp 1.2s var(--ease-out) 0.2s both;
}
.hero-subtitle {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 241, 235, 0.8);
    text-align: center;
    margin-bottom: 50px;
    animation: fadeUp 1.2s var(--ease-out) 0.5s both;
}
.hero-bottom {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    animation: fadeUp 1.2s var(--ease-out) 0.8s both;
}
.hero-side-text {
    font-size: 0.72rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 241, 235, 0.72);
    max-width: 280px;
    line-height: 1.7;
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--off-white);
    border-bottom: 1px solid var(--stone);
    padding-bottom: 8px;
    transition: border-color 0.3s, gap 0.3s;
}
.hero-cta:hover {
    opacity: 1;
    border-color: var(--off-white);
    gap: 18px;
}
.hero-cta svg { transition: transform 0.3s var(--ease-out); }
.hero-cta:hover svg { transform: translateX(4px); }
.hero-index {
    font-family: var(--font-serif);
    font-size: 0.85rem;
    color: rgba(245, 241, 235, 0.65);
    letter-spacing: 0.12em;
}

/* Bowls / New In Section */
.bowls-section {
    background: var(--cream);
    padding: 100px 40px;
    position: relative;
}
.bowls-inner {
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
}
.bowls-header {
    text-align: center;
    margin-bottom: 56px;
}
.bowls-header .section-title {
    font-size: clamp(1.6rem, 3vw, 2.8rem);
}
.bowls-side-text {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: rotate(-90deg) translateX(-50%);
    transform-origin: left center;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    white-space: nowrap;
    font-weight: 400;
}

/* Split Showcase */
.split-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    background: var(--anthracite);
}
.split-image {
    overflow: hidden;
}
.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.split-image-photo {
    overflow: hidden;
    background: #ece8e1;
}
.split-image-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 1s var(--ease-smooth);
}
.split-image-photo:hover img {
    transform: scale(1.06);
}
.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    color: var(--off-white);
}
.split-content .section-label {
    color: var(--stone);
    margin-bottom: 20px;
}
.split-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 24px;
}
.split-content p {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 36px;
}

/* Philosophy */
.philosophy-section {
    background: var(--off-white);
    padding: 110px 40px;
}
.philosophy-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.philosophy-inner .section-label { margin-bottom: 20px; }
.philosophy-inner h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.3;
}
.philosophy-inner p {
    font-size: 0.95rem;
    line-height: 2;
    color: var(--charcoal);
    max-width: 620px;
    margin: 0 auto;
}

/* Newsletter */
.newsletter-section {
    background: var(--anthracite);
    padding: 80px 40px;
    text-align: center;
    color: var(--off-white);
}
.newsletter-inner {
    max-width: 520px;
    margin: 0 auto;
}
.newsletter-inner h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 10px;
}
.newsletter-inner p {
    font-size: 0.8rem;
    color: var(--warm-gray);
    margin-bottom: 30px;
    letter-spacing: 0.05em;
}
.newsletter-form {
    display: flex;
    gap: 0;
    border: 1px solid var(--charcoal);
    border-radius: var(--radius-xs);
    overflow: hidden;
}
.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: var(--off-white);
    font-size: 0.85rem;
    font-weight: 300;
    outline: none;
}
.newsletter-form input::placeholder { color: var(--stone); }
.newsletter-form button {
    padding: 14px 28px;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--off-white);
    background: var(--charcoal);
    border: none;
    transition: background 0.3s;
    white-space: nowrap;
}
.newsletter-form button:hover { background: var(--stone); }
.newsletter-msg {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--warm-gray);
}

/* ===========================================
   7. PRODUCT CARDS
   =========================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}
.product-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.product-grid.product-grid-single {
    grid-template-columns: minmax(280px, 420px);
    justify-content: start;
}
.product-grid.product-grid-single .product-card {
    max-width: 420px;
}
.product-grid.product-grid-single .product-card-image {
    aspect-ratio: 4 / 5;
}

.product-card {
    position: relative;
}
.product-card-image {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--light-warm);
    margin-bottom: 14px;
    border-radius: var(--radius-xs);
}
.product-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}
.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-smooth);
}
.product-card:hover .product-img-wrap img {
    transform: scale(1.04);
}
.product-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--ease-smooth);
}
.product-card-overlay span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--off-white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 24px;
    border-radius: var(--radius-xs);
    transition: background 0.3s, border-color 0.3s;
}
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card:hover .product-card-overlay span {
    background: rgba(255, 255, 255, 0.08);
}

.product-card-info {
    padding: 0 2px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.product-card-category {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--stone);
}
.product-card-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 400;
    display: block;
    line-height: 1.3;
}
.product-card-name:hover { opacity: 0.7; }
.product-card-designer {
    font-size: 0.75rem;
    color: var(--stone);
    font-style: italic;
}
.product-card-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.72rem;
    color: #7e7065;
}
.product-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2px;
}
.product-card-price {
    font-size: 0.88rem;
    font-weight: 400;
    color: var(--anthracite);
}
.product-card-code {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    color: var(--stone);
    font-weight: 400;
}

/* Shared Button Styles */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--off-white);
    border: 1px solid var(--anthracite);
    padding: 14px 28px;
    border-radius: var(--radius-xs);
    background: linear-gradient(180deg, #4b4138 0%, #2f2924 100%);
    box-shadow: 0 14px 34px rgba(33, 26, 21, 0.14);
    transition: all 0.3s var(--ease-smooth);
    width: fit-content;
}
.btn-outline:hover {
    opacity: 1;
    background: linear-gradient(180deg, #5a4f45 0%, #38312b 100%);
    color: var(--off-white);
    border-color: #5a4f45;
    transform: translateY(-2px);
}

.btn-card-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    align-self: flex-start;
    padding: 9px 16px;
    border: 1px solid rgba(110, 92, 75, 0.16);
    background: var(--white);
    color: var(--anthracite);
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-xs);
    transition: all 0.28s var(--ease-smooth);
}
.btn-card-view:hover {
    opacity: 1;
    background: var(--anthracite);
    color: var(--off-white);
    border-color: var(--anthracite);
    transform: translateY(-1px);
}

/* WhatsApp Buttons */
.btn-whatsapp-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 14px;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: linear-gradient(180deg, #8c7a66 0%, #746250 100%);
    color: #f6f1ea;
    border: 1px solid rgba(95, 75, 58, 0.2);
    border-radius: var(--radius-xs);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-smooth);
    align-self: flex-start;
}
.btn-whatsapp-sm:hover {
    opacity: 1;
    transform: translateY(-1px);
    filter: brightness(1.06);
    box-shadow: var(--shadow-md);
}
.btn-whatsapp-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 28px;
    min-height: var(--btn-height);
    background: linear-gradient(180deg, #8c7a66 0%, #746250 100%);
    color: #f6f1ea;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid rgba(95, 75, 58, 0.2);
    border-radius: var(--radius-xs);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-smooth);
    width: fit-content;
}
.btn-whatsapp-lg:hover {
    opacity: 1;
    transform: translateY(-1px);
    filter: brightness(1.06);
    box-shadow: var(--shadow-md);
}
.btn-whatsapp-lg svg { flex-shrink: 0; }

/* Stars */
.stars { display: flex; gap: 3px; }
.star { color: rgba(90, 77, 66, 0.2); font-size: 16px; line-height: 1; }
.star.filled { color: #9b7d55; }
.stars.small .star { font-size: 14px; }

/* ===========================================
   8. PRODUCT DETAIL
   =========================================== */
.page-header {
    background: var(--anthracite);
    padding: 130px 40px 52px;
    text-align: center;
}
.page-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--off-white);
    letter-spacing: 0.1em;
}
.page-header p {
    font-size: 0.82rem;
    color: var(--stone);
    margin-top: 10px;
    letter-spacing: 0.08em;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 36px 40px 0;
    flex-wrap: wrap;
}
.filter-btn {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 9px 20px;
    border: 1px solid var(--warm-gray);
    color: var(--charcoal);
    border-radius: var(--radius-xs);
    transition: all 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--anthracite);
    color: var(--off-white);
    border-color: var(--anthracite);
}

.products-listing {
    padding: 40px 40px 100px;
    max-width: var(--container);
    margin: 0 auto;
}

.detail-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: calc(100vh - var(--nav-height));
    padding-top: var(--nav-height);
}
.detail-gallery {
    background: var(--cream);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: var(--nav-height);
    height: calc(100vh - var(--nav-height));
}
.detail-gallery img {
    max-width: 100%;
    max-height: 72vh;
    object-fit: contain;
}
.detail-gallery-thumbs {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.detail-thumb-btn {
    width: 60px;
    height: 60px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-xs);
    background: transparent;
    overflow: hidden;
    transition: border-color 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}
.detail-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detail-thumb-btn:hover,
.detail-thumb-btn.active {
    border-color: var(--charcoal);
    transform: translateY(-1px);
}

.detail-info {
    padding: 72px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.detail-category {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 10px;
}
.detail-name {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    margin-bottom: 6px;
    line-height: 1.2;
}
.detail-code {
    font-size: 0.75rem;
    color: var(--stone);
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}
.detail-price {
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 6px;
}
.detail-stock {
    font-size: 0.78rem;
    color: var(--stone);
    margin-bottom: 24px;
}
.detail-designer {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 24px;
}
.detail-desc-short {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--charcoal);
    margin-bottom: 14px;
}
.detail-desc-long {
    font-size: 0.85rem;
    line-height: 1.9;
    color: var(--stone);
    margin-bottom: 32px;
}

/* Rating Summary */
.detail-rating-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0 22px;
    color: #5b5148;
    font-size: 0.85rem;
}

/* CTA Action Row */
.detail-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
    margin-bottom: 12px;
}
.detail-action-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.detail-action-label {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--stone);
}
.detail-cart-form {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}
.qty-inline {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.qty-inline label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
}
.qty-inline input {
    width: 80px;
    height: var(--btn-height);
    padding: 0 12px;
    border: 1px solid rgba(110, 92, 75, 0.15);
    border-radius: var(--radius-xs);
    background: var(--white);
    text-align: center;
    font-size: 0.9rem;
}
.btn-cart-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: var(--btn-height);
    padding: 0 24px;
    background: var(--anthracite);
    color: var(--off-white);
    border: 1px solid var(--anthracite);
    border-radius: var(--radius-xs);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.72rem;
    transition: all 0.28s var(--ease-smooth);
}
.btn-cart-primary:hover {
    opacity: 1;
    background: var(--black);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Feature Badges */
.detail-feature-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 24px 0;
}
.feature-badge {
    padding: 16px 18px;
    border: 1px solid rgba(110, 92, 75, 0.12);
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-sm);
}
.feature-badge strong {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.feature-badge span {
    font-size: 0.8rem;
    line-height: 1.6;
    color: #6b6158;
}

/* Accordion */
.detail-accordion-group {
    margin-top: 8px;
    display: grid;
    gap: 8px;
}
.detail-accordion {
    border: 1px solid rgba(110, 92, 75, 0.12);
    background: var(--white);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.detail-accordion summary {
    list-style: none;
    cursor: pointer;
    padding: 15px 18px;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    transition: background 0.2s;
}
.detail-accordion summary:hover {
    background: var(--cream);
}
.detail-accordion summary::-webkit-details-marker { display: none; }
.detail-accordion summary::after {
    content: '+';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--stone);
}
.detail-accordion[open] summary::after { content: '−'; }
.detail-accordion-content {
    padding: 0 18px 18px;
    color: #6d635a;
    line-height: 1.8;
    font-size: 0.85rem;
}

/* Reviews Section */
.reviews-section {
    padding: 70px 40px 90px;
}
.reviews-grid-wrap {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 32px;
}
.left-align { text-align: left; align-items: flex-start; }
.review-list { display: grid; gap: 14px; }
.review-card,
.review-form-column {
    border: 1px solid rgba(110, 92, 75, 0.1);
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-sm);
}
.review-card-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}
.review-card p { color: #645a51; line-height: 1.8; margin-bottom: 10px; }
.review-card small,
.review-form-note,
.review-empty { color: #8a7b6f; font-size: 0.82rem; }
.review-form-note { margin-top: 12px; font-size: 0.78rem; line-height: 1.6; }

.review-form .form-group { margin-bottom: 16px; }
.review-form label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 6px;
}
.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(110, 92, 75, 0.14);
    border-radius: var(--radius-sm);
    background: var(--cream);
    font: inherit;
    color: var(--anthracite);
    outline: none;
    transition: border-color 0.3s;
}
.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    border-color: var(--anthracite);
}
.review-form textarea { min-height: 100px; resize: vertical; }

/* Related Products */
.related-section {
    padding: 80px 40px;
    background: var(--cream);
}
.related-section .section-inner {
    max-width: var(--container);
    margin: 0 auto;
}

/* ===========================================
   9. CART
   =========================================== */
.cart-page {
    padding: 40px 20px 90px;
}
.cart-shell {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
    gap: 28px;
}
.cart-table-wrap,
.cart-summary-card,
.cart-empty-state {
    background: var(--white);
    border: 1px solid rgba(110, 92, 75, 0.1);
    border-radius: var(--radius-sm);
}
.cart-table { display: grid; }
.cart-row {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) 110px 110px 70px;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border-bottom: 1px solid rgba(110, 92, 75, 0.07);
}
.cart-row:last-child { border-bottom: 0; }
.cart-product-media {
    display: block;
    background: var(--light-warm);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius-xs);
}
.cart-product-media img { width: 100%; height: 100%; object-fit: cover; }
.cart-product-category {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--stone);
    margin-bottom: 4px;
}
.cart-product-title {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 3px;
}
.cart-product-code {
    color: var(--stone);
    font-size: 0.72rem;
}
.cart-qty-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.cart-qty-block label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--stone);
}
.cart-qty-block input {
    width: 100%;
    padding: 10px;
    border: 1px solid rgba(110, 92, 75, 0.14);
    border-radius: var(--radius-xs);
    background: var(--white);
    text-align: center;
}
.cart-line-price { font-size: 1rem; font-weight: 400; }
.cart-remove-link {
    font-size: 0.72rem;
    color: #9b6b4f;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s;
}
.cart-remove-link:hover { color: #c62828; opacity: 1; }
.cart-actions-row {
    display: flex;
    gap: 10px;
    padding: 18px;
}

.cart-actions-row .btn-outline {
    min-width: 190px;
}
.cart-summary-card {
    padding: 28px;
    align-self: start;
    position: sticky;
    top: 90px;
}
.cart-summary-card h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 16px;
}
.cart-summary-line {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(110, 92, 75, 0.07);
    font-size: 0.9rem;
}
.cart-summary-line.total {
    font-size: 1.05rem;
    font-weight: 400;
}
.cart-summary-whatsapp {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}
.cart-empty-state {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
}
.cart-empty-state h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 10px;
}
.cart-empty-state p {
    color: var(--stone);
    margin-bottom: 22px;
}

/* ===========================================
   10. BLOG
   =========================================== */
.blog-list-page {
    padding: 28px 20px 90px;
}
.blog-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.blog-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.blog-card {
    background: var(--white);
    border: 1px solid rgba(110, 92, 75, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    transition: box-shadow 0.3s var(--ease-smooth);
}
.blog-card:hover {
    box-shadow: var(--shadow-md);
}
.blog-card-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--light-warm);
}
.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-smooth);
}
.blog-card:hover .blog-card-media img {
    transform: scale(1.04);
}
.blog-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.blog-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--stone);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.blog-card h2 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.2;
}
.blog-card p {
    color: #6c6259;
    line-height: 1.75;
    font-size: 0.88rem;
    flex: 1;
}

/* Blog Detail */
.blog-detail-hero {
    padding: 140px 20px 48px;
    background: var(--anthracite);
    color: var(--off-white);
}
.blog-detail-hero-inner,
.blog-detail-shell {
    max-width: 900px;
    margin: 0 auto;
}
.blog-detail-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 1.15;
}
.blog-detail-hero p,
.blog-detail-hero small {
    color: var(--warm-gray);
}
.blog-detail-hero p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 10px;
}
.blog-detail-section {
    padding: 48px 20px 90px;
}
.blog-detail-shell {
    display: grid;
    gap: 24px;
}
.blog-detail-cover {
    background: var(--light-warm);
    overflow: hidden;
    border-radius: var(--radius-sm);
}
.blog-detail-cover img {
    width: 100%;
    aspect-ratio: 16 / 8.5;
    object-fit: cover;
}
.blog-detail-content {
    background: var(--white);
    border: 1px solid rgba(110, 92, 75, 0.1);
    border-radius: var(--radius-sm);
    padding: 36px;
    line-height: 2;
    color: #5d544c;
    font-size: 1rem;
    white-space: pre-line;
}

/* ===========================================
   11. PAGES (About, Contact, Info, 404)
   =========================================== */
/* About */
.about-hero {
    background: var(--anthracite);
    padding: 150px 40px 90px;
    text-align: center;
    color: var(--off-white);
}
.about-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 24px;
}
.about-hero p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.9rem;
    line-height: 1.9;
    color: var(--warm-gray);
}
.about-content {
    padding: 80px 40px;
    max-width: 760px;
    margin: 0 auto;
}
.about-content h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 20px;
}
.about-content p {
    font-size: 0.92rem;
    line-height: 2;
    color: var(--charcoal);
    margin-bottom: 20px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px 40px 100px;
}
.contact-info h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 28px;
}
.contact-item { margin-bottom: 24px; }
.contact-item h4 {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 6px;
}
.contact-item p,
.contact-item a {
    font-size: 0.92rem;
    color: var(--charcoal);
    line-height: 1.7;
}
.contact-form label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--warm-gray);
    border-radius: var(--radius-sm);
    background: transparent;
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--anthracite);
    margin-bottom: 18px;
    outline: none;
    transition: border-color 0.3s;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--anthracite);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button {
    padding: 14px 36px;
    background: var(--anthracite);
    color: var(--off-white);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: 1px solid var(--anthracite);
    border-radius: var(--radius-xs);
    transition: all 0.3s;
}
.contact-form button:hover {
    background: transparent;
    color: var(--anthracite);
}

/* Info Pages */
.info-page-hero {
    padding: 140px 20px 56px;
    background: var(--anthracite);
    color: var(--off-white);
}
.info-page-hero .section-label { color: #8b7d71; }
.info-page-hero-inner,
.info-page-shell {
    max-width: 900px;
    margin: 0 auto;
}
.info-page-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 300;
    margin-bottom: 16px;
}
.info-page-hero p {
    max-width: 700px;
    color: var(--warm-gray);
    line-height: 1.9;
}
.info-page-content {
    padding: 48px 20px 90px;
    background: var(--cream);
}
.info-page-shell {
    display: grid;
    gap: 18px;
}
.info-card {
    background: var(--white);
    border: 1px solid var(--light-warm);
    padding: 28px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-xs);
}
.info-card h2 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 12px;
}
.info-card p {
    color: var(--charcoal);
    line-height: 1.9;
    white-space: pre-line;
}

/* 404 */
.page-404,
.admin-404 {
    min-height: 100vh;
    padding: 140px 20px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-404-card,
.admin-404-card {
    width: min(100%, 720px);
    background: var(--white);
    border: 1px solid var(--light-warm);
    padding: 48px 40px;
    text-align: center;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}
.page-404-label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--stone);
}
.page-404-card h1,
.admin-404-card h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.1rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 14px;
}
.page-404-card p,
.admin-404-card p {
    max-width: 520px;
    margin: 0 auto;
    color: var(--stone);
    line-height: 1.7;
}
.page-404-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* ===========================================
   12. FOOTER
   =========================================== */
.site-footer {
    background: var(--black);
    color: var(--warm-gray);
    padding: 60px 40px 28px;
}
.footer-inner {
    max-width: var(--container);
    margin: 0 auto;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 22px;
}
.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--off-white);
    margin-bottom: 6px;
}
.footer-tagline {
    font-size: 0.75rem;
    color: var(--stone);
}
.footer-nav {
    display: flex;
    gap: 48px;
}
.footer-col h4 {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 14px;
}
.footer-col a {
    display: block;
    font-size: 0.82rem;
    color: var(--warm-gray);
    margin-bottom: 7px;
    font-weight: 300;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--off-white);
    opacity: 1;
}
.footer-bottom {
    text-align: center;
}
.footer-bottom p {
    font-size: 0.72rem;
    color: var(--stone);
    letter-spacing: 0.05em;
}

/* ===========================================
   13. FLOATING ACTIONS
   =========================================== */
.floating-whatsapp,
.floating-cart {
    position: fixed;
    bottom: 22px;
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px 10px 10px;
    border-radius: var(--radius-pill);
    color: var(--off-white);
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    transform: translateY(20px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease;
}
.floating-whatsapp {
    left: 22px;
    background: rgba(20, 18, 17, 0.92);
    box-shadow: var(--shadow-float);
}
.floating-cart {
    right: 22px;
    background: rgba(32, 28, 25, 0.94);
    box-shadow: var(--shadow-float);
}

.floating-whatsapp::before,
.floating-cart::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.9;
}
.floating-whatsapp::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(160, 148, 134, 0.14));
}
.floating-cart::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(157, 126, 95, 0.15));
}
.floating-whatsapp > *,
.floating-cart > * {
    position: relative;
    z-index: 1;
}

.floating-whatsapp.is-visible,
.floating-cart.is-visible {
    opacity: 0.7;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
.floating-whatsapp:hover,
.floating-cart:hover {
    opacity: 0.96;
    transform: translateY(-2px) scale(1);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.floating-whatsapp-icon,
.floating-cart-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.floating-whatsapp-icon {
    background: linear-gradient(135deg, #d8c9b4 0%, #af9f8e 100%);
    color: var(--anthracite);
}
.floating-cart-icon {
    background: linear-gradient(135deg, #e6d8c6 0%, #b4997f 100%);
    color: var(--anthracite);
}

.floating-whatsapp-copy,
.floating-cart-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.floating-whatsapp-copy strong,
.floating-cart-copy strong {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
}
.floating-whatsapp-copy small,
.floating-cart-copy small {
    font-size: 0.66rem;
    color: rgba(245, 241, 235, 0.7);
    letter-spacing: 0.06em;
}

.floating-cart-count {
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.07);
    color: var(--off-white);
    font-style: normal;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
}
.floating-cart-count.has-items {
    background: rgba(255, 255, 255, 0.15);
}
.floating-cart.is-empty .floating-cart-count {
    opacity: 0.6;
}

/* ===========================================
   14. ADMIN PANEL
   =========================================== */

/* Preloader — only shown on first visit */
body.site-loading { overflow: hidden; }
.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 243, 238, 0.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.site-preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.site-preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--anthracite);
}
.site-preloader-mark {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(140, 122, 102, 0.2);
    position: relative;
}
.site-preloader-mark::before,
.site-preloader-mark::after {
    content: '';
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    border: 1px solid rgba(140, 122, 102, 0.3);
}
.site-preloader-mark::after {
    inset: 14px;
    background: rgba(140, 122, 102, 0.14);
    animation: pulsePreloader 1.3s ease infinite;
}
.site-preloader-inner strong {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.site-preloader-inner small {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
}

/* Admin Body */
.admin-body {
    font-family: var(--font-sans);
    background: #f6f5f3;
    color: var(--anthracite);
    min-height: 100vh;
}

/* Admin Login */
.admin-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--anthracite);
}
.admin-login-box {
    background: var(--off-white);
    padding: 44px 36px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    border-radius: var(--radius-md);
}
.admin-login-box h1 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}
.admin-login-box p {
    font-size: 0.8rem;
    color: var(--stone);
    margin-bottom: 28px;
}
.admin-login-box label {
    display: block;
    text-align: left;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 6px;
}
.admin-login-box input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--warm-gray);
    border-radius: var(--radius-sm);
    background: transparent;
    font-size: 0.88rem;
    font-weight: 300;
    margin-bottom: 16px;
    outline: none;
    transition: border-color 0.3s;
}
.admin-login-box input:focus { border-color: var(--anthracite); }
.admin-login-box button {
    width: 100%;
    padding: 13px;
    background: var(--anthracite);
    color: var(--off-white);
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.3s;
}
.admin-login-box button:hover { background: var(--charcoal); }

/* Admin Messages */
.admin-error {
    background: #fef2f2;
    color: #b91c1c;
    padding: 11px 16px;
    font-size: 0.82rem;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    border-left: 3px solid #b91c1c;
}
.admin-success {
    background: #f0fdf4;
    color: #15803d;
    padding: 11px 16px;
    font-size: 0.82rem;
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    border-left: 3px solid #15803d;
}

/* Admin Layout */
.admin-layout {
    display: flex;
    min-height: 100vh;
}
.admin-sidebar {
    width: 230px;
    background: var(--anthracite);
    color: var(--off-white);
    padding: 24px 0;
    position: fixed;
    top: 0; bottom: 0; left: 0;
    overflow-y: auto;
    z-index: 100;
}
.admin-sidebar-logo {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0 22px;
    margin-bottom: 32px;
    color: var(--off-white);
    display: block;
}
.admin-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--warm-gray);
    transition: all 0.2s;
    letter-spacing: 0.03em;
    border-left: 2px solid transparent;
}
.admin-sidebar-nav a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--off-white);
    opacity: 1;
}
.admin-sidebar-nav a.active {
    background: rgba(255, 255, 255, 0.06);
    color: var(--off-white);
    opacity: 1;
    border-left-color: var(--accent);
}
.admin-sidebar-nav .nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    margin: 10px 22px;
}
.admin-badge-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: var(--radius-pill);
    background: #8b6d4d;
    color: #fff;
    font-size: 0.65rem;
    margin-left: 6px;
}

.admin-main {
    margin-left: 230px;
    flex: 1;
    padding: 28px 32px;
    min-height: 100vh;
}

/* Admin Topbar */
.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}
.admin-topbar h1 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
}
.admin-topbar-actions {
    display: flex;
    gap: 8px;
}

/* Admin Stats Cards */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}
.admin-stat-card {
    background: var(--white);
    padding: 22px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-sm);
    transition: box-shadow 0.2s;
}
.admin-stat-card:hover {
    box-shadow: var(--shadow-sm);
}
.admin-stat-card h3 {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 6px;
    font-weight: 400;
}
.admin-stat-card .stat-value {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
}

/* Admin Card */
.admin-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-sm);
    padding: 22px;
    margin-bottom: 20px;
}
.admin-card h2 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 16px;
}

/* Admin Table */
.admin-table {
    width: 100%;
    border-collapse: collapse;
}
.admin-table th {
    text-align: left;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    font-weight: 400;
    padding: 9px 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.admin-table td {
    padding: 10px 12px;
    font-size: 0.84rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    vertical-align: middle;
}
.admin-table tr:hover td {
    background: var(--cream);
}
.admin-table img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: var(--radius-xs);
}

/* Admin Badges */
.badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 400;
    border-radius: var(--radius-pill);
}
.badge-active { background: #f0fdf4; color: #15803d; }
.badge-inactive { background: #fef2f2; color: #b91c1c; }
.badge-featured { background: #fffbeb; color: #b45309; }

/* Admin Buttons */
.btn-admin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: var(--btn-height-sm);
    padding: 0 16px;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-sm);
    color: var(--charcoal);
    background: var(--white);
    transition: all 0.25s var(--ease-smooth);
    text-decoration: none;
    white-space: nowrap;
}
.btn-admin:hover {
    background: var(--anthracite);
    color: var(--off-white);
    border-color: var(--anthracite);
    opacity: 1;
}
.btn-admin-primary {
    background: var(--anthracite);
    color: var(--off-white);
    border-color: var(--anthracite);
}
.btn-admin-primary:hover {
    background: var(--black);
    border-color: var(--black);
}
.btn-admin-danger {
    border-color: #dc2626;
    color: #dc2626;
    background: transparent;
}
.btn-admin-danger:hover {
    background: #dc2626;
    color: var(--white);
    border-color: #dc2626;
}
.btn-admin-sm {
    height: 30px;
    padding: 0 10px;
    font-size: 0.64rem;
}

/* Admin Form */
.admin-form .form-group { margin-bottom: 18px; }
.admin-form label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 6px;
    font-weight: 400;
}
.admin-form input[type="text"],
.admin-form input[type="number"],
.admin-form input[type="email"],
.admin-form select,
.admin-form textarea {
    width: 100%;
    height: var(--input-height);
    padding: 0 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--anthracite);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    border-color: var(--anthracite);
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.06);
}
.admin-form textarea {
    min-height: 100px;
    height: auto;
    padding: 12px 14px;
    resize: vertical;
}
.admin-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.admin-form .form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}
.admin-form .form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--anthracite);
}
.admin-form .current-image { margin-top: 8px; }
.admin-form .current-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 1px solid var(--light-warm);
    border-radius: var(--radius-xs);
}

.admin-help {
    display: block;
    margin-top: 6px;
    color: var(--stone);
    font-size: 0.75rem;
    line-height: 1.6;
}

/* Admin Image Management */
.admin-thumb-card {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 14px;
    padding: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-sm);
    background: var(--cream);
}
.admin-thumb-card img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(0, 0, 0, 0.06);
    flex: 0 0 88px;
}
.admin-thumb-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-check-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--anthracite);
}
.form-check-inline input { width: 16px; height: 16px; }

.admin-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 140px));
    gap: 12px;
    margin-top: 12px;
    align-items: start;
}
.admin-image-chip {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-sm);
    background: var(--cream);
    cursor: pointer;
    width: 100%;
    max-width: 140px;
}
.admin-image-chip img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(0, 0, 0, 0.05);
}
.admin-image-chip span {
    font-size: 0.7rem;
    color: var(--anthracite);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.admin-image-chip em {
    font-style: normal;
    font-size: 0.68rem;
    color: #b91c1c;
}
.admin-image-chip input { width: 16px; height: 16px; }

.admin-gallery-preview-grid,
.existing-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 12px;
    margin-top: 14px;
}
.admin-gallery-preview-item,
.existing-gallery-item {
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-sm);
    background: var(--cream);
    padding: 8px;
}
.admin-gallery-preview-item img,
.existing-gallery-item img,
.current-cover-preview img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-xs);
}
.admin-gallery-preview-item small {
    display: block;
    font-size: 0.68rem;
    margin-top: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--stone);
}
.current-cover-preview { max-width: 180px; margin-top: 14px; }

/* ===========================================
   15. ANIMATIONS & MICRO-INTERACTIONS
   =========================================== */

/* Custom scrollbar (webkit) */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
    background: rgba(138, 130, 120, 0.25);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(138, 130, 120, 0.4);
}

/* Mobile menu scrollbar */
.nav-links::-webkit-scrollbar { width: 3px; }
.nav-links::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

/* Text selection */
::selection {
    background: rgba(160, 148, 134, 0.25);
    color: var(--anthracite);
}

/* Focus visible for accessibility */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Smooth image loading — handled via JS for lazy images */

/* Section divider — subtle gradient between sections */
.section-cream + .section-warm,
.bowls-section + .split-showcase {
    position: relative;
}

/* Card hover lift — universal subtle effect */
.product-card {
    transition: transform 0.35s var(--ease-smooth);
}
.product-card:hover {
    transform: translateY(-3px);
}

/* Blog card enhanced hover */
.blog-card {
    transition: box-shadow 0.35s var(--ease-smooth), transform 0.35s var(--ease-smooth);
}
.blog-card:hover {
    transform: translateY(-2px);
}

/* Button press feedback */
.btn-cart-primary:active,
.btn-admin:active,
.btn-outline:active,
.btn-whatsapp-lg:active,
.btn-whatsapp-sm:active,
.btn-card-view:active,
.filter-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Nav link active state indicator */
.nav-links a.active {
    color: var(--off-white);
}

/* Mobile overlay close hint — X button visible inside panel */
.nav-links::before {
    content: '';
    display: none;
}

/* Smooth body transition when preloader hides */
body.site-loaded {
    animation: bodyFadeIn 0.4s ease both;
}
@keyframes bodyFadeIn {
    from { opacity: 0.96; }
    to { opacity: 1; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulsePreloader {
    0%, 100% { transform: scale(0.92); opacity: 0.5; }
    50% { transform: scale(1.08); opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===========================================
   16. RESPONSIVE
   =========================================== */

/* 1200px */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .footer-nav { gap: 36px; }
}

/* 980px — Tablet adjustments */
@media (max-width: 980px) {
    .blog-grid,
    .blog-grid.compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .reviews-grid-wrap {
        grid-template-columns: 1fr;
    }
}

/* 1024px */
@media (max-width: 1024px) {
    .split-showcase { grid-template-columns: 1fr; }
    .split-content { padding: 56px 40px; }
    .detail-wrap { grid-template-columns: 1fr; }
    .detail-gallery {
        position: relative;
        height: 56vh;
        top: 0;
    }
    .detail-info { padding: 36px 32px; }
}

/* 768px — Mobile breakpoint */
@media (max-width: 768px) {
    :root {
        --nav-height: 58px;
    }

    .main-nav { padding: 0 16px; }
    .nav-toggle { display: flex; }

    /* ── Mobile Menu Panel ── */
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: min(300px, 84vw);
        height: 100vh;
        height: 100dvh;
        background: var(--black);
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        padding-top: calc(var(--nav-height) + 24px);
        padding-bottom: 32px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-smooth);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        z-index: 1000;
    }
    .nav-links.open { transform: translateX(0); }

    /* ── Mobile Nav Items ── */
    .nav-item {
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-links > .nav-item > a,
    .nav-link-group > a {
        display: block;
        padding: 16px 28px;
        font-size: 0.82rem;
        letter-spacing: 0.13em;
        color: var(--warm-gray);
        width: auto;
    }
    .nav-links a::after { display: none; }

    /* ── Mobile Dropdown ── */
    .nav-item-has-dropdown {
        padding-bottom: 0;
    }
    .nav-link-group {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav-link-group > a {
        flex: 1;
    }
    .nav-dropdown-toggle {
        margin-right: 28px;
        flex-shrink: 0;
    }

    .nav-dropdown {
        position: static;
        width: 100%;
        min-width: 0;
        margin-top: 0;
        padding: 0;
        background: rgba(255, 255, 255, 0.025);
        box-shadow: none;
        border: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: max-height 0.35s var(--ease-smooth);
    }
    .nav-item-has-dropdown:not(.open) .nav-dropdown {
        max-height: 0;
    }
    .nav-item-has-dropdown.open .nav-dropdown {
        max-height: 400px;
    }
    .nav-dropdown a {
        display: block;
        padding: 12px 28px 12px 42px;
        font-size: 0.76rem;
        letter-spacing: 0.1em;
        color: var(--stone);
        border: none;
        border-radius: 0;
    }
    .nav-dropdown a:hover {
        color: var(--off-white);
        background: rgba(255, 255, 255, 0.03);
    }

    /* ── Mobile Cart Item ── */
    .nav-item-cart {
        margin-left: 0;
        margin-top: auto;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        border-bottom: none;
    }
    .nav-cart-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 14px 28px;
    }
    .nav-cart-link span {
        font-size: 0.82rem;
        letter-spacing: 0.13em;
        text-transform: uppercase;
    }

    /* Sections */
    .section { padding: 64px 20px; }
    .section-header { margin-bottom: 40px; }
    .hero { padding: 0 20px 36px; }
    .hero-bottom { flex-direction: column; gap: 18px; align-items: flex-start; }
    .bowls-section { padding: 64px 20px; }
    .bowls-side-text { display: none; }
    .philosophy-section { padding: 64px 20px; }
    .page-header { padding: 110px 20px 36px; }
    .filter-bar { padding: 20px 20px 0; }
    .products-listing { padding: 24px 20px 60px; }

    /* Product Grid */
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    .product-grid.product-grid-single {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* Product Detail */
    .detail-gallery { height: 48vh; padding: 20px; }
    .detail-info { padding: 24px 20px; }
    .detail-action-row { flex-direction: column; align-items: stretch; }
    .detail-action-block,
    .detail-action-block-whatsapp,
    .detail-action-block-cart,
    .detail-cart-form,
    .btn-whatsapp-lg {
        width: 100%;
    }
    .detail-cart-form {
        display: grid;
        grid-template-columns: 88px minmax(0, 1fr);
    }
    .btn-whatsapp-lg,
    .btn-cart-primary {
        justify-content: center;
    }
    .detail-feature-badges { grid-template-columns: 1fr; }
    .reviews-grid-wrap { grid-template-columns: 1fr; }

    /* Cart */
    .cart-shell { grid-template-columns: 1fr; }
    .cart-summary-card { position: static; }
    .cart-row {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 12px;
    }
    .cart-qty-block,
    .cart-line-price,
    .cart-remove-link { grid-column: 2 / 3; }

    /* Blog */
    .blog-grid,
    .blog-grid.compact {
        grid-template-columns: 1fr;
    }

    /* Related */
    .related-section { padding: 40px 20px; }

    /* Footer */
    .footer-top { flex-direction: column; gap: 28px; }
    .footer-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px 20px;
    }
    .site-footer { padding: 40px 20px 24px; }

    /* Newsletter */
    .newsletter-form { flex-direction: column; border-radius: 0; }
    .newsletter-form button { padding: 13px; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; }

    /* Floating */
    .floating-whatsapp,
    .floating-cart {
        bottom: 14px;
        padding-right: 14px;
    }
    .floating-whatsapp { left: 14px; }
    .floating-cart { right: 14px; }

    /* 404 */
    .page-404,
    .admin-404 { padding-top: 110px; }
    .page-404-card,
    .admin-404-card { padding: 32px 22px; }

    /* Admin */
    .admin-sidebar {
        width: 100%;
        position: relative;
        padding: 14px 0;
    }
    .admin-sidebar-logo {
        padding: 0 16px;
        margin-bottom: 12px;
    }
    .admin-sidebar-nav {
        display: flex;
        overflow-x: auto;
        padding: 0 16px;
        gap: 4px;
        -webkit-overflow-scrolling: touch;
    }
    .admin-sidebar-nav a {
        padding: 8px 14px;
        white-space: nowrap;
        font-size: 0.73rem;
        border-left: 0;
        border-bottom: 2px solid transparent;
        border-radius: 0;
    }
    .admin-sidebar-nav a.active {
        border-left-color: transparent;
        border-bottom-color: var(--accent);
    }
    .admin-sidebar-nav .nav-divider { display: none; }
    .admin-layout { flex-direction: column; }
    .admin-main { margin-left: 0; padding: 16px; }
    .admin-form .form-row { grid-template-columns: 1fr; }
    .admin-table { font-size: 0.78rem; }
    .admin-thumb-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* 560px */
@media (max-width: 560px) {
    .floating-whatsapp,
    .floating-cart {
        gap: 10px;
    }
    .floating-whatsapp-copy small,
    .floating-cart-copy small {
        display: none;
    }
    .floating-whatsapp-icon,
    .floating-cart-icon {
        width: 36px;
        height: 36px;
    }
    .cart-actions-row { flex-direction: column; }
    .btn-card-view { width: 100%; }
}

/* 480px */
@media (max-width: 480px) {
    .product-card-image { aspect-ratio: 3 / 4.2; }
    .product-card-name { font-size: 0.95rem; }
    .product-card-code,
    .product-card-designer { font-size: 0.62rem; }
    .btn-whatsapp-sm {
        width: 100%;
        justify-content: center;
        font-size: 0.62rem;
    }
    .hero-title { letter-spacing: 0.1em; }
    .detail-accordion summary { padding-right: 40px; }
    .blog-card h2 { font-size: 1.25rem; }
}

/* 390px */
@media (max-width: 390px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 0.08em;
    }
    .hero-subtitle {
        font-size: 0.75rem;
    }
    .section { padding: 48px 16px; }
    .bowls-section { padding: 48px 16px; }
    .page-header { padding: 100px 16px 32px; }
    .product-grid { gap: 12px; }
    .floating-whatsapp,
    .floating-cart { bottom: 10px; }
    .floating-whatsapp { left: 10px; }
    .floating-cart { right: 10px; }
}

/* ===========================================
   Additions
   =========================================== */
.filter-btn span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    margin-left: 10px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.06);
    font-size: 0.68rem;
    letter-spacing: 0;
}

.filter-btn.active span,
.filter-btn:hover span {
    background: rgba(255, 255, 255, 0.14);
}

.listing-summary-card {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    margin-bottom: 32px;
    border: 1px solid rgba(110, 92, 75, 0.12);
    border-radius: var(--radius-md);
    background:
        radial-gradient(circle at top right, rgba(160, 148, 134, 0.16), transparent 34%),
        var(--white);
    box-shadow: var(--shadow-xs);
}

.listing-summary-card h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    font-weight: 400;
    margin-bottom: 8px;
}

.listing-summary-card p:last-child {
    max-width: 680px;
    color: var(--stone);
    font-size: 0.98rem;
    line-height: 1.9;
}

.listing-summary-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 12px;
}

.listing-summary-card-blog {
    margin-bottom: 28px;
}

.detail-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 20px;
}

.detail-meta-card {
    padding: 14px 16px;
    border: 1px solid rgba(110, 92, 75, 0.12);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.65);
}

.detail-meta-card span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--stone);
}

.detail-meta-card strong {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--anthracite);
}

.detail-purchase-note {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin: 12px 0 22px;
    padding-top: 4px;
    font-size: 0.82rem;
    color: var(--stone);
}

.detail-purchase-note a {
    color: var(--anthracite);
    font-weight: 400;
}

.cart-summary-note {
    color: var(--stone);
    margin-bottom: 18px;
}

.cart-secondary-cta {
    width: 100%;
    margin-top: 12px;
    justify-content: center;
}

button.cart-remove-link {
    background: none;
    border: 0;
    padding: 0;
    text-align: left;
}

.contact-quick-panel {
    margin-top: 32px;
    padding: 24px;
    border: 1px solid rgba(110, 92, 75, 0.12);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(245, 241, 235, 0.9));
}

.contact-quick-panel p {
    color: var(--stone);
    margin-bottom: 18px;
}

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

.contact-draft-card {
    margin-bottom: 22px;
    padding: 24px;
    border: 1px solid rgba(110, 92, 75, 0.12);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-xs);
}

.contact-draft-card h3 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.contact-draft-card p,
.contact-form-note {
    color: var(--stone);
}

.contact-form-note {
    margin-top: 14px;
    font-size: 0.82rem;
}

.inline-action-form {
    display: inline-flex;
}

.admin-action-cell {
    white-space: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

@media (max-width: 768px) {
    .listing-summary-card {
        flex-direction: column;
        align-items: stretch;
        padding: 22px 20px;
    }

    .detail-meta-grid {
        grid-template-columns: 1fr;
    }

    .contact-quick-actions {
        flex-direction: column;
    }

    .contact-quick-actions .btn-outline,
    .contact-quick-actions .btn-whatsapp-lg {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================================
   Homepage Polish
   =========================================== */
.hero-content {
    max-width: 1180px;
}

.hero-title {
    max-width: 920px;
    text-wrap: balance;
}

.hero-subtitle {
    max-width: 760px;
    line-height: 1.9;
}

.hero-badge-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 0 34px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border: 1px solid rgba(245, 241, 235, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(245, 241, 235, 0.84);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-bottom {
    gap: 24px;
}

.hero {
    padding-bottom: 76px;
}

.bowls-section {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(245, 241, 235, 0.98) 100%);
    padding-top: 112px;
    padding-bottom: 108px;
}

.bowls-header,
.section-header {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.bowls-header .section-label,
.section-header .section-label,
.philosophy-inner .section-label {
    margin-bottom: 16px;
}

.bowls-header .section-title,
.section-header .section-title {
    line-height: 1.16;
}

.section-support {
    margin-top: 18px;
    color: var(--stone);
    line-height: 1.85;
}

.bowls-link-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 0 34px;
}

.bowls-link-row a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid rgba(110, 92, 75, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    color: var(--anthracite);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.bowls-link-row a:hover {
    opacity: 1;
    background: var(--anthracite);
    color: var(--off-white);
    border-color: var(--anthracite);
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 92px 72px;
}

.split-content p:not(.section-label) {
    max-width: 460px;
}

.split-detail-list {
    display: grid;
    gap: 10px;
    margin: -4px 0 28px;
}

.split-detail-list span {
    position: relative;
    padding-left: 18px;
    color: rgba(245, 241, 235, 0.82);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
}

.split-detail-list span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #d2bc97;
    transform: translateY(-50%);
}

.philosophy-inner {
    max-width: 860px;
}

.philosophy-section {
    padding-top: 124px;
    padding-bottom: 124px;
}

.philosophy-inner p {
    line-height: 2;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 42px;
    text-align: left;
}

.philosophy-card {
    padding: 22px 20px;
    border: 1px solid rgba(110, 92, 75, 0.12);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
}

.philosophy-card h3 {
    margin-bottom: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
}

.philosophy-card p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--stone);
}

.section.section-cream,
.section.section-warm {
    position: relative;
    padding-top: 112px;
    padding-bottom: 112px;
}

.section.section-cream::before,
.section.section-warm::before {
    content: '';
    position: absolute;
    inset: 0 40px auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(110, 92, 75, 0.18), transparent);
}

.section-inline-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
}

.section-inline-link {
    color: var(--anthracite);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
}

.bowls-inner,
.section.section-cream .section-inner,
.section.section-warm .section-inner,
.philosophy-inner {
    position: relative;
}

.bowls-header,
.section-header {
    max-width: 760px;
}

.section-support {
    max-width: 620px;
    line-height: 1.9;
}

.home-service-section,
.home-journal-section {
    position: relative;
    padding: 108px 40px;
}

.home-service-section::before,
.home-journal-section::before {
    content: '';
    position: absolute;
    inset: 0 40px auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(110, 92, 75, 0.18), transparent);
}

.home-service-shell {
    display: grid;
    gap: 34px;
}

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

.process-card {
    padding: 28px 24px;
    border-radius: 24px;
    border: 1px solid rgba(110, 92, 75, 0.14);
    background:
        radial-gradient(circle at top right, rgba(168, 153, 136, 0.12), transparent 34%),
        rgba(255, 252, 248, 0.92);
    box-shadow: 0 18px 44px rgba(44, 34, 25, 0.06);
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--anthracite);
    color: var(--off-white);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
}

.process-card h3 {
    margin-bottom: 10px;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--anthracite);
}

.process-card p {
    margin: 0;
    color: var(--stone);
    line-height: 1.85;
}

.process-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(51, 42, 35, 0.97), rgba(81, 66, 54, 0.9));
    color: var(--off-white);
    box-shadow: 0 22px 54px rgba(33, 26, 21, 0.18);
}

.process-cta-copy {
    max-width: 620px;
}

.process-cta-copy strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--off-white);
}

.process-cta-copy p {
    margin: 0;
    color: rgba(245, 241, 235, 0.78);
    line-height: 1.85;
}

.journal-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: stretch;
    border: 1px solid rgba(110, 92, 75, 0.14);
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(168, 153, 136, 0.12), transparent 34%),
        rgba(255, 252, 248, 0.96);
    box-shadow: 0 24px 58px rgba(44, 34, 25, 0.08);
}

.journal-feature-media {
    min-height: 100%;
}

.journal-feature-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    display: block;
}

.journal-feature-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 42px 40px;
}

.journal-feature-body h2 {
    margin-bottom: 16px;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.4vw, 3rem);
    font-weight: 500;
    color: var(--anthracite);
}

.journal-feature-body p:not(.section-label) {
    margin-bottom: 24px;
    color: var(--stone);
    line-height: 1.9;
}

.journal-feature-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.collection-note-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 34px;
}

.collection-note {
    display: inline-flex;
    align-items: center;
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(110, 92, 75, 0.14);
    background: rgba(255, 251, 246, 0.82);
    color: var(--anthracite);
    font-size: 0.74rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.philosophy-card {
    box-shadow: 0 18px 48px rgba(44, 34, 25, 0.06);
    backdrop-filter: blur(10px);
}

.bowls-link-row {
    margin-bottom: 34px;
}

.bowls-link-row a,
.split-detail-list span,
.section-inline-link,
.product-card,
.philosophy-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.bowls-link-row a {
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(110, 92, 75, 0.14);
    background: rgba(255, 251, 246, 0.82);
}

.bowls-link-row a:hover,
.split-detail-list span:hover,
.section-inline-link:hover,
.product-card:hover,
.philosophy-card:hover {
    transform: translateY(-3px);
}

.product-card:hover {
    box-shadow: 0 24px 54px rgba(52, 40, 28, 0.09);
}

.philosophy-card:hover {
    border-color: rgba(110, 92, 75, 0.2);
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content::before {
    content: '';
    width: 72px;
    height: 1px;
    margin-bottom: 28px;
    background: rgba(110, 92, 75, 0.28);
}

.split-detail-list span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 248, 240, 0.78);
    border: 1px solid rgba(110, 92, 75, 0.12);
}

.section.section-cream .product-grid,
.section.section-warm .product-grid,
.bowls-section .product-grid {
    gap: 30px;
}

.section-inline-cta {
    padding-top: 10px;
    align-items: stretch;
}

.section-inline-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    max-width: 460px;
}

.section-inline-copy strong {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--anthracite);
}

.section-inline-copy p {
    margin: 0;
    color: var(--stone);
    line-height: 1.8;
}

.section-inline-link {
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(110, 92, 75, 0.14);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 28px rgba(44, 34, 25, 0.08);
}

.bowls-section {
    background:
        radial-gradient(circle at top left, rgba(214, 200, 185, 0.22), transparent 30%),
        linear-gradient(180deg, #f8f3ed 0%, #f4ede6 100%);
}

.split-showcase {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    min-height: auto;
    background:
        linear-gradient(135deg, #f4ede4 0%, #efe5db 100%);
}

.split-image-photo {
    background: #e7ddd2;
}

.split-content {
    padding: 96px 82px;
    color: var(--anthracite);
    background:
        radial-gradient(circle at top right, rgba(168, 153, 136, 0.18), transparent 34%),
        rgba(255, 251, 246, 0.82);
}

.split-content::before {
    background: rgba(110, 92, 75, 0.32);
}

.split-content .section-label {
    color: rgba(72, 61, 52, 0.68);
}

.split-content p {
    color: #5f5348;
}

.split-detail-list {
    gap: 12px;
}

.split-detail-list span {
    padding: 12px 16px 12px 18px;
    color: #4f4338;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(110, 92, 75, 0.12);
    box-shadow: 0 10px 24px rgba(44, 34, 25, 0.05);
}

.split-detail-list span::before {
    background: #8f755e;
}

.home-service-section {
    background:
        radial-gradient(circle at top right, rgba(168, 153, 136, 0.12), transparent 30%),
        #fbf7f2;
}

.home-journal-section {
    background:
        linear-gradient(180deg, #f6efe8 0%, #f9f4ef 100%);
}

.section.section-warm {
    background:
        radial-gradient(circle at top left, rgba(192, 176, 158, 0.16), transparent 28%),
        #f5eee7;
}

@media (max-width: 768px) {
    .filter-bar {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 10px;
        padding: 18px 20px 0;
        overflow-x: auto;
        overflow-y: hidden;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .filter-bar::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex: 0 0 auto;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
        min-height: 42px;
        padding: 0 16px;
        font-size: 0.68rem;
        letter-spacing: 0.1em;
    }

    .filter-btn span {
        margin-left: 8px;
        min-width: 20px;
        height: 20px;
        padding: 0 6px;
        font-size: 0.62rem;
    }

    .listing-summary-card {
        margin-bottom: 24px;
    }

    .hero {
        min-height: 100svh;
        padding: 0 20px 52px;
    }

    .hero-content {
        padding-inline: 0;
    }

    .hero-title,
    .hero-subtitle,
    .split-content p:not(.section-label) {
        max-width: none;
    }

    .hero-title {
        font-size: clamp(2.65rem, 10vw, 4.1rem);
        letter-spacing: 0.14em;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        margin-bottom: 34px;
        font-size: 0.8rem;
        letter-spacing: 0.13em;
    }

    .hero-badge-row {
        justify-content: flex-start;
        margin-bottom: 28px;
    }

    .hero-bottom {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: end;
        gap: 14px 18px;
    }

    .hero-side-text {
        grid-column: 1 / -1;
        max-width: none;
    }

    .hero-index {
        justify-self: end;
        font-size: 0.8rem;
        letter-spacing: 0.08em;
    }

    .bowls-section,
    .section.section-cream,
    .section.section-warm,
    .philosophy-section,
    .home-service-section,
    .home-journal-section {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .split-image-photo {
        min-height: 54vh;
    }

    .split-content {
        padding: 60px 28px 68px;
    }

    .split-content::before {
        width: 56px;
        margin-bottom: 22px;
    }

    .split-content h2 {
        margin-bottom: 18px;
    }

    .split-content p {
        margin-bottom: 28px;
    }

    .split-detail-list {
        margin-bottom: 24px;
    }

    .bowls-header,
    .section-header {
        margin-bottom: 32px;
    }

    .bowls-link-row {
        justify-content: flex-start;
        margin-bottom: 26px;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 2px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .bowls-link-row::-webkit-scrollbar {
        display: none;
    }

    .bowls-link-row a,
    .collection-note {
        flex: 0 0 auto;
    }

    .section-support {
        max-width: none;
    }

    .process-grid,
    .journal-feature {
        grid-template-columns: 1fr;
    }

    .process-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .journal-feature-body {
        padding: 34px 28px;
    }

    .journal-feature-media img {
        min-height: 320px;
    }

    .collection-note-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .collection-note-row::-webkit-scrollbar {
        display: none;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .section-inline-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .section-inline-copy {
        max-width: none;
    }

    .section-inline-cta .btn-outline,
    .section-inline-link {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .section.section-cream::before,
    .section.section-warm::before,
    .home-service-section::before,
    .home-journal-section::before {
        inset-left: 20px;
        inset-right: 20px;
    }
}

@media (max-width: 560px) {
    .hero {
        padding: 0 16px 44px;
    }

    .hero-subtitle {
        margin-bottom: 28px;
    }

    .hero-bottom {
        gap: 12px 16px;
    }

    .filter-bar {
        padding-left: 16px;
        padding-right: 16px;
    }

    .bowls-section,
    .section.section-cream,
    .section.section-warm,
    .philosophy-section,
    .home-service-section,
    .home-journal-section {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .split-content {
        padding: 52px 20px 58px;
    }
}

/* Premium homepage redesign */
.home-editorial-band,
.home-signature-stage,
.home-atelier-section,
.home-process-section,
.home-runway-section,
.home-journal-section,
.home-closing-section {
    position: relative;
    overflow: clip;
}

.home-editorial-band {
    padding: 34px 0 24px;
    background:
        radial-gradient(circle at top left, rgba(214, 196, 176, 0.28), transparent 34%),
        linear-gradient(180deg, rgba(252, 248, 243, 0.96) 0%, rgba(247, 240, 233, 0.98) 100%);
}

.home-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.editorial-pillar {
    position: relative;
    padding: 28px 28px 26px;
    border: 1px solid rgba(97, 77, 58, 0.12);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 241, 234, 0.88) 100%);
    box-shadow: 0 18px 40px rgba(56, 41, 29, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.editorial-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 52px rgba(56, 41, 29, 0.12);
    border-color: rgba(97, 77, 58, 0.2);
}

.editorial-pillar-mark {
    display: inline-block;
    width: 44px;
    height: 2px;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #a88968 0%, rgba(168, 137, 104, 0.12) 100%);
}

.editorial-pillar h2 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2f241b;
}

.editorial-pillar p {
    margin: 0;
    color: #66584b;
    line-height: 1.75;
}

.home-signature-stage {
    padding: 42px 0 110px;
    background:
        radial-gradient(circle at right top, rgba(197, 175, 151, 0.18), transparent 28%),
        linear-gradient(180deg, #faf6f1 0%, #f5eee6 100%);
}

.stage-header {
    margin-bottom: 40px;
}

.signature-stage-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.32fr) minmax(330px, 0.68fr);
    gap: 24px;
    align-items: stretch;
}

.signature-primary-card,
.signature-side-card,
.signature-note-card,
.home-journal-feature,
.home-closing-shell {
    border: 1px solid rgba(95, 74, 55, 0.12);
}

.signature-primary-card,
.signature-side-card,
.runway-card,
.home-journal-feature,
.home-process-card,
.home-closing-shell {
    transition: transform 0.42s ease, box-shadow 0.42s ease, border-color 0.42s ease, background-color 0.42s ease;
}

.signature-primary-card {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    min-height: 620px;
    border-radius: 34px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background:
        linear-gradient(135deg, rgba(84, 59, 39, 0.96) 0%, rgba(49, 34, 24, 0.98) 100%);
    box-shadow: 0 28px 70px rgba(42, 28, 18, 0.16);
}

.signature-primary-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 38px 90px rgba(42, 28, 18, 0.22);
    border-color: rgba(205, 179, 149, 0.28);
}

.signature-primary-card:hover .signature-primary-media img,
.signature-side-card:hover .signature-side-media img,
.runway-card:hover .runway-card-media img,
.home-journal-media:hover img {
    transform: scale(1.05);
}

.signature-primary-media,
.signature-side-media,
.runway-card-media,
.home-journal-media {
    overflow: hidden;
}

.signature-primary-media img,
.signature-side-media img,
.runway-card-media img,
.home-journal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.signature-primary-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
    padding: 48px 42px 42px;
    color: #f7efe6;
}

.signature-card-label,
.runway-card-category {
    margin: 0 0 12px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.signature-card-label {
    color: rgba(244, 228, 210, 0.72);
}

.signature-primary-body h3 {
    margin: 0 0 14px;
    font-size: clamp(1.95rem, 3vw, 2.8rem);
    line-height: 1.08;
    color: #fff6ed;
}

.signature-primary-body p {
    margin: 0;
    color: rgba(247, 239, 230, 0.78);
    line-height: 1.8;
}

.signature-primary-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(247, 239, 230, 0.14);
}

.signature-primary-meta strong,
.runway-card-meta strong {
    font-size: 1rem;
    letter-spacing: 0.06em;
}

.signature-side-rail {
    display: grid;
    gap: 20px;
}

.signature-side-card,
.signature-note-card {
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 252, 248, 0.9);
    box-shadow: 0 18px 46px rgba(58, 43, 29, 0.08);
}

.signature-side-card {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    min-height: 188px;
    text-decoration: none;
    color: inherit;
}

.signature-side-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 60px rgba(58, 43, 29, 0.14);
    border-color: rgba(95, 74, 55, 0.22);
}

.signature-side-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    padding: 28px 26px;
}

.signature-side-body h3 {
    margin: 0;
    font-size: 1.35rem;
    line-height: 1.2;
    color: #2f241b;
}

.signature-side-body .signature-card-label {
    margin-bottom: 0;
    color: #8a735c;
}

.signature-note-card {
    padding: 30px 28px;
    background:
        radial-gradient(circle at top right, rgba(212, 188, 163, 0.24), transparent 34%),
        linear-gradient(180deg, rgba(251, 245, 238, 0.96) 0%, rgba(245, 236, 226, 0.98) 100%);
}

.signature-note-card h3,
.atelier-copy h2,
.home-process-cta strong,
.home-journal-body h2,
.home-closing-copy h2 {
    margin: 0 0 14px;
    color: #2f241b;
    line-height: 1.12;
}

.signature-note-card p,
.atelier-copy p,
.home-process-card p,
.home-process-cta p,
.home-journal-body p,
.home-closing-copy p {
    margin: 0;
    color: #635546;
    line-height: 1.8;
}

.home-link-pill,
.home-link-inline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.home-link-pill {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(95, 74, 55, 0.16);
    background: rgba(255, 255, 255, 0.82);
    color: #45352a;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-link-pill:hover {
    color: #231913;
    background: #f6ede4;
    border-color: rgba(95, 74, 55, 0.26);
    transform: translateY(-2px);
}

.home-link-inline {
    gap: 8px;
    color: #4b392c;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-link-inline::after {
    content: "";
    width: 18px;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.signature-side-card:hover .home-link-inline::after {
    width: 26px;
}

.btn-home-dark,
.btn-home-light,
.btn-home-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease;
}

.btn-home-dark {
    color: #fff8f0;
    background: linear-gradient(135deg, #3b2920 0%, #241913 100%);
    box-shadow: 0 18px 34px rgba(41, 27, 18, 0.2);
}

.btn-home-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 42px rgba(41, 27, 18, 0.26);
    color: #fff8f0;
}

.btn-home-light {
    color: #35271e;
    background: rgba(255, 251, 247, 0.92);
    border: 1px solid rgba(95, 74, 55, 0.14);
    box-shadow: 0 14px 32px rgba(53, 39, 30, 0.08);
}

.btn-home-light:hover {
    transform: translateY(-3px);
    color: #241913;
    background: #fff6ee;
    border-color: rgba(95, 74, 55, 0.24);
    box-shadow: 0 22px 42px rgba(53, 39, 30, 0.12);
}

.btn-home-ghost {
    color: rgba(255, 244, 232, 0.94);
    border: 1px solid rgba(255, 244, 232, 0.28);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.btn-home-ghost:hover {
    transform: translateY(-3px);
    color: #fff8f0;
    border-color: rgba(255, 244, 232, 0.42);
    background: rgba(255, 255, 255, 0.12);
}

.home-atelier-section {
    padding: 110px 0;
    background:
        radial-gradient(circle at left top, rgba(212, 189, 163, 0.15), transparent 30%),
        linear-gradient(180deg, #f8f1ea 0%, #fbf7f2 100%);
}

.atelier-stage-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 36px;
    align-items: center;
}

.atelier-copy {
    padding-right: 28px;
}

.atelier-copy h2 {
    font-size: clamp(2rem, 3.2vw, 3.15rem);
}

.atelier-copy-lead {
    margin-bottom: 28px;
    font-size: 1.02rem;
}

.atelier-principles {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0 0 28px;
}

.atelier-principles span {
    padding: 12px 16px;
    border-radius: 999px;
    border: 1px solid rgba(95, 74, 55, 0.14);
    background: rgba(255, 255, 255, 0.72);
    color: #48372b;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.atelier-visual {
    position: relative;
    min-height: 640px;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 34px 80px rgba(44, 31, 21, 0.14);
}

.atelier-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(31, 20, 14, 0.02) 0%, rgba(31, 20, 14, 0.22) 100%);
    pointer-events: none;
}

.atelier-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.atelier-quote-card {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    z-index: 1;
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(40, 28, 20, 0.7);
    border: 1px solid rgba(255, 245, 233, 0.16);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 36px rgba(22, 14, 9, 0.22);
}

.atelier-quote-card p {
    margin: 0;
    color: rgba(255, 247, 239, 0.9);
    line-height: 1.7;
}

.home-process-section {
    padding: 110px 0;
    background:
        linear-gradient(180deg, #f7f1ea 0%, #fbf8f4 100%);
}

.home-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.home-process-card {
    padding: 30px 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(95, 74, 55, 0.12);
    box-shadow: 0 16px 36px rgba(52, 38, 26, 0.08);
}

.home-process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 52px rgba(52, 38, 26, 0.12);
    border-color: rgba(95, 74, 55, 0.22);
}

.home-process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3c2b22 0%, #221712 100%);
    color: #fdf5ec;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.home-process-card h3 {
    margin: 0 0 12px;
    color: #30241c;
    font-size: 1.3rem;
}

.home-process-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 28px;
    padding: 28px 30px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(58, 40, 28, 0.98) 0%, rgba(28, 19, 14, 0.98) 100%);
    box-shadow: 0 24px 60px rgba(31, 20, 14, 0.18);
}

.home-process-cta strong {
    display: block;
    color: #fff6ec;
}

.home-process-cta p {
    color: rgba(255, 244, 232, 0.78);
}

.home-runway-section {
    padding: 110px 0;
    background:
        radial-gradient(circle at right top, rgba(212, 191, 168, 0.16), transparent 30%),
        linear-gradient(180deg, #faf6f2 0%, #f3ece4 100%);
}

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

.runway-card {
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 252, 248, 0.9);
    border: 1px solid rgba(95, 74, 55, 0.1);
    box-shadow: 0 18px 42px rgba(53, 38, 25, 0.08);
}

.runway-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 30px 66px rgba(53, 38, 25, 0.14);
    border-color: rgba(95, 74, 55, 0.2);
}

.runway-card-media {
    position: relative;
    aspect-ratio: 0.82;
    background: #e7ddd2;
}

.runway-card-media::after {
    content: "";
    position: absolute;
    inset: auto 16px 16px;
    height: 36px;
    border-radius: 18px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0) 72%);
    pointer-events: none;
}

.runway-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 24px 22px 22px;
}

.runway-card-category {
    margin-bottom: 0;
    color: #8a745d;
}

.runway-card-body h3 {
    margin: 0;
    color: #30241c;
    font-size: 1.28rem;
    line-height: 1.2;
}

.runway-card-body p {
    margin: 0;
    color: #69594a;
    line-height: 1.75;
}

.runway-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(95, 74, 55, 0.1);
    color: #433328;
}

.runway-card-meta span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-journal-section {
    padding: 110px 0;
    background:
        linear-gradient(180deg, #f4ebe2 0%, #fbf8f4 100%);
}

.home-journal-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    border-radius: 34px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(255, 251, 247, 0.97) 0%, rgba(246, 237, 227, 0.94) 100%);
    box-shadow: 0 28px 70px rgba(53, 38, 25, 0.1);
}

.home-journal-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 34px 80px rgba(53, 38, 25, 0.14);
    border-color: rgba(95, 74, 55, 0.18);
}

.home-journal-media {
    min-height: 480px;
}

.home-journal-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 48px 44px;
}

.home-journal-body h2 {
    font-size: clamp(2rem, 3vw, 2.85rem);
}

.home-journal-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 8px;
}

.home-closing-section {
    padding: 0 0 110px;
    background:
        linear-gradient(180deg, #fbf8f4 0%, #faf6f2 100%);
}

.home-closing-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 42px 40px;
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(199, 171, 144, 0.14), transparent 28%),
        linear-gradient(135deg, #36261d 0%, #1f1510 100%);
    box-shadow: 0 30px 74px rgba(33, 21, 15, 0.2);
}

.home-closing-copy {
    max-width: 680px;
}

.home-closing-copy .section-label,
.home-closing-copy h2,
.home-closing-copy p {
    color: #fff6ec;
}

.home-closing-copy .section-label {
    opacity: 0.68;
}

.home-closing-copy p {
    color: rgba(255, 241, 227, 0.74);
}

.home-closing-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
}

@media (max-width: 1100px) {
    .signature-stage-grid,
    .atelier-stage-grid,
    .home-journal-feature {
        grid-template-columns: 1fr;
    }

    .signature-primary-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .signature-primary-media {
        min-height: 420px;
    }

    .signature-side-rail,
    .home-runway-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .signature-side-rail {
        display: grid;
    }

    .atelier-copy {
        padding-right: 0;
    }

    .atelier-visual {
        min-height: 520px;
    }

    .home-process-grid {
        grid-template-columns: 1fr;
    }

    .home-closing-shell {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-closing-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .home-editorial-band {
        padding: 26px 0 14px;
    }

    .home-editorial-grid,
    .home-runway-grid,
    .signature-side-rail {
        grid-template-columns: 1fr;
    }

    .home-signature-stage,
    .home-atelier-section,
    .home-process-section,
    .home-runway-section,
    .home-journal-section,
    .home-closing-section {
        padding-top: 78px;
        padding-bottom: 78px;
    }

    .home-closing-section {
        padding-top: 0;
    }

    .editorial-pillar,
    .signature-primary-body,
    .signature-note-card,
    .home-process-card,
    .home-process-cta,
    .home-journal-body,
    .home-closing-shell {
        padding-left: 22px;
        padding-right: 22px;
    }

    .signature-primary-body,
    .home-journal-body {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .signature-side-card {
        grid-template-columns: 132px minmax(0, 1fr);
        min-height: 156px;
    }

    .signature-side-body {
        padding: 22px 20px;
    }

    .signature-primary-meta,
    .home-process-cta,
    .home-journal-actions,
    .home-closing-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-link-pill,
    .btn-home-dark,
    .btn-home-light,
    .btn-home-ghost {
        width: 100%;
    }

    .atelier-visual {
        min-height: 420px;
    }

    .atelier-quote-card {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .home-journal-media {
        min-height: 320px;
    }
}

@media (max-width: 560px) {
    .home-signature-stage,
    .home-atelier-section,
    .home-process-section,
    .home-runway-section,
    .home-journal-section,
    .home-closing-section {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .home-closing-section {
        padding-top: 0;
    }

    .stage-header {
        margin-bottom: 28px;
    }

    .signature-primary-card,
    .home-journal-feature,
    .home-closing-shell {
        border-radius: 26px;
    }

    .signature-primary-media {
        min-height: 340px;
    }

    .signature-side-card {
        grid-template-columns: 1fr;
    }

    .signature-side-media {
        min-height: 190px;
    }

    .signature-primary-body h3,
    .atelier-copy h2,
    .home-journal-body h2,
    .home-closing-copy h2 {
        font-size: 1.8rem;
    }

    .atelier-copy-lead,
    .signature-primary-body p,
    .home-journal-body p,
    .home-closing-copy p {
        font-size: 0.95rem;
    }

    .atelier-principles {
        gap: 10px;
    }

    .atelier-principles span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .runway-card-media {
        aspect-ratio: 0.95;
    }
}

/* Homepage baseline refinement */
.collection-note-row {
    justify-content: center;
}

.collection-note {
    box-shadow: 0 12px 28px rgba(44, 34, 25, 0.06);
}

.split-showcase {
    align-items: stretch;
}

.split-image-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section-inline-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid rgba(110, 92, 75, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 28px rgba(44, 34, 25, 0.08);
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, color 0.35s ease;
}

.section-inline-link:hover {
    opacity: 1;
    color: var(--off-white);
    background: var(--anthracite);
    border-color: var(--anthracite);
    box-shadow: 0 18px 34px rgba(44, 34, 25, 0.14);
    transform: translateY(-2px);
}

.process-cta .btn-outline {
    color: var(--anthracite);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(180deg, #fffdfa 0%, #f4ebe1 100%);
    box-shadow: 0 16px 36px rgba(22, 15, 11, 0.16);
}

.process-cta .btn-outline:hover {
    color: var(--anthracite);
    background: linear-gradient(180deg, #ffffff 0%, #f7efe7 100%);
    border-color: rgba(255, 255, 255, 0.5);
}

.journal-feature {
    transition: transform 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease;
}

.journal-feature-media {
    overflow: hidden;
}

.journal-feature-media img {
    transition: transform 0.7s ease;
}

.journal-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(44, 34, 25, 0.12);
    border-color: rgba(110, 92, 75, 0.2);
}

.journal-feature:hover .journal-feature-media img {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .collection-note-row {
        justify-content: flex-start;
    }

    .journal-feature-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .journal-feature-actions .btn-outline,
    .journal-feature-actions .section-inline-link,
    .process-cta .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile correction pass */
@media (hover: none) {
    .product-card-overlay {
        display: none;
    }

    .product-card:hover .product-img-wrap img,
    .product-card:hover,
    .philosophy-card:hover,
    .journal-feature:hover,
    .btn-outline:hover,
    .btn-card-view:hover,
    .section-inline-link:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .product-card-overlay {
        display: none;
    }

    .product-card:hover .product-img-wrap img {
        transform: none;
    }

    .bowls-section,
    .section.section-cream,
    .section.section-warm,
    .philosophy-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .split-showcase {
        grid-template-columns: 1fr !important;
    }

    .split-image,
    .split-image-photo,
    .split-image-photo img {
        min-height: 300px;
    }

    .split-content {
        padding: 34px 18px 38px !important;
    }

    .split-content h2,
    .philosophy-inner h2,
    .journal-feature-body h2,
    .section-title {
        font-size: clamp(1.85rem, 8vw, 2.35rem);
        line-height: 1.14;
        letter-spacing: -0.01em;
    }

    .section-label,
    .product-card-category {
        font-size: 0.67rem;
        letter-spacing: 0.16em;
    }

    .section-support,
    .split-content p,
    .philosophy-inner p,
    .philosophy-card p,
    .process-card p,
    .process-cta-copy p,
    .journal-feature-body p:not(.section-label) {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .collection-note-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        overflow: visible;
        padding-bottom: 0;
    }

    .collection-note {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 13px 16px;
        font-size: 0.66rem;
        letter-spacing: 0.13em;
    }

    .bowls-section .product-grid,
    .bowls-section .product-grid.product-grid-3,
    .section.section-cream .product-grid,
    .section.section-cream .product-grid.product-grid-single {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .product-card {
        max-width: none;
    }

    .product-card-image {
        margin-bottom: 12px;
        border-radius: 18px;
    }

    .product-card-info {
        gap: 8px;
        padding: 0;
    }

    .product-card-name {
        font-size: 1.12rem;
        line-height: 1.26;
    }

    .product-card-rating {
        gap: 6px;
        font-size: 0.74rem;
        flex-wrap: wrap;
    }

    .product-card-price {
        font-size: 0.94rem;
    }

    .btn-card-view {
        align-self: flex-start;
        width: auto !important;
        min-height: 42px;
        padding: 0 18px;
        font-size: 0.64rem;
        letter-spacing: 0.12em;
    }

    .split-detail-list {
        gap: 10px;
        margin-bottom: 22px;
    }

    .split-detail-list span {
        padding: 14px 16px 14px 32px;
        font-size: 0.84rem;
        line-height: 1.55;
    }

    .split-detail-list span::before {
        left: 14px;
        width: 6px;
        height: 6px;
    }

    .philosophy-inner {
        text-align: left;
    }

    .philosophy-grid {
        gap: 12px;
        margin-top: 24px;
    }

    .philosophy-card,
    .process-card {
        padding: 22px 18px;
        border-radius: 20px;
        box-shadow: 0 14px 30px rgba(44, 34, 25, 0.06);
    }

    .process-grid {
        gap: 14px;
    }

    .process-step {
        width: 40px;
        height: 40px;
        min-width: 40px;
        margin-bottom: 16px;
    }

    .process-card h3,
    .process-cta-copy strong {
        font-size: 1.18rem;
        line-height: 1.35;
    }

    .process-cta {
        padding: 22px 18px;
        border-radius: 22px;
        gap: 16px;
    }

    .journal-feature {
        border-radius: 24px;
        box-shadow: 0 18px 40px rgba(44, 34, 25, 0.08);
    }

    .journal-feature-body {
        padding: 28px 20px !important;
    }

    .journal-feature-actions {
        gap: 10px;
    }

    .journal-feature-actions .btn-outline,
    .journal-feature-actions .section-inline-link,
    .process-cta .btn-outline,
    .section-inline-cta .section-inline-link {
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size: clamp(2.45rem, 12vw, 3.6rem);
    }

    .bowls-section,
    .section.section-cream,
    .section.section-warm,
    .philosophy-section {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .split-image,
    .split-image-photo,
    .split-image-photo img,
    .journal-feature-media img {
        min-height: 260px;
    }

    .split-content,
    .journal-feature-body {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* Launch polish */
.product-grid {
    align-items: start;
}

.product-card {
    align-self: start;
}

.product-card-image {
    border: 1px solid rgba(132, 111, 91, 0.1);
    box-shadow: 0 14px 28px rgba(44, 34, 25, 0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card-overlay {
    display: none !important;
}

.product-card:hover {
    transform: none;
    box-shadow: none;
}

.product-card:hover .product-img-wrap img {
    transform: none;
}

.product-card:hover .product-card-image {
    border-color: rgba(132, 111, 91, 0.18);
    box-shadow: 0 18px 34px rgba(44, 34, 25, 0.08);
}

.product-card-name:hover {
    opacity: 1;
    color: #5e4b3d;
}

.btn-card-view {
    min-height: 40px;
    padding: 0 16px;
    background: #fffaf4;
}

.btn-card-view:hover {
    transform: none;
    background: #f1e8de;
    color: #3a2d23;
    border-color: rgba(110, 92, 75, 0.22);
}

.bowls-section {
    background:
        linear-gradient(180deg, #fbf8f4 0%, #f6efe6 100%);
}

.split-showcase {
    background:
        linear-gradient(135deg, #f7f1e8 0%, #f1e8de 100%);
}

.philosophy-section {
    background:
        linear-gradient(180deg, #faf6f1 0%, #f4ede5 100%);
}

.section.section-cream {
    background:
        linear-gradient(180deg, #faf7f2 0%, #f5eee6 100%);
}

.section.section-warm {
    background:
        linear-gradient(180deg, #f5eee6 0%, #f1e8df 100%);
}

.process-card {
    background:
        linear-gradient(180deg, rgba(255, 252, 248, 0.96) 0%, rgba(249, 243, 236, 0.94) 100%);
}

.process-cta {
    margin-top: 18px;
    background:
        linear-gradient(135deg, #7a6859 0%, #665649 100%);
    box-shadow: 0 22px 48px rgba(62, 46, 34, 0.14);
}

.process-cta-copy p {
    color: rgba(255, 244, 233, 0.84);
}

.process-cta .btn-outline {
    background: linear-gradient(180deg, #fffdfa 0%, #f7efe7 100%);
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow: none;
}

.journal-feature {
    background:
        linear-gradient(135deg, rgba(255, 252, 248, 0.98) 0%, rgba(248, 241, 233, 0.96) 100%);
}

@media (max-width: 768px) {
    .collection-note-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .collection-note:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }

    .bowls-section .product-grid,
    .bowls-section .product-grid.product-grid-3,
    .section.section-cream .product-grid,
    .section.section-cream .product-grid.product-grid-single {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .product-card-image {
        aspect-ratio: 3 / 4.15;
        margin-bottom: 10px;
    }

    .product-card-info {
        gap: 6px;
    }

    .product-card-category {
        font-size: 0.61rem;
        letter-spacing: 0.15em;
    }

    .product-card-name {
        font-size: 0.98rem;
        line-height: 1.24;
    }

    .product-card-rating {
        gap: 5px;
        font-size: 0.68rem;
    }

    .product-card-price {
        font-size: 0.88rem;
    }

    .btn-card-view {
        min-height: 36px;
        padding: 0 12px;
        font-size: 0.58rem;
        letter-spacing: 0.13em;
    }

    .process-cta {
        margin-top: 14px;
        padding: 20px 18px;
    }

    .journal-feature-body {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
    }
}

@media (max-width: 480px) {
    .collection-note {
        padding: 11px 10px;
        font-size: 0.6rem;
    }

    .bowls-section .product-grid,
    .bowls-section .product-grid.product-grid-3,
    .section.section-cream .product-grid,
    .section.section-cream .product-grid.product-grid-single {
        gap: 14px;
    }

    .product-card-name {
        font-size: 0.91rem;
    }

    .product-card-rating {
        font-size: 0.63rem;
    }

    .product-card-price {
        font-size: 0.82rem;
    }

    .btn-card-view {
        padding: 0 11px;
    }
}

/* Stability refinements */
.filter-bar {
    max-width: var(--container);
    margin: 0 auto;
}

.blog-list-page {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.blog-grid,
.blog-grid.compact {
    max-width: none;
}

.listing-summary-card-blog {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(247, 241, 234, 0.94) 100%);
}

.split-content h2 {
    max-width: 760px;
}

.split-content p:not(.section-label) {
    max-width: 560px;
}

.split-detail-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 700px;
    margin: 4px 0 30px;
}

.split-detail-list span {
    display: inline-flex;
    align-items: center;
    width: auto;
    max-width: 100%;
    min-height: 46px;
    padding: 12px 18px 12px 30px;
    line-height: 1.5;
}

.split-detail-list span::before {
    left: 13px;
}

.contact-form {
    scroll-margin-top: 110px;
}

@media (max-width: 1024px) {
    .blog-list-page {
        padding-left: 24px;
        padding-right: 24px;
    }

    .split-detail-list {
        max-width: 560px;
    }
}

@media (max-width: 768px) {
    .blog-list-page {
        padding-left: 20px;
        padding-right: 20px;
    }

    .listing-summary-card-blog {
        margin-bottom: 24px;
    }

    .split-detail-list {
        display: grid;
        max-width: none;
        margin: 0 0 22px;
    }
}

/* ===========================================
   Interior Design Experience
   =========================================== */
.interior-design-body {
    overflow-x: clip;
}

.interior-hero {
    padding: 120px 40px 48px;
    background:
        radial-gradient(circle at top right, rgba(215, 194, 171, 0.3), transparent 28%),
        linear-gradient(180deg, #fbf7f2 0%, #f3ece3 100%);
}

.interior-hero-shell,
.interior-layout-shell,
.interior-results-shell {
    max-width: var(--container);
    margin: 0 auto;
}

.interior-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 420px);
    gap: 28px;
    align-items: stretch;
}

.interior-hero-copy,
.interior-hero-panel,
.interior-card,
.interior-success-card,
.interior-reference-card,
.interior-result-card,
.interior-alert,
.admin-generated-card,
.admin-large-preview,
.admin-selected-option {
    border: 1px solid rgba(110, 92, 75, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(246, 239, 232, 0.96) 100%);
    box-shadow: 0 20px 48px rgba(44, 34, 25, 0.08);
}

.interior-hero-copy,
.interior-hero-panel,
.interior-card,
.interior-success-card,
.interior-reference-card {
    border-radius: 28px;
}

.interior-hero-copy {
    padding: 40px;
}

.interior-hero-copy h1 {
    margin-bottom: 18px;
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4.3vw, 4rem);
    font-weight: 300;
    line-height: 1.08;
    color: #2f241c;
}

.interior-hero-copy p,
.interior-hero-panel p,
.interior-card-head p,
.interior-form-footnote,
.interior-result-body p,
.interior-result-body small,
.interior-inline-note p,
.interior-success-copy p {
    color: #655549;
    line-height: 1.8;
}

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

.interior-hero-pills span,
.interior-style-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(110, 92, 75, 0.12);
    background: rgba(255, 255, 255, 0.78);
    font-size: 0.71rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #5b4a3d;
}

.interior-hero-panel {
    padding: 34px 30px;
}

.interior-hero-panel h2,
.interior-card-head h2,
.interior-success-copy h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: #2f241c;
}

.interior-process-list {
    display: grid;
    gap: 16px;
    margin: 22px 0 18px;
    padding-left: 18px;
    color: #44352b;
}

.interior-panel-note {
    font-size: 0.92rem;
}

.interior-layout {
    padding: 0 40px 64px;
    background:
        linear-gradient(180deg, #f3ece3 0%, #faf7f3 100%);
}

.interior-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.interior-column,
.interior-card,
.interior-form,
.interior-form fieldset,
.interior-upload-drop,
.interior-upload-preview,
.interior-upload-preview-media,
.interior-upload-preview-media img,
.interior-upload-preview-actions,
.interior-submit-row,
.interior-success-actions {
    min-width: 0;
    max-width: 100%;
}

.interior-form fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

.interior-card {
    padding: 28px;
}

.interior-card-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    min-width: 0;
}

.interior-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #3c2d22;
    color: #fff4ea;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
}

.interior-form {
    display: grid;
    gap: 16px;
}

.interior-autofill-guard {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.interior-form input,
.interior-form textarea,
.interior-form select {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid rgba(110, 92, 75, 0.14);
    background: rgba(255, 255, 255, 0.88);
    color: #2c221b;
}

.interior-form textarea {
    min-height: 140px;
    padding-top: 14px;
    padding-bottom: 14px;
    resize: vertical;
}

.interior-upload-drop {
    position: relative;
    display: grid;
    gap: 8px;
    width: 100%;
    padding: 22px;
    border-radius: 22px;
    border: 1px dashed rgba(110, 92, 75, 0.28);
    background: rgba(255, 255, 255, 0.72);
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.interior-upload-drop input[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.interior-upload-title {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: #433329;
}

.interior-upload-file-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: #2f241c;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.interior-upload-drop small,
.interior-usage-card small,
.interior-reference-card small {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    color: #816f60;
}

.interior-upload-drop:hover {
    border-color: rgba(90, 72, 57, 0.35);
    background: rgba(255, 255, 255, 0.84);
    transform: translateY(-1px);
}

.interior-upload-preview {
    display: grid;
    gap: 14px;
    width: 100%;
}

.interior-upload-preview[hidden] {
    display: none !important;
}

.interior-upload-preview-media,
.interior-success-preview,
.interior-result-media,
.admin-large-preview,
.admin-generated-card img,
.admin-selected-option img {
    overflow: hidden;
    border-radius: 22px;
    background: #efe5db;
}

.interior-upload-preview-media {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 4 / 3;
    padding: 12px;
}

.interior-upload-preview-media.is-landscape {
    aspect-ratio: 16 / 9;
}

.interior-upload-preview-media.is-portrait {
    aspect-ratio: 4 / 5;
}

.interior-upload-preview-media.is-square {
    aspect-ratio: 1 / 1;
}

.interior-upload-preview-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 16px;
}

.interior-success-preview img,
.interior-result-media img,
.admin-large-preview img,
.admin-generated-card img,
.admin-selected-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.interior-upload-preview-actions,
.interior-submit-row,
.interior-success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.interior-upload-preview-actions {
    justify-content: flex-end;
}

.interior-upload-preview-actions .btn-admin {
    max-width: 100%;
}

.interior-usage-card,
.interior-inline-note {
    margin-top: 20px;
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(110, 92, 75, 0.12);
}

.interior-usage-card.is-active {
    display: grid;
    gap: 14px;
}

.interior-usage-pill {
    display: inline-grid;
    width: fit-content;
    gap: 6px;
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid rgba(110, 92, 75, 0.14);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 239, 231, 0.96) 100%);
}

.interior-usage-link {
    width: fit-content;
}

.interior-usage-card strong,
.interior-reference-card strong {
    display: block;
    margin-top: 4px;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: #2d221a;
}

.interior-form-footnote {
    font-size: 0.84rem;
}

#interior-contact,
#interior-upload,
#interior-results {
    scroll-margin-top: calc(var(--nav-height) + 28px);
}

.interior-submit-note {
    margin: -2px 0 0;
    font-size: 0.84rem;
    color: #7a685a;
}

.interior-alert {
    margin-bottom: 22px;
    padding: 18px 22px;
}

.interior-alert p {
    margin: 0;
    color: #3b2d24;
}

.interior-alert-success {
    border-color: rgba(75, 111, 80, 0.18);
    background: linear-gradient(180deg, rgba(244, 251, 244, 0.98) 0%, rgba(236, 246, 236, 0.96) 100%);
}

.interior-alert-error {
    border-color: rgba(165, 88, 72, 0.18);
    background: linear-gradient(180deg, rgba(252, 245, 242, 0.98) 0%, rgba(248, 235, 230, 0.96) 100%);
}

.interior-alert-info {
    border-color: rgba(110, 92, 75, 0.12);
}

.interior-toast {
    position: fixed;
    top: calc(var(--nav-height) + 18px);
    right: 22px;
    z-index: 1200;
    width: min(420px, calc(100vw - 32px));
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.interior-toast.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.interior-toast-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(110, 92, 75, 0.14);
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(245, 238, 230, 0.96) 100%);
    box-shadow: 0 22px 48px rgba(38, 28, 20, 0.16);
}

.interior-toast-copy {
    display: grid;
    gap: 6px;
}

.interior-toast-copy strong {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #4e3d31;
}

.interior-toast-copy p {
    margin: 0;
    color: #5f4f42;
    line-height: 1.6;
}

.interior-toast-close {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: rgba(68, 52, 40, 0.08);
    color: #4b3a2e;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.interior-toast-close:hover {
    background: rgba(68, 52, 40, 0.16);
    color: #2d221a;
}

.interior-toast-success .interior-toast-inner {
    border-color: rgba(87, 122, 90, 0.18);
    background: linear-gradient(180deg, rgba(245, 251, 245, 0.98) 0%, rgba(236, 245, 236, 0.96) 100%);
}

.interior-toast-info .interior-toast-inner {
    border-color: rgba(110, 92, 75, 0.14);
}

.interior-processing-overlay {
    position: fixed;
    inset: 0;
    z-index: 2050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(245, 239, 232, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.interior-processing-overlay[hidden] {
    display: none !important;
}

.interior-processing-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.interior-processing-card {
    display: grid;
    justify-items: center;
    gap: 12px;
    width: min(440px, 100%);
    padding: 28px 26px;
    border-radius: 28px;
    border: 1px solid rgba(110, 92, 75, 0.14);
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.98) 0%, rgba(244, 236, 228, 0.96) 100%);
    box-shadow: 0 24px 54px rgba(35, 25, 18, 0.16);
    text-align: center;
}

.interior-processing-card strong {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 300;
    color: #2f241c;
}

.interior-processing-card p,
.interior-processing-card small {
    margin: 0;
    color: #655549;
}

.interior-processing-card small {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.interior-success-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
    align-items: start;
    gap: 24px;
    padding: 28px;
    margin-bottom: 24px;
}

.interior-success-copy {
    display: grid;
    align-content: start;
    gap: 16px;
}

.interior-success-copy p {
    margin: 0;
}

.interior-success-facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.interior-success-fact {
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(110, 92, 75, 0.12);
    background: rgba(255, 255, 255, 0.76);
}

.interior-success-fact small {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #867364;
}

.interior-success-fact strong {
    display: block;
    margin-top: 8px;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.3;
    color: #2d221a;
}

.interior-success-status {
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(110, 92, 75, 0.12);
    background: rgba(255, 255, 255, 0.58);
}

.interior-success-preview {
    aspect-ratio: 4 / 5;
    min-height: 0;
}

.interior-results-section {
    padding: 0 40px 80px;
    background:
        linear-gradient(180deg, #faf7f3 0%, #f1eae1 100%);
}

.interior-reference-card {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 18px;
    padding: 18px 24px;
    margin-bottom: 26px;
}

.interior-results-grid,
.admin-generated-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.interior-result-card,
.admin-generated-card {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
}

.interior-result-media {
    aspect-ratio: 4 / 4.7;
}

.interior-style-chip {
    position: static;
    min-height: 34px;
    padding: 0 14px;
}

.interior-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.interior-result-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(110, 92, 75, 0.12);
    background: rgba(244, 238, 231, 0.88);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6a5849;
}

.interior-result-body,
.admin-generated-card-body {
    display: grid;
    gap: 12px;
    padding: 22px;
}

.interior-result-body h3,
.admin-generated-card-body h3 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 300;
    color: #2c221b;
}

.interior-result-body form {
    margin-top: 6px;
}

.interior-result-body .btn-outline {
    width: 100%;
    justify-content: center;
}

.admin-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-bottom: 22px;
}

.admin-detail-list {
    display: grid;
    gap: 14px;
}

.admin-detail-list div {
    display: grid;
    gap: 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(110, 92, 75, 0.1);
}

.admin-detail-list strong {
    font-size: 0.76rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
}

.admin-large-preview {
    padding: 16px;
}

.admin-large-preview img {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
}

.admin-selected-option {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
    border-radius: 20px;
}

.admin-selected-option img {
    aspect-ratio: 1;
    border-radius: 16px;
}

@media (max-width: 1100px) {
    .interior-hero-shell,
    .interior-success-card,
    .admin-detail-grid {
        grid-template-columns: 1fr;
    }

    .interior-results-grid,
    .admin-generated-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .interior-hero,
    .interior-layout,
    .interior-results-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .interior-grid,
    .interior-results-grid,
    .admin-generated-grid,
    .admin-detail-grid {
        grid-template-columns: 1fr;
    }

    .interior-hero-copy,
    .interior-hero-panel,
    .interior-card,
    .interior-success-card {
        padding: 22px;
        border-radius: 22px;
    }

    .interior-card-head {
        display: grid;
        grid-template-columns: 48px minmax(0, 1fr);
        gap: 14px;
    }

    .interior-hero-copy h1 {
        font-size: clamp(2.1rem, 11vw, 3rem);
    }

    .interior-toast {
        top: auto;
        right: 16px;
        bottom: 16px;
        width: auto;
        left: 16px;
        transform: translateY(12px);
    }

    .interior-processing-card {
        padding: 24px 20px;
    }

    .interior-upload-preview-actions,
    .interior-submit-row,
    .interior-success-actions,
    .interior-hero-pills {
        flex-direction: column;
        align-items: stretch;
    }

    .interior-upload-preview-actions .btn-admin,
    .interior-submit-row .btn-outline,
    .interior-success-actions .btn-outline,
    .interior-success-actions .section-inline-link {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }

    .interior-reference-card {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .interior-success-facts {
        grid-template-columns: 1fr;
    }

    .admin-selected-option {
        grid-template-columns: 1fr;
    }

    .interior-upload-preview-media {
        aspect-ratio: 1 / 1;
        padding: 10px;
    }

    .interior-upload-preview-media.is-landscape {
        aspect-ratio: 4 / 3;
    }

    .interior-upload-file-name,
    .interior-card-head h2,
    .interior-card-head p,
    .interior-form-footnote,
    .interior-usage-card p {
        overflow-wrap: anywhere;
    }
}
