:root {
    --cream: #f7f3ee;
    --warm-white: #fdfaf7;
    --sand: #e8e0d5;
    --stone: #c4b9ac;
    --bark: #8c7b6e;
    --earth: #5c4f44;
    --charcoal: #2a2420;
    --blush: #e8cbbf;
    --terracotta: #c4735a;
    --sage: #8fa889;
    --gold: #c4a35a;
    --ink: #1a1614;
    --bg: #fafaf8;
    --white: #ffffff;
    --muted: #a09080;
    --terra: #b5624a;
    --terra-light: #f0e4df;
    --gold-alt: #c4954a;
    --sage-alt: #7a9b7f;
    --blush-alt: #e8c4b8;
    --border: #ede7dc;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    overflow-x: hidden;
    cursor: none;
    padding-bottom: 64px;
}

/* CURSOR */
#cur {
    position: fixed;
    width: 10px;
    height: 10px;
    background: var(--terracotta);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition:
        width 0.2s,
        height 0.2s,
        background 0.2s;
}
#cur-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid var(--terracotta);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0.5;
    transition: all 0.12s;
}
a:hover ~ #cur,
button:hover ~ #cur {
    width: 20px;
    height: 20px;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 52px;
    background: rgba(253, 250, 247, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--sand);
}
.nav-logo {
    font-family: "DM Serif Display", serif;
    font-size: 1.25rem;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: 0.01em;
}
.nav-logo span {
    color: var(--terracotta);
    font-style: italic;
}
.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--bark);
    text-decoration: none;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--ink);
}
.nav-cta {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-white);
    background: var(--ink);
    padding: 10px 24px;
    border-radius: 2px;
    text-decoration: none;
    cursor: none;
    transition: background 0.2s;
}
.nav-cta:hover {
    background: var(--terracotta);
}
@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    nav {
        padding: 18px 24px;
    }
}
/* SEARCH OVERLAY */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 250, 247, 0.98);
    z-index: 1000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-container {
    width: 100%;
    max-width: 640px;
    padding: 0 24px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 2px solid var(--sand);
    transition: border-color 0.3s;
}

.search-input-wrapper:focus-within {
    border-color: var(--terracotta);
}

.search-icon {
    position: absolute;
    left: 0;
    color: var(--stone);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 16px 60px 16px 36px;
    font-family: "Inter", sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--ink);
    background: transparent;
    border: none;
    outline: none;
}

.search-input::placeholder {
    color: var(--stone);
}

.search-close {
    position: absolute;
    right: 0;
    background: none;
    border: none;
    color: var(--bark);
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.search-close:hover {
    color: var(--ink);
}

.search-results {
    margin-top: 32px;
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--sand);
    cursor: pointer;
    transition: background 0.2s;
}

.search-result-item:hover {
    background: rgba(212, 175, 155, 0.1);
    padding-left: 8px;
    border-radius: 4px;
}

.search-result-title {
    font-family: "DM Serif Display", serif;
    font-size: 1.125rem;
    color: var(--ink);
    margin-bottom: 4px;
}

.search-result-category {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
}

/* Show search button only on mobile */
.nav-search {
    display: none;
}

@media (max-width: 768px) {
    .nav-search {
        display: flex;
    }

    .search-overlay {
        padding-top: 80px;
    }

    .search-input {
        font-size: 1rem;
        padding: 14px 50px 14px 32px;
    }
}
/* SEARCH HIGHLIGHT EFFECT */
.search-highlight {
    box-shadow: 0 0 0 3px var(--terracotta) !important;
    transform: scale(1.02);
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
    border-radius: 4px;
}
/* HERO */
#hero {
    min-height: 100vh;
    padding: 120px 52px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 60px;
    position: relative;
}
.hero-text {
    padding-bottom: 60px;
}
.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.hero-eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--terracotta);
}
.hero-h1 {
    font-family: "DM Serif Display", serif;
    font-size: clamp(3.2rem, 6vw, 5.2rem);
    line-height: 1.08;
    color: var(--ink);
    margin-bottom: 28px;
}
.hero-h1 em {
    font-style: italic;
    color: var(--terracotta);
}
.hero-sub {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--bark);
    max-width: 380px;
    margin-bottom: 48px;
    font-weight: 300;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.btn-primary {
    background: var(--ink);
    color: var(--warm-white);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 2px;
    text-decoration: none;
    cursor: none;
    border: none;
    transition: background 0.2s;
    display: inline-block;
}
.btn-primary:hover {
    background: var(--terracotta);
}
.btn-ghost {
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bark);
    text-decoration: none;
    cursor: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
    border: none;
    background: none;
}
.btn-ghost:hover {
    color: var(--ink);
}
.btn-ghost svg {
    transition: transform 0.2s;
}
.btn-ghost:hover svg {
    transform: translateX(4px);
}

