:root {
    --bg: #fbf7f4;
    --cream: #f6efea;
    --card: #fffaf7;
    --dark: #2d2424;
    --muted: #796c6b;
    --pink: #e7aaa9;
    --pink-soft: #f5d8d6;
    --gold: #b48a4f;
    --border: #eadbd2;
    --shadow: 0 24px 60px rgba(45, 36, 36, 0.10);
    --serif: "Cormorant Garamond", serif;
    --sans: "Montserrat", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--dark);
    font-family: var(--sans);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.section {
    padding: 92px 5.5%;
}

.eyebrow {
    color: var(--gold);
    letter-spacing: 7px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 18px;
}

.title {
    font-family: var(--serif);
    font-size: clamp(44px, 6vw, 86px);
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -2px;
}

.title em {
    color: var(--pink);
    font-style: italic;
    font-weight: 400;
}

.section-title {
    text-align: center;
    font-family: var(--serif);
    font-size: clamp(42px, 4.5vw, 72px);
    font-weight: 500;
    line-height: 1;
}

.section-title em {
    color: var(--pink);
    font-style: italic;
}

.lead {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.8;
    max-width: 620px;
}

.navbar {
    height: 78px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4.5%;
    background: rgba(251, 247, 244, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(234, 219, 210, 0.8);
    transition: 0.3s ease;
}

.navbar.scrolled {
    height: 68px;
    box-shadow: 0 10px 35px rgba(45, 36, 36, .07);
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    white-space: nowrap;
}

.logo-img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 50%;
}

.logo div {
    display: flex;
    align-items: baseline;
    gap: 9px;
}

.logo strong {
    font-family: var(--serif);
    font-size: 31px;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.logo span {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--muted);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
    font-size: 12px;
    letter-spacing: 4px;
    color: #625a5a;
    text-transform: uppercase;
}

.nav-links a {
    transition: 0.2s;
}

.nav-links a:hover {
    color: var(--pink);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-btn,
.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark);
    position: relative;
    font-size: 24px;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: var(--pink);
    color: white;
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 700;
}

.menu-btn {
    display: none;
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 130px 5.5% 70px;
    position: relative;
}

.hero-text {
    animation: slideUp .9s ease both;
}

.hero p {
    margin-top: 38px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.btn {
    border: 1px solid var(--dark);
    background: var(--dark);
    color: white;
    padding: 19px 32px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.25s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: #1f1717;
}

.link-btn {
    color: #766c6b;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 12px;
    border-bottom: 1px solid #c8b9b1;
    padding-bottom: 7px;
}

.hero-art {
    position: relative;
    min-height: 560px;
    animation: fadeIn 1.1s .2s ease both;
}

.hero-frame {
    position: absolute;
    inset: 0 0 20px 80px;
    border: 1px solid var(--border);
}

.hero-main {
    width: 67%;
    height: 520px;
    object-fit: cover;
    position: absolute;
    right: 15%;
    top: 35px;
    box-shadow: var(--shadow);
}

.floating-card {
    position: absolute;
    left: 4%;
    bottom: 105px;
    background: white;
    padding: 12px;
    box-shadow: var(--shadow);
    width: 180px;
}

.floating-card img {
    height: 120px;
    width: 100%;
    object-fit: cover;
}

.floating-card span {
    display: block;
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: 4px;
    color: #857977;
    text-transform: uppercase;
}

.about {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 80px;
    align-items: center;
    background: #fffaf7;
}

.image-collage {
    position: relative;
    min-height: 430px;
}

.image-collage img:first-child {
    width: 70%;
    height: 360px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.image-collage img:last-child {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 62%;
    height: 300px;
    object-fit: cover;
    border: 10px solid #fffaf7;
    box-shadow: var(--shadow);
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 45px;
}

.stat strong {
    font-family: var(--serif);
    color: var(--pink);
    font-size: 38px;
    font-weight: 500;
}

.stat span {
    display: block;
    margin-top: 6px;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
}

.products-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--card);
    border: 1px solid var(--border);
    transition: 0.25s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.product-img {
    height: 360px;
    overflow: hidden;
    background: var(--cream);
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.07);
}

.product-info {
    padding: 21px;
}

.product-info h3 {
    font-family: var(--serif);
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-meta {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 18px;
    gap: 10px;
}

.price {
    font-weight: 700;
    color: var(--dark);
}

.small-btn {
    border: 1px solid var(--dark);
    background: transparent;
    color: var(--dark);
    padding: 11px 14px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .2s;
}

.small-btn:hover {
    background: var(--dark);
    color: white;
}

.why {
    background: #fffaf7;
}

.why-grid {
    margin-top: 76px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 50px;
}

.why-card {
    text-align: center;
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #dfcbb8;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    color: var(--gold);
    font-size: 23px;
}

.why-card h3 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 14px;
}

.why-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 14px;
    max-width: 340px;
    margin: auto;
}

.instagram {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

.insta-strip {
    margin: 45px auto 35px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    max-width: 1320px;
    padding: 0 5.5%;
}

.insta-card {
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--cream);
}

