parfum_agsd/parfum-shop/src/components/ProductDetailPage.css

1174 lines
22 KiB
CSS

.detail-page {
min-height: 100vh;
padding: 0;
color: var(--theme-text);
background: var(--theme-bg);
}
.detail-page .navbar--light {
position: fixed;
top: clamp(0.75rem, 2.1vw, 1.4rem);
right: 0;
left: 0;
z-index: 998;
margin-bottom: 0;
padding-top: 0;
}
.detail-shell {
width: var(--container-wide);
margin: 0 auto;
padding: 0 0 clamp(2.2rem, 6vw, 5rem);
background: transparent;
border: 0;
box-shadow: none;
}
.detail-topbar {
position: fixed;
top: clamp(0.75rem, 2.1vw, 1.4rem);
right: var(--page-x);
left: var(--page-x);
z-index: 997;
display: flex;
justify-content: space-between;
align-items: center;
gap: var(--gap-sm);
min-height: clamp(3rem, 5.4vw, 3.5rem);
padding: 0;
border-bottom: 0;
pointer-events: none;
}
.back-link {
display: inline-flex;
align-items: center;
gap: 0.65rem;
min-height: 44px;
padding: 0.35rem 0;
border: 0;
background: transparent;
color: var(--theme-text);
cursor: pointer;
font-size: var(--text-sm);
pointer-events: auto;
transition:
transform var(--duration-med) var(--ease-out),
opacity var(--duration-med) var(--ease-out);
}
.back-link:hover {
opacity: 0.68;
transform: translateX(-0.2rem);
}
.back-link-arrow {
line-height: 1;
}
.detail-topbar-meta {
display: none;
align-items: baseline;
justify-content: flex-end;
gap: var(--gap-xs);
min-width: 0;
flex-wrap: wrap;
text-align: right;
text-transform: uppercase;
pointer-events: auto;
}
.detail-topbar-meta span,
.detail-topbar-meta strong,
.eyebrow,
.label-title {
font-size: var(--text-xs);
letter-spacing: 0.22em;
}
.detail-topbar-meta span,
.eyebrow,
.label-title {
color: var(--theme-text-muted);
}
.detail-topbar-meta strong {
color: var(--theme-text);
font-weight: 500;
max-width: 100%;
overflow-wrap: anywhere;
}
.product-hero {
position: relative;
display: grid;
grid-template-columns: repeat(12, minmax(0, 1fr));
gap: var(--gap-md);
align-items: center;
min-height: 100svh;
padding-block: 0;
border-bottom: 0;
isolation: isolate;
}
.product-media-column {
position: relative;
grid-column: 1 / -1;
grid-row: 1;
display: grid;
place-items: center;
min-height: inherit;
min-width: 0;
}
.product-hero-visual {
position: relative;
display: grid;
place-items: center;
width: 100%;
min-height: inherit;
overflow: visible;
border: 0;
background: transparent;
}
.product-hero-visual::before {
display: none;
}
.product-hero-copy {
position: absolute;
top: clamp(6.5rem, 11vw, 9rem);
left: 0;
z-index: 2;
width: min(26vw, 390px);
}
.product-hero-copy span {
display: block;
margin-bottom: clamp(0.75rem, 1.5vw, 1.15rem);
color: var(--theme-text-muted);
font-size: var(--text-xs);
letter-spacing: 0.22em;
text-transform: uppercase;
}
.product-hero-copy h1 {
margin: 0;
color: var(--theme-text);
font-size: clamp(2.6rem, 5.1vw, 6.4rem);
font-weight: 300;
line-height: 0.9;
letter-spacing: 0;
text-transform: uppercase;
text-wrap: balance;
}
.product-hero-image {
position: relative;
z-index: 1;
width: min(36vw, 600px);
max-height: min(62svh, 700px);
height: auto;
object-fit: contain;
display: block;
filter: drop-shadow(0 34px 72px rgba(0, 0, 0, 0.42));
}
.is-transition-arriving .product-hero-image,
.is-transition-arriving [data-product-transition-reveal] {
opacity: 0;
}
.product-thumbs {
position: absolute;
top: calc(50% + min(19vw, 318px) + clamp(0.75rem, 1.5vw, 1.2rem));
left: 50%;
z-index: 3;
display: flex;
justify-content: center;
gap: var(--gap-xs);
margin-top: 0;
transform: translateX(-50%);
}
.thumb-btn {
width: clamp(4.8rem, 7vw, 6.25rem);
height: clamp(4.8rem, 7vw, 6.25rem);
min-height: 44px;
padding: 0;
border: 1px solid var(--theme-border);
background: var(--theme-paper);
overflow: hidden;
cursor: pointer;
transition:
transform var(--duration-med) var(--ease-out),
border-color var(--duration-med) var(--ease-out),
box-shadow var(--duration-med) var(--ease-out);
}
.thumb-btn:hover,
.thumb-btn:focus-visible {
transform: translateY(-2px);
border-color: rgba(var(--theme-accent-rgb) / 0.62);
box-shadow: var(--theme-shadow-soft);
}
.thumb-btn.active {
outline: 2px solid var(--theme-accent);
outline-offset: 3px;
}
.thumb-btn img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
.hero-fact-grid {
position: absolute;
left: 0;
top: 50%;
z-index: 3;
width: min(22vw, 310px);
display: grid;
grid-template-columns: 1fr;
gap: var(--gap-md);
margin-top: 0;
transform: translateY(-42%);
}
.hero-fact-grid div,
.character-facts div,
.meta-card,
.delivery-grid div {
padding-top: 1rem;
border-top: 1px solid var(--theme-border);
}
.hero-fact-grid span,
.character-facts span,
.meta-card span,
.delivery-grid span,
.comment-card span,
.review-detail-row span {
display: block;
margin-bottom: 0.55rem;
color: var(--theme-text-muted);
font-size: var(--text-xs);
letter-spacing: 0.2em;
text-transform: uppercase;
}
.hero-fact-grid p,
.character-facts p,
.meta-card p,
.delivery-grid p {
margin: 0;
color: var(--theme-text);
font-size: var(--text-base);
line-height: 1.55;
}
.product-purchase-panel {
position: relative;
grid-column: 10 / -1;
grid-row: 1;
z-index: 4;
justify-self: end;
align-self: center;
width: min(100%, 390px);
max-height: none;
overflow: visible;
display: flex;
flex-direction: column;
gap: clamp(1rem, 1.8vw, 1.45rem);
padding: 0;
border: 0;
background: transparent;
backdrop-filter: none;
-webkit-backdrop-filter: none;
box-shadow: none;
}
.purchase-price-row {
display: flex;
justify-content: space-between;
align-items: flex-end;
gap: var(--gap-sm);
}
.purchase-price-row span {
color: var(--theme-text-muted);
font-size: var(--text-xs);
letter-spacing: 0.22em;
text-transform: uppercase;
}
.purchase-price-row strong {
color: var(--theme-text);
font-size: clamp(1.45rem, 2.3vw, 2rem);
font-weight: 400;
letter-spacing: 0;
}
.purchase-size-group,
.purchase-actions {
display: flex;
flex-direction: column;
gap: var(--gap-xs);
}
.size-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--gap-xs);
}
.size-card {
min-height: 112px;
padding: clamp(0.85rem, 1.4vw, 1.05rem);
border: 1px solid var(--theme-border);
background: var(--theme-paper);
color: var(--theme-text);
text-align: left;
cursor: pointer;
transition:
transform var(--duration-med) var(--ease-out),
border-color var(--duration-med) var(--ease-out),
background-color var(--duration-med) var(--ease-out),
box-shadow var(--duration-med) var(--ease-out);
}
.size-card:hover,
.size-card:focus-visible {
transform: translateY(-2px);
border-color: rgba(var(--theme-accent-rgb) / 0.58);
box-shadow: var(--theme-shadow-soft);
}
.size-card.active {
border-color: var(--theme-accent);
background:
linear-gradient(135deg, rgba(var(--theme-accent-rgb) / 0.12), transparent 62%),
var(--theme-paper);
}
.size-title {
display: block;
margin-bottom: 0.65rem;
color: var(--theme-text);
font-size: var(--text-sm);
}
.size-card strong {
display: block;
margin-bottom: 0.35rem;
color: var(--theme-text);
font-size: var(--text-xl);
font-weight: 400;
letter-spacing: 0;
}
.size-card small {
color: var(--theme-text-muted);
font-size: var(--text-xs);
line-height: 1.4;
}
.purchase-discovery-note {
display: grid;
grid-template-columns: 1fr auto;
align-items: center;
justify-content: space-between;
gap: var(--gap-sm);
padding: clamp(0.85rem, 1.45vw, 1rem) 0 0;
border-top: 1px solid var(--theme-border);
background: transparent;
}
.purchase-discovery-note strong {
display: block;
margin-bottom: 0.25rem;
color: var(--theme-text);
font-weight: 500;
}
.purchase-discovery-note p {
max-width: 38rem;
margin: 0;
color: var(--theme-text-muted);
font-size: var(--text-xs);
line-height: 1.42;
}
.purchase-discovery-note .discount-preview {
margin-top: 0.5rem;
color: #fff;
}
.purchase-discovery-note a {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 44px;
padding: 0 1rem;
border-radius: 999px;
background: var(--theme-accent);
color: #fff;
text-decoration: none;
white-space: nowrap;
font-size: var(--text-sm);
transition:
transform var(--duration-med) var(--ease-out),
box-shadow var(--duration-med) var(--ease-out);
}
.purchase-discovery-note a:hover {
transform: translateY(-2px);
box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}
.buy-button,
.restock-button,
.detail-bottom-actions button,
.review-toggle,
.review-write-button {
min-height: 48px;
border: 1px solid var(--theme-border);
cursor: pointer;
text-transform: uppercase;
letter-spacing: 0.12em;
transition:
transform var(--duration-med) var(--ease-out),
border-color var(--duration-med) var(--ease-out),
background-color var(--duration-med) var(--ease-out),
box-shadow var(--duration-med) var(--ease-out);
}
.buy-button {
border-color: var(--theme-accent);
background: var(--theme-accent);
color: #fff;
}
.restock-button {
background: transparent;
color: var(--theme-text);
}
.buy-button:hover,
.restock-button:hover,
.detail-bottom-actions button:hover {
transform: translateY(-2px);
box-shadow: var(--theme-shadow-soft);
}
.restock-button:hover {
border-color: rgba(var(--theme-accent-rgb) / 0.68);
}
.product-story-grid,
.product-meta-section {
position: relative;
display: grid;
grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
gap: clamp(1.5rem, 5vw, 6rem);
align-items: stretch;
padding-block: clamp(4rem, 9vw, 9rem);
border-top: 0;
}
.product-story-grid {
margin-top: clamp(4rem, 8vw, 8rem);
}
.story-copy {
align-self: center;
max-width: 58rem;
}
.story-copy h2,
.section-intro h2,
.reviews-heading h2,
.recommendation-heading h2,
.detail-bottom-cta h2 {
margin: 0.85rem 0 0;
color: var(--theme-text);
font-size: clamp(2.2rem, 5.6vw, 6rem);
font-weight: 300;
line-height: 0.94;
letter-spacing: 0;
text-wrap: balance;
}
.story-copy p,
.section-intro p,
.reviews-heading p,
.detail-bottom-cta p {
max-width: var(--text-measure);
margin: 1.25rem 0 0;
color: var(--theme-text-muted);
font-size: var(--text-lg);
line-height: 1.62;
}
.story-visual-panel {
min-height: clamp(360px, 42vw, 620px);
display: flex;
align-items: flex-end;
padding: clamp(1.2rem, 3vw, 2.4rem);
border: 1px solid var(--theme-border);
background:
radial-gradient(circle at 66% 32%, rgba(255, 255, 255, 0.11), transparent 14rem),
radial-gradient(circle at 38% 68%, rgba(var(--theme-accent-rgb) / 0.1), transparent 17rem),
linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
var(--theme-paper);
}
.character-facts {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--gap-sm);
margin-top: clamp(1.4rem, 3vw, 2.4rem);
max-width: 58rem;
}
.character-facts div:last-child {
grid-column: 1 / -1;
}
.story-visual-panel > div {
width: 100%;
}
.story-visual-panel span:first-child {
display: block;
margin-bottom: var(--gap-sm);
color: var(--theme-text-muted);
font-size: var(--text-xs);
letter-spacing: 0.22em;
text-transform: uppercase;
}
.material-tags {
display: flex;
flex-wrap: wrap;
gap: var(--gap-xs);
}
.material-tags span {
display: inline-flex;
align-items: center;
min-height: 40px;
padding: 0.55rem 0.85rem;
border: 1px solid var(--theme-border);
background: rgba(255, 255, 255, 0.035);
color: var(--theme-text);
font-size: var(--text-sm);
}
.product-structure-section,
.product-reviews-section,
.recommendation-section {
position: relative;
padding-block: clamp(3rem, 8vw, 8rem);
border-top: 0;
}
.product-story-grid::before,
.product-structure-section::before,
.product-meta-section::before,
.product-reviews-section::before,
.recommendation-section::before {
position: absolute;
top: clamp(1.2rem, 3vw, 2rem);
right: 0;
width: min(32vw, 420px);
padding-top: 0.55rem;
border-top: 1px solid var(--theme-border);
color: var(--theme-text-muted);
font-size: var(--text-xs);
letter-spacing: 0.16em;
line-height: 1.4;
text-transform: uppercase;
}
.product-story-grid::before {
content: "01 / Charakter";
}
.product-structure-section::before {
content: "02 / Struktur";
}
.product-meta-section::before {
content: "03 / Atelier";
}
.product-reviews-section::before {
content: "04 / Resonanz";
}
.recommendation-section::before {
content: "05 / Kollektion";
}
.section-intro {
max-width: 74rem;
}
.structure-timeline {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: var(--gap-sm);
margin-top: clamp(1.6rem, 4vw, 4rem);
}
.structure-phase-card,
.comment-card,
.delivery-panel,
.review-details,
.recommendation-card {
border: 1px solid var(--theme-border);
background:
linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008)),
var(--theme-surface-soft);
}
.structure-phase-card {
min-height: 280px;
padding: clamp(1rem, 2vw, 1.5rem);
display: flex;
flex-direction: column;
justify-content: space-between;
gap: var(--gap-md);
}
.structure-index {
color: var(--theme-accent);
font-size: var(--text-sm);
letter-spacing: 0.2em;
}
.structure-phase-card h3 {
margin: 0;
color: var(--theme-text);
font-size: var(--text-lg);
font-weight: 400;
letter-spacing: 0.02em;
text-transform: uppercase;
}
.structure-phase-card div {
display: flex;
flex-wrap: wrap;
gap: var(--gap-xs);
}
.structure-phase-card div span {
padding: 0.55rem 0.75rem;
border: 1px solid var(--theme-border);
color: var(--theme-text-muted);
font-size: var(--text-sm);
}
.product-meta-section {
align-items: start;
}
.meta-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--gap-sm);
}
.meta-card {
min-height: 132px;
}
.delivery-panel {
padding: clamp(1.1rem, 2.4vw, 1.7rem);
}
.delivery-panel-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: var(--gap-sm);
padding-bottom: var(--gap-sm);
border-bottom: 1px solid var(--theme-border);
}
.delivery-badge {
display: inline-flex;
align-items: center;
justify-content: center;
min-width: 44px;
min-height: 30px;
border: 1px solid var(--theme-accent);
color: var(--theme-accent);
font-size: var(--text-xs);
letter-spacing: 0.16em;
}
.delivery-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--gap-sm);
margin-top: var(--gap-sm);
}
.delivery-grid div:last-child {
grid-column: 1 / -1;
}
.reviews-heading {
display: flex;
justify-content: space-between;
align-items: end;
gap: var(--gap-lg);
}
.review-score-block {
display: grid;
justify-items: end;
gap: 0.35rem;
flex-shrink: 0;
}
.review-score-block strong {
color: var(--theme-text);
font-size: clamp(3rem, 6vw, 6rem);
font-weight: 300;
line-height: 0.9;
letter-spacing: 0;
}
.review-score-block span {
color: var(--theme-accent);
letter-spacing: 0.18em;
}
.review-score-block small {
color: var(--theme-text-muted);
font-size: var(--text-xs);
letter-spacing: 0.12em;
}
.comment-spotlight {
margin-top: clamp(1.6rem, 4vw, 4rem);
}
.comment-dots {
display: flex;
justify-content: flex-end;
gap: 0.6rem;
margin-bottom: var(--gap-sm);
}
.comment-dot {
width: 16px;
min-height: 16px;
padding: 0;
border: 0;
border-radius: 999px;
background: var(--theme-text-muted);
cursor: pointer;
}
.comment-dot.active {
background: var(--theme-accent);
}
.comment-spotlight-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--gap-sm);
}
.comment-card {
min-height: 190px;
padding: clamp(1rem, 2vw, 1.5rem);
display: flex;
flex-direction: column;
gap: var(--gap-sm);
}
.comment-card p {
margin: 0;
flex: 1;
color: var(--theme-text);
font-size: var(--text-base);
line-height: 1.58;
}
.comment-card small {
color: var(--theme-text-muted);
font-size: var(--text-sm);
letter-spacing: 0.08em;
}
.review-panel {
margin-top: var(--gap-sm);
}
.review-toggle {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
gap: var(--gap-sm);
padding: 0.9rem 1rem;
background: transparent;
color: var(--theme-text);
}
.review-toggle:hover {
border-color: rgba(var(--theme-accent-rgb) / 0.6);
}
.review-toggle-icon {
font-size: 1.2rem;
line-height: 1;
transition: transform var(--duration-med) var(--ease-out);
}
.review-toggle-icon.open {
transform: rotate(45deg);
}
.review-details {
display: grid;
gap: var(--gap-sm);
margin-top: var(--gap-xs);
padding: clamp(1rem, 2vw, 1.25rem);
}
.review-detail-row {
display: grid;
grid-template-columns: 9rem 1fr 3rem;
align-items: center;
gap: var(--gap-sm);
}
.review-detail-row span {
margin-bottom: 0;
}
.review-detail-row strong {
color: var(--theme-text);
font-weight: 400;
text-align: right;
}
.review-detail-bar {
position: relative;
height: 1px;
overflow: hidden;
background: var(--theme-border);
}
.review-detail-fill {
position: absolute;
inset: 0 auto 0 0;
background: var(--theme-accent);
}
.review-write-button {
background: var(--theme-paper);
color: var(--theme-text-muted);
cursor: not-allowed;
}
.detail-bottom-cta {
display: grid;
grid-template-columns: minmax(0, 1fr) auto;
gap: var(--gap-lg);
align-items: end;
margin-top: clamp(1rem, 3vw, 2rem);
padding: clamp(1.5rem, 4vw, 3.5rem);
overflow: hidden;
background:
radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.24), transparent 18rem),
linear-gradient(135deg, var(--theme-accent), #e95700);
}
.detail-bottom-cta .eyebrow,
.detail-bottom-cta h2,
.detail-bottom-cta p {
color: #fff;
}
.detail-bottom-cta p {
max-width: 48rem;
}
.detail-bottom-actions {
display: flex;
flex-wrap: wrap;
gap: var(--gap-xs);
justify-content: flex-end;
}
.detail-bottom-actions button {
padding: 0 1.05rem;
border-color: rgba(255, 255, 255, 0.18);
border-radius: 999px;
background: #262626;
color: #fff;
white-space: nowrap;
}
.recommendation-heading {
display: flex;
justify-content: space-between;
align-items: end;
gap: var(--gap-lg);
}
.recommendation-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: var(--gap-sm);
margin-top: clamp(1.6rem, 4vw, 4rem);
}
.recommendation-card {
min-height: clamp(360px, 36vw, 520px);
display: grid;
grid-template-rows: auto minmax(14rem, 1fr) auto;
gap: var(--gap-sm);
padding: clamp(1rem, 2vw, 1.4rem);
color: inherit;
text-decoration: none;
overflow: hidden;
transition:
transform var(--duration-med) var(--ease-out),
border-color var(--duration-med) var(--ease-out),
box-shadow var(--duration-med) var(--ease-out);
}
.recommendation-card:hover {
transform: translateY(-4px);
border-color: rgba(var(--theme-accent-rgb) / 0.54);
box-shadow: var(--theme-shadow-soft);
}
.recommendation-card > span {
color: var(--theme-text-muted);
font-size: var(--text-sm);
}
.recommendation-card img {
place-self: center;
width: min(86%, 430px);
height: auto;
object-fit: contain;
filter: drop-shadow(0 28px 58px rgba(0, 0, 0, 0.34));
transition: transform var(--duration-slow) var(--ease-out);
}
.recommendation-card:hover img {
transform: scale(1.045) rotate(-0.4deg);
}
.recommendation-card h3 {
max-width: 12ch;
margin: 0;
color: var(--theme-text);
font-size: var(--text-base);
font-weight: 400;
line-height: 1.08;
text-transform: uppercase;
}
.recommendation-card p {
margin: 0.55rem 0 0;
color: var(--theme-text-muted);
font-size: var(--text-sm);
line-height: 1.45;
}
@media (max-width: 1180px) {
.product-hero,
.product-story-grid,
.product-meta-section,
.detail-bottom-cta {
grid-template-columns: 1fr;
}
.product-hero {
min-height: auto;
}
.product-media-column,
.product-purchase-panel {
grid-column: 1;
grid-row: auto;
}
.product-media-column {
min-height: 0;
display: block;
}
.product-hero-copy {
position: static;
width: min(100%, 720px);
margin-bottom: var(--gap-md);
}
.product-hero-visual {
min-height: clamp(520px, 66vw, 760px);
}
.product-hero-image {
width: min(66vw, 640px);
max-height: none;
}
.product-thumbs,
.hero-fact-grid {
position: static;
width: auto;
margin-top: var(--gap-sm);
transform: none;
}
.product-thumbs {
justify-content: center;
}
.product-purchase-panel {
position: static;
justify-self: center;
width: min(100%, 720px);
max-height: none;
overflow: visible;
}
.product-hero-copy h1 {
max-width: 12ch;
}
.structure-timeline,
.recommendation-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}
@media (max-width: 760px) {
.detail-page {
padding: 0;
}
.detail-shell {
width: var(--container-wide);
padding-inline: 0;
}
.detail-topbar {
top: clamp(4.65rem, 15vw, 5.5rem);
z-index: 999;
right: clamp(0.75rem, 4vw, 1rem);
left: clamp(0.75rem, 4vw, 1rem);
align-items: center;
flex-direction: row;
}
.detail-topbar-meta {
display: none;
}
.product-hero {
padding-top: clamp(7.6rem, 25vw, 9rem);
}
.product-hero-visual {
min-height: clamp(390px, 102vw, 620px);
}
.product-hero-image {
width: min(88%, 560px);
}
.hero-fact-grid,
.character-facts,
.size-grid,
.meta-grid,
.delivery-grid,
.comment-spotlight-grid,
.structure-timeline,
.recommendation-grid {
grid-template-columns: 1fr;
}
.purchase-discovery-note,
.reviews-heading,
.recommendation-heading {
align-items: stretch;
flex-direction: column;
}
.product-story-grid::before,
.product-structure-section::before,
.product-meta-section::before,
.product-reviews-section::before,
.recommendation-section::before {
right: auto;
left: 0;
width: min(100%, 24rem);
}
.purchase-discovery-note a,
.buy-button,
.restock-button {
width: 100%;
}
.purchase-price-row {
align-items: flex-start;
flex-direction: column;
}
.review-score-block {
justify-items: start;
}
.detail-bottom-actions {
justify-content: stretch;
}
.detail-bottom-actions button {
width: 100%;
}
}
@media (max-width: 480px) {
.product-hero-copy h1 {
font-size: clamp(2.6rem, 15vw, 4rem);
}
.product-thumbs {
flex-wrap: wrap;
}
.review-detail-row {
grid-template-columns: 1fr;
align-items: start;
}
.review-detail-row strong {
text-align: left;
}
}
@media (prefers-reduced-motion: reduce) {
.is-transition-arriving .product-hero-image,
.is-transition-arriving [data-product-transition-reveal] {
opacity: 1;
}
}