:root {
    --bg: #fff7f5;
    --surface: rgba(255, 255, 255, 0.72);
    --stroke: rgba(120, 71, 94, 0.16);
    --text: #000000;
    --muted: #000000;
    --accent: #c96f8f;
    --accent-deep: #8f4f69;
    --shadow: 0 28px 60px rgba(110, 60, 86, 0.14);
    --container: min(1180px, calc(100% - 32px));
    --font-body: 'Cairo', sans-serif;
    --font-display: 'Aref Ruqaa', serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top right, rgba(243, 201, 212, 0.6), transparent 28%),
        radial-gradient(circle at bottom left, rgba(252, 223, 215, 0.72), transparent 30%),
        linear-gradient(180deg, #fffaf8 0%, #fff6f4 100%);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.page-blur {
    position: fixed;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.page-blur-a {
    top: -120px;
    right: -120px;
    background: rgba(227, 145, 178, 0.26);
}

.page-blur-b {
    bottom: -120px;
    left: -120px;
    background: rgba(240, 190, 164, 0.24);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(255, 247, 245, 0.74);
    border-bottom: 1px solid rgba(166, 115, 137, 0.1);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
}

.brand-mark {
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
}

.brand-mark__eyebrow {
    color: var(--text);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.brand-mark__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.7rem;
    color: var(--text);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.site-nav a {
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--text);
    transition: 0.25s ease;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.72);
}

.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #000 !important;
    box-shadow: 0 18px 30px rgba(160, 80, 111, 0.24);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: var(--shadow);
    padding: 10px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    margin: 6px 0;
}

.hero-section {
    padding: 28px 0 16px;
}

.hero-spotlight {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-stage {
    position: relative;
    aspect-ratio: 16 / 9;
    min-height: 540px;
    isolation: isolate;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 0.9s ease, transform 6s ease;
}

.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
    gap: 24px;
    height: 100%;
    padding: 42px;
    background: linear-gradient(180deg, rgba(35, 22, 33, 0.06), rgba(35, 22, 33, 0.22) 32%, rgba(35, 22, 33, 0.55) 100%);
}

.hero-copy {
    max-width: 640px;
    color: #fff;
}

.eyebrow {
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: inherit;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-copy h1 {
    margin: 18px 0 14px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4.6vw, 4.35rem);
    line-height: 1.15;
}

.hero-copy p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 580px;
}

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

.primary-button,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 156px;
    padding: 14px 22px;
    border-radius: 999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.primary-button {
    color: #fff;
    background: linear-gradient(135deg, #ff92b2, #b85a7f);
    box-shadow: 0 18px 30px rgba(185, 85, 124, 0.35);
}

.secondary-button {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
}

.primary-button:hover,
.secondary-button:hover {
    transform: translateY(-2px);
}

.hero-sidecards {
    display: grid;
    gap: 12px;
    align-self: center;
}

.info-bubble {
    padding: 18px 20px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
    color: #fff;
    animation: floatBubble 5.6s ease-in-out infinite;
}

.info-bubble:nth-child(2) {
    animation-delay: 0.6s;
}

.info-bubble:nth-child(3) {
    animation-delay: 1.1s;
}

.info-bubble strong {
    display: block;
    font-size: 1.15rem;
    margin-bottom: 6px;
}

.section-block {
    padding: 30px 0 18px;
}

.lifestyle-scatter {
    position: relative;
    display: grid;
    grid-template-columns: 0.85fr 1.1fr 0.8fr;
    grid-auto-rows: 150px;
    gap: 18px;
    padding: 20px 0 26px;
}

.lifestyle-scatter::before,
.catalog-visual-band::before,
.about-photo-rhythm::before {
    content: "";
    position: absolute;
    inset: 14% 6%;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 210, 196, 0.38), transparent 68%);
    filter: blur(20px);
    pointer-events: none;
    z-index: -1;
}

.lifestyle-frame,
.ritual-strip__item,
.catalog-visual-band__lead,
.catalog-visual-band__tile,
.tool-visual-band__item,
.about-photo-rhythm__item,
.about-side-photo {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.62);
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 24px 50px rgba(92, 63, 54, 0.16);
}