.hero-visual {
    position: relative;
    height: 580px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.hero-big-text {
    font-family: "DM Serif Display", serif;
    font-size: clamp(8rem, 18vw, 16rem);
    color: var(--sand);
    line-height: 1;
    letter-spacing: -0.04em;
    user-select: none;
    position: absolute;
    bottom: 0;
    right: -20px;
}
.hero-card-float {
    position: absolute;
    background: var(--warm-white);
    border: 1px solid var(--sand);
    border-radius: 4px;
    padding: 20px 24px;
    width: 200px;
    box-shadow: 0 20px 60px rgba(42, 36, 32, 0.08);
}
.hero-card-float.c1 {
    top: 60px;
    left: 20px;
}
.hero-card-float.c2 {
    top: 180px;
    right: 30px;
}
.hero-card-float.c3 {
    bottom: 100px;
    left: 60px;
}
.hcf-num {
    font-family: "DM Serif Display", serif;
    font-size: 2rem;
    color: var(--ink);
}
.hcf-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bark);
    margin-top: 4px;
}
.hcf-dot {
    width: 6px;
    height: 6px;
    background: var(--terracotta);
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 52px;
    font-size: 0.68rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--stone);
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero-scroll::before {
    content: "";
    width: 1px;
    height: 40px;
    background: var(--stone);
}

@media (max-width: 900px) {
    #hero {
        grid-template-columns: 1fr;
        padding: 110px 24px 60px;
        gap: 40px;
    }
    .hero-visual {
        height: 280px;
    }
    .hero-big-text {
        font-size: 8rem;
        right: 0;
    }
    .hero-card-float.c2,
    .hero-card-float.c3 {
        display: none;
    }
    .hero-card-float.c1 {
        top: 20px;
    }
    .hero-scroll {
        left: 24px;
    }
}
/* --- ADD THIS: Base styles for the image (Desktop) --- */
.hero-big-text img {
    width: 600px; /* Replaces the removed inline style */
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- UPDATE THIS: Your existing mobile media query --- */
@media (max-width: 900px) {
    #hero {
        grid-template-columns: 1fr;
        padding: 110px 24px 60px;
        gap: 40px;
    }

    .hero-visual {
        height: 320px; /* Increased height slightly to fit the image nicely */
        align-items: center; /* Vertically centers the image */
    }

    .hero-big-text {
        font-size: 8rem;
        position: relative; /* Changes from absolute to flow naturally in the grid */
        right: auto;
        bottom: auto;
        width: 100%;
        text-align: center;
    }

    .hero-big-text img {
        max-width: 280px; /* Adjust this value (250px - 320px) until it looks perfect on your phone */
        width: 100%;
        margin: 0 auto; /* Centers the image horizontally */
    }

    .hero-card-float.c2,
    .hero-card-float.c3 {
        display: none;
    }
    .hero-card-float.c1 {
        top: 20px;
        left: 20px;
    }
    .hero-scroll {
        left: 24px;
    }
}
/* HERO STRIP */
.shop-hero {
    margin-top: 68px;
    padding: 56px 52px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
}
@media (max-width: 768px) {
    .shop-hero {
        padding: 48px 20px 0;
        grid-template-columns: 1fr;
    }
}
.sh-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terra);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sh-eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--terra);
}
.sh-h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.08;
    color: var(--ink);
}
.sh-h1 em {
    font-style: italic;
    color: var(--terra);
}
.sh-sub {
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 300;
    margin-top: 10px;
    line-height: 1.6;
}
.sh-stats {
    display: flex;
    gap: 40px;
    text-align: right;
}
@media (max-width: 768px) {
    .sh-stats {
        display: none;
    }
}
.sh-stat-n {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 500;
    color: var(--ink);
    line-height: 1;
}
.sh-stat-l {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 2px;
}

