:root {
    --background: #fbf9f6;
    --primary: #4c4b63;
    --accent: #c8a27b;
    --accent-dark: #a07a4d;
    --text: #2f2d36;
    --muted: #7a768b;
    --border: rgba(76, 75, 99, 0.1);
    --shadow: 0 10px 40px rgba(47, 45, 54, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Jost', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.5;
}

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

a:hover {
    color: var(--accent-dark);
}

.container {
    width: min(1100px, 90vw);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(251, 249, 246, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
}

.branding {
    display: flex;
    flex-direction: column;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.2vw, 2.2rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tagline {
    margin: 0;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--muted);
}

.primary-nav {
    display: flex;
    gap: 1.4rem;
    align-items: center;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.primary-nav a {
    position: relative;
    padding-bottom: 0.2rem;
}

.primary-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transform: scaleX(0);
    transform-origin: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.badge {
    display: inline-flex;
    min-width: 1.4rem;
    justify-content: center;
    padding: 0.1rem 0.45rem;
    background: var(--accent);
    color: #fff;
    border-radius: 999px;
    font-size: 0.75rem;
}

.hero {
    padding: 5rem 0 4rem;
}

.hero .container {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    margin: 0 0 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    color: var(--primary);
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.6);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
}

.hero-media {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 3 / 4;
    background: #000;
}

.hero-media img,
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0 auto 2.5rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #fff;
    border-radius: 20px;
    padding: 1.4rem;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(47, 45, 54, 0.15);
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 16px;
}

.product-card h3 {
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-card p {
    margin: 0;
    color: var(--muted);
}

.price {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer {
    margin-top: 5rem;
    padding: 3rem 0;
    background: #221f2f;
    color: rgba(255, 255, 255, 0.85);
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.site-footer h4 {
    margin: 0 0 0.6rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: #fff;
}

.messages {
    position: fixed;
    top: 5.5rem;
    right: 2rem;
    z-index: 30;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.message {
    padding: 0.9rem 1.3rem;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.message-success {
    border-left: 4px solid #52b788;
}

.message-error {
    border-left: 4px solid #d62828;
}

.messages.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.section {
    padding: 4rem 0;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: #fff;
    padding: 1.8rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.feature-card h3 {
    margin-top: 0;
    font-size: 1.05rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.mood-lab {
    background: linear-gradient(135deg, rgba(200, 162, 123, 0.14), rgba(76, 75, 99, 0.08));
    border-block: 1px solid var(--border);
}

.mood-lab__layout {
    display: grid;
    gap: 3.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.mood-lab__copy {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.mood-lab__lead {
    color: var(--muted);
    max-width: 520px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.75rem;
    color: var(--primary);
    opacity: 0.7;
    margin: 0;
}

.mood-lab__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.mood-chip {
    position: relative;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.7);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.mood-chip.is-active,
.mood-chip:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.mood-chip--surprise {
    background: var(--primary);
    color: #fff;
}

.mood-chip--surprise:hover,
.mood-chip--surprise.is-active {
    border-color: transparent;
    box-shadow: 0 14px 32px rgba(76, 75, 99, 0.22);
}

.mood-lab__panel {
    background: rgba(255, 255, 255, 0.88);
    border-radius: 28px;
    padding: 2.2rem;
    box-shadow: var(--shadow);
    display: grid;
    gap: 1.8rem;
}

.mood-lab__result h3 {
    margin: 0 0 0.8rem;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
}

.mood-lab__result p {
    margin: 0;
    color: var(--muted);
}

.mood-lab__result .placeholder {
    font-style: italic;
}

.mood-lab__cta {
    margin-top: 1.4rem;
}

.mood-lab__perk {
    border: 1px dashed rgba(76, 75, 99, 0.35);
    border-radius: 20px;
    padding: 1.4rem;
    background: rgba(200, 162, 123, 0.1);
}

.mood-lab__perk h3 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.mood-lab__perk .perk-text {
    margin: 0;
    color: var(--primary);
    font-weight: 600;
}

.style-quiz {
    background: rgba(76, 75, 99, 0.06);
}

.style-quiz .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.style-quiz__layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.style-quiz__steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quiz-step {
    display: none;
    padding: 1.8rem;
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
}

.quiz-step.is-active {
    display: block;
}

.quiz-options {
    display: grid;
    gap: 1rem;
    margin-top: 1.4rem;
}

.quiz-option {
    display: block;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1rem 1.2rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.6);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.quiz-option:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.quiz-option input {
    display: none;
}

.quiz-option span {
    display: block;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.quiz-option input:checked + span {
    color: var(--accent-dark);
}

.quiz-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

.style-quiz__result {
    padding: 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(200, 162, 123, 0.25), rgba(76, 75, 99, 0.2));
    color: var(--primary);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    justify-content: center;
}

.result-lead {
    margin: 0;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
}

.result-recommendations {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.result-recommendations a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary);
    font-weight: 600;
}

.result-recommendations a::after {
    content: '→';
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.result-recommendations a:hover::after {
    transform: translateX(4px);
}

.result-recommendations a[data-primary="true"] {
    color: var(--accent-dark);
}

@media (max-width: 768px) {
    .quiz-step {
        padding: 1.4rem;
    }

    .style-quiz__result {
        padding: 1.6rem;
    }
}

.hero-copy {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2.5rem;
}

.catalog-header h1 {
    margin: 0 0 0.6rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.catalog-meta {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    align-items: flex-end;
}

.catalog-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    background: #fff;
    padding: 1.6rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.filter-search input,
.filter-range input,
.filter-sort select,
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-search input:focus,
.filter-range input:focus,
.filter-sort select:focus,
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200, 162, 123, 0.2);
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.filter-chips label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--border);
    cursor: pointer;
    background: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

.filter-chips input {
    display: none;
}

.filter-chips input:checked + span {
    color: #fff;
    background: var(--accent);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    box-shadow: var(--shadow);
}

.filter-label {
    display: block;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.76rem;
    color: var(--muted);
    margin-bottom: 0.6rem;
}

.range-inputs {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.filter-sort {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.filter-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pagination {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pagination a {
    color: var(--primary);
    border-bottom: 1px solid transparent;
}

.pagination a:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
}

.product-detail .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.product-main-media {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, 0.8);
}

.product-main-media img {
    width: 100%;
    display: block;
}

.rotation-viewer {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(200, 162, 123, 0.18), rgba(76, 75, 99, 0.15));
    border-radius: 24px;
}

.rotation-display {
    position: relative;
    background: #0f0d14;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
}

.rotation-display img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
    user-select: none;
}

.rotation-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(76, 75, 99, 0.25);
    outline: none;
}

.rotation-slider:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.rotation-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    background: var(--accent);
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 6px 16px rgba(200, 162, 123, 0.35);
}

.rotation-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--accent);
    border: none;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 6px 16px rgba(200, 162, 123, 0.35);
}

.rotation-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.rotation-controls .rotation-play {
    margin-left: auto;
}

.rotation-controls .rotation-play.is-active {
    background: var(--primary);
    color: #fff;
}

.product-ar {
    margin-top: 2rem;
    padding: 1.8rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(200, 162, 123, 0.2), rgba(76, 75, 99, 0.12));
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: var(--shadow);
}

.product-ar model-viewer {
    width: 100%;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
    background: #0f0d14;
}

.product-ar__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.product-ar__qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px dashed rgba(76, 75, 99, 0.35);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.product-ar__qr-canvas canvas {
    width: 96px !important;
    height: 96px !important;
}

.product-ar__note {
    margin: 0;
    font-size: 0.9rem;
    color: var(--muted);
}

@media (max-width: 768px) {
    .product-ar model-viewer {
        height: 260px;
    }
}

.product-video-trigger {
    position: absolute;
    bottom: 1.2rem;
    right: 1.2rem;
}

.product-info h1 {
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 0.8rem;
}

.product-summary {
    font-size: 1rem;
    color: var(--muted);
}

.product-price {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 1.5rem 0;
    letter-spacing: 0.1em;
}

.product-meta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.product-meta-list span {
    font-weight: 600;
    margin-right: 0.4rem;
}

.product-description {
    margin-bottom: 2rem;
    color: var(--primary);
}

.product-buy-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.breadcrumb {
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.video-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(34, 31, 47, 0.7);
    backdrop-filter: blur(6px);
    z-index: 40;
    padding: 2rem;
}

.video-modal[hidden] {
    display: none;
}

.video-backdrop {
    position: absolute;
    inset: 0;
}

.video-container {
    position: relative;
    max-width: 720px;
    width: 90vw;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: var(--shadow);
    z-index: 1;
}

.video-container video {
    width: 100%;
    display: block;
}

.video-close {
    position: absolute;
    top: 0.4rem;
    right: 0.6rem;
    font-size: 1.8rem;
    line-height: 1;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

.contact-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.contact-card {
    padding: 1.4rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow);
    margin-top: 1.2rem;
}

.contact-card h3 {
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.95rem;
}

.contact-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.contact-card span {
    font-weight: 600;
    margin-right: 0.4rem;
}

.contact-form-wrapper {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: grid;
    gap: 1.1rem;
    margin-top: 1.2rem;
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.form-field label {
    display: block;
    margin-bottom: 0.4rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--muted);
}

.form-field .errorlist {
    margin: 0.4rem 0 0;
    padding: 0;
    list-style: none;
    color: #d62828;
    font-size: 0.85rem;
}

.container.narrow {
    width: min(800px, 90vw);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.about-grid article {
    background: #fff;
    padding: 1.6rem;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.about-grid h3 {
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.about-quote {
    margin: 2rem 0 0;
    font-size: 1.3rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary);
    position: relative;
    padding-left: 2.5rem;
}

.about-quote::before {
    content: '“';
    position: absolute;
    left: 0;
    top: -0.6rem;
    font-size: 4rem;
    color: var(--accent);
}

.about-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
}

.inline-field,
.cart-item-actions form {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.inline-field label,
.cart-item-actions label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
}

.input-quantity {
    width: 80px;
    padding: 0.6rem 0.8rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.input-quantity:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(200, 162, 123, 0.2);
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.cart-items h1 {
    margin-top: 0;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cart-item {
    display: flex;
    gap: 1.5rem;
    background: #fff;
    border-radius: 20px;
    padding: 1.4rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.cart-item-media {
    flex: 0 0 160px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cart-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cart-item-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.cart-item-head h3 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cart-item-price {
    font-weight: 600;
    letter-spacing: 0.1em;
}

.cart-item-summary {
    margin: 0;
    color: var(--muted);
}

.cart-item-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cart-item-actions form {
    background: rgba(251, 249, 246, 0.6);
    padding: 0.6rem 0.8rem;
    border-radius: 14px;
}

.cart-item-actions button {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
}

.cart-item-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.cart-clear {
    display: flex;
    justify-content: flex-end;
}

.cart-summary {
    background: #fff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 2rem;
}

.cart-summary h2 {
    margin-top: 0;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.cart-summary-line strong {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

.checkout-form {
    display: grid;
    gap: 1rem;
}

.cart-empty-note {
    color: var(--muted);
}

@media (max-width: 768px) {
    .site-header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .primary-nav {
        flex-wrap: wrap;
        gap: 0.9rem;
        font-size: 0.85rem;
    }

    .hero {
        padding-top: 3.5rem;
    }

    .catalog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .catalog-meta {
        align-items: flex-start;
    }

    .catalog-filters {
        grid-template-columns: 1fr;
    }

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

    .filter-actions .btn {
        width: 100%;
    }

    .product-buy-form {
        flex-direction: column;
        align-items: stretch;
    }

    .mood-lab__layout {
        gap: 2rem;
    }

    .mood-lab__panel {
        padding: 1.8rem;
    }

    .mood-chip {
        flex: 1 1 calc(50% - 0.75rem);
        justify-content: center;
    }

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

    .cart-item {
        flex-direction: column;
    }

    .cart-item-media {
        flex: 0 0 auto;
        width: 100%;
    }

    .cart-item-actions form {
        width: 100%;
        justify-content: space-between;
    }

    .cart-summary {
        position: static;
    }

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

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .pagination {
        flex-direction: column;
        gap: 0.6rem;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .site-footer {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .product-price {
        font-size: 1.3rem;
    }

    .product-meta-list {
        font-size: 0.9rem;
    }

    .video-modal {
        padding: 1rem;
    }

    .cart-item-actions form {
        flex-direction: column;
        align-items: stretch;
        gap: 0.6rem;
    }

    .mood-chip {
        flex: 1 1 100%;
    }

    .mood-lab__panel {
        padding: 1.4rem;
    }
}
