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

:root {
    --ink: #321129;
    --wine: #4a1730;
    --berry: #c83b6f;
    --rose: #f8dce6;
    --rose-strong: #efb8cc;
    --blush: #fff5f8;
    --paper: #fffdf8;
    --green: #24d366;
    --muted: #825168;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    background: linear-gradient(180deg, #e993b3 0%, #f2b5ca 20%, #f9dce6 48%, #fff2f6 76%, #fffafb 100%);
    background-attachment: fixed;
    color: var(--ink);
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 72px;
    padding: 0 3rem;
    background: rgba(255, 250, 252, 0.82);
    border-bottom: 1px solid rgba(216, 124, 161, 0.38);
    backdrop-filter: blur(16px);
}

.brand {
    font-family: "Nunito Sans", "Segoe UI", Arial, sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--berry);
    font-weight: 800;
    white-space: nowrap;
}

.brand strong {
    font-weight: inherit;
}

.site-nav {
    display: flex;
    gap: 1.8rem;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(470px, 1.05fr);
    align-items: center;
    gap: clamp(2.5rem, 4vw, 4.5rem);
    width: min(1200px, calc(100% - 3rem));
    min-height: calc(100vh - 72px);
    margin: 0 auto;
    padding: 5rem 0 5.5rem;
}

.hero-copy h1,
.section-heading h2,
.site-footer h2 {
    margin: 0;
    color: var(--ink);
    font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
    font-weight: 600;
    line-height: 1.04;
}

.hero-copy {
    padding-right: 0;
}

.hero-copy h1 {
    max-width: 620px;
    font-family: "Nunito Sans", "Segoe UI", Arial, sans-serif;
    font-size: clamp(2.75rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
}

.hero-copy p:not(.eyebrow) {
    max-width: 550px;
    margin: 1.6rem 0 0;
    color: #704057;
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.65;
}

.eyebrow {
    margin: 0 0 1rem;
    padding-left: 0.8rem;
    border-left: 2px solid var(--berry);
    color: #b42f61;
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2.15rem;
}

.primary-link,
.secondary-link,
.pill-button,
.whatsapp-button {
    border: 0;
    border-radius: 8px;
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    font-weight: 700;
}

.primary-link,
.secondary-link {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 1.2rem;
}

.primary-link {
    background: #c73669;
    color: white;
    box-shadow: 0 16px 32px rgba(200, 59, 111, 0.24);
}

.secondary-link {
    border: 1px solid rgba(177, 51, 97, 0.36);
    color: var(--wine);
    background: rgba(255, 255, 255, 0.46);
}

button.secondary-link {
    font: inherit;
    cursor: pointer;
}

.hero-stage {
    position: relative;
    width: 100%;
    justify-self: end;
    transform: none;
    aspect-ratio: 3 / 2;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 28px 70px rgba(105, 36, 65, 0.15);
}

.hero-stage img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section-heading {
    width: min(960px, calc(100% - 2rem));
    margin: 0 auto 3rem;
    padding-top: 3rem;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.35rem);
}

.section-heading > .eyebrow {
    display: inline-flex;
}

.section-heading p:not(.eyebrow) {
    margin: 0.9rem auto 0;
    color: var(--muted);
    line-height: 1.6;
}

.catalog-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.55rem;
    width: min(1120px, calc(100% - 2rem));
    margin: -1.25rem auto 2.2rem;
}