.insta-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: 0.3s ease;
}

.insta-card:hover img {
    transform: scale(1.06);
}

.insta-card::after {
    content: "View on Instagram";
    position: absolute;
    inset: auto 0 0 0;
    background: rgba(45, 36, 36, 0.72);
    color: #fff;
    padding: 12px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transition: 0.25s ease;
}

.insta-card:hover::after {
    opacity: 1;
}

.contact {
    display: grid;
    grid-template-columns: .95fr 1fr;
    gap: 70px;
    align-items: center;
}

.contact-list {
    margin-top: 42px;
    display: grid;
    gap: 22px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--muted);
}

.contact-item b {
    display: block;
    color: var(--dark);
    margin-bottom: 4px;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--gold);
    flex: 0 0 auto;
}

.contact-form {
    background: #fffaf7;
    padding: 38px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 55px rgba(45, 36, 36, .05);
}

.form-group {
    margin-bottom: 22px;
}

label {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #746665;
}

input,
textarea,
select {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 15px 16px;
    color: var(--dark);
    outline: none;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

footer {
    background: var(--dark);
    color: white;
    padding: 45px 5.5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
    align-items: start;
}

footer .logo span,
footer p,
footer a {
    color: #d7c9c5;
}

footer p {
    margin-top: 16px;
    line-height: 1.7;
    max-width: 430px;
    font-size: 14px;
}

footer h4 {
    font-family: var(--serif);
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 500;
}

footer a {
    display: block;
    margin: 8px 0;
    font-size: 14px;
}

.copyright {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #bdaead;
    font-size: 12px;
    text-align: center;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -430px;
    width: 410px;
    max-width: 100%;
    height: 100vh;
    background: #fffaf7;
    z-index: 2000;
    box-shadow: -20px 0 70px rgba(45, 36, 36, .18);
    padding: 28px;
    transition: .35s ease;
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.cart-head h2 {
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;
}

.close-cart {
    background: none;
    border: 0;
    font-size: 30px;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    display: grid;
    gap: 15px;
    align-content: start;
}

.cart-item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.cart-item img {
    width: 72px;
    height: 86px;
    object-fit: cover;
}

.cart-item h4 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 500;
}

.cart-item p {
    font-size: 12px;
    color: var(--muted);
    margin-top: 5px;
}

.qty-row {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-top: 8px;
}

.qty-row button {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border);
    background: var(--bg);
    cursor: pointer;
}

.remove {
    background: none;
    border: none;
    color: var(--pink);
    cursor: pointer;
    font-size: 20px;
}

.cart-total {
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 19px;
    font-weight: 700;
}

.cart-form {
    display: grid;
    gap: 12px;
    margin-bottom: 15px;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 36, 36, .28);
    opacity: 0;
    pointer-events: none;
    transition: .25s;
    z-index: 1500;
}

.overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%) translateY(20px);
    background: var(--dark);
    color: white;
    padding: 14px 22px;
    z-index: 3000;
    opacity: 0;
    pointer-events: none;
    transition: .25s;
    font-size: 13px;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(42px);
    transition: .85s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-55px);
    transition: .9s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(55px);
    transition: .9s ease;
}

.reveal-zoom {
    opacity: 0;
    transform: scale(.92);
    transition: .9s ease;
}

.reveal-left.visible,
.reveal-right.visible,
.reveal-zoom.visible {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.float-soft {
    animation: floatSoft 5s ease-in-out infinite;
}

@keyframes floatSoft {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        gap: 25px;
    }

    .hero-main {
        width: 76%;
        right: 5%;
    }
}