/* MARQUEE */
.marquee-wrap {
    background: var(--ink);
    padding: 14px 0;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: scroll-left 20s linear infinite;
}
.marquee-item {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 48px;
}
.marquee-item::after {
    content: "·";
    color: var(--terracotta);
}
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* SECTIONS */
section {
    padding: 100px 52px;
}
@media (max-width: 768px) {
    section {
        padding: 72px 24px;
    }
}

.sec-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
}
.sec-h2 {
    font-family: "DM Serif Display", serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--ink);
    line-height: 1.12;
}
.sec-h2 em {
    font-style: italic;
    color: var(--terracotta);
}
.sec-body {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--bark);
    font-weight: 300;
    max-width: 460px;
}

/* SERVICES */
#services {
    background: var(--cream);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--sand);
    margin-top: 60px;
    border: 1px solid var(--sand);
}
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 560px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.svc-card {
    background: var(--cream);
    padding: 36px 32px;
    cursor: none;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
}
.svc-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--terracotta);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.svc-card:hover {
    background: var(--warm-white);
}
.svc-card:hover::after {
    transform: scaleX(1);
}
.svc-icon {
    font-size: 1.6rem;
    margin-bottom: 20px;
    display: block;
}
.svc-name {
    font-family: "DM Serif Display", serif;
    font-size: 1.3rem;
    color: var(--ink);
    margin-bottom: 8px;
}
.svc-price {
    font-size: 1rem;
    color: var(--terracotta);
    letter-spacing: 0.06em;
    font-weight: 800;
    margin-bottom: 16px;
}
.svc-desc {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--bark);
    font-weight: 300;
    margin-bottom: 24px;
}
.svc-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.svc-items li {
    font-size: 0.78rem;
    color: var(--earth);
    display: flex;
    align-items: center;
    gap: 8px;
}
.svc-items li::before {
    content: "—";
    color: var(--stone);
}
.svc-book {
    margin-top: 28px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--earth);
    display: flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: none;
    cursor: none;
    transition: color 0.2s;
    padding: 0;
}
.svc-book:hover {
    color: var(--terracotta);
}

/* PROCESS */
#process {
    background: var(--warm-white);
}
.process-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}
@media (max-width: 768px) {
    .process-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.step {
    padding: 28px 0;
    border-bottom: 1px solid var(--sand);
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 20px;
    align-items: start;
    cursor: none;
}
.step:last-child {
    border-bottom: none;
}
.step-num {
    font-family: "DM Serif Display", serif;
    font-size: 1rem;
    color: var(--stone);
    padding-top: 2px;
}
.step-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
}
.step-desc {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--bark);
    font-weight: 300;
}

/* GALLERY */
#gallery {
    background: var(--cream);
}
.gallery-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}
@media (max-width: 768px) {
    .gallery-intro {
        grid-template-columns: 1fr;
    }
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
.g-cell {
    border-radius: 2px;
    overflow: hidden;
    cursor: none;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.g-cell:hover {
    transform: scale(1.01);
}
.g-cell:nth-child(1) {
    grid-row: span 2;
}
.g-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    min-height: 200px;
}
.g-cell:nth-child(1) .g-inner {
    min-height: 416px;
}
.ga {
    background: #e8ddd4;
}
.gb {
    background: #d9e4de;
}
.gc {
    background: #e4dce8;
}
.gd {
    background: #e8e0d0;
}
.ge {
    background: #d8e4e0;
}
.gf {
    background: #ead8d0;
}
.g-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(26, 22, 20, 0.7), transparent);
    transform: translateY(100%);
    transition: transform 0.3s;
}
.g-cell:hover .g-meta {
    transform: translateY(0);
}
.g-meta-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: #fff;
}
.g-meta-sub {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
}

/* TESTIMONIALS */
#testi {
    background: var(--ink);
}
.testi-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 56px;
}
.testi-top .sec-h2 {
    color: var(--warm-white);
}
.testi-top .sec-label {
    color: var(--blush);
}
.testi-rating {
    text-align: right;
}
.testi-num {
    font-family: "DM Serif Display", serif;
    font-size: 3rem;
    color: var(--warm-white);
    line-height: 1;
}
.testi-sub {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stone);
    margin-top: 4px;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 768px) {
    .testi-grid {
        grid-template-columns: 1fr;
    }
    .testi-top {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }
}
.t-card {
    background: var(--ink);
    padding: 32px 28px;
}
.t-quote {
    font-family: "DM Serif Display", serif;
    font-size: 1.05rem;
    line-height: 1.65;
    color: rgba(253, 250, 247, 0.85);
    margin-bottom: 28px;
    font-style: italic;
}
.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.t-ava {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.t-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--blush);
}
.t-where {
    font-size: 0.72rem;
    color: var(--stone);
    margin-top: 1px;
}