.catalog-tab {
    min-height: 42px;
    padding: 0 1.15rem;
    border: 1px solid var(--rose-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    color: var(--wine);
    font-size: 0.88rem;
    font-weight: 800;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.catalog-tab:hover {
    border-color: var(--berry);
    color: var(--berry);
    transform: translateY(-1px);
}

.catalog-tab.is-active {
    border-color: var(--berry);
    background: var(--berry);
    color: white;
    box-shadow: 0 8px 18px rgba(201, 53, 105, 0.2);
}

.catalog-search {
    display: grid;
    gap: 0.45rem;
    width: min(620px, calc(100% - 2rem));
    margin: -1rem auto 2.4rem;
}

.catalog-search label {
    color: var(--wine);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.catalog-search input {
    width: 100%;
    min-height: 48px;
    padding: 0 1rem;
    border: 1px solid var(--rose-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--ink);
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    outline: 0;
}

.catalog-search input:focus {
    border-color: var(--berry);
    box-shadow: 0 0 0 4px rgba(200, 59, 111, 0.12);
}

.category-empty {
    width: min(720px, calc(100% - 2rem));
    margin: 0 auto 4rem;
    padding: 3rem 1.5rem;
    border: 1px solid var(--rose-strong);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.65);
    color: var(--wine);
    text-align: center;
}

.category-empty strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.55rem;
}

.category-empty p {
    margin: 0.55rem 0 0;
    color: var(--muted);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding-bottom: 4rem;
}

.product-card {
    overflow: hidden;
    border: 1px solid var(--rose-strong);
    border-radius: 8px;
    background: white;
    box-shadow: 0 18px 42px rgba(93, 32, 58, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover,
.product-card.is-selected {
    border-color: var(--berry);
    transform: translateY(-4px);
    box-shadow: 0 22px 50px rgba(93, 32, 58, 0.15);
}

.product-card.is-exclusive {
    border-color: rgba(200, 59, 111, 0.62);
}

.product-visual {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    overflow: hidden;
    background: var(--rose);
    perspective: 760px;
}

.product-image {
    display: block;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    background: var(--rose);
}

.exclusive-badge {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    z-index: 1;
    padding: 0.42rem 0.7rem;
    border-radius: 999px;
    background: var(--berry);
    color: white;
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(200, 59, 111, 0.24);
}

.product-object {
    position: relative;
    width: 150px;
    height: 195px;
    border-radius: 4px 16px 8px 4px;
    background: var(--paper);
    transform: rotateX(58deg) rotateZ(-18deg);
    box-shadow: -16px 16px 0 var(--accent), 0 18px 24px rgba(70, 40, 50, 0.18);
    transition: transform 380ms ease;
}

.product-object.album {
    width: 180px;
    height: 54px;
    border-radius: 4px 4px 14px 4px;
    transform: rotateX(58deg) rotateZ(8deg);
    box-shadow: 12px 12px 0 var(--accent), 0 16px 18px rgba(70, 40, 50, 0.18);
}

.product-object span,
.product-object::before,
.product-object::after {
    content: "";
    position: absolute;
    background: color-mix(in srgb, var(--accent), white 50%);
}

.product-object.notebook span,
.product-object.notebook::before,
.product-object.notebook::after {
    left: 45px;
    right: 22px;
    height: 2px;
}

.product-object.notebook span {
    top: 68px;
}

.product-object.notebook::before {
    top: 104px;
}

.product-object.notebook::after {
    top: 140px;
}

.product-object.album::before {
    left: 18px;
    right: 20px;
    bottom: -10px;
    height: 3px;
    background: #9d8f94;
}

.product-object.album::after {
    right: -14px;
    top: 12px;
    width: 18px;
    height: 28px;
    border-radius: 0 0 10px 0;
    background: var(--accent);
}

.product-info {
    padding: 1.6rem;
}

.catalog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: min(1120px, calc(100% - 2rem));
    margin: -2rem auto 0.7rem;
}

.pagination-pages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem;
}

.pagination-button {
    display: inline-grid;
    min-width: 40px;
    min-height: 40px;
    place-items: center;
    padding: 0 0.75rem;
    border: 1px solid var(--rose-strong);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--wine);
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease;
}

.pagination-button:hover:not(:disabled),
.pagination-button.is-current {
    border-color: var(--berry);
    background: var(--berry);
    color: white;
}

.pagination-button:disabled {
    cursor: not-allowed;
    opacity: 0.42;
}

.pagination-status {
    margin: 0 auto 4rem;
    color: var(--muted);
    font-size: 0.82rem;
    text-align: center;
}

.product-info h3,
.order-summary h3 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
}

