@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Manrope:wght@300;400;500;600&display=swap");

:root {
    --bg-cream: #f6f2ec;
    --bg-ink: #0f1115;
    --bg-graphite: #1a1e24;
    --text-ink: #111318;
    --text-muted: #6a717d;
    --gold: #c4a36a;
    --gold-soft: #e6d3b2;
    --line: rgba(17, 19, 24, 0.12);
    --shadow: 0 16px 40px rgba(16, 18, 24, 0.18);
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text-ink);
    background: var(--bg-cream);
    letter-spacing: 0.2px;
}

main {
    flex: 1;
}

/* ===== NAVBAR ===== */

.navbar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.navbar .container > div:last-child {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 2px;
}

.navbar .nav-link {
    font-weight: 500;
    margin-left: 16px;
    opacity: 0.85;
    white-space: nowrap;
}

.navbar .nav-link:hover {
    opacity: 1;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-mark img {
    display: block;
    height: 78px;
    width: auto;
}

/* ===== HERO ===== */

.carousel-item {
    height: 82vh;
}

.carousel-item img {
    height: 100%;
    object-fit: cover;
    filter: brightness(55%);
}

.carousel-caption {
    bottom: 28%;
    text-align: left;
    max-width: 520px;
}

.carousel-caption h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.4rem, 3.8vw, 4.2rem);
    font-weight: 700;
    letter-spacing: 1px;
}

.carousel-caption p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
}

.btn {
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.btn-dark {
    background: var(--bg-ink);
    border: none;
}

.btn-dark:hover {
    background: #000;
}

.btn-light {
    background: rgba(255, 255, 255, 0.92);
    border: none;
    color: #111;
}

/* ===== FOOTER ===== */

footer {
    background: var(--bg-ink);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

/* ===== SHOP ===== */

.shop-bg {
    background: linear-gradient(180deg, #121418, #1b2026 60%, #14171b);
    color: #fff;
    min-height: 100vh;
}

.shop-bg h1,
.shop-bg h2 {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.8px;
}

.shop-hero {
    max-width: 760px;
    margin: 0 auto 32px;
}

.shop-hero h1,
.collection-header h1 {
    font-size: clamp(2.5rem, 4.2vw, 4rem);
    margin-bottom: 12px;
}

.shop-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 12px;
}

.collection-card {
    position: relative;
    overflow: hidden;
    min-height: 540px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.3);
}

.collection-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
    filter: brightness(55%);
}

.collection-card-body {
    position: relative;
    z-index: 1;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 540px;
}

.collection-card h2 {
    font-size: 3rem;
    margin-bottom: 12px;
}

.collection-tag {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    padding: 6px 14px;
    margin-bottom: 18px;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.collection-header {
    max-width: 720px;
    margin-bottom: 28px;
}

.back-link {
    display: inline-block;
    color: var(--gold-soft);
    margin-bottom: 20px;
    text-decoration: none;
}

.back-link:hover {
    color: #fff;
}

.product-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(20, 23, 28, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
}

.product-img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    border-radius: 14px;
}

.product-card h5 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.2rem;
}

.product-copy {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
    min-height: 48px;
}

.price-tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 8px auto 16px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), #f0e0c0);
    color: #111318;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.8px;
    box-shadow: 0 10px 24px rgba(196, 163, 106, 0.28);
}

/* ===== BLOG ===== */

.blog-title {
    font-family: "Cormorant Garamond", serif;
}

/* ===== BLOG PAGE ===== */

.blog-page {
    background:
        radial-gradient(circle at top left, rgba(196, 163, 106, 0.18), transparent 28%),
        linear-gradient(180deg, #f8f4ee 0%, #f3ede5 45%, #efe7dc 100%);
}

.blog-hero {
    padding: 56px 0 28px;
}

.blog-hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.9fr);
    gap: 28px;
    align-items: stretch;
}

