/* ========================================
   DIGITAL STANDEE PAGE — True Apple Style
   Inspired by apple.com/watch & apple.com/ipad
   ======================================== */

/* ── Base ── */
html, body,
[data-theme="light"] body {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

:root {
    --bg-void: #ffffff !important;
    --bg-secondary: #f5f5f7 !important;
    --apple-blue: #0071e3;
    --apple-text: #1d1d1f;
    --apple-gray: #6e6e73;
    --apple-light-gray: #86868b;
    --apple-bg-alt: #f5f5f7;
}

/* ========================================
   PERKS STRIP — Apple Store scrollable perks
   ======================================== */
.perks-section {
    background: #ffffff !important;
    padding: 20px 0;
    border-top: none;
    overflow: hidden;
}

.perks-strip {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: perksScroll 30s linear infinite;
    padding: 4px 0;
}

.perks-strip:hover {
    animation-play-state: paused;
}

@keyframes perksScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.perk-card {
    flex: 0 0 260px;
    background: #f5f5f7;
    border-radius: 16px;
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.perk-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.perk-card p {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--apple-text);
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin: 0;
}

.perk-highlight {
    color: #2aa146;
}

@media (max-width: 768px) {
    .perks-section {
        padding: 14px 0;
    }

    .perk-card {
        flex: 0 0 220px;
        padding: 16px 16px 18px;
    }

    .perk-card p {
        font-size: 0.8rem;
    }

    .perk-icon {
        font-size: 1.3rem;
    }

    .perks-strip {
        animation-duration: 20s;
    }
}

/* ========================================
   HELP IS HERE — Apple Store exact clone
   Two wide cards side by side, SVG illustrations
   ======================================== */
.help-section {
    background: #ffffff !important;
    padding: 48px 0 56px;
}

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

.help-card-apple {
    background: #f5f5f7;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.help-card-apple:hover {
    transform: scale(1.01);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

/* Gradient variant — like Apple's Genius Bar card */
.help-card-apple--gradient {
    background: linear-gradient(180deg, #f5f5f7 0%, #e8ecf4 50%, #f0e4e8 100%);
}

.help-card-apple-text {
    padding: 28px 24px 0;
    flex: 0 0 auto;
}

.help-card-apple-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--apple-gray);
    margin-bottom: 10px;
}

.help-card-apple-text h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--apple-text);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 8px;
}

.help-card-apple-text p {
    font-size: 0.88rem;
    color: var(--apple-gray);
    line-height: 1.5;
    margin: 0;
    max-width: 400px;
}

.help-card-apple-icon {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px 24px 32px;
    overflow: hidden;
}

.help-card-apple-icon svg {
    transition: transform 0.45s ease;
}

.help-card-apple:hover .help-card-apple-icon svg {
    transform: scale(1.05);
}

/* Specialist card — photo instead of SVG */
.help-card-apple--specialist {
    background: #f5f5f7;
}

.help-card-apple-photo {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-top: 16px;
}

.help-card-apple-photo img {
    width: 200px;
    height: auto;
    object-fit: contain;
    transition: transform 0.45s ease;
}

.help-card-apple--specialist:hover .help-card-apple-photo img {
    transform: scale(1.05);
}

/* Devices illustration — full width like Apple's Personal Setup */
.help-card-apple-icon--devices {
    padding: 0 8px 0;
    align-items: flex-end;
}

.help-card-apple-icon--devices svg {
    width: 100%;
    height: auto;
    max-height: 220px;
}

@media (max-width: 1024px) {
    .help-cards-apple {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .help-section {
        padding: 32px 0 40px;
    }

    .help-cards-apple {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .help-card-apple {
        min-height: 300px;
    }

    .help-card-apple-text {
        padding: 24px 20px 0;
    }

    .help-card-apple-text h3 {
        font-size: 1.2rem;
    }

    .help-card-apple-icon svg {
        width: 130px;
        height: auto;
    }
}

/* Legacy help card styles kept for other pages */

.help-heading {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--apple-text);
    letter-spacing: -0.02em;
    margin-bottom: 28px;
    padding: 0;
}

.help-heading strong {
    font-weight: 700;
}

.help-heading span {
    color: var(--apple-gray);
}

.help-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}

.help-cards::-webkit-scrollbar {
    display: none;
}

.help-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: #f5f5f7;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.help-card:hover {
    transform: scale(1.015);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.help-card-text {
    padding: 28px 28px 16px;
    flex: 0 0 auto;
}