/* CUSTOMIZE */
#customize {
    background: var(--cream);
}
.customize-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}
@media (max-width: 768px) {
    .customize-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}
.cf-section {
    margin-bottom: 32px;
}
.cf-label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bark);
    margin-bottom: 14px;
    display: block;
}
.chips-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.chip {
    font-size: 0.78rem;
    color: var(--earth);
    border: 1px solid var(--sand);
    border-radius: 2px;
    padding: 8px 16px;
    cursor: none;
    background: var(--warm-white);
    transition: all 0.2s;
    font-family: "DM Sans", sans-serif;
    font-weight: 400;
}
.chip:hover,
.chip.on {
    background: var(--ink);
    color: var(--warm-white);
    border-color: var(--ink);
}
.budget-display {
    font-family: "DM Serif Display", serif;
    font-size: 2.4rem;
    color: var(--ink);
    margin-bottom: 12px;
}
input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 2px;
    background: var(--sand);
    outline: none;
    cursor: none;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--ink);
    border: 2px solid var(--warm-white);
    box-shadow: 0 0 0 1px var(--ink);
    cursor: none;
}
.range-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.72rem;
    color: var(--stone);
    margin-top: 6px;
}
.result-panel {
    background: var(--warm-white);
    border: 1px solid var(--sand);
    padding: 40px;
}
.rp-tag {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 20px;
}
.rp-title {
    font-family: "DM Serif Display", serif;
    font-size: 1.8rem;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.2;
}
.rp-desc {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--bark);
    font-weight: 300;
    margin-bottom: 32px;
}
.rp-includes {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 36px;
}
.rp-includes li {
    font-size: 0.82rem;
    color: var(--earth);
    display: flex;
    align-items: center;
    gap: 10px;
}
.rp-includes li::before {
    content: "";
    width: 20px;
    height: 1px;
    background: var(--terracotta);
    flex-shrink: 0;
}
.rp-wa {
    width: 100%;
    background: #25d366;
    color: #fff;
    border: none;
    padding: 14px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: none;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}
.rp-wa:hover {
    opacity: 0.85;
    color: #fff;
}

/* CONTACT / CHAT */
#contact {
    background: var(--warm-white);
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}
@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}
.contact-big {
    font-family: "DM Serif Display", serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 28px;
}
.contact-big em {
    font-style: italic;
    color: var(--terracotta);
}
.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}
.contact-list li {
    font-size: 0.88rem;
    color: var(--bark);
    display: flex;
    align-items: center;
    gap: 12px;
}
.contact-list li span.ic {
    font-size: 0.9rem;
    color: var(--terracotta);
    width: 20px;
}
.wa-card {
    background: var(--ink);
    padding: 36px 32px;
}
.wac-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.wac-ava {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}
.wac-name {
    font-weight: 500;
    color: var(--warm-white);
    font-size: 0.95rem;
}
.wac-status {
    font-size: 0.72rem;
    color: var(--sage);
    margin-top: 2px;
}
.wac-msg {
    background: rgba(255, 255, 255, 0.06);
    padding: 14px 16px;
    border-radius: 2px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: rgba(253, 250, 247, 0.8);
    font-weight: 300;
    line-height: 1.6;
}
.wac-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.wac-chip {
    font-size: 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(253, 250, 247, 0.7);
    padding: 7px 14px;
    cursor: none;
    background: transparent;
    font-family: "DM Sans", sans-serif;
    transition: all 0.2s;
    border-radius: 2px;
}
.wac-chip:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--warm-white);
}
.wac-cta {
    width: 100%;
    background: #25d366;
    color: #fff;
    border: none;
    padding: 13px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.wac-cta:hover {
    opacity: 0.85;
    color: #fff;
}

/* FINAL CTA */
#final-cta {
    background: var(--terracotta);
    padding: 100px 52px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}
