
body {
overflow-y: auto;
overflow-x: hidden;
margin: 0;
padding: 0;
width: 100%;
max-width: 100vw;
font-family: var(--main-font);
background: linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-mid) 50%, var(--bg) 100%);
background-attachment: fixed;
color: var(--text);
}

/* Light mode — tokens come from design-tokens.css */
body.light-mode {
background: var(--bg);
}

/* Header */
.site-header {
position: -webkit-sticky;
position: sticky;
top: 0;
z-index: 1000;
background: var(--header-bg);
-webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--card-border);
padding: 8px 20px;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}

body.light-mode .site-header {
background: var(--header-bg);
}

.site-logo {
font-weight: 700;
font-size: 18px;
color: var(--text);
text-decoration: none;
display: flex;
align-items: center;
}

.site-logo img {
height: 36px;
width: auto;
}

.site-nav {
display: flex;
gap: 20px;
align-items: center;
flex-wrap: nowrap;
}

.nav-link {
color: var(--text);
text-decoration: none;
font-size: 14px;
font-weight: 500;
padding: 6px 12px;
border-radius: var(--radius-sm);
transition: all 0.2s ease;
position: relative;
}

.nav-link:hover {
color: var(--accent);
background: var(--accent-soft);
}

body.light-mode .nav-link:hover {
background: var(--accent-soft);
}

.nav-link:focus {
outline: 2px solid var(--accent);
outline-offset: 2px;
}

.nav-link.active {
color: var(--accent);
background: var(--accent-soft);
}

/* Dropdown Menu */
.nav-dropdown {
position: relative;
}

.nav-dropdown-toggle {
cursor: pointer;
display: flex;
align-items: center;
gap: 4px;
}

.nav-dropdown-toggle::after {
content: '';
width: 0;
height: 0;
border-left: 4px solid transparent;
border-right: 4px solid transparent;
border-top: 5px solid currentColor;
transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
transform: rotate(180deg);
}

.nav-dropdown-menu {
position: absolute;
top: 100%;
left: 0;
margin-top: 8px;
background: var(--card);
border: 1px solid var(--card-border);
border-radius: var(--radius-sm);
padding: 8px 0;
min-width: 200px;
box-shadow: var(--shadow-sm);
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.nav-dropdown-item {
display: block;
padding: 10px 20px;
color: var(--text);
text-decoration: none;
font-size: 14px;
font-weight: 500;
transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-item:hover {
background: var(--accent-soft);
color: var(--accent);
}

body.light-mode .nav-dropdown-item:hover {
background: var(--accent-soft);
}

body.light-mode .nav-link.active {
background: var(--accent-soft);
}

.cart-link {
display: flex;
align-items: center;
justify-content: center;
}

.cart-link svg {
width: 20px;
height: 20px;
}

.theme-toggle {
display: flex;
align-items: center;
justify-content: center;
padding: 6px;
border-radius: var(--radius-sm);
background: var(--surface-hover);
border: 1px solid var(--border-subtle);
color: var(--text);
cursor: pointer;
transition: all 0.2s ease;
width: 32px;
height: 32px;
}

.theme-toggle:hover {
background: var(--border-subtle);
border-color: var(--accent);
}

.theme-toggle:focus {
outline: 2px solid var(--accent);
outline-offset: 2px;
}

.theme-toggle svg {
width: 18px;
height: 18px;
}

body.light-mode .theme-toggle {
background: var(--surface-hover);
border-color: var(--border-subtle);
}

body.light-mode .theme-toggle:hover {
background: var(--border-subtle);
border-color: var(--accent);
}

/* Mobile Menu */
.mobile-menu-toggle {
display: none;
flex-direction: column;
gap: 4px;
background: transparent;
border: none;
cursor: pointer;
padding: 8px;
z-index: 1001;
}

.mobile-menu-toggle span {
width: 24px;
height: 2px;
background: var(--text);
transition: all 0.3s ease;
border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--bg);
z-index: 1000;
padding: 70px 20px 24px;
transform: translateX(-100%);
transition: transform 0.3s ease;
overflow-y: auto;
width: 100%;
max-width: 100vw;
}

.mobile-menu.active {
transform: translateX(0);
}

.mobile-menu .nav-link {
display: block;
padding: 16px 0;
font-size: 18px;
border-bottom: 1px solid var(--card-border);
width: 100%;
}

.mobile-menu .theme-toggle {
margin-top: 24px;
width: 100%;
justify-content: center;
}

.mobile-menu .cart-link {
display: flex;
justify-content: flex-start;
padding: 16px 0;
}

@media (max-width: 768px) {
.site-header {
padding: 12px 16px;
flex-wrap: wrap;
}

.site-logo {
flex: 0 0 auto;
min-width: 0;
}

.site-logo img {
height: 28px;
}

.site-nav {
gap: 12px;
flex: 0 0 auto;
}

.nav-link:not(.cart-link) {
display: none;
}

.mobile-menu-toggle {
display: flex;
order: 3;
margin-left: auto;
}

.cart-link {
display: flex;
order: 2;
}

.theme-toggle {
order: 1;
padding: 6px 10px;
}

.theme-toggle svg {
width: 16px;
height: 16px;
}
}

/* Product Section */
.product-section {
max-width: 1600px;
margin: 0 auto;
padding: 0 24px 80px;
}

.product-main {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: start;
}

/* Gallery */
.product-gallery {
position: sticky;
top: 100px;
}

.gallery-main {
width: 100%;
position: relative;
background: var(--card);
border: 1px solid var(--card-border);
border-radius: var(--radius-lg);
overflow: hidden;
margin-bottom: 16px;
}

.gallery-main::before {
content: '';
display: block;
padding-bottom: 75%; /* 4:3 ratio fallback */
}

@supports (aspect-ratio: 4/3) {
.gallery-main {
aspect-ratio: 4/3;
}
.gallery-main::before {
display: none;
}
}

.gallery-main img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
-o-object-position: top center;
object-position: top center;
}