@media (max-width: 820px) {
    .navbar {
        height: 72px;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        right: -100%;
        width: 78%;
        height: calc(100vh - 72px);
        background: #fffaf7;
        flex-direction: column;
        align-items: start;
        padding: 45px;
        border-left: 1px solid var(--border);
        transition: .3s;
    }

    .nav-links.open {
        right: 0;
    }

    .menu-btn {
        display: block;
    }

    .hero,
    .about,
    .contact {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 115px;
    }

    .hero-art {
        min-height: 520px;
    }

    .hero-frame {
        inset: 0 0 30px 30px;
    }

    .hero-main {
        height: 465px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 45px 25px;
    }

    .products-head {
        display: block;
    }

    .products-head .lead {
        margin-top: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .insta-strip {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 560px) {
    .section {
        padding: 70px 6%;
    }

    .logo strong {
        font-size: 26px;
    }

    .logo span {
        font-size: 8px;
        letter-spacing: 2px;
    }

    .hero {
        padding-left: 6%;
        padding-right: 6%;
    }

    .hero-art {
        min-height: 430px;
    }

    .hero-main {
        height: 380px;
        width: 82%;
        right: 0;
    }

    .floating-card {
        width: 142px;
        bottom: 55px;
        left: 0;
    }

    .floating-card img {
        height: 90px;
    }

    .products-grid,
    .why-grid,
    .stats {
        grid-template-columns: 1fr;
    }

    .insta-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-img {
        height: 390px;
    }

    .contact-form {
        padding: 25px;
    }

    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}


/* Product page additions */
.page-hero {
    padding: 150px 5.5% 70px;
    background:
        radial-gradient(circle at 15% 20%, rgba(231, 170, 169, .28), transparent 32%),
        linear-gradient(135deg, #fffaf7 0%, #fbf7f4 58%, #f6efea 100%);
    min-height: 62vh;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.page-hero-card {
    position: relative;
    min-height: 430px;
}

.page-hero-card::before {
    content: "";
    position: absolute;
    inset: 35px 35px 0 0;
    border: 1px solid var(--border);
}

.page-hero-card img {
    position: relative;
    width: 78%;
    height: 430px;
    margin-left: auto;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.collections-section {
    padding-top: 64px;
    padding-bottom: 46px;
}

.collections-section .section-title {
    font-size: clamp(34px, 3.8vw, 58px);
}

.collections-section .lead {
    font-size: 15px;
}

.collections-strip {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin: 30px auto 0;
    max-width: 1180px;
}

.collection-tile {
    border: 1px solid rgba(234, 219, 210, .95);
    background: linear-gradient(145deg, #fffaf7, #fbf7f4);
    padding: 18px 14px;
    min-height: 86px;
    border-radius: 18px;
    cursor: pointer;
    transition: .25s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 12px 34px rgba(45, 36, 36, .045);
}

.collection-tile:hover,
.collection-tile.active {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(45, 36, 36, .09);
    border-color: rgba(231, 170, 169, .85);
    background: #fffdfb;
}

.collection-tile strong {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    display: block;
    margin-bottom: 7px;
    position: relative;
    z-index: 1;
}

.collection-tile span {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.collection-tile::after {
    content: "✧";
    position: absolute;
    right: 10px;
    bottom: -10px;
    font-size: 42px;
    color: rgba(231, 170, 169, .22);
}

.collection-tile.active::before {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(180, 138, 79, .35);
    border-radius: 14px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 34px;
    align-items: start;
}

.shop-panel {
    background: #fffaf7;
    border: 1px solid var(--border);
    padding: 26px;
    position: sticky;
    top: 96px;
    box-shadow: 0 18px 48px rgba(45, 36, 36, .05);
}

.shop-panel h3 {
    font-family: var(--serif);
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}

.filter-group {
    margin-bottom: 22px;
}

.filter-pills {
    display: grid;
    gap: 10px;
}

.filter-pill {
    border: 1px solid var(--border);
    background: var(--bg);
    padding: 12px 14px;
    text-align: left;
    color: var(--muted);
    cursor: pointer;
    transition: .2s;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.filter-pill.active,
.filter-pill:hover {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
}

.shop-topbar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.shop-tools {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.shop-tools input,
.shop-tools select {
    min-width: 220px;
    background: #fffaf7;
}

.badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 250, 247, .92);
    border: 1px solid var(--border);
    color: var(--gold);
    padding: 8px 11px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.product-actions .small-btn {
    width: 100%;
}

.product-size-row {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
    gap: 10px;
}

.product-size-row label {
    margin: 0;
    font-size: 10px;
}

.product-size-row select {
    padding: 10px 12px;
    background: var(--bg);
}

.quick-view-modal {
    position: fixed;
    inset: 0;
    z-index: 2600;
    display: none;
    place-items: center;
    padding: 24px;
}

.quick-view-modal.open {
    display: grid;
}

.quick-view-card {
    width: min(960px, 100%);
    background: #fffaf7;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: .95fr 1fr;
    max-height: 88vh;
    overflow: auto;
    position: relative;
    z-index: 2700;
}

.quick-view-card img {
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    width: 100%;
}

.quick-view-copy {
    padding: 42px;
}

.quick-view-copy h2 {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 12px;
}

.quick-view-copy p {
    color: var(--muted);
    line-height: 1.8;
    margin: 18px 0;
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 18px;
    border: 0;
    background: transparent;
    font-size: 34px;
    cursor: pointer;
    z-index: 3;
}

.empty-products {
    padding: 55px;
    border: 1px dashed var(--border);
    text-align: center;
    background: #fffaf7;
}

@media (max-width: 980px) {

    .page-hero,
    .shop-layout,
    .quick-view-card {
        grid-template-columns: 1fr;
    }

    .shop-panel {
        position: static;
    }

    .collections-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-panel {
        position: static;
    }

    .page-hero-card img {
        width: 100%;
    }
}

@media (max-width: 560px) {
    .page-hero {
        padding: 118px 6% 56px;
    }

    .collections-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .collections-section {
        padding-top: 44px;
    }

    .shop-tools,
    .shop-tools input,
    .shop-tools select {
        width: 100%;
        min-width: 0;
    }

    .product-actions {
        grid-template-columns: 1fr;
    }

    .quick-view-copy {
        padding: 28px;
    }

    .quick-view-card img {
        min-height: 360px;
    }
}