.lifestyle-frame img,
.ritual-strip__item img,
.catalog-visual-band img,
.tool-visual-band img,
.about-photo-rhythm img,
.about-side-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lifestyle-frame {
    min-height: 100%;
    border-radius: 32px;
    transform: rotate(var(--tilt, 0deg));
}

.lifestyle-frame.reveal {
    transform: translateY(34px) rotate(var(--tilt, 0deg));
}

.lifestyle-frame.reveal.is-visible {
    transform: translateY(0) rotate(var(--tilt, 0deg));
}

.lifestyle-frame:nth-child(1) {
    grid-row: span 2;
}

.lifestyle-frame:nth-child(2) {
    grid-column: span 2;
    border-radius: 46px;
}

.lifestyle-frame:nth-child(4) {
    grid-column: 2;
    grid-row: span 2;
    border-radius: 42px 18px 42px 42px;
}

.lifestyle-frame.is-soft {
    opacity: 0.92;
}

.lifestyle-frame.is-tall img {
    object-position: 52% center;
}

.lifestyle-frame.is-wide img {
    object-position: center 42%;
}

.ritual-strip {
    display: grid;
    grid-template-columns: 0.8fr 1.15fr 0.85fr 0.85fr;
    grid-auto-rows: 210px;
    gap: 16px;
}

.ritual-strip__item {
    border-radius: 30px;
}

.ritual-strip__item.is-large {
    grid-row: span 2;
    border-radius: 48px;
}

.ritual-strip__item:nth-child(5) {
    grid-column: span 2;
}

.catalog-visual-band,
.tool-visual-band,
.about-photo-rhythm {
    position: relative;
    padding: 26px 0 8px;
}

.catalog-visual-band {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.25fr);
    gap: 18px;
    align-items: stretch;
}

.catalog-visual-band__lead {
    min-height: 440px;
    border-radius: 52px 22px 52px 52px;
}

.catalog-visual-band__rail {
    display: grid;
    grid-template-columns: repeat(5, minmax(110px, 1fr));
    gap: 14px;
    align-content: stretch;
}

.catalog-visual-band__tile {
    min-height: 210px;
    border-radius: 28px;
}

.catalog-visual-band__tile:nth-child(2),
.catalog-visual-band__tile:nth-child(4) {
    transform: translateY(26px);
}

.tool-visual-band__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-auto-rows: 220px;
    gap: 16px;
}

.tool-visual-band__item {
    border-radius: 30px;
}

.tool-visual-band__item.is-featured {
    grid-row: span 2;
    border-radius: 52px;
}

.tool-visual-band__item:nth-child(4) {
    grid-column: span 2;
}

.about-photo-rhythm {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    grid-auto-rows: 190px;
    gap: 16px;
}

.about-photo-rhythm__item {
    border-radius: 30px;
}

.about-photo-rhythm__item.is-main {
    grid-row: span 2;
    border-radius: 52px 24px 52px 52px;
}

.about-photo-rhythm__item.is-wide {
    grid-column: span 2;
    border-radius: 24px 52px 52px 24px;
}

.about-side-photo {
    min-height: 280px;
    border-radius: 30px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.section-heading h2,
.page-banner h1,
.about-card h2 {
    margin: 10px 0 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(1.7rem, 3.4vw, 2.9rem);
    line-height: 1.2;
}

.section-heading p,
.page-banner p,
.about-card p,
.vision-card h3 {
    color: var(--muted);
    line-height: 1.9;
}

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

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

.product-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 34px;
    background: var(--surface);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.product-card:hover,
.product-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 30px 56px rgba(145, 87, 111, 0.18);
}

.product-card__media {
    position: relative;
    padding: 18px 18px 0;
}

.product-card__image-link,
.product-card__title-link,
.product-card__details-link {
    color: inherit;
    text-decoration: none;
}