.blog-hero-copy,
.blog-hero-panel {
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.blog-hero-copy {
    padding: 56px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(115deg, rgba(8, 10, 14, 0.8), rgba(8, 10, 14, 0.35)),
        url("assets/images/nav1.jpg") center/cover no-repeat;
    box-shadow: 0 26px 50px rgba(15, 17, 21, 0.22);
}

.blog-hero-copy p {
    max-width: 600px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
}

.blog-hero-panel {
    background: linear-gradient(160deg, #14181f, #222933 68%, #0f1115);
    color: #fff;
    padding: 34px 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 40px rgba(15, 17, 21, 0.16);
}

.blog-panel-label {
    display: inline-block;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 16px;
}

.blog-hero-panel h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    margin-bottom: 12px;
}

.blog-hero-panel p {
    color: rgba(255, 255, 255, 0.72);
}

.blog-stats {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.blog-stat {
    padding: 18px 18px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-stat strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    color: var(--gold-soft);
}

.blog-stat span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.blog-hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 5vw, 4.7rem);
    margin-bottom: 12px;
    color: #fff;
}

.blog-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-hero .blog-eyebrow {
    color: rgba(255, 255, 255, 0.62);
}

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

.editorial-lead {
    margin: 14px 0 40px;
}

.editorial-lead-card {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(14px);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 26px 46px rgba(17, 19, 24, 0.12);
    align-items: start;
}

.editorial-lead-side {
    display: grid;
    gap: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.35);
}

.editorial-lead-media {
    position: relative;
    min-height: 320px;
    max-height: 420px;
    border-radius: 22px;
    overflow: hidden;
}

.editorial-lead-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.editorial-lead-highlights {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.editorial-lead-highlights span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #111318;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    box-shadow: 0 10px 26px rgba(15, 17, 21, 0.14);
}

.editorial-lead-mini {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.editorial-lead-copy {
    padding: 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.editorial-lead-copy .blog-specs {
    margin-bottom: 24px;
}

.editorial-lead-copy h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    margin: 18px 0 16px;
}

.blog-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
    gap: 28px;
    margin-top: 10px;
    margin-bottom: 48px;
    align-items: start;
}

.blog-card {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 36px rgba(15, 17, 21, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    align-self: start;
}

.blog-card.featured {
    grid-column: span 1;
}

.blog-media {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-media img {
    transform: scale(1.02);
}

.blog-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.88);
    color: #111318;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.blog-content {
    padding: 24px;
}

.blog-content h2,
.blog-content h3 {
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 12px;
    font-size: 1.8rem;
    line-height: 1.1;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    gap: 16px;
}

.blog-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.blog-spec-block {
    padding: 16px;
    border-radius: 18px;
    background: rgba(17, 19, 24, 0.04);
    border: 1px solid rgba(17, 19, 24, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.blog-spec-block h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.blog-spec-block p,
.blog-spec-block li {
    color: #3f4652;
    font-size: 0.95rem;
}

.blog-spec-block ul {
    margin: 0;
    padding-left: 18px;
}

.blog-spec-block li + li {
    margin-top: 6px;
}

.author {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.author strong,
.author span {
    display: block;
}

.author-dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--gold), var(--gold-soft));
}

.blog-newsletter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background:
        linear-gradient(135deg, rgba(17, 19, 24, 0.96), rgba(30, 35, 42, 0.96)),
        url("assets/images/nav3.jpg") center/cover no-repeat;
    color: #fff;
    border-radius: 28px;
    padding: 38px;
    margin-bottom: 60px;
    gap: 24px;
    box-shadow: 0 26px 50px rgba(15, 17, 21, 0.18);
}

.newsletter-copy {
    max-width: 560px;
}

.newsletter-copy h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.newsletter-copy p {
    color: rgba(255, 255, 255, 0.72);
}

.newsletter-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    min-width: min(100%, 360px);
}

.blog-newsletter .form-control {
    border-radius: 999px;
    border: none;
    padding: 12px 18px;
    min-width: 240px;
}

.blog-signature {
    margin-bottom: 60px;
}

.blog-signature-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 22px 28px;
    border-radius: 24px;
    background: rgba(17, 19, 24, 0.94);
    box-shadow: 0 24px 46px rgba(15, 17, 21, 0.16);
}

.blog-signature-label {
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.55);
}