.gallery-thumbs {
display: grid;
grid-template-columns: repeat(5, 1fr);
gap: 12px;
}

.gallery-thumb {
position: relative;
background: var(--card);
border: 2px solid transparent;
border-radius: var(--radius-md);
overflow: hidden;
cursor: pointer;
-webkit-transition: all 0.2s;
transition: all 0.2s;
}

.gallery-thumb::before {
content: '';
display: block;
padding-bottom: 100%; /* 1:1 ratio fallback */
}

@supports (aspect-ratio: 1) {
.gallery-thumb {
aspect-ratio: 1;
}
.gallery-thumb::before {
display: none;
}
}

.gallery-thumb img {
position: absolute;
top: 0;
left: 0;
}

.gallery-thumb:hover {
border-color: var(--muted);
}

.gallery-thumb.active {
border-color: var(--accent);
}

.gallery-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: top center;
}

/* Product Info */
.product-info {
padding: 20px 0;
}

.product-tag {
display: inline-block;
padding: 6px 14px;
background: var(--accent-soft);
border: 1px solid var(--accent-glow);
border-radius: 20px;
font-size: 12px;
font-weight: 600;
color: var(--accent);
text-transform: uppercase;
letter-spacing: 0.5px;
margin-bottom: 16px;
}

.product-title {
font-family: var(--heading-font);
font-size: clamp(28px, 4vw, 42px);
font-weight: 700;
color: var(--text);
margin: 0 0 16px;
line-height: 1.2;
}

.product-subtitle {
font-size: 18px;
color: var(--muted);
margin: 0 0 32px;
line-height: 1.6;
}

.product-price {
font-size: 16px;
color: var(--muted);
margin-bottom: 20px;
padding: 16px 20px;
background: var(--panel);
border-radius: var(--radius-md);
border: 1px solid var(--card-border);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 16px;
}

.price-main {
display: flex;
align-items: baseline;
gap: 8px;
}

.product-price strong {
color: var(--text);
font-size: 24px;
font-weight: 700;
}

.price-per-unit {
color: var(--muted);
font-size: 14px;
font-weight: 500;
}

.price-badge {
background: var(--accent-soft);
color: var(--accent);
padding: 6px 12px;
border-radius: 20px;
font-size: 12px;
font-weight: 600;
white-space: nowrap;
}

.product-intro {
font-size: 15px;
color: var(--muted);
line-height: 1.7;
margin: 0 0 24px;
}

.delivery-info {
margin-bottom: 28px;
padding: 20px;
background: linear-gradient(135deg, var(--accent-soft) 0%, var(--accent-soft) 100%);
border: 1px solid var(--accent-soft);
border-radius: var(--radius-md);
}

.delivery-title {
font-size: 13px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.5px;
color: var(--accent);
margin: 0 0 8px;
}

.delivery-text {
font-size: 14px;
color: var(--muted);
line-height: 1.6;
margin: 0;
}

/* Features */
.product-features {
margin-bottom: 40px;
}

