/**
 * WooCommerce - Single Product Page Styles
 * RESPONSIVE VERSION - Using relative units (rem, %, auto)
 * 
 * @package i-sport-theme
 * @version 2.0.0
 * 
 * Base: 1rem = 16px
 * Conversions:
 *   8px = 0.5rem
 *   10px = 0.625rem
 *   16px = 1rem
 *   24px = 1.5rem
 *   32px = 2rem
 *   48px = 3rem
 *   64px = 4rem
 *   100px = 6.25rem
 */

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */
:root {
    --color-primary: #05061C;
    --color-secondary: #373849;
    --color-border: #B4B4BB;
    --color-border-light: #F5F5F5;
    --color-bg-dark: #121227;
    --color-bg-light: #FFFFFF;
    --color-active: #CDCDD2;
    --color-hover: #E5E5E8;
    
    --font-primary: Inter, sans-serif;
    --font-heading: 'Oswald', sans-serif;
    
    --spacing-xs: 0.25rem;   /* 4px */
    --spacing-sm: 0.5rem;    /* 8px */
    --spacing-md: 1rem;      /* 16px */
    --spacing-lg: 1.5rem;    /* 24px */
    --spacing-xl: 2rem;      /* 32px */
    --spacing-2xl: 4rem;     /* 64px */
    --spacing-3xl: 6.25rem;  /* 100px */
    
    --container-max: 120rem;
    --container-lg: 95rem;
    --container-md: 80rem;
    --container-sm: 37.5rem;
    --container-xs: 24.375rem;

    /* Responsive content-width tokens (% of viewport).
       Applied to inner wrappers only (e.g. .shop-header-container,
       .shop-footer-inner) — never to full-width outer header/main/footer. */
    --content-xs: 91.794%; /* below 600px  -> e.g. 358/390  */
    --content-sm: 89.333%; /* >= 600px     -> e.g. 536/600  */
    --content-md: 78.125%; /* >= 1280px    -> e.g. 1000/1280 */
    --content-lg: 79.16%;  /* >= 1920px    -> e.g. 1520/1920 */
}

/* ==========================================================================
   Shop Header - Responsive
   ========================================================================== */
.shop-header {
    width: 100%;
    height: 6.25rem; /* 100px */
    background: var(--color-bg-light);
    border-bottom: 0.0625rem solid var(--color-border-light);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 100;
}

/* Hide default site header on product pages */
.single-product .site-header {
    display: none !important;
}

/* Hide mobile nav and menu icon by default (desktop) */
.shop-mobile-nav {
    display: none;
}

.shop-header-menu-icon {
    display: none;
}

/* Hide image pagination dots by default (desktop) */
.image-pagination {
    display: none;
}

/* Inner content wrapper — controls content width via % tokens (mobile-first). */
.shop-header-container {
    width: var(--content-xs);
    margin: 0 auto;
    height: 3rem; /* 48px */
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    box-sizing: border-box;
}

@media (min-width: 600px) {
    .shop-header-container { width: var(--content-sm); }
}

@media (min-width: 1280px) {
    .shop-header-container { width: var(--content-md); }
}

@media (min-width: 1920px) {
    .shop-header-container { width: var(--content-lg); }
}

