:root {
    --ivory: #faf9f7;
    --cream: #f4f0ea;
    --linen: #efebe5;
    --white: #ffffff;
    --ink: #1a1c1b;
    --muted: #5f615f;
    --gold: #c6a15b;
    --gold-deep: #9a7740;
    --sage: #dfe7dc;
    --border: rgba(26, 28, 27, 0.12);
    --shadow: 0 20px 55px rgba(26, 28, 27, 0.06);
    --radius-lg: 28px;
    --container: 1280px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Hanken Grotesk', sans-serif;
    color: var(--ink);
    background: var(--ivory);
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.45s ease;
}

body.page-loaded {
    opacity: 1;
}

img,
video {
    max-width: 100%;
    display: block;
}

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

.site-container {
    max-width: var(--container);
}

.section-space,
.section-space-sm {
    padding: 5.5rem 0;
}

.section-space-sm {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.site-header {
    background: rgba(250, 249, 247, 0.88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 28, 27, 0.08);
}

.navbar {
    padding: 1.05rem 0;
}

.site-logo {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(1.5rem, 2vw, 2rem);
    letter-spacing: 0.12em;
    color: var(--ink);
}

.nav-link {
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    color: var(--muted);
}

.nav-link:hover,
.nav-link.active {
    color: var(--ink);
}

.icon-button {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    border: 1px solid rgba(26, 28, 27, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.75);
    color: var(--ink);
    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.icon-button:hover,
.icon-button.active {
    transform: translateY(-2px);
    border-color: rgba(198, 161, 91, 0.5);
    color: var(--gold-deep);
}

.count-badge {
    position: absolute;
    top: 0;
    right: -0.1rem;
    min-width: 1.1rem;
    height: 1.1rem;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-size: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.25rem;
}

.search-panel {
    background: rgba(250, 249, 247, 0.98);
    height: auto;
    border-bottom: 1px solid rgba(26, 28, 27, 0.08);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    color: var(--gold-deep);
    margin-bottom: 1rem;
}

.section-title,
.display-title,
.display-subtitle {
    font-family: 'Bodoni Moda', serif;
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.display-title {
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    max-width: 9ch;
    margin-bottom: 1.2rem;
}

.display-subtitle {
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
}

.section-copy,
.hero-copy,
.product-card-copy,
.footer-copy,
.legal-copy p,
.timeline-item p,
.review-card p,
.benefit-card p,
.collection-content p,
.contact-list span,
.stats-card p {
    color: var(--muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.hero-section {
    padding: 2rem 0 3rem;
}

.hero-shell {
    position: relative;
    min-height: clamp(30rem, 78vh, 44rem);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, #101010 0%, #2d2d2d 100%);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.18) 55%, rgba(0, 0, 0, 0.08));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 40rem;
    padding: clamp(2rem, 5vw, 4.5rem);
    color: var(--white);
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.hero-scroll-stack {
    display: grid;
    gap: 1.5rem;
}

.hero-slider-shell {
    position: relative;
}

.hero-slider-nav {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 3;
    display: flex;
    gap: 0.75rem;
}

.hero-scroll-viewport {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    border-radius: var(--radius-lg);
}

.hero-slide {
    min-width: 100%;
    flex: 0 0 100%;
    opacity: 0.75;
    transform: scale(0.98);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-slide.hero-slide-active {
    opacity: 1;
    transform: scale(1);
}

.btn {
    border-radius: 999px;
    padding: 0.9rem 1.4rem;
    font-weight: 600;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-luxury {
    background: linear-gradient(135deg, var(--gold) 0%, #dfc18a 100%);
    border: 1px solid rgba(198, 161, 91, 0.3);
    color: var(--ink);
    box-shadow: 0 14px 35px rgba(198, 161, 91, 0.22);
}

.btn-luxury:hover {
    background: linear-gradient(135deg, #d4b06d 0%, #e8c98f 100%);
    color: var(--ink);
}

.btn-outline-luxury {
    border: 1px solid rgba(26, 28, 27, 0.18);
    color: var(--ink);
    background: transparent;
}

.btn-outline-luxury:hover {
    border-color: rgba(198, 161, 91, 0.55);
    color: var(--gold-deep);
}

.btn-link-luxury {
    border: 0;
    background: transparent;
    color: var(--ink);
    padding-left: 0;
    padding-right: 0;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.8rem;
}

.btn-link-luxury:hover {
    color: var(--gold-deep);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    margin-bottom: 2.2rem;
}

.surface-panel,
.surface-panel-soft {
    background: linear-gradient(180deg, rgba(244, 240, 234, 0.5), rgba(255, 255, 255, 0));
}

.surface-panel-soft {
    background: linear-gradient(180deg, rgba(239, 235, 229, 0.7), rgba(250, 249, 247, 0.2));
}

.collection-card,
.product-card,
.benefit-card,
.stats-card,
.story-box,
.review-card,
.specs-card,
.summary-card,
.form-shell,
.account-panel,
.timeline-item,
.order-card,
.auth-shell,
.account-shell {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    box-shadow: var(--shadow);
}

.collection-card {
    overflow: hidden;
    height: 100%;
}

.collection-card img,
.story-image {
    width: 100%;
    object-fit: cover;
}

.collection-content {
    padding: 1.5rem;
}

.collection-content h3,
.benefit-card h3,
.review-card h3,
.product-card-title,
.order-card h2,
.legal-copy h2,
.footer-title,
.spec-row strong,
.account-link span,
.timeline-item h3 {
    font-family: 'Bodoni Moda', serif;
}

.product-card {
    overflow: hidden;
    height: 100%;
}

.product-media-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(239, 235, 229, 0.6), rgba(255, 255, 255, 0.95));
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    border-radius: 999px;
    padding: 0.5rem 0.8rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.product-media-wrap .wishlist-toggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.product-media {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.product-stack {
    position: relative;
    padding: 1.6rem;
    min-height: 24rem;
}

.stack-front,
.stack-hover {
    position: absolute;
    inset: 1.6rem;
    object-fit: cover;
    border-radius: 1.25rem;
    box-shadow: var(--shadow);
}

.stack-front {
    z-index: 1;
}

.stack-hover {
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.product-card:hover .stack-front {
    opacity: 0;
}

.product-card:hover .stack-hover {
    opacity: 1;
    transform: scale(1);
}

.product-overlay-actions {
    position: absolute;
    inset-inline: 1rem;
    bottom: 1rem;
    display: flex;
    gap: 0.75rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.product-card:hover .product-overlay-actions {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover .product-media {
    transform: scale(1.04);
}

.product-card-body {
    padding: 1.4rem;
}

.product-meta-row,
.product-card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-card-actions {
    margin-top: 1rem;
}

.product-compare-price {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 0.92rem;
    display: block;
}

.product-card-title {
    font-size: 1.45rem;
    margin: 0;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
}

.product-rating {
    font-size: 0.86rem;
    color: var(--gold-deep);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.product-rating span {
    color: var(--muted);
}

.benefit-card,
.review-card,
.timeline-item,
.story-box {
    padding: 2rem;
    height: 100%;
}

.benefit-card i {
    font-size: 1.45rem;
    color: var(--gold-deep);
    margin-bottom: 1rem;
}

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

.trust-grid div,
.contact-list div,
.spec-row,
.summary-row,
.account-link,
.order-card {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.trust-grid div {
    flex-direction: column;
    padding: 1.2rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid var(--border);
}

.trust-grid strong,
.contact-list strong {
    font-weight: 700;
}

.stats-card {
    padding: 2rem;
}

.stat-value {
    font-family: 'Bodoni Moda', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
}

.timeline-item span {
    color: var(--gold-deep);
    font-size: 0.88rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.shop-intro {
    max-width: 44rem;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem;
    margin-bottom: 1.4rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--border);
    border-radius: 1.35rem;
    box-shadow: var(--shadow);
}

.shop-toolbar-left {
    flex: 1;
}

.shop-toolbar-right {
    min-width: 220px;
}

.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-chip {
    border: 1px solid rgba(26, 28, 27, 0.12);
    background: rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    transition: all 0.25s ease;
}

.filter-chip.active,
.filter-chip:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

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

.product-gallery-item {
    border-radius: 1.4rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--border);
}

.product-gallery-item.primary {
    grid-column: span 2;
}

.product-gallery-stack {
    display: grid;
    gap: 1.2rem;
}

.product-gallery-stack .product-gallery-item {
    padding: 1rem;
}

.rolex-layout .product-price-panel {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(26, 28, 27, 0.09);
}

.hero-price {
    font-size: clamp(2rem, 4vw, 3rem);
}

.product-purchase-box {
    position: sticky;
    top: 7rem;
}

.product-page-actions {
    justify-content: flex-start;
}

.product-showcase {
    padding: 2rem;
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 240, 234, 0.6));
    border: 1px solid rgba(26, 28, 27, 0.08);
    box-shadow: var(--shadow);
}

.product-visual-stage {
    position: relative;
}

.product-video-banner,
.product-main-canvas {
    border-radius: 1.6rem;
    overflow: hidden;
    background: radial-gradient(circle at top, rgba(255,255,255,0.18), rgba(16,16,16,0.95));
    border: 1px solid rgba(26, 28, 27, 0.08);
}

.product-video-banner video {
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
}

.product-main-canvas {
    position: relative;
    min-height: 42rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-main-display {
    width: min(100%, 34rem);
    max-height: 34rem;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.floating-product-art {
    position: absolute;
    width: clamp(8rem, 18vw, 14rem);
    filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.14));
    opacity: 0.9;
    animation: floatProductArt 6s ease-in-out infinite;
}

.art-one {
    top: 8%;
    left: 4%;
}

.art-two {
    right: 5%;
    bottom: 10%;
    animation-delay: -3s;
}

.product-thumb-strip {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.product-thumb {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(26, 28, 27, 0.12);
    background: rgba(255, 255, 255, 0.88);
    padding: 0;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.product-thumb.active,
.product-thumb:hover {
    transform: translateY(-2px);
    border-color: rgba(198, 161, 91, 0.6);
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-panel {
    padding: 1.5rem 0 6rem;
}

.product-hero-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.variation-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.variation-pill {
    border: 1px solid rgba(26, 28, 27, 0.12);
    background: rgba(255, 255, 255, 0.85);
    border-radius: 0.85rem;
    padding: 0.8rem 1rem;
    min-width: 4.5rem;
    transition: all 0.25s ease;
}

.variation-pill.active,
.variation-pill:hover {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.product-gallery-orbit {
    position: relative;
    min-height: 32rem;
}

.orbit-card {
    position: absolute;
    width: clamp(10rem, 18vw, 15rem);
    border-radius: 1.4rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(26, 28, 27, 0.08);
    box-shadow: var(--shadow);
}

.orbit-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.orbit-card-1 { top: 0; left: 8%; transform: rotate(-10deg); }
.orbit-card-2 { top: 10%; right: 8%; transform: rotate(10deg); }
.orbit-card-3 { left: 28%; bottom: 8%; transform: rotate(-8deg); }
.orbit-card-4 { right: 24%; bottom: 0; transform: rotate(8deg); }
.orbit-card-5 { top: 28%; left: 0; transform: rotate(-6deg); }
.orbit-card-6 { top: 30%; right: 0; transform: rotate(6deg); }

.floating-buy-bar {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
    width: min(96%, 900px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(26, 28, 27, 0.1);
    box-shadow: 0 20px 40px rgba(26, 28, 27, 0.12);
    z-index: 1040;
}

.floating-buy-summary {
    display: grid;
    gap: 0.2rem;
}

.floating-buy-summary span {
    color: var(--muted);
    font-size: 0.94rem;
}

.floating-buy-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-added {
    animation: addedPulse 0.45s ease;
}

@keyframes floatProductArt {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes addedPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

.feature-list,
.benefit-stack,
.contact-list,
.footer-links,
.checkout-items,
.orders-list,
.cart-list {
    display: grid;
    gap: 1rem;
}

.feature-list div,
.benefit-inline {
    display: flex;
    gap: 0.9rem;
    align-items: start;
}

.feature-list i,
.benefit-inline span {
    color: var(--gold-deep);
    font-size: 1rem;
    margin-top: 0.2rem;
}

.benefit-inline span {
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background: rgba(198, 161, 91, 0.22);
    flex: 0 0 auto;
}

.specs-card,
.form-shell,
.summary-card,
.account-panel,
.account-shell,
.auth-shell {
    padding: 1.8rem;
}

.spec-row,
.summary-row,
.account-link {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(26, 28, 27, 0.09);
}

.summary-row.total,
.account-link:last-child {
    border-bottom: 0;
}

.summary-row.total {
    font-size: 1.15rem;
    font-weight: 700;
}

.form-control,
.form-select,
.input-group-text,
textarea {
    min-height: 3.2rem;
    border-radius: 0.95rem;
    border-color: rgba(26, 28, 27, 0.12);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: none !important;
}

textarea.form-control {
    min-height: auto;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(198, 161, 91, 0.6);
}

.account-profile {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.account-avatar {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 1.35rem;
    background: linear-gradient(135deg, rgba(198, 161, 91, 0.2), rgba(26, 28, 27, 0.95));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.account-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 2rem;
}

.order-card {
    align-items: center;
    padding: 1.6rem 1.8rem;
}

.empty-state {
    text-align: center;
    padding: 4rem 1.5rem;
    border-radius: 1.5rem;
    border: 1px dashed rgba(26, 28, 27, 0.18);
    background: rgba(255, 255, 255, 0.5);
}

.cart-item,
.checkout-item {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;
    gap: 1.2rem;
    padding: 1.25rem;
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.cart-item img,
.checkout-item img {
    border-radius: 1rem;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(26, 28, 27, 0.12);
    border-radius: 999px;
    overflow: hidden;
}

.qty-control button {
    border: 0;
    background: transparent;
    width: 2.2rem;
    height: 2.2rem;
}

.qty-control input {
    width: 2.5rem;
    border: 0;
    text-align: center;
    background: transparent;
}

.remove-item {
    border: 0;
    background: transparent;
    color: #b45c4d;
}

.site-footer {
    border-top: 1px solid rgba(26, 28, 27, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7));
}

.footer-title {
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.footer-links {
    gap: 0.8rem;
}

.social-links a {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    border: 1px solid rgba(26, 28, 27, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.quick-view .modal-content {
    border: 1px solid rgba(26, 28, 27, 0.08);
    border-radius: 1.75rem;
    background: rgba(250, 249, 247, 0.98);
}

.quick-view-image {
    border-radius: 1.3rem;
    width: 100%;
}

.narrow-container {
    max-width: 900px;
}

.legal-copy {
    display: grid;
    gap: 1.1rem;
}

.sticky-summary {
    position: sticky;
    top: 7rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .header-icons {
        margin-left: auto;
    }

    .navbar-collapse {
        padding-top: 1rem;
    }

    .section-space,
    .section-space-sm {
        padding: 4rem 0;
    }

    .section-heading,
    .shop-toolbar,
    .order-card,
    .account-profile {
        flex-direction: column;
        align-items: start;
    }

    .timeline-grid,
    .account-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .sticky-summary {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding-top: 1rem;
    }

    .hero-shell {
        min-height: 34rem;
        border-radius: 1.5rem;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.62));
    }

    .hero-content {
        justify-content: end;
        padding: 1.5rem;
    }

    .shop-toolbar-right {
        width: 100%;
        min-width: 0;
    }

    .product-overlay-actions {
        opacity: 1;
        transform: translateY(0);
        position: static;
        padding: 0 1rem 1rem;
        flex-wrap: wrap;
    }

    .product-gallery-grid,
    .cart-item,
    .checkout-item {
        grid-template-columns: 1fr;
    }

    .product-gallery-item.primary {
        grid-column: auto;
    }

    .btn,
    .btn-sm {
        width: 100%;
    }

    .product-stack {
        min-height: 20rem;
    }

    .product-page-actions,
    .product-meta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-slider-nav {
        top: auto;
        right: 1rem;
        bottom: 1rem;
    }

    .product-main-canvas {
        min-height: 24rem;
    }

    .floating-buy-bar {
        width: calc(100% - 1rem);
        padding: 0.8rem;
        align-items: stretch;
        flex-direction: column;
    }

    .floating-buy-actions {
        width: 100%;
    }

    .floating-buy-actions .btn {
        flex: 1 1 calc(50% - 0.5rem);
    }

    .product-gallery-orbit {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .orbit-card {
        position: static;
        width: 100%;
        transform: none !important;
    }
}