.feature-title {
font-size: 14px;
font-weight: 600;
color: var(--text);
margin: 0 0 16px;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.feature-list {
list-style: none;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
gap: 12px;
}

.feature-list li {
display: flex;
align-items: flex-start;
gap: 12px;
font-size: 15px;
color: var(--muted);
line-height: 1.5;
}

.feature-list li svg {
flex-shrink: 0;
color: var(--accent);
margin-top: 2px;
}

/* CTA Buttons */
.product-ctas {
display: flex;
flex-direction: column;
gap: 16px;
margin-bottom: 40px;
}

.cta-primary {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
padding: 18px 32px;
background: var(--cta);
color: var(--cta-text);
font-size: 16px;
font-weight: 700;
text-decoration: none;
border-radius: var(--radius-md);
border: none;
cursor: pointer;
transition: all 0.3s ease;
}

.cta-primary:hover {
transform: translateY(-2px);
box-shadow: var(--shadow-md);
}

.cta-secondary {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
padding: 18px 32px;
background: transparent;
color: var(--text);
font-size: 16px;
font-weight: 600;
text-decoration: none;
border-radius: var(--radius-md);
border: 1px solid var(--card-border);
cursor: pointer;
transition: all 0.3s ease;
}

.cta-secondary:hover {
border-color: var(--accent);
background: var(--accent-soft);
}

/* Price Estimator */
.price-estimator {
background: var(--card);
border: 1px solid var(--card-border);
border-radius: var(--radius-md);
padding: 24px;
margin-bottom: 24px;
}

.price-estimator-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}

.price-estimator-title {
font-size: 16px;
font-weight: 600;
color: var(--text);
margin: 0;
}

.price-estimator-value {
font-size: 14px;
font-weight: 600;
color: var(--accent);
background: var(--accent-soft);
padding: 4px 12px;
border-radius: 20px;
}

.price-estimator-slider-wrapper {
margin-bottom: 24px;
}

.price-estimator-slider {
width: 100%;
height: 8px;
border-radius: 4px;
background: var(--panel);
outline: none;
-webkit-appearance: none;
appearance: none;
cursor: pointer;
}

.price-estimator-slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 24px;
height: 24px;
border-radius: 50%;
background: var(--accent);
cursor: pointer;
border: 3px solid var(--bg);
box-shadow: 0 2px 8px var(--accent-glow);
transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.price-estimator-slider::-webkit-slider-thumb:hover {
transform: scale(1.1);
box-shadow: 0 4px 12px var(--accent-glow);
}

.price-estimator-slider::-moz-range-thumb {
width: 24px;
height: 24px;
border-radius: 50%;
background: var(--accent);
cursor: pointer;
border: 3px solid var(--bg);
box-shadow: 0 2px 8px var(--accent-glow);
}

.price-estimator-labels {
display: flex;
justify-content: space-between;
width: 100%;
margin-top: 8px;
font-size: 12px;
color: var(--muted);
line-height: 1;
}

.price-estimator-labels span {
position: static !important;
transform: none !important;
display: inline-block;
white-space: nowrap;
}

.price-estimator-labels span:first-child {
text-align: left;
}

.price-estimator-labels span:last-child {
text-align: right;
}

.price-estimator-result {
display: flex;
justify-content: space-between;
align-items: center;
padding: 16px 20px;
background: var(--panel);
border-radius: var(--radius-md);
margin-bottom: 12px;
}

.price-estimator-per-item {
display: flex;
flex-direction: column;
gap: 2px;
}

.price-estimator-per-item .price-value {
font-size: 28px;
font-weight: 700;
color: var(--accent);
line-height: 1;
}

.price-estimator-per-item .price-label {
font-size: 13px;
color: var(--muted);
}

.price-estimator-total {
text-align: right;
display: flex;
flex-direction: column;
gap: 2px;
}

.price-estimator-total .total-label {
font-size: 12px;
color: var(--muted);
}

.price-estimator-total .total-value {
font-size: 20px;
font-weight: 700;
color: var(--text);
}

.price-estimator-note {
font-size: 12px;
color: var(--muted);
margin: 0;
text-align: center;
}

/* Light mode adjustments */
body.light-mode .price-estimator-slider {
background: rgba(0, 0, 0, 0.1);
}

body.light-mode .price-estimator-slider::-webkit-slider-thumb {
background: var(--accent);
border-color: #fff;
box-shadow: 0 2px 8px var(--accent-muted);
}

body.light-mode .price-estimator-value {
background: var(--accent-muted);
}

body.light-mode .price-estimator-per-item .price-value {
color: var(--accent);
}