.help-card-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--apple-gray);
    margin-bottom: 8px;
}

.help-card-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--apple-text);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 6px;
}

.help-card-text p {
    font-size: 0.82rem;
    color: var(--apple-gray);
    line-height: 1.5;
    margin: 0;
}

.help-card-img {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 20px;
    overflow: hidden;
}

.help-card-img img {
    max-width: 75%;
    max-height: 260px;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.06));
    transition: transform 0.45s ease;
}

.help-card:hover .help-card-img img {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .help-section {
        padding: 32px 0 40px;
    }

    .help-heading {
        margin-bottom: 20px;
    }

    .help-card {
        flex: 0 0 280px;
        min-height: 340px;
    }

    .help-card-text {
        padding: 20px 20px 12px;
    }

    .help-card-text h3 {
        font-size: 1.05rem;
    }

    .help-card-img img {
        max-height: 200px;
    }
}

/* ========================================
   APPLE STORE HEADER — Exact clone
   "Store" title left, tagline right, icons below
   ======================================== */
.store-header {
    background: #ffffff !important;
    padding: 80px 0 48px;
    margin-top: 44px;
}

.store-header-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 52px;
}

.store-title {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 700;
    color: var(--apple-text);
    letter-spacing: -0.04em;
    line-height: 1.05;
}

.store-tagline {
    text-align: right;
    padding-top: 8px;
}

.store-tagline-text {
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 600;
    color: var(--apple-text);
    letter-spacing: -0.02em;
    line-height: 1.35;
    margin-bottom: 12px;
}

.store-link {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--apple-blue);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.2s;
}

.store-link:hover {
    color: #0077ed;
    text-decoration: underline;
}

/* Category strip inside store header */
.store-header .category-strip {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 36px;
}

.store-header .category-strip::-webkit-scrollbar {
    display: none;
}

.category-strip-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 8px 20px;
    min-width: 100px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.category-strip-item:hover {
    transform: scale(1.06);
}

.category-strip-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border-radius: 0;
    overflow: hidden;
}

.category-strip-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.08));
}

.category-strip-item span {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--apple-text);
    text-align: center;
    line-height: 1.3;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .store-header {
        padding: 60px 0 32px;
        margin-top: 44px;
    }

    .store-header-top {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 32px;
    }

    .store-tagline {
        text-align: left;
        padding-top: 0;
    }

    .store-header .category-strip {
        justify-content: flex-start;
        padding: 24px 0 0;
    }

    .category-strip-item {
        padding: 6px 12px;
        min-width: 80px;
    }

    .category-strip-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 6px;
    }

    .category-strip-item span {
        font-size: 0.65rem;
    }
}

/* ========================================
   SECTION HEADERS — Apple big typography
   ======================================== */
.section {
    background: #ffffff !important;
    padding: 80px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem) !important;
    font-weight: 700 !important;
    color: var(--apple-text) !important;
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem) !important;
    color: var(--apple-gray) !important;
    font-weight: 400;
    line-height: 1.55;
    max-width: 560px;
    margin: 0 auto;
}

/* ========================================
   CATEGORY SECTIONS — Alternating bg
   ======================================== */
.section#products {
    padding: 100px 0 80px;
    background: #ffffff !important;
}

/* ========================================
   PROMO BANNER — Apple "Take a closer look" style
   Full-width rounded card with text + image
   ======================================== */
.promo-banner {
    max-width: 1080px;
    margin: 80px auto 0;
}

.promo-banner-inner {
    display: flex;
    align-items: stretch;
    background: #f5f5f7;
    border-radius: 24px;
    overflow: hidden;
    min-height: 380px;
    position: relative;
}

.promo-banner-text {
    flex: 0 0 45%;
    padding: 52px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.promo-banner-heading {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--apple-text);
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin-bottom: 20px;
}

.promo-banner-title {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--apple-text);
    letter-spacing: -0.01em;
    line-height: 1.35;
    margin-bottom: 12px;
}

.promo-banner-desc {
    font-size: 0.85rem;
    color: var(--apple-gray);
    line-height: 1.55;
    margin-bottom: 24px;
    max-width: 340px;
}

.promo-banner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: #1d1d1f;
    color: #ffffff;
    border: none;
    border-radius: 980px;
    font-size: 0.88rem;
    font-weight: 400;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s;
    width: fit-content;
}

.promo-banner-btn:hover {
    background: #333336;
}