.gallery-main {
    width: 100%;
    aspect-ratio: 4 / 4.4;
    object-fit: cover;
    border-radius: 26px;
    background: linear-gradient(180deg, #f6e5e9, #f9f3f1);
}

.gallery-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px 0 4px;
    scrollbar-width: none;
}

.gallery-strip::-webkit-scrollbar {
    display: none;
}

.gallery-thumb {
    width: 76px;
    min-width: 76px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 18px;
    background: transparent;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.gallery-thumb img {
    width: 100%;
    height: 76px;
    object-fit: cover;
}

.gallery-thumb.is-active {
    border-color: rgba(201, 111, 143, 0.68);
    transform: translateY(-2px);
}

.floating-badge {
    position: absolute;
    top: 28px;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    color: #000;
}

.floating-badge--discount {
    right: 28px;
    background: linear-gradient(135deg, #ff7f7f, #d94f6d);
}

.floating-badge--soldout {
    left: 28px;
    background: linear-gradient(135deg, #66475a, #342330);
    color: #fff;
}

.product-card__content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px 20px 22px;
}

.product-card__head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.product-card__head h3 {
    margin: 0;
    font-size: 1.18rem;
    line-height: 1.55;
}

.product-card__title-link:hover {
    color: var(--accent-deep);
}

.soft-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(201, 111, 143, 0.13);
    color: var(--text);
    font-size: 0.82rem;
}

.product-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-card__meta span {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--muted);
    font-size: 0.85rem;
}

.description-text {
    margin: 0;
    max-height: 6.2em;
    overflow: hidden;
    line-height: 2;
    color: var(--muted);
    transition: max-height 0.35s ease;
}

.description-text.is-expanded {
    max-height: 1000px;
}

.expand-button {
    margin-top: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--accent-deep);
    font-weight: 700;
    cursor: pointer;
}

.price-stack {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-stack strong,
.product-card__price strong {
    font-size: 1.2rem;
    color: var(--text);
}

.price-stack span {
    color: #a48997;
    text-decoration: line-through;
}

.product-card__details-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: 4px;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(201, 111, 143, 0.12);
    color: var(--text);
    font-weight: 700;
}

.item-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 28px;
    padding: 28px 0 52px;
}

.item-gallery,
.item-summary,
.item-description-card {
    background: var(--surface);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.item-gallery {
    padding: 24px;
    border-radius: 34px;
}

.item-gallery__frame {
    display: grid;
    place-items: center;
    min-height: 520px;
    max-height: 720px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 243, 241, 0.92));
}

.item-gallery__main {
    width: 100%;
    max-width: 100%;
    max-height: 620px;
    object-fit: contain;
    border-radius: 20px;
}

.item-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.item-gallery__thumb {
    padding: 0;
    border: 2px solid transparent;
    border-radius: 18px;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
}

.item-gallery__thumb.is-active {
    border-color: rgba(201, 111, 143, 0.68);
}

.item-gallery__thumb img {
    width: 100%;
    height: 110px;
    object-fit: contain;
    display: block;
    background: rgba(255, 255, 255, 0.96);
}

.item-summary {
    padding: 30px;
    border-radius: 34px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.item-summary__eyebrow,
.item-summary__meta,
.item-summary__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.item-summary h1 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.2;
}

.item-summary__meta span {
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--muted);
}

.item-summary__price {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.item-summary__price strong {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    color: var(--text);
}

.item-summary__price span {
    color: #a48997;
    text-decoration: line-through;
}

.item-summary__lead {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
}

.item-banners-section {
    padding-top: 6px;
}

.item-banners-card {
    background: var(--surface);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    border-radius: 32px;
    padding: 28px;
}

.item-banners-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.item-banners-head h2 {
    margin: 0;
    font-family: var(--font-display);
    font-weight: 700;
}

.item-banners-grid {
    display: block;
}

.item-banner {
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(158, 108, 131, 0.12);
}

.item-banner img {
    width: 100%;
    display: block;
    max-height: none;
    object-fit: cover;
}

.item-description-card {
    margin-top: 24px;
    padding: 28px 30px;
    border-radius: 32px;
}

.item-description-card h2 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-weight: 700;
}