/* Details Accordion */
.product-details {
border-top: 1px solid var(--card-border);
padding-top: 32px;
}

.detail-item {
border-bottom: 1px solid var(--card-border);
}

.detail-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 0;
cursor: pointer;
transition: color 0.2s;
}

.detail-header:hover {
color: var(--accent);
}

.detail-header h3 {
margin: 0;
font-size: 15px;
font-weight: 600;
}

.detail-header svg {
transition: transform 0.3s;
}

.detail-item.open .detail-header svg {
transform: rotate(180deg);
}

.detail-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.detail-item.open .detail-content {
max-height: 500px;
}

.detail-content-inner {
padding: 0 0 20px;
font-size: 14px;
color: var(--muted);
line-height: 1.7;
}

/* Info Section */
.info-section {
max-width: 1600px;
margin: 0 auto;
padding: 80px 24px;
}

.info-card {
background: var(--card);
border: 1px solid var(--card-border);
border-radius: var(--radius-lg);
padding: 60px;
overflow: hidden;
}

.info-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.info-eyebrow {
display: inline-block;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--accent);
margin-bottom: 16px;
}

.info-title {
font-family: var(--heading-font);
font-size: clamp(24px, 3vw, 36px);
font-weight: 700;
color: var(--text);
margin: 0 0 20px;
line-height: 1.2;
}

.info-body {
font-size: 16px;
color: var(--muted);
line-height: 1.7;
margin: 0 0 24px;
}

.info-list {
list-style: none;
padding: 0;
margin: 0 0 24px;
display: flex;
flex-direction: column;
gap: 12px;
}

.info-list li {
display: flex;
align-items: flex-start;
gap: 12px;
font-size: 15px;
color: var(--text);
line-height: 1.5;
}

.info-list li svg {
flex-shrink: 0;
color: var(--accent);
margin-top: 2px;
}

.info-tagline {
font-size: 14px;
color: var(--accent);
font-style: italic;
margin: 0;
}

.info-image {
border-radius: var(--radius-md);
overflow: hidden;
position: relative;
}

.info-image::before {
content: '';
display: block;
padding-bottom: 75%; /* 4:3 ratio fallback */
}

@supports (aspect-ratio: 4/3) {
.info-image {
aspect-ratio: 4/3;
}
.info-image::before {
display: none;
}
}

.info-image img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
}

/* Reviews Section */
.reviews-section {
max-width: 1600px;
margin: 0 auto;
padding: 0 24px 80px;
}

.reviews-card {
background: var(--card);
border: 1px solid var(--card-border);
border-radius: var(--radius-lg);
padding: 60px;
}

.reviews-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 40px;
flex-wrap: wrap;
gap: 20px;
}

.reviews-title {
font-family: var(--heading-font);
font-size: clamp(24px, 3vw, 32px);
font-weight: 700;
color: var(--text);
margin: 0;
}

.reviews-summary {
display: flex;
align-items: center;
gap: 16px;
}

.reviews-score {
font-size: 48px;
font-weight: 800;
color: var(--accent);
line-height: 1;
}

.reviews-stars {
color: var(--rating);
font-size: 20px;
letter-spacing: 2px;
}

.reviews-count {
font-size: 13px;
color: var(--muted);
}

.reviews-layout {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 40px;
}

.ratings-box {
padding: 24px;
background: var(--panel);
border-radius: var(--radius-md);
}

.ratings-box strong {
display: block;
font-size: 14px;
color: var(--text);
margin-bottom: 20px;
}

.ratings-row {
display: flex;
align-items: center;
gap: 12px;
margin-bottom: 12px;
}

.ratings-label {
width: 60px;
font-size: 13px;
color: var(--muted);
}

.ratings-bar {
flex: 1;
height: 8px;
background: var(--accent-soft);
border-radius: 4px;
overflow: hidden;
}

.ratings-fill {
height: 100%;
background: var(--accent);
border-radius: 4px;
}

.ratings-num {
width: 32px;
font-size: 13px;
font-weight: 600;
color: var(--text);
text-align: right;
}

.reviews-photos {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 16px;
}

.review-photo {
position: relative;
border-radius: var(--radius-md);
overflow: hidden;
}

.review-photo::before {
content: '';
display: block;
padding-bottom: 100%; /* 1:1 ratio fallback */
}

@supports (aspect-ratio: 1) {
.review-photo {
aspect-ratio: 1;
}
.review-photo::before {
display: none;
}
}