.promo-banner-img {
    flex: 1;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 24px 24px 0;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.promo-banner:hover .promo-banner-img img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .promo-banner {
        margin-top: 48px;
    }

    .promo-banner-inner {
        flex-direction: column;
        min-height: auto;
    }

    .promo-banner-text {
        flex: none;
        padding: 32px 24px 24px;
        text-align: center;
        align-items: center;
    }

    .promo-banner-desc {
        max-width: 100%;
    }

    .promo-banner-img {
        height: 220px;
    }

    .promo-banner-img img {
        border-radius: 0 0 24px 24px;
    }
}

/* ========================================
   CATEGORY DUO — Two big CTA cards (Indoor / Outdoor)
   Matches apple.com tools section style
   ======================================== */
.category-duo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 720px;
    margin: 48px auto 0;
}

.category-card {
    display: flex;
    flex-direction: column;
    background: #1d1d1f;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.category-card:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.category-card-content {
    padding: 24px 24px 14px;
    text-align: center;
}

.category-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    text-transform: none;
    font-style: italic;
    letter-spacing: 0.01em;
    display: block;
    margin-bottom: 4px;
}

.category-card-title {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 6px;
}

.category-card-desc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.45;
    max-width: 260px;
    margin: 0 auto 10px;
}

.category-link {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--apple-blue);
    transition: color 0.2s;
}

.category-card:hover .category-link {
    color: #2997ff;
}

.category-card-img {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 20px;
    min-height: 160px;
    overflow: hidden;
}

.category-card-img img {
    width: 100%;
    max-width: 240px;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 -4px 16px rgba(0,0,0,0.25));
}

.category-card:hover .category-card-img img {
    transform: scale(1.04) translateY(-3px);
}

@media (max-width: 768px) {
    .category-duo {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        max-width: 100%;
        margin-top: 32px;
    }

    .category-card-content {
        padding: 18px 14px 10px;
    }

    .category-card-title {
        font-size: 1.15rem;
    }

    .category-card-desc {
        font-size: 0.68rem;
    }

    .category-card-img {
        min-height: 120px;
        padding: 0 12px;
    }

    .category-card-img img {
        max-width: 160px;
    }
}

@media (max-width: 480px) {
    .category-duo {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
}

/* ========================================
   PRODUCT GRID — Horizontal Scrolling
   ======================================== */
.standee-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 12px;
}

.standee-grid::-webkit-scrollbar {
    display: none;
}

.standee-grid > .standee-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
}

/* Auto-scrolling marquee for Indoor/Outdoor grids */
.standee-marquee {
    overflow: hidden;
    padding: 4px 0 12px;
}

.standee-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: standeeScroll 35s linear infinite;
}

.standee-marquee-track:hover {
    animation-play-state: paused;
}

.standee-marquee--reverse .standee-marquee-track {
    animation-name: standeeScrollReverse;
}

@keyframes standeeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes standeeScrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.standee-marquee .standee-card {
    flex: 0 0 300px;
}

.standee-card {
    background: var(--apple-bg-alt) !important;
    border: none !important;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    text-align: center;
    cursor: default;
}

.standee-card:hover {
    transform: translateY(-6px) scale(1.005);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08),
                0 4px 12px rgba(0,0,0,0.03);
    border-color: transparent !important;
}

.standee-card::after {
    display: none !important;
}

/* ── Badge ── */
.standee-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 980px;
    background: rgba(0,113,227,0.08);
    color: var(--apple-blue);
    display: inline-block;
    backdrop-filter: blur(8px);
}

/* ── Image ── */
.standee-image {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent !important;
    padding: 28px;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 0;
}

.standee-image img {
    max-width: 82%;
    max-height: 82%;
    object-fit: contain;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.06));
}

.standee-card:hover .standee-image img {
    transform: scale(1.05);
}

/* ── Info ── */
.standee-info {
    padding: 20px 22px 26px;
    text-align: center;
}

.standee-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--apple-text) !important;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.standee-info p {
    font-size: 0.82rem;
    color: var(--apple-gray) !important;
    margin-bottom: 10px;
    line-height: 1.5;
    font-weight: 400;
}

