.store-main {
    width: min(100% - 36px, 980px);
    margin: 0 auto;
}

body button.ham-menu {
    padding: 0;
    border: 0;
    background: transparent;
}

.store-intro {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(56px, 9vw, 104px) 0 clamp(38px, 6vw, 66px);
    text-align: center;
    animation: coastal-fade 650ms ease both;
}

.store-eyebrow {
    margin-bottom: 12px;
    color: var(--rose);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.store-intro h1 {
    margin-bottom: 20px;
}

.store-intro h1::after {
    content: '';
    display: block;
    width: 64px;
    height: 2px;
    margin: 22px auto 0;
    background: var(--shell);
}

.store-intro > p:last-child {
    max-width: 620px;
    margin: 0 auto;
    font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(22px, 3vw, 28px);
}

.product-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 38px rgba(106, 24, 60, 0.11);
    text-align: left;
    transition: transform 180ms ease, box-shadow 180ms ease;
    animation: coastal-fade 650ms ease both;
}

.product-card:nth-child(2) { animation-delay: 60ms; }
.product-card:nth-child(3) { animation-delay: 120ms; }
.product-card:nth-child(4) { animation-delay: 180ms; }

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-card-image {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
}

.product-image-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    padding: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    overflow: hidden;
    background:
        radial-gradient(circle at 25% 15%, rgba(243, 163, 189, 0.34), transparent 34%),
        linear-gradient(145deg, #f7f2e9, #ead9d2);
}

.product-image-placeholder::before,
.product-image-placeholder::after {
    content: '';
    position: absolute;
    border: 1px solid rgba(194, 24, 91, 0.13);
    border-radius: 50%;
}

.product-image-placeholder::before {
    width: 180px;
    height: 180px;
    top: -88px;
    right: -52px;
}

.product-image-placeholder::after {
    width: 130px;
    height: 130px;
    bottom: -68px;
    left: -34px;
}

.product-image-placeholder img {
    width: min(48%, 180px);
    height: auto;
    opacity: 0.38;
    filter: grayscale(1);
}

.product-image-placeholder span {
    color: var(--ink-soft);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-details {
    padding: 28px;
    text-align: left;
}

.product-details > * {
    text-align: left;
}

.product-category {
    margin-bottom: 7px;
    color: var(--rose);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.product-details h2 {
    margin-bottom: 12px;
    font-size: clamp(1.55rem, 3vw, 2rem);
}

.product-description {
    max-width: 48ch;
    margin-bottom: 26px;
}

.product-purchase {
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid var(--line);
}

.product-price {
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.4rem;
}

.product-purchase button,
.product-view-link {
    min-height: 46px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    border: 1px solid rgba(74, 24, 48, 0.12);
    border-radius: 999px;
    background: var(--sand-light);
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-purchase button {
    cursor: not-allowed;
}

.product-view-link {
    color: var(--white);
    border-color: var(--rose);
    background: var(--rose);
    box-shadow: 0 8px 20px rgba(157, 23, 77, 0.18);
    transition: background 180ms ease, transform 180ms ease;
}

.product-view-link:hover,
.product-view-link:focus-visible {
    background: var(--rose-deep);
    transform: translateY(-1px);
}

.product-page {
    width: min(100% - 36px, 1120px);
    margin: 0 auto;
    padding-top: clamp(38px, 6vw, 72px);
}

.back-to-store {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--rose-deep);
    font-size: 0.82rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.back-to-store::before {
    content: '\2190';
    font-size: 1.15rem;
    transition: transform 180ms ease;
}

.back-to-store:hover::before,
.back-to-store:focus-visible::before {
    transform: translateX(-4px);
}

.product-layout {
    display: grid;
    gap: clamp(28px, 5vw, 62px);
    align-items: start;
}

.product-gallery {
    display: grid;
    gap: 24px;
}

.product-gallery img {
    width: 100%;
    height: auto;
    border: 7px solid rgba(255, 255, 255, 0.78);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    animation: coastal-fade 650ms ease both;
}

.product-gallery img:nth-child(2) {
    animation-delay: 80ms;
}

.product-page-details {
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
    text-align: left;
    animation: coastal-fade 650ms 80ms ease both;
}

.product-page-details > * {
    text-align: left;
}

.product-page-details h1 {
    margin: 8px 0 18px;
    font-size: clamp(2.35rem, 5vw, 4rem);
}

.product-page-price {
    margin-bottom: 28px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 1.35rem;
}

.product-long-description {
    padding-top: 26px;
    border-top: 1px solid var(--line);
}

.product-long-description p {
    margin-bottom: 18px;
    font-size: clamp(1rem, 1.5vw, 1.08rem);
    line-height: 1.85;
}

.product-checkout-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    min-height: 50px;
    margin-top: 12px;
    padding: 12px 22px;
    color: #fff;
    border: 1px solid var(--rose-deep);
    border-radius: 999px;
    background: var(--rose-deep);
    font-size: 0.8rem;
    font-weight: 750;
    letter-spacing: 0.06em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 180ms ease, color 180ms ease;
}

.product-checkout-link:hover,
.product-checkout-link:focus-visible {
    color: var(--rose-deep);
    background: transparent;
}

.full-nav a[aria-current="page"]:not(:last-child) {
    color: var(--rose-deep);
}

@media (min-width: 700px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-card:last-child:nth-child(odd) {
        width: calc(50% - 19px);
        grid-column: 1 / -1;
        justify-self: center;
    }

    .product-layout {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

    .product-gallery {
        position: sticky;
        top: 140px;
    }
}

@media (max-width: 699px) {
    .store-main {
        width: min(100% - 24px, 560px);
    }

    .store-intro {
        padding: 46px 8px 34px;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .product-card {
        display: flex;
        height: 100%;
        flex-direction: column;
    }

    .product-card-image {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .product-details {
        padding: 14px;
        display: flex;
        flex: 1;
        min-width: 0;
        flex-direction: column;
    }

    .product-category {
        margin-bottom: 4px;
        font-size: 0.6rem;
        letter-spacing: 0.08em;
    }

    .product-details h2 {
        margin-bottom: 10px;
        font-size: clamp(1rem, 4.8vw, 1.25rem);
    }

    .product-description {
        display: none;
    }

    .product-purchase {
        margin-top: auto;
        padding-top: 10px;
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

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

    .product-view-link {
        width: 100%;
        min-height: 36px;
        padding: 7px 8px;
        font-size: 0.64rem;
        letter-spacing: 0.04em;
    }
}

@media (max-width: 460px) {
    .product-purchase {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-purchase button {
        width: 100%;
    }

    .product-view-link {
        width: 100%;
    }
}