.review-photo img {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
-o-object-fit: cover;
object-fit: cover;
-webkit-transition: transform 0.3s ease;
transition: transform 0.3s ease;
}

.review-photo:hover img {
transform: scale(1.05);
}

/* Design Help Section */
.design-help-section {
max-width: 1600px;
margin: 0 auto;
padding: 0 24px 80px;
}

.design-help-card {
background: linear-gradient(135deg, var(--card) 0%, var(--accent-soft) 100%);
border: 1px solid var(--card-border);
border-radius: var(--radius-lg);
padding: 60px;
}

.design-help-grid {
display: grid;
grid-template-columns: 1.2fr 1fr;
gap: 60px;
align-items: start;
}

.design-help-eyebrow {
display: inline-block;
font-size: 12px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1.5px;
color: var(--accent);
margin-bottom: 16px;
}

.design-help-title {
font-family: var(--heading-font);
font-size: clamp(24px, 3vw, 32px);
font-weight: 700;
color: var(--text);
margin: 0 0 20px;
line-height: 1.2;
}

.design-help-body {
font-size: 16px;
color: var(--muted);
line-height: 1.7;
margin: 0 0 24px;
}

.design-help-list {
list-style: none;
padding: 0;
margin: 0 0 32px;
}

.design-help-list li {
position: relative;
padding-left: 20px;
font-size: 15px;
color: var(--text);
line-height: 1.6;
margin-bottom: 8px;
}

.design-help-list li::before {
content: '•';
position: absolute;
left: 0;
color: var(--accent);
}

.design-help-btn {
display: inline-flex;
align-items: center;
gap: 8px;
padding: 16px 32px;
background: var(--cta);
color: var(--cta-text);
font-weight: 700;
font-size: 15px;
text-decoration: none;
border-radius: var(--radius-md);
transition: all 0.3s ease;
}

.design-help-btn:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px var(--ring);
}

.design-help-steps {
background: var(--panel);
border-radius: var(--radius-md);
padding: 32px;
}

.design-help-steps strong {
display: block;
font-size: 16px;
color: var(--text);
margin-bottom: 24px;
}

.design-step {
display: flex;
gap: 16px;
margin-bottom: 20px;
}

.design-step:last-child {
margin-bottom: 0;
}

.step-badge {
width: 32px;
height: 32px;
background: var(--cta);
color: var(--cta-text);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 14px;
flex-shrink: 0;
}

.design-step span:last-child {
font-size: 14px;
color: var(--muted);
line-height: 1.6;
padding-top: 4px;
}

/* FAQ Section - product page overrides (base rules in site.css) */
.faq-section {
padding: 0 24px 100px;
}

.faq-card {
padding: 60px;
}

.faq-title {
font-family: var(--heading-font);
}

.faq-subtitle {
margin: 0 0 40px;
}

.faq-question {
padding: 24px 0;
transition: color 0.2s;
}

.faq-item.open .faq-answer {
max-height: 300px;
}

.faq-answer p {
padding: 0 0 24px;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
.info-grid,
.reviews-layout,
.design-help-grid {
grid-template-columns: 1fr;
}

.info-image {
order: -1;
}

.reviews-photos {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 768px) {
.info-card,
.reviews-card,
.design-help-card,
.faq-card {
padding: 32px 24px;
}

.reviews-header {
flex-direction: column;
align-items: flex-start;
}
}

/* Responsive */
@media (max-width: 1024px) {
.product-main {
grid-template-columns: 1fr;
gap: 40px;
}

.product-gallery {
position: relative;
top: 0;
}
}

@media (max-width: 768px) {
.gallery-thumbs {
grid-template-columns: repeat(4, 1fr);
}

.product-ctas {
position: fixed;
bottom: 0;
left: 0;
right: 0;
padding: 16px 20px;
background: var(--header-bg);
-webkit-backdrop-filter: blur(12px);
backdrop-filter: blur(12px);
border-top: 1px solid var(--card-border);
z-index: 100;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-ms-flex-direction: row;
flex-direction: row;
gap: 12px;
}

body.light-mode .product-ctas {
background: var(--header-bg);
}

.cta-primary, .cta-secondary {
flex: 1;
padding: 14px 16px;
font-size: 14px;
}

.product-section {
padding-bottom: 120px;
}
}

/* Footer - product page overrides (base rules in site.css) */
.footer {
margin-top: 80px;
}

.footer-grid {
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Focus styles */
.detail-header:focus-visible,
.gallery-thumb:focus-visible {
outline: 2px solid var(--accent);
outline-offset: 2px;
}