.blog-signature h3 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    color: #fff;
}

.blog-signature img {
    height: 54px;
    width: auto;
    display: block;
}

@media (max-width: 992px) {
    .blog-hero-shell,
    .editorial-lead-card {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-specs {
        grid-template-columns: 1fr;
    }

    .collection-card,
    .collection-card-body {
        min-height: 420px;
    }

    .collection-card h2 {
        font-size: 2.4rem;
    }

    .blog-hero-copy {
        min-height: 420px;
        padding: 36px;
    }

    .editorial-lead-media {
        min-height: 260px;
    }

    .editorial-lead-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .editorial-lead-mini {
        grid-template-columns: 1fr;
    }

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

    .contact-intro {
        min-height: 480px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding-top: 32px;
    }

    .blog-hero-copy,
    .blog-hero-panel,
    .editorial-lead-copy,
    .blog-newsletter {
        padding: 26px;
    }

    .blog-content h2,
    .blog-content h3 {
        font-size: 1.7rem;
    }

    .blog-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-signature-inner {
        flex-wrap: wrap;
        text-align: center;
    }

    .contact-intro,
    .contact-card {
        padding: 26px;
    }
}

/* ===== CONTACT ===== */

body.contact-page {
    display: flex;
    flex-direction: column;
}

.contact-main {
    flex: 1;
}

.contact-bg {
    background:
        radial-gradient(circle at top left, rgba(196, 163, 106, 0.18), transparent 26%),
        linear-gradient(130deg, #101114, #1b2028 55%, #14171c);
}

.contact-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 32px;
    align-items: stretch;
}

.contact-intro {
    padding: 44px;
    border-radius: 28px;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(8, 10, 14, 0.78), rgba(8, 10, 14, 0.38)),
        url("assets/images/nav2.jpg") center/cover no-repeat;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.24);
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.contact-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.62);
    margin-bottom: 14px;
}

.contact-intro h1,
.contact-card h2,
.contact-highlight h2 {
    font-family: "Cormorant Garamond", serif;
}

.contact-intro h1 {
    font-size: clamp(2.8rem, 4.8vw, 4.6rem);
    margin-bottom: 14px;
}

.contact-lead {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
}