.product-info p {
    min-height: 72px;
    margin: 0.75rem 0 1.2rem;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.product-info .product-author {
    min-height: 0;
    margin: 0.25rem 0 0.65rem;
    color: var(--berry);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.product-footer strong {
    display: block;
    color: var(--berry);
    font-size: 1.65rem;
}

.product-footer span {
    color: #a98a98;
    font-size: 0.78rem;
}

.pill-button {
    min-width: 118px;
    min-height: 40px;
    padding: 0 1rem;
    background: #f8ccd9;
    color: var(--berry);
}

.details-button {
    min-height: 36px;
    margin: -0.3rem 0 1.1rem;
    padding: 0 0.95rem;
    border: 1px solid var(--rose-strong);
    border-radius: 999px;
    background: white;
    color: var(--wine);
    font-size: 0.85rem;
    font-weight: 800;
}

.details-button:hover {
    border-color: var(--berry);
    color: var(--berry);
}

.footer-details-button {
    min-width: 118px;
    min-height: 40px;
    margin: 0;
}

.quantity-control {
    display: grid;
    grid-template-columns: 34px 34px 34px;
    align-items: center;
    min-height: 38px;
    border-radius: 999px;
    background: #f8ccd9;
    color: var(--berry);
    overflow: hidden;
    text-align: center;
    font-weight: 800;
}

.quantity-control button {
    height: 38px;
    border: 0;
    background: transparent;
    color: inherit;
    font-weight: 900;
}

.order-section {
    padding: 4rem 1rem 6rem;
}

.order-card {
    width: min(1120px, 100%);
    margin: 0 auto;
    padding: clamp(1.4rem, 4vw, 3rem);
    border: 1px solid var(--rose-strong);
    border-radius: 8px;
    background: rgba(255, 246, 249, 0.84);
    box-shadow: 0 24px 60px rgba(93, 32, 58, 0.09);
}

.section-heading.compact {
    width: auto;
    margin-bottom: 2rem;
    padding-top: 0;
}

.order-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.3fr;
    gap: 1.4rem;
    align-items: start;
}

.order-summary {
    padding: 1.2rem;
    border: 1px solid var(--rose-strong);
    border-radius: 8px;
    background: white;
}

.empty-order {
    margin: 1rem 0;
    color: var(--muted);
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid #f4d7e1;
}

.summary-row strong,
.summary-row span {
    display: block;
}

.summary-row span {
    margin-top: 0.2rem;
    color: var(--muted);
    font-size: 0.88rem;
}

.summary-row .selected-option {
    color: var(--berry);
    font-size: 0.82rem;
    font-weight: 800;
}

.summary-row button {
    border: 0;
    background: transparent;
    color: var(--berry);
    font-size: 0.8rem;
    font-weight: 800;
}

.summary-actions {
    display: grid;
    justify-items: end;
    gap: 0.35rem;
}

.summary-quantity-control {
    grid-template-columns: 30px 30px 30px;
    min-height: 34px;
}

.summary-quantity-control button {
    height: 34px;
}

.summary-remove {
    padding: 0;
}

.summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
    color: var(--muted);
}

.summary-total strong {
    color: var(--berry);
    font-size: 1.5rem;
}

.catalog-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    margin-top: 1.2rem;
    border: 1px solid rgba(177, 51, 97, 0.36);
    border-radius: 8px;
    color: var(--berry);
    font-size: 0.88rem;
    font-weight: 800;
    text-decoration: none;
}

.catalog-link:hover {
    background: #fff3f7;
}

.order-alert {
    position: fixed;
    z-index: 30;
    right: 1.5rem;
    bottom: 6rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: min(390px, calc(100% - 3rem));
    padding: 1rem 1.1rem;
    border: 1px solid #e7a2b8;
    border-radius: 8px;
    background: #fff8fa;
    box-shadow: 0 18px 40px rgba(93, 32, 58, 0.18);
    color: var(--wine);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.45;
}

.order-alert button {
    display: grid;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #f6d3df;
    color: var(--berry);
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
}