.item-description-card p {
    margin: 0;
    color: var(--muted);
    line-height: 2;
    white-space: pre-line;
}

.empty-state {
    padding: 26px;
    border-radius: 24px;
    border: 1px dashed rgba(171, 118, 140, 0.24);
    background: rgba(255, 255, 255, 0.58);
    color: var(--muted);
    text-align: center;
}

.location-grid,
.social-grid,
.about-layout {
    display: grid;
    gap: 22px;
}

.location-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-card,
.social-card,
.about-card,
.vision-card,
.page-banner {
    background: var(--surface);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.location-card {
    display: flex;
    gap: 18px;
    padding: 22px;
    border-radius: 24px;
    align-items: center;
}

.location-card__logo {
    width: 88px;
    height: 88px;
    border-radius: 26px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #f6d5db, #f3ede5);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.location-card__logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-card__logo span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 2rem;
    color: var(--accent-deep);
}

.location-card__body h3 {
    margin: 0 0 6px;
}

.location-card__body p {
    margin: 0 0 8px;
    color: var(--muted);
    line-height: 1.8;
}

.location-card__body a {
    color: var(--accent-deep);
    font-weight: 700;
}

.social-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    border-radius: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-card strong {
    font-size: 1.08rem;
}

.social-card span {
    color: var(--muted);
}

.social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 50px rgba(145, 87, 111, 0.18);
}

.page-banner {
    margin-top: 26px;
    padding: 34px;
    border-radius: 34px;
}

.auth-section {
    padding: 28px 0 52px;
    display: grid;
    gap: 22px;
}

.auth-card {
    width: min(640px, 100%);
    margin: 0 auto;
    padding: 30px;
    border-radius: 34px;
    background: var(--surface);
    border: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

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

.auth-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.auth-form span {
    color: var(--muted);
    font-size: 0.94rem;
}

.auth-form input {
    width: 100%;
    padding: 13px 15px;
    border-radius: 16px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
}

.auth-form .primary-button {
    border: 0;
    cursor: pointer;
    margin-top: 4px;
}

.auth-switch {
    margin: 18px 0 0;
    color: var(--muted);
    text-align: center;
}

.auth-switch a {
    color: var(--accent-deep);
    font-weight: 700;
}

.profile-summary {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 22px;
    padding: 18px 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
}

.profile-summary strong {
    font-size: 1.08rem;
}

.profile-summary span {
    color: var(--muted);
}

.item-order-card,
.profile-order-card {
    margin-top: 22px;
    padding: 22px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--stroke);
}

.item-order-card h2,
.profile-orders__head h2 {
    margin: 0 0 8px;
}

.item-order-card p {
    margin: 0 0 16px;
    color: var(--muted);
}

.item-order-form {
    display: grid;
    gap: 14px;
}

.item-order-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.item-order-form span {
    color: var(--muted);
    font-size: 0.94rem;
}

.item-order-form input {
    width: 100%;
    padding: 13px 15px;
    border-radius: 16px;
    border: 1px solid var(--stroke);
    background: rgba(255, 255, 255, 0.88);
    color: var(--text);
}

.item-order-form .primary-button {
    border: 0;
    cursor: pointer;
}

.item-order-login p {
    margin-bottom: 14px;
}

.profile-orders {
    display: grid;
    gap: 16px;
}

.profile-orders__head {
    margin-bottom: 14px;
}

.profile-order-card {
    margin-top: 0;
}

.profile-order-card__head,
.profile-order-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.profile-order-card__head {
    margin-bottom: 14px;
}

.profile-order-card__head strong {
    display: block;
    margin-bottom: 4px;
}

.profile-order-card__head span,
.profile-order-card__meta span {
    color: var(--muted);
}

.order-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
}

.order-badge--pending {
    background: rgba(207, 161, 74, 0.18);
    color: #8a6220;
}

.order-badge--completed {
    background: rgba(96, 181, 132, 0.18);
    color: #2f6f45;
}