@media (max-width: 768px) {
    #final-cta {
        grid-template-columns: 1fr;
        padding: 72px 24px;
        gap: 40px;
    }
}
.fc-label {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(253, 250, 247, 0.6);
    margin-bottom: 16px;
}
.fc-h {
    font-family: "DM Serif Display", serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    color: var(--warm-white);
    line-height: 1.1;
}
.fc-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
}
.fc-btn {
    display: block;
    text-align: center;
    padding: 14px 28px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: none;
    transition: all 0.2s;
    border: none;
    font-family: "DM Sans", sans-serif;
}
.fc-btn.primary {
    background: var(--warm-white);
    color: var(--terracotta);
}
.fc-btn.primary:hover {
    background: var(--ink);
    color: var(--warm-white);
}
.fc-btn.secondary {
    background: transparent;
    border: 1px solid rgba(253, 250, 247, 0.4);
    color: var(--warm-white);
}
.fc-btn.secondary:hover {
    border-color: var(--warm-white);
}

/* FOOTER */
footer {
    background: var(--ink);
    padding: 72px 52px 40px;
}
@media (max-width: 768px) {
    footer {
        padding: 56px 24px 32px;
    }
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 900px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}
@media (max-width: 560px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
.footer-logo {
    font-family: "DM Serif Display", serif;
    font-size: 1.3rem;
    color: var(--warm-white);
    text-decoration: none;
    display: block;
    margin-bottom: 14px;
}
.footer-logo span {
    font-style: italic;
    color: var(--blush);
}
.footer-tagline {
    font-size: 0.82rem;
    line-height: 1.7;
    color: var(--stone);
    font-weight: 300;
    max-width: 240px;
    margin-bottom: 28px;
}
.footer-social {
    display: flex;
    gap: 12px;
}
.soc-link {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--stone);
    text-decoration: none;
    transition: all 0.2s;
    cursor: none;
}
.soc-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--warm-white);
    border-color: rgba(255, 255, 255, 0.25);
}
.footer-col h4 {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 18px;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col ul li a {
    font-size: 0.82rem;
    color: var(--stone);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 300;
}
.footer-col ul li a:hover {
    color: var(--warm-white);
}
.footer-col ul li span {
    font-size: 0.82rem;
    color: var(--stone);
    font-weight: 300;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-copy {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 0.06em;
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    transition: color 0.2s;
    cursor: none;
}
.footer-legal a:hover {
    color: var(--stone);
}
/* FOOTER MOBILE FIX */
@media (max-width: 768px) {
    footer {
        padding: 48px 24px 24px; /* Reduced overall padding */
    }
    .footer-top {
        grid-template-columns: 1fr 1fr; /* 2 columns instead of stacking everything */
        gap: 32px;
        margin-bottom: 32px;
        padding-bottom: 24px;
    }
    .footer-brand {
        grid-column: 1 / -1; /* Brand section takes full width at the top */
        text-align: center;
        margin-bottom: 8px;
    }
    .footer-tagline {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .footer-social {
        justify-content: center; /* Centers the icons under the tagline */
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 560px) {
    .footer-top {
        grid-template-columns: 1fr; /* Back to 1 column for very small screens */
        gap: 24px;
    }
    .footer-brand {
        grid-column: auto;
    }
    
    /* THIS IS THE KEY FIX: Make the link lists 2 columns to save vertical space */
    .footer-col ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px 16px;
    }
    
    .footer-col h4 {
        margin-bottom: 12px; /* Reduced space under headings */
    }
}
/* POPUP */
.pop-ov {
    position: fixed;
    inset: 0;
    background: rgba(26, 22, 20, 0.7);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.pop-ov.on {
    opacity: 1;
    pointer-events: all;
}
.pop-box {
    background: var(--warm-white);
    padding: 48px;
    max-width: 480px;
    width: 100%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
}
.pop-ov.on .pop-box {
    transform: translateY(0);
}
.pop-x {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--sand);
    border: none;
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bark);
}
.pop-x:hover {
    background: var(--ink);
    color: var(--warm-white);
}
.pop-label {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
}
.pop-title {
    font-family: "DM Serif Display", serif;
    font-size: 1.8rem;
    color: var(--ink);
    margin-bottom: 6px;
}
.pop-sub {
    font-size: 0.82rem;
    color: var(--bark);
    margin-bottom: 32px;
}
.pop-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}
.pop-opt {
    border: 1px solid var(--sand);
    padding: 16px 18px;
    cursor: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s;
}
.pop-opt:hover,
.pop-opt.sel {
    border-color: var(--ink);
    background: var(--cream);
}
.po-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink);
}
.po-desc {
    font-size: 0.75rem;
    color: var(--bark);
    margin-top: 2px;
}
.po-price {
    font-family: "DM Serif Display", serif;
    font-size: 1.1rem;
    color: var(--terracotta);
}
.pop-cta {
    width: 100%;
    background: var(--ink);
    color: var(--warm-white);
    border: none;
    padding: 15px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: none;
    transition: background 0.2s;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}