.standee-price {
    display: block !important;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.standee-size {
    font-size: 0.75rem;
    color: var(--apple-light-gray) !important;
    margin-bottom: 16px;
    display: block;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ── Actions ── */
.standee-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.btn-buy {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    background: var(--apple-blue) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 980px;
    font-weight: 400;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0;
    text-decoration: none;
    min-width: 120px;
}

.btn-buy:hover {
    background: #0077ed !important;
}

.btn-details {
    padding: 0;
    background: transparent !important;
    color: var(--apple-blue) !important;
    border: none !important;
    border-radius: 0;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s;
    letter-spacing: 0;
}

.btn-details::after {
    content: ' \203A';
    font-size: 1.15em;
    transition: margin-left 0.25s;
    margin-left: 2px;
}

.btn-details:hover {
    background: transparent !important;
    color: #0077ed !important;
    text-decoration: none;
}

.btn-details:hover::after {
    margin-left: 6px;
}

/* ========================================
   WHY CHOOSE US — Apple Feature Tiles
   ======================================== */
#why-choose {
    padding: 100px 0 80px !important;
    background: var(--apple-bg-alt) !important;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
}

.why-card {
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 36px 24px;
    transition: none;
    text-align: center;
    position: relative;
}

.why-card::after {
    display: none !important;
}

.why-card:hover {
    transform: none;
    box-shadow: none !important;
}

.why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    width: 52px;
    height: 52px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 14px;
    background: rgba(0,113,227,0.07);
}

.why-icon svg {
    width: 28px;
    height: 28px;
}

.why-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--apple-text) !important;
    letter-spacing: -0.01em;
}

.why-card p {
    font-size: 0.82rem;
    color: var(--apple-gray) !important;
    line-height: 1.6;
    max-width: 230px;
    margin: 0 auto;
}

/* ========================================
   CTA — Apple light section with subtle bg
   ======================================== */
.standee-cta {
    text-align: center;
    background: var(--apple-bg-alt) !important;
    padding: 100px 24px !important;
}

.standee-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem) !important;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--apple-text) !important;
    letter-spacing: -0.03em;
}

.standee-cta p {
    color: var(--apple-gray) !important;
    max-width: 480px;
    margin: 0 auto 28px;
    font-size: 1.05rem;
    line-height: 1.55;
}

.standee-cta .btn-primary {
    background: var(--apple-blue) !important;
    color: #fff !important;
    border: none !important;
    padding: 14px 30px;
    border-radius: 980px;
    font-size: 1rem;
    font-weight: 400;
}

.standee-cta .btn-primary:hover {
    background: #0077ed !important;
}

/* ========================================
   QUOTE FORM — Apple minimal
   ======================================== */
#standee-quote {
    padding: 80px 0 100px !important;
    background: #ffffff !important;
}

.standee-form-wrap {
    max-width: 460px;
    margin: 0 auto;
}

.standee-quote-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.standee-quote-form input,
.standee-quote-form select {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--apple-text);
    background: #ffffff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.standee-quote-form input:focus,
.standee-quote-form select:focus {
    border-color: var(--apple-blue);
    box-shadow: 0 0 0 4px rgba(0,113,227,0.08);
}

.standee-quote-form input::placeholder {
    color: var(--apple-light-gray);
}

.standee-quote-form select {
    color: var(--apple-light-gray);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2386868b' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.standee-quote-form select:valid {
    color: var(--apple-text);
}

.standee-form-btn {
    width: 100%;
    padding: 15px 24px;
    background: var(--apple-blue);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 4px;
}

.standee-form-btn:hover {
    background: #0077ed;
}

/* ========================================
   STORE SECTION HEADING — Apple "The latest." style
   ======================================== */
.store-section-heading {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 400;
    color: var(--apple-text);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 28px;
    padding: 0;
}

.store-section-heading strong {
    font-weight: 700;
}

.store-section-heading span {
    color: var(--apple-gray);
}

/* ========================================
   THE LATEST — Large product hero cards
   Apple.com/shop "The latest" section
   ======================================== */
.store-latest {
    background: #ffffff !important;
    padding: 48px 0 64px;
}

.store-latest-cards {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 max(20px, calc((100vw - 980px) / 2)) 8px;
}

.store-latest-cards::-webkit-scrollbar {
    display: none;
}

.store-latest-cards::-webkit-scrollbar {
    display: none;
}

.store-product-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: #f5f5f7;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
}

.store-product-card--large {
    flex: 0 0 380px;
    min-height: 480px;
}

.store-product-card:hover {
    transform: scale(1.015);
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.store-product-card-text {
    padding: 28px 28px 0;
    flex: 0 0 auto;
    z-index: 2;
}

.store-product-label {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #bf4800;
    margin-bottom: 6px;
}

.store-product-card-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--apple-text);
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 4px;
}