.order-badge--cancelled {
    background: rgba(201, 75, 99, 0.16);
    color: #8b3042;
}

.about-layout {
    grid-template-columns: 1.3fr 0.8fr;
    padding: 30px 0 48px;
}

.about-card,
.about-side {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-card {
    padding: 30px;
    border-radius: 34px;
}

.about-list {
    margin: 0;
    padding: 0 18px 0 0;
    color: var(--text);
    line-height: 2;
}

.vision-card {
    padding: 22px;
    border-radius: 28px;
}

.site-footer {
    padding: 34px 0;
}

.footer-shell {
    display: grid;
    grid-template-columns: 1.4fr 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(158, 108, 131, 0.14);
}

.footer-shell p {
    margin: 6px 0 0;
    color: var(--muted);
}

.footer-links,
.footer-copy {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-copy {
    justify-content: end;
    color: var(--muted);
}

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatBubble {
    0%,
    100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 1100px) {
    .catalog-grid,
    .location-grid,
    .social-grid,
    .catalog-grid--full,
    .about-layout,
    .footer-shell,
    .item-layout {
        grid-template-columns: 1fr 1fr;
    }

    .hero-overlay {
        grid-template-columns: 1fr;
    }

    .hero-sidecards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lifestyle-scatter {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 180px;
    }

    .ritual-strip,
    .catalog-visual-band__rail,
    .tool-visual-band__grid,
    .about-photo-rhythm {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-visual-band {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

@media (max-width: 860px) {
    .nav-toggle { display: inline-block; }

    .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 16px;
        left: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px;
        border-radius: 24px;
        background: rgba(255, 250, 248, 0.95);
        box-shadow: var(--shadow);
    }

    .site-nav.is-open { display: flex; }

    .hero-stage {
        min-height: 620px;
        aspect-ratio: auto;
    }

    .item-layout {
        grid-template-columns: 1fr;
    }

    .item-gallery__frame {
        min-height: 360px;
        padding: 18px;
    }

    .item-gallery__main {
        max-height: 460px;
    }

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

    .hero-sidecards {
        grid-template-columns: 1fr;
    }

    .catalog-grid,
    .catalog-grid--full,
    .location-grid,
    .social-grid,
    .about-layout,
    .footer-shell,
    .catalog-visual-band {
        grid-template-columns: 1fr;
    }

    .section-heading {
        flex-direction: column;
        align-items: start;
    }

    .lifestyle-scatter,
    .ritual-strip,
    .catalog-visual-band__rail,
    .tool-visual-band__grid,
    .about-photo-rhythm {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 170px;
    }

    .lifestyle-frame:nth-child(1),
    .lifestyle-frame:nth-child(2),
    .lifestyle-frame:nth-child(4),
    .ritual-strip__item.is-large,
    .ritual-strip__item:nth-child(5),
    .tool-visual-band__item.is-featured,
    .tool-visual-band__item:nth-child(4),
    .about-photo-rhythm__item.is-main,
    .about-photo-rhythm__item.is-wide {
        grid-column: auto;
        grid-row: auto;
    }

    .catalog-visual-band__lead,
    .about-side-photo {
        min-height: 320px;
    }

    .catalog-visual-band__tile:nth-child(2),
    .catalog-visual-band__tile:nth-child(4) {
        transform: none;
    }
}

@media (max-width: 560px) {
    .hero-overlay { padding: 24px; }
    .hero-copy h1 { font-size: 2rem; }
    .page-banner,
    .about-card,
    .vision-card,
    .location-card,
    .social-card { padding: 20px; }

    .lifestyle-scatter,
    .ritual-strip,
    .catalog-visual-band__rail,
    .tool-visual-band__grid,
    .about-photo-rhythm {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }

    .lifestyle-frame,
    .ritual-strip__item,
    .catalog-visual-band__lead,
    .catalog-visual-band__tile,
    .tool-visual-band__item,
    .about-photo-rhythm__item,
    .about-side-photo {
        border-radius: 26px;
    }
}