/* Logo Container */
.shop-header-logo {
    width: 9.0625rem; /* 145px */
    height: 2rem; /* 32px */
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.shop-header-logo img {
    width: 100%;
    height: auto;
    max-height: 2rem;
}

/* Menu Icon - Hidden by default, shown at smaller screens */
.shop-header-menu-icon {
    display: none;
    width: 2rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
}

.shop-header-menu-icon img {
    width: 2rem;
    height: 2rem;
}

/* Right Container */
.shop-header-right {
    flex: 1;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Navigation */
.shop-header-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    height: 2rem;
}

/* Nav Links */
.shop-nav-link {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    line-height: 0.9375rem; /* 15px */
    letter-spacing: 0.125rem; /* 2px */
    text-transform: uppercase;
    color: var(--color-primary);
    text-decoration: none;
    white-space: nowrap;
}

.shop-nav-link:hover {
    opacity: 0.7;
}

/* Icons container */
.shop-header-icons {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

/* Icon Frames */
.shop-header-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-header-icon svg,
.shop-header-icon img {
    width: 1.5rem; /* 24px */
    height: 1.5rem;
    color: #000000;
}

/* Buy Button */
.shop-header-btn {
    min-width: 10.3125rem; /* 165px */
    height: 3rem; /* 48px */
    padding: var(--spacing-md) var(--spacing-xl);
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1rem;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: capitalize;
    color: var(--color-bg-light);
    white-space: nowrap;
    box-sizing: border-box;
}

.shop-header-btn:hover {
    background: #171717;
    color: var(--color-bg-light);
}

/* ==========================================================================
   Single Product Page Layout - Responsive
   ========================================================================== */
/* Page-level wrapper stays full-width; the product layout is full-bleed by
   design (images 75% + details 25% span the viewport). Content insetting for
   the header/footer is handled by their inner wrappers, not here. */
.single-product-page {
    width: 100%;
    background: var(--color-bg-light);
}

.product-layout {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

/* Accordion Wrapper */
.accordion-wrapper {
    width: 75%; /* 1440px / 1920px */
    order: 3;
}

/* ==========================================================================
   Left Column - Product Images
   ========================================================================== */
.product-images-column {
    width: 75%; /* 1440px / 1920px */
    min-height: auto;
    background: var(--color-bg-light);
    display: flex;
    flex-direction: column;
    order: 1;
}

/* Product Images Grid - 2x2 grid */
.product-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0;
    width: 100%;
    aspect-ratio: 3 / 4;
}

/* Individual Product Image Cell */
.product-image-cell {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: #F0F0F0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image-cell img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   Right Column - Product Details
   ========================================================================== */
.product-details-column {
    width: 25%; /* 480px / 1920px */
    height: auto;
    gap: var(--spacing-xl);
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    background: var(--color-bg-light);
    order: 2;
    box-sizing: border-box;
}

/* Subtitle - "Für Damen und Herren" */
.product-subtitle {
    width: auto;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    line-height: 2.5rem; /* 40px */
    letter-spacing: 0.05%;
    text-transform: capitalize;
    color: var(--color-primary);
}

/* Product Title - "I-SPORT EMS" */
.product-details-column .product_title {
    width: auto;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem; /* 32px */
    line-height: 2.5rem; /* 40px */
    letter-spacing: -0.03rem;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0;
}

/* Frame 54 - Features container */
.product-features {
    width: 100%;
    gap: var(--spacing-sm);
    display: flex;
    flex-direction: column;
}

/* Feature row container */
.product-feature-row {
    width: 100%;
    gap: var(--spacing-xs);
    display: flex;
    align-items: center;
}

/* Feature icon */
.product-feature-row img,
.product-feature-row svg {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
}

/* Feature text */
.product-feature-row span {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: 0.075rem;
    text-transform: capitalize;
    color: var(--color-primary);
}

/* Size Section Container */
.size-section-header {
    width: 100%;
    gap: var(--spacing-sm);
    display: flex;
    align-items: center;
}

/* Size Section Label */
.size-section-label {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: 0.075rem;
    text-transform: capitalize;
    color: var(--color-primary);
    white-space: nowrap;
}

/* Custom Suit Button */
.custom-suit-button {
    width: 100%;
    height: 3.5rem; /* 56px */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.0625rem solid var(--color-border);
    border-radius: 0;
    background: var(--color-bg-light);
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: 0.075rem;
    text-transform: capitalize;
    color: var(--color-primary);
    cursor: pointer;
    outline: none;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.custom-suit-button:hover {
    background: var(--color-hover);
}

.custom-suit-button.active {
    background: var(--color-active);
    border-color: var(--color-border);
}

/* Size Guide Link */
.size-guide-container {
    width: 100%;
    gap: var(--spacing-sm);
    display: flex;
    align-items: center;
}

.size-guide-link {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.5rem; /* 24px */
    line-height: 150%;
    letter-spacing: 0.075rem;
    text-transform: capitalize;
    text-decoration: underline;
    color: var(--color-primary);
    cursor: pointer;
}

/* Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    height: 6.25rem; /* 100px */
    padding: var(--spacing-xl) var(--spacing-2xl);
    gap: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border: none;
    border-radius: 0;
    cursor: pointer;
    box-sizing: border-box;
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 150%;
    letter-spacing: 0.075rem;
    text-transform: capitalize;
    color: var(--color-bg-light);
    text-decoration: none;
}

.add-to-cart-btn:hover {
    background: #1a1b2e;
}

/* Payment Methods Section */
.payment-methods {
    width: 100%;
    gap: var(--spacing-md);
    display: flex;
    flex-direction: column;
}

.payment-methods-label {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1rem;
    letter-spacing: -0.05%;
    text-transform: capitalize;
    color: var(--color-primary);
}

.payment-icons {
    width: 100%;
    gap: var(--spacing-sm);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.payment-icon {
    width: 2rem;
    height: 2rem;
}

/* ==========================================================================
   Accordion Section
   ========================================================================== */
.accordion-container {
    width: 100%;
    gap: var(--spacing-md);
    padding: var(--spacing-3xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

/* Accordion Inner Frame */
.accordion-frame {
    width: 100%;
    max-width: 62.5rem; /* 1000px */
    background: var(--color-bg-light);
    margin: 0;
    padding: 0;
}

/* Accordion Item */
.accordion-item {
    width: 100%;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    cursor: pointer;
}

/* Accordion Item Title */
.accordion-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.5rem; /* 24px */
    line-height: 150%;
    letter-spacing: 0.05%;
    text-transform: capitalize;
    color: var(--color-secondary);
    margin: 0;
    padding: 0;
}

/* Accordion Arrow/Chevron */
.accordion-arrow {
    width: 1rem;
    height: 1rem;
    border: 0;
    border-right: 0.0625rem solid #505160;
    border-bottom: 0.0625rem solid #505160;
    transform: rotate(45deg);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Accordion Item Expanded */
.accordion-item.expanded {
    height: auto;
}

/* Accordion Header */
.accordion-header {
    width: 100%;
    min-height: 5rem; /* 80px */
    gap: 0.625rem;
    padding: var(--spacing-xl) 0;
    border-bottom: 0.0625rem solid var(--color-border);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Arrow rotates up when expanded */
.accordion-item.expanded .accordion-arrow {
    transform: rotate(-135deg);
}

/* Accordion Content */
.accordion-content {
    width: 100%;
    padding: var(--spacing-xl) 0;
    border-bottom: 0.0625rem solid var(--color-border);
    box-sizing: border-box;
    overflow-y: auto;
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: 0.05%;
    text-transform: capitalize;
    color: var(--color-secondary);
    margin: 0;
    display: none;
}

/* Paragraph spacing inside accordion content */
.accordion-content p {
    margin: 0 0 var(--spacing-lg) 0;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

/* Show content when expanded */
.accordion-item.expanded .accordion-content {
    display: block;
}

/* Size Section Wrapper */
.size-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
}

/* Size Buttons Grid */
.size-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 3.25rem);
    row-gap: var(--spacing-sm);
    column-gap: var(--spacing-sm);
    width: 100%;
}

/* Size Button */
.size-button {
    width: 100%;
    height: 3.25rem; /* 52px */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.0625rem solid var(--color-border);
    border-radius: 0;
    background: var(--color-bg-light);
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: 1rem;
    line-height: 150%;
    letter-spacing: 0.075rem;
    text-transform: uppercase;
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* Size Button - Selected/Active State */
.size-button.active {
    background: var(--color-active);
}

.size-button:hover {
    background: var(--color-hover);
}

/* ==========================================================================
   Shop Footer - Responsive
   ========================================================================== */
.shop-footer {
    width: 100%;
    min-height: 20rem; /* ~321px */
    background: var(--color-bg-dark);
    border-top: 0.0625rem solid #505160;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: var(--spacing-2xl);
}

/* Footer Inner Container — controls content width via % tokens (mobile-first). */
.shop-footer-inner {
    width: var(--content-xs);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

@media (min-width: 600px) {
    .shop-footer-inner { width: var(--content-sm); }
}

@media (min-width: 1280px) {
    .shop-footer-inner { width: var(--content-md); }
}

@media (min-width: 1920px) {
    .shop-footer-inner { width: var(--content-lg); }
}

/* Footer Logo */
.shop-footer-logo {
    width: 9.0625rem; /* 145px */
    height: 2rem;
    flex-shrink: 0;
}

.shop-footer-logo img {
    width: 100%;
    height: auto;
    max-height: 2rem;
}

/* Footer Links Container */
.shop-footer-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

/* Link with left margin */
.shop-footer-link + .shop-footer-link {
    padding-left: 0;
}

/* Footer Link */
.shop-footer-link {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.625rem; /* 10px */
    line-height: 0.9375rem; /* 15px */
    letter-spacing: 0.125rem;
    text-transform: uppercase;
    color: var(--color-bg-light);
    text-decoration: none;
}

.shop-footer-link:hover {
    opacity: 0.8;
}

/* ==========================================================================
   Responsive - Tablet/Medium (600px - 1279px)
   ========================================================================== */
@media (max-width: 1279px) and (min-width: 600px) {
    /* Header */
    .shop-header {
        width: 100%;
        min-height: 6.25rem;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .shop-header-container {
        gap: 0;
        margin: var(--spacing-lg) auto;
    }
    
    /* Menu Icon */
    .shop-header-menu-icon {
        display: flex;
        width: 2rem;
        height: 3rem;
        margin-right: 1.3125rem;
    }
    
    /* Logo */
    .shop-header-logo {
        margin-right: auto;
    }
    
    /* Right container */
    .shop-header-right {
        width: auto;
        flex: none;
        margin-right: var(--spacing-sm);
    }
    
    /* Icons Container */
    .shop-header-icons {
        gap: 0.625rem;
    }
    
    /* Hide desktop navigation */
    .shop-header-nav {
        display: none;
    }
    
    /* Mobile Navigation Dropdown */
    .shop-mobile-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: var(--color-bg-light);
        padding: 1.25rem var(--spacing-xl);
        box-sizing: border-box;
        border-bottom: 0.0625rem solid var(--color-border-light);
    }
    
    .shop-mobile-nav.active {
        display: flex;
    }
    
    .shop-mobile-nav-link {
        font-family: var(--font-primary);
        font-weight: 700;
        font-size: 1rem;
        line-height: 0.9375rem;
        letter-spacing: 0.125rem;
        text-transform: uppercase;
        color: var(--color-primary);
        text-decoration: none;
        padding: var(--spacing-md) 0;
        border-bottom: 0.0625rem solid var(--color-border-light);
    }
    
    .shop-mobile-nav-link:last-child {
        border-bottom: none;
    }
    
    /* Product Page */
    .single-product-page {
        width: 100%;
    }
    
    .product-layout {
        width: 100%;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    
    /* Images Column */
    .product-images-column {
        width: 100%;
        order: 1;
    }
    
    .accordion-wrapper {
        width: 100%;
        order: 3;
    }
    
    /* Images Grid - single column carousel */
    .product-images-grid {
        width: 100%;
        aspect-ratio: 3 / 4;
        display: block;
        overflow: hidden;
    }
    
    .product-image-cell {
        width: 100%;
        aspect-ratio: 3 / 4;
        display: none;
    }
    
    .product-image-cell.active {
        display: block;
    }
    
    /* Image Pagination */
    .image-pagination {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: var(--spacing-xl) 0;
        gap: var(--spacing-md);
    }
    
    .pagination-dot {
        width: 1rem;
        height: 1rem;
        border-radius: 50%;
        background: var(--color-border);
        cursor: pointer;
        transition: background 0.3s ease;
    }
    
    .pagination-dot.active {
        background: var(--color-primary);
    }
    
    /* Product Details Container */
    .product-details-column {
        width: 100%;
        padding: var(--spacing-2xl) var(--spacing-xl);
        order: 2;
    }
    
    /* Accordion Container */
    .accordion-container {
        width: 100%;
        padding: var(--spacing-2xl) var(--spacing-xl);
    }
    
    .accordion-frame {
        width: 100%;
        max-width: 33.5rem; /* 536px */
    }
    
    /* Footer */
    .shop-footer {
        width: 100%;
        min-height: 8.5rem; /* 136px */
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .shop-footer-inner {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-lg);
    }
    
    .shop-footer-logo {
        align-self: flex-start;
    }
    
    .shop-footer-links {
        justify-content: flex-end;
        align-self: flex-end;
    }
}

/* ==========================================================================
   Responsive - Mobile (below 600px)
   ========================================================================== */
@media (max-width: 599px) {
    /* Header */
    .shop-header {
        width: 100%;
        height: 3.75rem; /* 60px */
        padding: 0;
    }
    
    .shop-header-container {
        height: 3rem;
        gap: 1.125rem;
        padding: 0;
        margin: 0 auto;
    }
    
    /* Menu Icon */
    .shop-header-menu-icon {
        display: flex;
        margin-right: auto;
        order: 1;
    }
    
    .shop-header-menu-icon img {
        width: 2rem;
        height: 2rem;
    }
    
    /* Hide logo on mobile */
    .shop-header-logo {
        display: none;
        order: 0;
    }
    
    /* Icons container */
    .shop-header-right {
        display: flex;
        align-items: center;
        gap: 1.125rem;
        width: auto;
        order: 2;
        flex: none;
    }
    
    /* Icons wrapper */
    .shop-header-icons {
        gap: var(--spacing-md);
        justify-content: flex-end;
    }
    
    .shop-header-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .shop-header-icon img {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    /* Buy Button */
    .shop-header-btn {
        min-width: 9.0625rem; /* 145px */
        height: 3rem;
        order: 3;
    }
    
    /* Hide desktop navigation */
    .shop-header-nav {
        display: none;
    }
    
    /* Product Page Container */
    .single-product-page {
        width: 100%;
        padding: 0;
    }
    
    .product-layout {
        width: 100%;
        flex-direction: column;
    }
    
    /* Images Column */
    .product-images-column {
        width: 100%;
        aspect-ratio: 3 / 4;
        min-height: auto;
        order: 1;
    }
    
    /* Image Grid - carousel */
    .product-images-grid {
        width: 100%;
        aspect-ratio: 3 / 4;
        display: block;
        overflow: hidden;
    }
    
    .product-image-cell {
        width: 100%;
        aspect-ratio: 3 / 4;
        display: none;
    }
    
    .product-image-cell.active {
        display: block;
    }
    
    /* Image Pagination */
    .image-pagination {
        display: flex;
        width: 100%;
        padding: var(--spacing-xl) 0;
        gap: var(--spacing-md);
        justify-content: center;
    }
    
    .pagination-dot {
        width: 1rem;
        height: 1rem;
        border-radius: 50%;
        background: var(--color-border);
    }
    
    .pagination-dot.active {
        background: var(--color-primary);
    }
    
    /* Product Details Container */
    .product-details-column {
        width: 100%;
        padding: var(--spacing-xl) var(--spacing-md);
        order: 2;
    }
    
    /* Subtitle */
    .product-subtitle {
        font-size: 1rem;
        line-height: 2.5rem;
    }
    
    /* Product Title */
    .product_title,
    .product-details-column .product_title {
        font-size: 2rem;
        line-height: 2.5rem;
    }
    
    /* Size Section */
    .size-section {
        width: 100%;
    }
    
    .size-section-header {
        width: 100%;
    }
    
    .size-buttons-grid {
        width: 100%;
    }
    
    /* Add to Cart Button */
    .add-to-cart-btn {
        width: 100%;
    }
    
    /* Accordion Wrapper */
    .accordion-wrapper {
        width: 100%;
        order: 3;
    }
    
    /* Accordion Container */
    .accordion-container {
        width: 100%;
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .accordion-frame {
        width: 100%;
    }
    
    .accordion-item {
        width: 100%;
    }
    
    .accordion-header {
        width: 100%;
        min-height: 5rem;
    }
    
    .accordion-content {
        width: 100%;
    }
    
    /* Footer */
    .shop-footer {
        width: 100%;
        min-height: 12rem; /* 192px */
        padding: var(--spacing-xl);
    }
    
    .shop-footer-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.125rem;
    }
    
    .shop-footer-logo {
        align-self: flex-start;
    }
    
    .shop-footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }
    
    .shop-footer-link {
        padding-left: 0;
    }
}

/* ==========================================================================
   Large Desktop - min1280 Customizer Preview Only
   ========================================================================== */
@media (max-width: 1919px) and (min-width: 1280px) {
    body.is-customizer-preview .shop-header-container {
        gap: var(--spacing-lg);
    }
    
    body.is-customizer-preview .product-layout {
        width: 100%;
    }
    
    /* Left Column - 62.5% (800/1280) */
    body.is-customizer-preview .product-images-column {
        width: 62.5%;
    }
    
    /* Image Grid - single column for 1280 */
    body.is-customizer-preview .product-images-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }
    
    body.is-customizer-preview .product-image-cell {
        display: block;
    }
    
    /* Hide pagination on 1280 */
    body.is-customizer-preview .image-pagination {
        display: none;
    }
    
    /* Right Column - 37.5% (480/1280) */
    body.is-customizer-preview .product-details-column {
        width: 37.5%;
    }
    
    /* Accordion - 62.5% (800/1280) */
    body.is-customizer-preview .accordion-wrapper {
        width: 62.5%;
    }
    
    body.is-customizer-preview .accordion-container {
        padding: var(--spacing-3xl);
    }
    
    body.is-customizer-preview .accordion-frame {
        max-width: 37.5rem; /* 600px */
    }
    
    body.is-customizer-preview .shop-footer {
        min-height: 14.5625rem; /* 233px */
    }
}