.store-product-card-text .store-card-tagline {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--apple-text);
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 4px;
}

.store-product-card-text .store-card-price {
    font-size: 0.82rem;
    font-weight: 400;
    color: var(--apple-gray);
    line-height: 1.4;
    margin: 0;
}

.store-product-card-text p {
    font-size: 0.82rem;
    color: var(--apple-gray);
    line-height: 1.45;
    margin-bottom: 12px;
}

.store-product-cta {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--apple-blue);
    transition: color 0.2s;
}

.store-product-card:hover .store-product-cta {
    color: #0077ed;
}

.store-product-card-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 16px 24px;
    overflow: hidden;
}

.store-product-card-img img {
    max-width: 100%;
    max-height: 380px;
    object-fit: contain;
    filter: drop-shadow(0 6px 20px rgba(0,0,0,0.08));
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.store-product-card:hover .store-product-card-img img {
    transform: scale(1.06);
}

/* Hero card — full-cover image like Apple iPhone Pro card */
.store-product-card--hero {
    flex: 0 0 300px;
    min-height: 480px;
    position: relative;
    overflow: hidden;
    background: #000000;
    border-radius: 20px;
}

/* Cover variant — image fills top, text below like iPhone 17 Pro */
.store-product-card--cover {
    flex: 0 0 300px;
    min-height: auto;
    background: #f5f5f7;
    flex-direction: column;
    display: flex;
}

.store-product-card-cover-img {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 18px;
    margin: 0;
}

.store-product-card-cover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.store-product-card--cover:hover .store-product-card-cover-img img {
    transform: scale(1.04);
}

.store-product-card-cover-info {
    padding: 24px 8px 28px;
    text-align: center;
}

.store-product-card-cover-info h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--apple-text);
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 8px;
}

.store-product-card-cover-info .cover-desc {
    font-size: 0.88rem;
    color: var(--apple-gray);
    line-height: 1.45;
    margin-bottom: 10px;
}

.store-product-card-cover-info .cover-price {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--apple-text);
    margin-bottom: 18px;
}

.cover-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cover-btn-primary {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 980px;
    background: #0071e3;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.25s ease;
}

.cover-btn-primary:hover {
    background: #0077ed;
}

.cover-btn-secondary {
    font-size: 0.88rem;
    font-weight: 500;
    color: #0071e3;
    text-decoration: none;
}

.cover-btn-secondary:hover {
    text-decoration: underline;
}

.store-product-card-hero-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    overflow: hidden;
}

.store-product-card-hero-bg img {
    width: 85%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.store-product-card--hero:hover .store-product-card-hero-bg img {
    transform: scale(1.04);
}

.store-product-card-text--overlay {
    position: relative;
    z-index: 2;
    padding: 40px 32px 0;
}

.store-product-card-text--overlay h3 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 6px;
}

.store-product-card-text--overlay .hero-tagline {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0071e3;
    letter-spacing: -0.01em;
    line-height: 1.3;
    margin-bottom: 6px;
}

.store-product-card-text--overlay .hero-price {
    font-size: 0.88rem;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    letter-spacing: -0.005em;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .store-product-card--hero {
        flex: 0 0 260px;
        min-height: 400px;
    }

    .store-product-card--cover {
        flex: 0 0 280px;
    }

    .store-product-card-cover-info h3 {
        font-size: 1.3rem;
    }

    .store-product-card-text--overlay {
        padding: 28px 24px 0;
    }

    .store-product-card-text--overlay h3 {
        font-size: 1.8rem;
    }

    .store-product-card-text--overlay .hero-tagline {
        font-size: 1rem;
    }

    .store-product-card-text--overlay .hero-price {
        font-size: 0.8rem;
    }
}

/* Light / White theme variant for hero cards */
.store-product-card--light {
    background: #f5f5f7;
}

.store-product-card--light .store-product-card-text--overlay h3 {
    color: var(--apple-text);
}

.store-product-card--light .store-product-card-text--overlay .hero-tagline {
    color: var(--apple-text);
}

.store-product-card--light .store-product-card-text--overlay .hero-price {
    color: var(--apple-gray);
}

@media (max-width: 768px) {
    .store-latest {
        padding: 32px 0 48px;
    }

    .store-latest-cards {
        padding: 0 16px 8px;
        gap: 12px;
        scroll-padding-left: 16px;
    }

    .store-product-card {
        flex: 0 0 72vw;
        min-height: 400px;
        scroll-snap-align: start;
    }

    .store-product-card-text {
        padding: 20px 20px 0;
    }

    .store-product-card-text h3 {
        font-size: 1.5rem;
    }

    .store-product-card-img img {
        max-height: 260px;
    }
}