.pop-cta:hover {
    background: var(--terracotta);
    color: var(--warm-white);
}
.pop-note {
    text-align: center;
    font-size: 0.72rem;
    color: var(--stone);
}

/* STICKY BAR */
.sbar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 22, 20, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 24px;
    display: flex;
    gap: 10px;
    z-index: 99;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.sbar a,
.sbar button {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: none;
    text-decoration: none;
    border: none;
    transition: all 0.2s;
}
.s-call {
    background: rgba(255, 255, 255, 0.06);
    color: var(--stone);
}
.s-call:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--warm-white);
}
.s-wa {
    background: #25d366;
    color: #fff;
}
.s-wa:hover {
    opacity: 0.85;
}
.s-bk {
    background: var(--terracotta);
    color: var(--warm-white);
}
.s-bk:hover {
    background: var(--ink);
}

/* FLOAT WA */
.float-wa {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 98;
    text-decoration: none;
    cursor: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    font-size: 1.4rem;
}

/* URGENCY */
.urgency-bar {
    background: var(--terracotta);
    padding: 11px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.ub-text {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(253, 250, 247, 0.85);
}
.ub-timer {
    font-family: "DM Serif Display", serif;
    font-size: 1rem;
    color: var(--warm-white);
    background: rgba(0, 0, 0, 0.15);
    padding: 2px 12px;
}
.ub-btn {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
    background: var(--warm-white);
    padding: 6px 16px;
    text-decoration: none;
    cursor: none;
    transition: all 0.2s;
    border: none;
    font-family: "DM Sans", sans-serif;
}
.ub-btn:hover {
    background: var(--ink);
    color: var(--warm-white);
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s ease,
        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible,
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* FILTER BAR */
.filter-bar {
    padding: 28px 52px 0;
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    border-bottom: 1px solid var(--border);
}
.filter-bar::-webkit-scrollbar {
    display: none;
}
@media (max-width: 768px) {
    .filter-bar {
        padding: 24px 20px 0;
    }
}
.fcat {
    font-size: 0.78rem;
    font-weight: 800px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
    padding: 0 20px 18px;
    cursor: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    transition: all 0.2s;
}
.fcat:hover {
    color: var(--ink);
}
.fcat.on {
    color: var(--terra);
    border-bottom-color: var(--terra);
}

/* SHOP LAYOUT */
.shop-body {
    display: flex;
    min-height: calc(100vh - 200px);
}
.sidebar {
    width: 220px;
    flex-shrink: 0;
    padding: 36px 28px;
    border-right: 1px solid var(--border);
    position: sticky;
    top: 68px;
    height: calc(100vh - 68px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--sand) transparent;
}
@media (max-width: 900px) {
    .sidebar {
        display: none;
    }
}
.sb-section {
    margin-bottom: 32px;
}
.sb-title {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: 14px;
}
.sb-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    cursor: none;
    font-size: 0.82rem;
    color: var(--bark);
    transition: color 0.2s;
}
.sb-item:hover {
    color: var(--ink);
}
.sb-item.on {
    color: var(--terra);
    font-weight: 500;
}
.sb-count {
    font-size: 0.7rem;
    color: var(--stone);
}
.sb-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

/* PRODUCTS AREA */
.products-area {
    flex: 1;
    padding: 36px 40px;
    min-width: 0;
}
@media (max-width: 768px) {
    .products-area {
        padding: 24px 20px;
    }
}
.area-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}
.area-count {
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 300;
}
.area-count strong {
    color: var(--ink);
    font-weight: 500;
}
.sort-select {
    font-family: "Outfit", sans-serif;
    font-size: 0.75rem;
    color: var(--bark);
    background: none;
    border: 1px solid var(--border);
    padding: 6px 12px;
    cursor: none;
    outline: none;
    letter-spacing: 0.04em;
}
.section-heading {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
    padding-top: 10px;
}
.section-heading + .product-grid {
    margin-bottom: 60px;
}
.sec-name {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ink);
}
.sec-link {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terra);
    text-decoration: none;
    cursor: none;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    transition: opacity 0.2s;
}
.sec-link:hover {
    opacity: 0.7;
}