.contact-highlight {
    margin-top: 28px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.contact-highlight h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-highlight p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.contact-points {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.contact-point {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-point strong,
.contact-point span {
    display: block;
}

.contact-point strong {
    margin-bottom: 6px;
    color: var(--gold-soft);
}

.contact-point span {
    color: rgba(255, 255, 255, 0.72);
}

.contact-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 26px 48px rgba(16, 18, 24, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px);
}

.contact-card h2 {
    font-weight: 700;
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.contact-card-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(196, 163, 106, 0.14);
    color: #8c6a2d;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.74rem;
    margin-bottom: 16px;
}

.contact-card-copy {
    color: var(--text-muted);
    margin-bottom: 22px;
}

.contact-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.contact-actions-bottom {
    margin-top: 30px;
    margin-bottom: 0;
}

.contact-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    text-decoration: none;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.contact-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #23262d;
}

.contact-field .form-control {
    border-radius: 18px;
    border: 1px solid rgba(17, 19, 24, 0.12);
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: none;
}

.contact-field .form-control:focus {
    border-color: rgba(196, 163, 106, 0.8);
    box-shadow: 0 0 0 0.2rem rgba(196, 163, 106, 0.16);
}

.contact-footer {
    background: #0f1115;
    color: #9aa3af;
}

/* ===== CART ===== */

.cart-bg {
    background: linear-gradient(180deg, #f8f4ee 0%, #efe8dd 100%);
    min-height: 100vh;
}

.cart-bg h2 {
    font-family: "Cormorant Garamond", serif;
}

.cart-container {
    max-width: 980px;
}

.cart-item-card {
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-item-card .form-select,
.cart-item-card .form-control {
    min-height: 46px;
}

.cart-thumb {
    width: 120px;
    height: 120px;
    object-fit: contain;
    background: #f5f5f5;
    padding: 10px;
    border-radius: 16px;
    box-shadow: 0 10px 26px rgba(15, 17, 21, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: auto;
}

.cart-thumb:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.cart-summary {
    background: #fff;
    border-radius: 18px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow);
}

.cart-price,
.cart-subtotal,
.cart-total {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    color: #111318;
}

.cart-price {
    font-size: 1.15rem;
    color: var(--gold);
}

.cart-subtotal {
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.cart-total {
    font-size: 1.9rem;
    color: var(--gold);
}

.empty-state {
    text-align: center;
    padding: 40px;
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: var(--shadow);
}

/* ===== UTIL ===== */

.object-fit-cover {
    object-fit: cover;
}

@media (max-width: 576px) {
    .navbar {
        padding-top: 14px !important;
        padding-bottom: 14px !important;
    }

    .navbar .container {
        justify-content: center;
        text-align: center;
    }

    .navbar .container > div:last-child {
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    .navbar .nav-link {
        display: inline-flex !important;
        margin-left: 0;
        padding: 8px 12px;
        font-size: 0.95rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.06);
    }

    .brand-mark {
        justify-content: center;
        width: 100%;
    }

    .brand-mark img {
        height: 72px;
    }

    .carousel-item {
        height: 72vh;
        min-height: 520px;
    }

    .carousel-caption {
        bottom: 18%;
        left: 10%;
        right: 10%;
        max-width: none;
    }

    .carousel-caption h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .carousel-caption p {
        font-size: 0.95rem;
    }

    .carousel-caption .btn {
        width: 100%;
        max-width: 260px;
    }

    .shop-hero,
    .collection-header {
        text-align: center;
    }

    .collection-card,
    .collection-card-body {
        min-height: 360px;
    }

    .collection-card-body,
    .blog-hero-copy,
    .blog-hero-panel,
    .editorial-lead-copy,
    .blog-newsletter,
    .contact-intro,
    .contact-card {
        padding: 22px;
    }

    .collection-card h2,
    .contact-card h2 {
        font-size: 2.1rem;
    }

    .product-img {
        height: 220px;
    }

    .product-copy {
        min-height: auto;
    }

    .price-tag {
        width: 100%;
        max-width: 220px;
    }

    .product-card .btn,
    .blog-footer .btn,
    .blog-hero-actions .btn,
    .newsletter-cta .btn {
        width: 100%;
    }

    .blog-hero {
        padding: 26px 0 18px;
    }

    .blog-hero-copy {
        min-height: 360px;
    }

    .blog-hero-panel h2,
    .editorial-lead-copy h2,
    .newsletter-copy h4 {
        font-size: 1.9rem;
    }

    .editorial-lead-highlights {
        left: 14px;
        right: 14px;
        bottom: 14px;
        gap: 8px;
    }

    .editorial-lead-highlights span {
        min-height: 40px;
        font-size: 0.78rem;
        padding: 8px 10px;
    }

    .blog-media {
        height: 190px;
    }

    .newsletter-cta {
        width: 100%;
        min-width: 100%;
    }

    .blog-newsletter .form-control {
        min-width: 100%;
    }

    .blog-signature-inner {
        padding: 18px 16px;
        gap: 10px;
    }

    .blog-signature h3 {
        font-size: 1.45rem;
    }

    .blog-signature img {
        height: 40px;
    }

    .contact-intro {
        min-height: 360px;
    }

    .contact-intro h1 {
        font-size: clamp(2.2rem, 10vw, 3.2rem);
    }

    .contact-highlight h2 {
        font-size: 1.7rem;
    }

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

    .cart-container {
        margin-top: 28px !important;
        padding-left: 14px;
        padding-right: 14px;
    }

    .cart-item-card {
        padding: 18px !important;
    }

    .cart-item-card .row > div {
        margin-bottom: 14px;
        text-align: center;
    }

    .cart-item-card .text-end {
        text-align: center !important;
    }

    .cart-thumb {
        width: 96px;
        height: 96px;
    }

    .cart-summary .d-flex {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 8px;
    }

    .cart-total {
        font-size: 1.7rem;
    }
}