@media (max-width: 480px) {
    .store-product-card {
        flex: 0 0 78vw;
        min-height: 360px;
    }
    .store-product-card-text h3 {
        font-size: 1.3rem;
    }
    .store-product-card .hero-price {
        font-size: 0.78rem;
    }
}

/* ========================================
   THE PIXELSPOT STORE DIFFERENCE — Perks cards
   ======================================== */
.store-difference {
    background: #ffffff !important;
    padding: 48px 0 64px;
}

.store-difference-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}

.store-difference-cards::-webkit-scrollbar {
    display: none;
}

.store-diff-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    background: #f5f5f7;
    border-radius: 20px;
    padding: 28px 26px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-diff-card:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.store-diff-icon {
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 0;
}

.store-diff-icon svg {
    width: 43px;
    height: 43px;
}

.store-diff-card p {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--apple-text);
    line-height: 1.4;
    margin: 0;
    margin-top: auto;
    padding-top: 24px;
}

.diff-link {
    text-decoration: none;
    font-weight: 700;
}

.diff-link--blue { color: #0071e3; }
.diff-link--green { color: #1d8a00; }
.diff-link--purple { color: #a020f0; }

.diff-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .store-difference {
        padding: 32px 0 48px;
    }

    .store-diff-card {
        flex: 0 0 220px;
        padding: 22px 20px;
        min-height: 160px;
    }

    .store-diff-card p {
        font-size: 0.84rem;
    }
}

/* ========================================
   FEATURED — Apple "Get to know iPhone" clone
   All cards same size, dark bg, cover images
   ======================================== */
.store-featured {
    background: #000000 !important;
    padding: 80px 0 100px;
    overflow: hidden;
}

.store-featured .container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

.store-featured .store-section-heading {
    color: #f5f5f7;
}

.store-featured .store-section-heading span {
    color: #86868b;
}

/* Horizontal scrolling carousel — like Apple "Explore" cards */
.store-featured-cards {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 max(20px, calc((100vw - 980px) / 2)) 8px;
    scroll-behavior: smooth;
}

.store-featured-cards::-webkit-scrollbar {
    display: none;
}

/* Get to know card — Apple style tall portrait cards, same size as Explore section */
.store-gtkcard {
    flex: 0 0 340px;
    min-height: 520px;
    scroll-snap-align: start;
    background: #1d1d1f;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1), box-shadow 0.4s ease;
}

.store-gtkcard:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.store-gtkcard-content {
    position: relative;
    z-index: 2;
    padding: 32px 28px 0;
    flex: 0 0 auto;
}

.store-gtkcard-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.store-gtkcard-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin: 0;
}

.store-gtkcard-img {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
    padding: 16px 0 0;
    min-height: 0;
}

.store-gtkcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.store-gtkcard:hover .store-gtkcard-img img {
    transform: scale(1.05);
}

/* Plus icon in bottom right — Apple style */
.store-gtkcard::after {
    content: '+';
    position: absolute;
    bottom: 18px;
    right: 18px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background 0.3s ease, color 0.3s ease;
}

.store-gtkcard:hover::after {
    background: rgba(255,255,255,0.22);
    color: #ffffff;
}

.store-gtkcard:first-child .store-gtkcard-content h3 {
    font-size: 1.75rem;
}

@media (max-width: 768px) {
    .store-featured {
        padding: 48px 0 64px;
    }

    .store-gtkcard {
        flex: 0 0 280px;
        min-height: 440px;
    }

    .store-gtkcard-content {
        padding: 24px 20px 0;
    }

    .store-gtkcard-content h3 {
        font-size: 1.35rem;
    }

    .store-gtkcard:first-child .store-gtkcard-content h3 {
        font-size: 1.35rem;
    }

    .store-gtkcard-label {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .store-gtkcard {
        flex: 0 0 260px;
        min-height: 400px;
    }

    .store-gtkcard-content h3 {
        font-size: 1.2rem;
    }

    .store-gtkcard:first-child .store-gtkcard-content h3 {
        font-size: 1.2rem;
    }
}

/* ========================================
   EXPLORE OUR RANGE — Apple "Loud and clear" product grid
   First card is promo (tall), rest are product cards
   ======================================== */
.store-explore {
    background: #ffffff !important;
    padding: 48px 0 64px;
}

.store-explore-cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    padding-top: 0;
    padding-bottom: 8px;
    padding-right: 20px;
    padding-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
}

.store-explore-cards::-webkit-scrollbar {
    display: none;
}

.store-explore-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: #f5f5f7;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    box-shadow: none;
}