/* PRODUCT GRID & CARDS */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 20px;
}
@media (max-width: 560px) {
    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
}

.pcard {
    background: var(--white);
    border: 1px solid var(--border);
    cursor: none;
    transition:
        transform 0.3s cubic-bezier(0.2, 0, 0.2, 1),
        box-shadow 0.3s,
        border-color 0.3s;
    position: relative;
    overflow: hidden;
}
.pcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(28, 23, 20, 0.08);
    border-color: var(--stone);
}
.pcard-img {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: var(--cream);
}
.pcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.2, 0, 0.2, 1);
}
.pcard:hover .pcard-img img {
    transform: scale(1.06);
}

.pcard-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(8px);
    transition: all 0.25s ease;
}
.pcard:hover .pcard-actions {
    opacity: 1;
    transform: translateX(0);
}
.pact-btn {
    width: 32px;
    height: 32px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: none;
    font-size: 0.85rem;
    transition: all 0.2s;
    color: var(--muted);
}
.pact-btn:hover {
    background: var(--terra);
    border-color: var(--terra);
    color: var(--white);
}

.pbadge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 3px 10px;
}
.pbadge.new {
    background: var(--ink);
    color: var(--white);
}
.pbadge.popular {
    background: var(--terra);
    color: var(--white);
}
.pbadge.premium {
    background: var(--gold-alt);
    color: var(--white);
}
.pbadge.sale {
    background: var(--sage-alt);
    color: var(--white);
}
.pbadge.rent {
    background: rgba(255, 255, 255, 0.9);
    color: var(--bark);
    border: 1px solid var(--border);
}

.pcard-body {
    padding: 16px;
}
.pcard-name {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pcard-includes {
    list-style: none;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.pcard-includes li {
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 5px;
}
.pcard-includes li::before {
    content: "";
    width: 12px;
    height: 1px;
    background: var(--stone);
    flex-shrink: 0;
}
.pcard-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}
.pcard-price {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
}
.pcard-price s {
    font-size: 0.82rem;
    color: var(--stone);
    font-weight: 400;
    margin-right: 4px;
}
.pcard-wa {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--terra);
    background: var(--terra-light);
    border: none;
    padding: 6px 12px;
    cursor: none;
    font-family: "Outfit", sans-serif;
    transition: all 0.2s;
}
.pcard-wa:hover {
    background: var(--terra);
    color: var(--white);
}

.pcard.featured {
    grid-column: span 2;
}
@media (max-width: 560px) {
    .pcard.featured {
        grid-column: span 1;
    }
}
/* SEARCH RESULT ITEM WITH IMAGE */
.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--sand);
  cursor: pointer;
  transition: background 0.2s;
  border-radius: 4px;
  margin-bottom: 8px;
}

.search-result-item:hover {
  background: rgba(212, 175, 155, 0.08);
}

.sri-image {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--sand);
}

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

.sri-content {
  flex: 1;
  min-width: 0;
}

.sri-title {
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
  font-weight: 400;
}

.sri-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sri-category {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
}

.sri-price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .search-result-item {
    padding: 12px;
    gap: 12px;
  }
  
  .sri-image {
    width: 60px;
    height: 60px;
  }
  
  .sri-title {
    font-size: 0.88rem;
  }
  
  .sri-category {
    font-size: 0.65rem;
  }
  
  .sri-price {
    font-size: 0.78rem;
  }
}

/* Very small screens */
@media (max-width: 380px) {
  .sri-image {
    width: 50px;
    height: 50px;
  }
  
  .sri-title {
    font-size: 0.82rem;
  }
}
/* EMPTY STATE & UTILS */
.empty {
    text-align: center;
    padding: 80px 20px;
    color: var(--muted);
}
.empty-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}
.empty p {
    font-size: 0.88rem;
}
@keyframes shimmer {
    0% {
        background-position: -500px 0;
    }
    100% {
        background-position: 500px 0;
    }
}
.shimmer {
    background: linear-gradient(
        90deg,
        var(--cream) 25%,
        var(--sand) 50%,
        var(--cream) 75%
    );
    background-size: 500px 100%;
    animation: shimmer 1.4s infinite;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: var(--sand);
    border-radius: 4px;
}