.order-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.order-form label {
    display: grid;
    gap: 0.45rem;
    color: var(--wine);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.order-form input,
.order-form textarea {
    width: 100%;
    border: 1px solid var(--rose-strong);
    border-radius: 8px;
    background: white;
    color: var(--ink);
    outline: 0;
}

.order-form input {
    min-height: 52px;
    padding: 0 1rem;
}

.order-form textarea {
    min-height: 132px;
    padding: 1rem;
    resize: vertical;
}

.order-form input:focus,
.order-form textarea:focus {
    border-color: var(--berry);
    box-shadow: 0 0 0 4px rgba(200, 59, 111, 0.12);
}

.full-field,
.whatsapp-button {
    grid-column: 1 / -1;
}

.whatsapp-button {
    justify-self: center;
    min-height: 54px;
    padding: 0 2rem;
    background: var(--green);
    color: white;
    box-shadow: 0 16px 28px rgba(36, 211, 102, 0.24);
}

.whatsapp-button span {
    margin-right: 0.5rem;
}

.site-footer {
    padding: 3.5rem 1rem;
    background: var(--wine);
    color: #ffdce7;
    text-align: center;
}

.site-footer h2 {
    color: white;
    font-size: 1.65rem;
}

.site-footer p {
    margin: 0.7rem 0 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.social-link {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: white;
    transition: transform 180ms ease, filter 180ms ease;
}

.social-link:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.social-link svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.whatsapp-link {
    background: var(--green);
}

.instagram-link {
    background: #d94c7c;
}

.tiktok-link {
    background: #151015;
}

.details-backdrop {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(38, 11, 28, 0.48);
    backdrop-filter: blur(8px);
}

.details-modal {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1fr);
    gap: clamp(1.2rem, 3vw, 2rem);
    width: min(960px, 100%);
    max-height: min(760px, calc(100vh - 2rem));
    overflow: auto;
    padding: clamp(1.2rem, 3vw, 2rem);
    border: 1px solid var(--rose-strong);
    border-radius: 8px;
    background: var(--blush);
    box-shadow: 0 30px 80px rgba(38, 11, 28, 0.28);
}

.details-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--rose-strong);
    border-radius: 50%;
    background: white;
    color: var(--wine);
    font-weight: 900;
}

.details-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.detail-photo {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 150px;
    border: 1px solid var(--rose-strong);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(248, 220, 230, 0.78)),
        var(--rose);
    overflow: hidden;
}

.detail-photo span {
    color: var(--berry);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.detail-photo::after {
    content: "";
    position: absolute;
    inset: auto 12% 18% 12%;
    height: 10px;
    border-radius: 999px;
    background: rgba(74, 23, 48, 0.08);
}

.main-photo {
    grid-column: 1 / -1;
    aspect-ratio: 1 / 1;
    min-height: 280px;
}

.main-photo .product-object {
    transform: rotateX(58deg) rotateZ(-12deg) scale(1.08);
}

.detail-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-options {
    display: grid;
    gap: 0.65rem;
    margin: 1.2rem 0;
}

.product-options > strong {
    color: var(--wine);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-options > div {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.option-button {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--rose-strong);
    border-radius: 6px;
    background: #fffafd;
    color: var(--wine);
    font-size: 0.82rem;
    cursor: pointer;
}

.option-button strong {
    color: var(--berry);
    font-size: 0.78rem;
}

.option-button.is-selected {
    border-color: var(--berry);
    background: #fbe0e9;
}

.details-content {
    align-self: start;
    padding-top: 0.4rem;
}

.details-content h2 {
    margin: 0;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.75rem, 3.2vw, 2.55rem);
    line-height: 1.05;
}

.details-content > strong {
    display: block;
    margin-top: 0.9rem;
    color: var(--berry);
    font-size: 1.7rem;
}

.details-content small {
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 600;
}

.details-content p {
    margin: 1rem 0 0;
    color: var(--muted);
    line-height: 1.7;
}

.details-content ul {
    display: grid;
    gap: 0.65rem;
    margin: 1.2rem 0 0;
    padding: 0;
    list-style: none;
}

.details-content li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--wine);
}

.details-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--berry);
}

.details-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.6rem;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: #b32121;
    padding: 1rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "Ocorreu um erro.";
}

@media (max-width: 920px) {
    .hero,
    .order-layout,
    .details-modal {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        gap: 2rem;
        padding-top: 3rem;
    }

    .hero-stage {
        width: 100%;
        min-height: 0;
        transform: none;
    }

    .hero-copy {
        padding-right: 0;
    }

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

    .details-content {
        align-self: start;
    }
}

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

    .site-nav {
        width: 100%;
        justify-content: space-between;
        gap: 0.75rem;
        font-size: 0.86rem;
    }

    .product-grid,
    .order-form {
        grid-template-columns: 1fr;
    }

    .catalog-pagination {
        flex-wrap: wrap;
        margin-top: -2rem;
    }

    .pagination-arrow {
        min-width: 92px;
    }

    .hero-copy h1 {
        font-size: 2rem;
    }

    .product-info p {
        min-height: auto;
    }

    .details-gallery {
        grid-template-columns: 1fr;
    }

    .main-photo {
        min-height: 230px;
    }
}