.store-explore-card:hover {
    transform: scale(1.02);
    box-shadow: none;
}

/* Promo card — larger, with text top + image bottom */
.store-explore-card--promo {
    flex: 0 0 360px;
    cursor: default;
    background: #f5f5f7;
    box-shadow: none;
    border-radius: 20px;
}

.store-explore-card--promo:hover {
    transform: none;
    box-shadow: none;
}

.store-explore-promo-text {
    padding: 40px 32px 0;
    flex: 0 0 auto;
}

.store-explore-promo-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--apple-text);
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 10px;
}

.store-explore-promo-text p {
    font-size: 0.95rem;
    color: var(--apple-gray);
    line-height: 1.45;
}

.store-explore-promo-img {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    overflow: hidden;
}

.store-explore-promo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    mix-blend-mode: multiply;
    filter: contrast(1.05) brightness(1.02);
}

/* Product cards — image top, text bottom */
.store-explore-card-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 36px 28px 12px;
    overflow: hidden;
    background: #f5f5f7;
}

.store-explore-card-img img {
    max-width: 80%;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.06));
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.store-explore-card:hover .store-explore-card-img img {
    transform: scale(1.06);
}

.store-explore-card-text {
    padding: 16px 28px 28px;
    flex: 0 0 auto;
}

.store-explore-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #bf4800;
    margin-bottom: 4px;
}

.store-explore-card-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--apple-text);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 6px;
}

.store-explore-card-text p {
    font-size: 0.88rem;
    color: var(--apple-gray);
    line-height: 1.4;
    margin: 0;
}

/* Alternate dark theme cards (even cards: 2nd, 4th, 6th child) */
.store-explore-card:nth-child(even) {
    background: #000;
}
.store-explore-card:nth-child(even) .store-explore-card-img {
    background: #000;
}
.store-explore-card:nth-child(even) .store-explore-card-img img {
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}
.store-explore-card:nth-child(even) .store-explore-label {
    color: #2997ff;
}
.store-explore-card:nth-child(even) .store-explore-card-text h3 {
    color: #f5f5f7;
}
.store-explore-card:nth-child(even) .store-explore-card-text p {
    color: #86868b;
}

@media (max-width: 768px) {
    .store-explore {
        padding: 32px 0 48px;
    }

    .store-explore-cards {
        padding: 0 20px 8px;
        padding-left: 24px;
    }

    .store-explore-card {
        flex: 0 0 270px;
        min-height: 420px;
    }

    .store-explore-card--promo {
        flex: 0 0 300px;
    }

    .store-explore-promo-text h3 {
        font-size: 1.25rem;
    }

    .store-explore-card-img img {
        max-height: 180px;
    }
}

/* ========================================
   QUICK LINKS — Apple Store style
   ======================================== */
.store-quicklinks {
    background: #f5f5f7 !important;
    padding: 48px 0 64px;
}

.store-quicklinks-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

.store-quicklinks-grid a {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--apple-blue);
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 980px;
    background: #ffffff;
    border: 1px solid #d2d2d7;
    transition: background 0.2s, border-color 0.2s;
}

.store-quicklinks-grid a:hover {
    background: var(--apple-blue);
    border-color: var(--apple-blue);
    color: #ffffff;
}

@media (max-width: 768px) {
    .store-quicklinks {
        padding: 32px 0 48px;
    }

    .store-quicklinks-grid a {
        font-size: 0.78rem;
        padding: 5px 12px;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer,
[data-theme="light"] .footer {
    background: #f5f5f7 !important;
    border-top: 1px solid #d2d2d7 !important;
    position: relative !important;
    z-index: 10 !important;
}
.footer::before,
.footer::after,
[data-theme="light"] .footer::before {
    display: none !important;
}
.footer .container {
    position: relative !important;
    z-index: 2 !important;
}
.footer-col h4 { color: var(--apple-text) !important; }
.footer-col a { color: #424245 !important; }
.footer-col a:hover { color: var(--apple-blue) !important; }
.footer-brand p { color: var(--apple-gray) !important; }
.footer-address { color: var(--apple-light-gray) !important; }
.footer-bottom { border-top: 1px solid #d2d2d7 !important; background: transparent !important; }
.footer-bottom p { color: var(--apple-light-gray) !important; }
.footer-social a {
    background: rgba(0,0,0,0.04) !important;
    border: 1px solid #d2d2d7 !important;
    color: var(--apple-gray) !important;
}
.footer-social a:hover {
    background: var(--apple-blue) !important;
    border-color: var(--apple-blue) !important;
    color: #ffffff !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .standee-grid {
        gap: 16px;
    }
    .standee-grid > .standee-card {
        flex: 0 0 280px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 55vh;
    }

    .section {
        padding: 60px 0;
    }

    .standee-grid {
        gap: 14px;
    }
    .standee-grid > .standee-card {
        flex: 0 0 260px;
    }
    .standee-marquee .standee-card {
        flex: 0 0 260px;
    }
    .standee-marquee-track {
        animation-duration: 25s;
    }

    .standee-image {
        height: 220px;
        padding: 20px;
    }

    .standee-info {
        padding: 14px 14px 20px;
    }

    .standee-info h3 {
        font-size: 1rem;
    }

    .standee-info p {
        font-size: 0.75rem;
        margin-bottom: 6px;
    }

    .standee-size {
        font-size: 0.7rem;
        margin-bottom: 10px;
    }

    .btn-details {
        font-size: 0.82rem;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .why-card {
        padding: 20px 16px;
    }

    .standee-cta {
        padding: 60px 20px !important;
    }

    #why-choose {
        padding: 60px 0 40px !important;
    }

    .section#products {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .standee-grid > .standee-card {
        flex: 0 0 240px;
    }

    .standee-image {
        height: 260px;
        padding: 24px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Apple-Style Comparison Table
   ============================================ */
.compare-section {
    padding: 100px 0 80px !important;
    background: #f5f5f7 !important;
}

.compare-table {
    max-width: 960px;
    margin: 0 auto;
}

.compare-row {
    display: grid;
    grid-template-columns: 160px 1fr 1fr 1fr;
    border-bottom: 1px solid #d2d2d7;
    align-items: center;
}

.compare-row:last-child {
    border-bottom: none;
}

.compare-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1d1d1f;
    padding: 18px 12px 18px 0;
    letter-spacing: 0.01em;
}

.compare-col {
    text-align: center;
    padding: 18px 12px;
    font-size: 0.9rem;
    font-weight: 400;
    color: #1d1d1f;
    letter-spacing: -0.005em;
}

/* Header row */
.compare-header-row {
    border-bottom: none;
    padding-bottom: 0;
    align-items: flex-end;
}

.compare-header-row .compare-col {
    padding-bottom: 8px;
}

.compare-header-row .compare-col h3 {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    margin: 0;
}

.compare-img {
    width: 140px;
    height: auto;
    display: block;
    margin: 0 auto 16px;
}

/* Price row */
.compare-price-row {
    border-bottom: 1px solid #d2d2d7;
    padding-bottom: 0;
}

.compare-price-row .compare-col {
    padding-bottom: 24px;
}

.compare-price {
    display: block;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.compare-link {
    font-size: 0.85rem;
    font-weight: 400;
    color: #0071e3;
    text-decoration: none;
    transition: color 0.2s;
}

.compare-link:hover {
    color: #0077ed;
    text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .compare-row {
        grid-template-columns: 100px 1fr 1fr 1fr;
    }

    .compare-label {
        font-size: 0.75rem;
    }

    .compare-col {
        font-size: 0.8rem;
        padding: 14px 6px;
    }

    .compare-header-row .compare-col h3 {
        font-size: 0.95rem;
    }

    .compare-img {
        width: 90px;
    }

    .compare-price {
        font-size: 0.95rem;
    }

    .compare-link {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .compare-row {
        grid-template-columns: 72px 1fr 1fr 1fr;
        gap: 0;
    }

    .compare-label {
        font-size: 0.65rem;
        padding: 12px 4px 12px 0;
    }

    .compare-col {
        font-size: 0.7rem;
        padding: 12px 4px;
    }

    .compare-header-row .compare-col h3 {
        font-size: 0.75rem;
    }

    .compare-img {
        width: 64px;
    }

    .compare-price {
        font-size: 0.8rem;
    }

    .compare-link {
        font-size: 0.7rem;
    }

    .compare-section {
        padding: 60px 0 40px !important;
    }
}
