/* ===== CSS Variables (Light Theme) ===== */
:root {
    --purple: #6e3dfc;
    --purple-light: #5B21B6;
    --purple-dark: #4C1D95;
    --purple-glow: rgba(110, 61, 252, 0.25);
    --top-bar-height: 36px;
    --header-height: 64px;
    --header-shell-pad: 0px;
    --header-total: calc(var(--top-bar-height) + var(--header-height));
    --future-cyan: #22d3ee;
    --future-violet: #8b5cf6;
    --future-bg: rgba(6, 8, 18, 0.72);
    --bg: #f5f5f7;
    --bg-secondary: #ffffff;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f0f2;
    --text: #111111;
    --text-secondary: #3d3d41;
    --text-muted: #5c5c62;
    --border: rgba(0, 0, 0, 0.08);
    --border-light: rgba(0, 0, 0, 0.12);
    --header-bg: rgba(255, 255, 255, 0.92);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header styles → css/header-future.css */

body.menu-open {
    overflow: hidden;
}

/* ===== Search Overlay ===== */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: calc(var(--header-total) + 24px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-modal {
    width: 100%;
    max-width: 600px;
    position: relative;
    padding: 0 24px;
}

.search-modal input {
    width: 100%;
    padding: 16px 48px 16px 20px;
    font-size: 1.125rem;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: #fff;
    outline: none;
}

.search-modal input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-modal input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(110, 61, 252, 0.25);
}

.search-close {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-close:hover {
    color: #fff;
}

.search-results {
    margin-top: 12px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    color: #fff;
    transition: background var(--transition);
}

.search-result-item:hover {
    background: rgba(110, 61, 252, 0.12);
}

.search-result-item:last-child {
    border-bottom: none;
}

/* ===== Banner Slider ===== */
.banner-section {
    position: relative;
    margin-top: var(--header-total);
    padding: 28px 0 36px;
    background: linear-gradient(180deg, #ebebef 0%, var(--bg) 100%);
    overflow: hidden;
}

.banner-wrap {
    position: relative;
    max-width: 1240px;
}

.banner-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 1718 / 915;
    border-radius: 20px;
    overflow: hidden;
    background: #f0f0f2;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.06),
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 24px 64px rgba(110, 61, 252, 0.06);
}

.banner-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease, visibility 0.8s;
    visibility: hidden;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.banner-link {
    display: block;
    width: 100%;
    height: 100%;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

.banner-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.08);
    z-index: 5;
}

.banner-progress-bar {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--purple), var(--purple-light));
    transition: width 0.1s linear;
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.55);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    backdrop-filter: blur(10px);
    opacity: 0;
}

.banner-wrap:hover .banner-arrow {
    opacity: 1;
}

.banner-prev { left: -8px; }
.banner-next { right: -8px; }

.banner-arrow:hover {
    background: var(--purple);
    border-color: var(--purple);
    transform: translateY(-50%) scale(1.06);
    box-shadow: 0 4px 20px var(--purple-glow);
}

.banner-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 18px;
}

.banner-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.35s ease;
}

.banner-dot:hover {
    background: rgba(0, 0, 0, 0.4);
}

.banner-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--purple);
}

.banner-counter {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    min-width: 36px;
}

.banner-counter span {
    color: var(--text);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--purple);
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition);
}

.btn-primary:hover {
    background: var(--purple-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--purple-glow);
}

.btn-primary svg {
    transition: transform var(--transition);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

/* ===== Features Bar ===== */
.features-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 32px;
    border-right: 1px solid var(--border);
}

.feature-item:last-child {
    border-right: none;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--purple);
}

.feature-text h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

/* ===== Section Headers ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* ===== Product Grid ===== */
.products-section {
    padding: 80px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    overflow: hidden;
}

.product-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.product-card-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.product-card-image img {
    max-height: 160px;
    object-fit: contain;
    transition: transform var(--transition);
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-name {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.product-card-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 12px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--purple-light);
    margin-bottom: 12px;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--purple);
    transition: gap var(--transition);
}

.product-card-link:hover {
    gap: 10px;
}

/* Collection cards - horizontal layout on desktop */
.collection-card {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 20px;
}

.collection-card .product-card-image {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.collection-card .product-card-image img {
    max-height: 100px;
}

.collection-card .product-card-body {
    text-align: left;
}

.collection-card .product-card-desc {
    margin-bottom: 8px;
}

/* Bestseller cards */
.bestsellers-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bs-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}

.bs-card:hover {
    border-color: rgba(110, 61, 252, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.bs-card-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    padding: 24px;
    background: linear-gradient(180deg, rgba(110, 61, 252, 0.06) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.bs-card-image img {
    max-height: 160px;
    width: 100%;
    object-fit: contain;
    transition: transform var(--transition);
}

.bs-card:hover .bs-card-image img {
    transform: scale(1.08);
}

.bs-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--purple);
    color: white;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 1;
}

.bs-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bs-card-name {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 10px;
    color: var(--text);
    transition: color var(--transition);
}

.bs-card-name:hover {
    color: var(--purple-light);
}

.bs-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.bs-rating .stars {
    display: flex;
    gap: 2px;
}

.bs-rating .star.filled {
    color: var(--purple);
}

.bs-rating .star {
    color: var(--text-muted);
}

.bs-reviews {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.bs-price {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 16px;
}

.bs-cart-form {
    margin-top: auto;
}

.bs-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 20px;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    background: transparent;
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.bs-add-btn svg {
    transition: transform var(--transition);
}

.bs-add-btn:hover {
    border-color: var(--purple);
    color: var(--purple);
    background: rgba(110, 61, 252, 0.08);
}

.bs-add-btn:hover svg {
    transform: translateX(2px);
}

.bs-card:hover .bs-add-btn {
    border-color: var(--purple);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    color: var(--text);
    font-size: 0.875rem;
    font-weight: 600;
    background: transparent;
    transition: all var(--transition);
    cursor: pointer;
    font-family: inherit;
}

.btn-outline:hover {
    border-color: var(--purple);
    color: var(--purple);
    background: rgba(110, 61, 252, 0.08);
}

/* Featured Banner */
.featured-banner {
    padding: 40px 0;
}

.featured-banner-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 360px;
}

.featured-banner-content {
    padding: 48px;
}

.featured-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.featured-banner-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.featured-banner-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 440px;
}

.featured-banner-visual {
    height: 100%;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at center, var(--purple-glow) 0%, transparent 70%);
    position: relative;
}

.featured-banner-visual img {
    max-height: 280px;
    position: relative;
    z-index: 1;
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    margin: 0 auto 24px;
}

.newsletter-inner h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.newsletter-inner > p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    color: var(--text);
    font-size: 0.9375rem;
    outline: none;
    min-width: 0;
}

.newsletter-form input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px var(--purple-glow);
}

.newsletter-form .btn-primary {
    flex-shrink: 0;
    white-space: nowrap;
}

/* ===== Homepage ===== */
.home-hero {
    margin-top: var(--header-total);
    padding: 20px 0 28px;
    background: var(--bg);
}

.home-hero-container {
    max-width: 1320px;
}

.home-banner-wrap {
    max-width: 100%;
    position: relative;
}

.home-banner-wrap .home-banner-arrow {
    opacity: 1;
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.home-banner-wrap .home-banner-arrow:hover {
    background: var(--purple);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 8px 28px rgba(110, 61, 252, 0.35);
}

.home-banner-wrap .banner-prev { left: 20px; }
.home-banner-wrap .banner-next { right: 20px; }

.home-banner-slider {
    aspect-ratio: 1718 / 915;
    border-radius: 24px;
    background: #f5f5f7;
    box-shadow:
        0 0 0 1px rgba(0, 0, 0, 0.05),
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 32px 80px rgba(110, 61, 252, 0.06);
}

.home-banner-slider .banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.home-banner-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.home-banner-controls .banner-dot {
    background: rgba(0, 0, 0, 0.15);
}

.home-banner-controls .banner-dot:hover {
    background: rgba(0, 0, 0, 0.3);
}

.home-banner-controls .banner-dot.active {
    background: var(--purple);
}

.home-banner-controls .banner-counter {
    font-size: 0.6875rem;
    padding-left: 4px;
    border-left: 1px solid var(--border);
    margin-left: 4px;
    padding-left: 12px;
}

.home-banner-slider .banner-progress {
    z-index: 6;
    height: 4px;
}

.home-features {
    padding: 0 0 48px;
}

.home-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--purple);
    margin-bottom: 12px;
}

.home-eyebrow--light {
    color: rgba(255, 255, 255, 0.85);
}

.home-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.home-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.home-feature-card:hover {
    border-color: rgba(110, 61, 252, 0.25);
    box-shadow: 0 8px 24px rgba(110, 61, 252, 0.08);
}

.home-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(110, 61, 252, 0.1);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-feature-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.home-feature-card p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.45;
}

.home-categories {
    padding-bottom: 56px;
}

.home-categories .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 16px;
}

.home-cat-card {
    display: flex;
    flex-direction: column;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    text-decoration: none;
    color: var(--text);
    transition: all var(--transition);
    min-height: 140px;
}

.home-cat-card:hover {
    border-color: var(--purple);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(110, 61, 252, 0.1);
}

.home-cat-card--primary {
    background: linear-gradient(135deg, var(--purple) 0%, #8b5cf6 100%);
    border-color: transparent;
    color: #fff;
}

.home-cat-card--primary:hover {
    border-color: transparent;
    box-shadow: 0 16px 40px rgba(110, 61, 252, 0.35);
}

.home-cat-card--primary .home-cat-label,
.home-cat-card--primary .home-cat-link {
    color: rgba(255, 255, 255, 0.8);
}

.home-cat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.home-cat-card strong {
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: auto;
    padding-bottom: 12px;
}

.home-cat-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--purple);
}

.home-section {
    padding: 72px 0;
}

.home-section--alt {
    background: linear-gradient(180deg, var(--bg) 0%, #faf8ff 100%);
}

.home-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.home-section-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.home-section-head p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.home-view-all {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--purple);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity var(--transition);
}

.home-view-all:hover {
    opacity: 0.8;
}

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.home-product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}

.home-product-card:hover {
    border-color: rgba(110, 61, 252, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.home-product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    padding: 24px;
    background: linear-gradient(180deg, #faf8ff 0%, #fff 100%);
    position: relative;
}

.home-product-image img {
    max-height: 140px;
    object-fit: contain;
    transition: transform var(--transition);
}

.home-product-card:hover .home-product-image img {
    transform: scale(1.06);
}

.home-product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--purple);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-product-badge--hot {
    background: #fef3c7;
    color: #92400e;
}

.home-product-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.home-product-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    margin-bottom: 6px;
    line-height: 1.35;
    transition: color var(--transition);
}

.home-product-name:hover {
    color: var(--purple);
}

.home-product-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-product-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.home-product-meta .stars .star.filled {
    color: var(--purple);
}

.home-product-meta span {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.home-product-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.home-product-price {
    font-size: 1.125rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.home-product-btn {
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(110, 61, 252, 0.08);
    color: var(--purple);
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition);
}

.home-product-btn:hover {
    background: var(--purple);
    color: #fff;
}

.home-spotlight {
    padding: 48px 0;
}

.home-spotlight-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    background: linear-gradient(135deg, #1a1033 0%, #2d1b69 45%, #6d28d9 100%);
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: 0 24px 64px rgba(110, 61, 252, 0.25);
}

.home-spotlight-content {
    padding: 48px 56px;
    color: #fff;
}

.home-spotlight-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.home-spotlight-content > p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 440px;
}

.home-spotlight-list {
    list-style: none;
    margin-bottom: 28px;
}

.home-spotlight-list li {
    position: relative;
    padding-left: 22px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.home-spotlight-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a78bfa;
}

.btn-primary--light {
    background: #fff;
    color: var(--purple);
}

.btn-primary--light:hover {
    background: #f5f3ff;
    color: var(--purple);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.home-spotlight-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 420px;
    position: relative;
    padding: 40px;
}

.home-spotlight-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(167, 139, 250, 0.5), transparent 70%);
}

.home-spotlight-visual img {
    position: relative;
    z-index: 1;
    max-height: 380px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 20px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
    filter: none;
}

.home-accessories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.home-acc-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    color: var(--text);
    transition: all var(--transition);
}

.home-acc-card:hover {
    border-color: rgba(110, 61, 252, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.home-acc-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
    background: #faf8ff;
    border-radius: 12px;
    padding: 8px;
}

.home-acc-card strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.home-acc-card span {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--purple);
}

.home-cta {
    padding: 48px 0;
}

.home-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 40px 48px;
    background: linear-gradient(135deg, rgba(110, 61, 252, 0.08) 0%, rgba(110, 61, 252, 0.02) 100%);
    border: 1px solid rgba(110, 61, 252, 0.15);
    border-radius: 20px;
}

.home-cta-inner h2 {
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.home-cta-inner p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.home-newsletter {
    padding: 48px 0 80px;
}

.home-newsletter-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px 32px;
    align-items: center;
    padding: 40px 48px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.home-newsletter-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(110, 61, 252, 0.1);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-newsletter-text h2 {
    font-size: 1.375rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.home-newsletter-text p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.home-newsletter-form {
    display: flex;
    gap: 10px;
    min-width: 320px;
}

.home-newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.9375rem;
    outline: none;
    min-width: 0;
}

.home-newsletter-form input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px var(--purple-glow);
}

.home-newsletter-form .btn-primary {
    flex-shrink: 0;
    white-space: nowrap;
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
    padding: calc(var(--header-total) + 24px) 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== Product Page ===== */
.product-page {
    padding-bottom: 0;
}

.pd-hero {
    background: linear-gradient(180deg, #faf8ff 0%, var(--bg) 100%);
    padding-bottom: 48px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: calc(var(--header-total) + 8px) 0 28px;
    font-size: 0.8125rem;
}

.breadcrumbs a {
    color: var(--text-secondary);
}

.breadcrumbs a:hover {
    color: var(--purple);
}

.breadcrumbs .sep {
    color: var(--text-muted);
}

.breadcrumbs .current {
    color: var(--text);
    font-weight: 500;
}

.pd-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: start;
}

.pd-gallery {
    position: sticky;
    top: calc(var(--header-total) + 12px);
}

.pd-main-image {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 56px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 440px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(110, 61, 252, 0.06);
}

.pd-main-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(110, 61, 252, 0.08), transparent 60%);
}

.pd-main-image img {
    position: relative;
    max-height: 360px;
    width: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.pd-badge {
    position: absolute;
    z-index: 2;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pd-badge-new {
    top: 16px;
    left: 16px;
    background: var(--purple);
    color: #fff;
}

.pd-badge-hot {
    top: 16px;
    right: 16px;
    background: #fef3c7;
    color: #92400e;
}

.pd-thumbs-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.pd-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    padding: 4px 0;
    scrollbar-width: none;
}

.pd-thumbs::-webkit-scrollbar {
    display: none;
}

.pd-thumb {
    flex-shrink: 0;
    width: 76px;
    height: 76px;
    border-radius: 12px;
    border: 2px solid var(--border);
    background: #fff;
    padding: 10px;
    cursor: pointer;
    transition: all var(--transition);
    overflow: hidden;
}

.pd-thumb.active,
.pd-thumb:hover {
    border-color: var(--purple);
    box-shadow: 0 0 0 1px var(--purple);
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pd-thumb-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-light);
    background: #fff;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: all var(--transition);
}

.pd-thumb-nav:hover {
    border-color: var(--purple);
    color: var(--purple);
}

.pd-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.pd-badge-pill {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-secondary);
}

.pd-badge-pill--brand {
    background: rgba(110, 61, 252, 0.08);
    border-color: rgba(110, 61, 252, 0.15);
    color: var(--purple);
    text-transform: capitalize;
}

.pd-title {
    font-size: clamp(1.75rem, 3vw, 2.375rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    margin-bottom: 10px;
}

.pd-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 520px;
}

.pd-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.pd-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pd-rating .stars {
    display: flex;
    gap: 2px;
}

.pd-rating .star.filled {
    color: var(--purple);
}

.pd-rating span,
.pd-reviews-count {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pd-meta-sep {
    color: var(--text-muted);
}

.pd-price-block {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.pd-price {
    font-size: 2.125rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 6px;
}

.pd-shipping-note {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #059669;
    font-weight: 500;
    margin: 0;
}

.pd-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.pd-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.pd-trust-chip svg {
    color: var(--purple);
    flex-shrink: 0;
}

.pd-feature-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.pd-feature-icon {
    text-align: center;
    padding: 16px 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.pd-feature-icon:hover {
    border-color: rgba(110, 61, 252, 0.25);
    box-shadow: 0 4px 12px rgba(110, 61, 252, 0.06);
}

.pd-fi-icon {
    color: var(--purple);
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.pd-feature-icon span {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.3;
    display: block;
}

.pd-buy-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.pd-colors {
    margin-bottom: 18px;
}

.pd-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.pd-label strong {
    color: var(--text);
}

.pd-color-swatches {
    display: flex;
    gap: 10px;
}

.pd-color-swatch {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

.pd-color-swatch.active {
    border-color: var(--purple);
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px var(--purple);
}

.pd-stock {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.pd-in-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #059669;
    font-size: 0.875rem;
    font-weight: 600;
}

.pd-out-stock {
    color: #dc2626;
    font-size: 0.875rem;
    font-weight: 600;
}

.pd-ships {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.pd-actions {
    margin-bottom: 20px;
}

.pd-action-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-add-cart {
    flex: 1;
    min-width: 160px;
    justify-content: center;
    padding: 16px 24px;
}

.btn-buy-now {
    flex: 1;
    min-width: 120px;
    padding: 16px 24px;
}

.pd-wishlist {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition);
    flex-shrink: 0;
    cursor: pointer;
}

.pd-wishlist:hover,
.pd-wishlist.active {
    border-color: #ef4444;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.08);
}

.pd-wishlist.active svg {
    fill: #ef4444;
}

.pd-secure {
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.pd-secure > span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pd-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pd-tabs-section {
    padding: 48px 0;
    background: var(--bg);
}

.pd-tabs-wrap {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.pd-tabs-nav {
    display: flex;
    gap: 0;
    overflow-x: auto;
    border-bottom: 1px solid var(--border);
    background: #fafafa;
    scrollbar-width: none;
}

.pd-tabs-nav::-webkit-scrollbar {
    display: none;
}

.pd-tab {
    padding: 16px 22px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    border: none;
    background: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: color var(--transition), background var(--transition);
}

.pd-tab:hover {
    color: var(--text);
    background: rgba(110, 61, 252, 0.04);
}

.pd-tab.active {
    color: var(--purple);
    background: #fff;
}

.pd-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--purple);
}

.pd-tab-panel {
    display: none;
    padding: 32px;
    animation: tabFade 0.35s ease;
}

.pd-tab-panel.active {
    display: block;
}

@keyframes tabFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.pd-overview-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 28px;
}

.pd-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
}

.pd-highlight {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.pd-highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(110, 61, 252, 0.1);
    color: var(--purple);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pd-highlight strong {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.pd-highlight span {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.pd-feature-icons-lg {
    max-width: 640px;
    margin-bottom: 24px;
}

.pd-box-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
}

.pd-box-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.9375rem;
}

.pd-box-list li svg {
    color: var(--purple);
    flex-shrink: 0;
}

.pd-specs-table {
    width: 100%;
    max-width: 640px;
    border-collapse: collapse;
}

.pd-specs-table tr {
    border-bottom: 1px solid var(--border);
}

.pd-specs-table th,
.pd-specs-table td {
    padding: 14px 0;
    text-align: left;
    font-size: 0.9375rem;
}

.pd-specs-table th {
    color: var(--text-secondary);
    font-weight: 500;
    width: 40%;
}

.pd-reviews-summary {
    margin-bottom: 28px;
    padding: 24px;
    background: var(--bg);
    border-radius: 14px;
    border: 1px solid var(--border);
}

.pd-reviews-score {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pd-reviews-score .score {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--purple);
}

.pd-reviews-score .stars.lg svg {
    width: 20px;
    height: 20px;
}

.pd-reviews-score .stars.lg .star.filled {
    color: var(--purple);
}

.pd-reviews-score > div > span:last-child {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 4px;
}

.pd-review-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.pd-review-card {
    padding: 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
}

.pd-review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    gap: 12px;
}

.pd-reviewer {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
}

.pd-review-city {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.pd-review-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.pd-bundle {
    padding: 48px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #faf8ff 100%);
}

.pd-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
}

.pd-bundle-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.pd-bundle-products {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.pd-bundle-item {
    text-align: center;
    width: 120px;
}

.pd-bundle-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 8px;
    background: var(--bg);
    border-radius: 12px;
    padding: 8px;
}

.pd-bundle-name {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.pd-bundle-price {
    font-size: 0.8125rem;
    color: var(--purple-light);
    font-weight: 700;
}

.pd-bundle-plus {
    font-size: 1.5rem;
    color: var(--text-muted);
    font-weight: 300;
}

.pd-bundle-summary {
    min-width: 220px;
    text-align: center;
}

.pd-bundle-total {
    margin-bottom: 8px;
}

.pd-bundle-total .label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.pd-bundle-total .price {
    font-size: 1.75rem;
    font-weight: 800;
}

.pd-bundle-save {
    margin-bottom: 16px;
}

.pd-bundle-save .original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-right: 8px;
}

.pd-bundle-save .save {
    color: #059669;
    font-size: 0.8125rem;
    font-weight: 600;
}

.pd-bundle-btn {
    width: 100%;
    justify-content: center;
}

.pd-related {
    padding: 48px 0;
    background: var(--bg);
}

.pd-trust-bar {
    border-top: 1px solid var(--border);
}

.pd-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: #fff;
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.08);
    padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.pd-sticky-bar.visible {
    transform: translateY(0);
}

.pd-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.pd-sticky-info {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.pd-sticky-info img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    background: var(--bg);
    border-radius: 10px;
    padding: 4px;
    flex-shrink: 0;
}

.pd-sticky-info strong {
    display: block;
    font-size: 0.875rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pd-sticky-info span {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--purple);
}

.pd-sticky-form {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.pd-sticky-form .btn-primary,
.pd-sticky-form .btn-outline {
    padding: 12px 18px;
    font-size: 0.875rem;
    white-space: nowrap;
}

@media (min-width: 769px) {
    .pd-sticky-bar {
        display: none;
    }
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.125rem;
    transition: background var(--transition);
}

.qty-btn:hover {
    background: var(--border);
}

.qty-input {
    width: 48px;
    height: 44px;
    text-align: center;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 0.9375rem;
    font-weight: 600;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

.product-features-list {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    list-style: none;
}

.product-features-list li svg {
    color: var(--purple);
    flex-shrink: 0;
}

/* ===== Cart Page ===== */
.cart-section {
    padding: 40px 0 80px;
}

.cart-empty {
    text-align: center;
    padding: 80px 0;
}

.cart-empty h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cart-empty p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border);
}

.cart-table td {
    padding: 20px 16px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-product img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    padding: 8px;
}

.cart-product-name {
    font-weight: 600;
}

.remove-btn {
    color: var(--text-muted);
    font-size: 0.8125rem;
    transition: color var(--transition);
}

.remove-btn:hover {
    color: #ef4444;
}

.cart-summary {
    margin-top: 32px;
    display: flex;
    justify-content: flex-end;
}

.cart-summary-box {
    width: 100%;
    max-width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
}

.checkout-btn {
    width: 100%;
    margin-top: 20px;
    justify-content: center;
}

.form-error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid #ef4444;
    color: #dc2626;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.875rem;
}

.checkout-section {
    padding: 0 0 80px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.checkout-form-wrap,
.checkout-summary {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.checkout-form-wrap h2,
.checkout-summary h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.checkout-form .checkout-submit {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
}

.checkout-items {
    margin-bottom: 20px;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.checkout-item:last-child {
    border-bottom: none;
}

.checkout-item img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 6px;
}

.checkout-item-info {
    flex: 1;
    min-width: 0;
}

.checkout-item-info strong {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 2px;
}

.checkout-item-info span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.checkout-item-price {
    font-size: 0.875rem;
    font-weight: 700;
    white-space: nowrap;
}

.checkout-back {
    display: inline-block;
    margin-top: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--purple);
}

.checkout-back:hover {
    text-decoration: underline;
}

.order-success-section {
    padding: 0 0 80px;
}

.order-success-card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
}

.order-success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.order-success-card h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.order-number {
    font-size: 1rem;
    margin-bottom: 12px;
}

.order-success-msg {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.order-success-msg a {
    color: var(--purple);
    font-weight: 600;
}

.order-success-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    text-align: left;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--bg);
    border-radius: var(--radius);
}

.order-success-details h3 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.order-success-details p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.order-success-items {
    text-align: left;
    margin-bottom: 32px;
}

.order-success-items h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.order-success-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.order-success-actions .btn-primary,
.order-success-actions .btn-outline {
    min-width: 180px;
    justify-content: center;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9375rem;
}

.cart-summary-row.total {
    border-top: 1px solid var(--border);
    margin-top: 12px;
    padding-top: 16px;
    font-size: 1.125rem;
    font-weight: 700;
}

/* ===== About Page ===== */
.about-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.about-hero {
    padding: calc(var(--header-total) + 32px) 0 80px;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-hero-content h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
}

.about-hero-content p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
    max-width: 520px;
}

.about-hero-content .btn-primary {
    margin-top: 12px;
}

.about-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.about-hero-orb {
    position: absolute;
    width: min(380px, 85%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110, 61, 252, 0.18) 0%, rgba(110, 61, 252, 0.04) 70%, transparent 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.about-hero-pedestal {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 24px;
    background: linear-gradient(180deg, #e8e8ed 0%, #d1d1d6 100%);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.about-hero-visual img {
    position: relative;
    z-index: 2;
    max-height: 320px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
}

.about-mission {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-mission-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    aspect-ratio: 4 / 3;
}

.about-mission-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-mission-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-mission-content > p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 32px;
    max-width: 520px;
}

.about-mission-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 24px;
}

.about-mission-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-mission-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(110, 61, 252, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    flex-shrink: 0;
    background: rgba(110, 61, 252, 0.06);
}

.about-mission-feature strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: var(--text);
}

.about-mission-feature span {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.about-values {
    padding: 80px 0;
}

.about-section-head {
    text-align: center;
    margin-bottom: 48px;
}

.about-section-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition);
}

.about-value-card:hover {
    border-color: rgba(110, 61, 252, 0.25);
    box-shadow: 0 8px 32px rgba(110, 61, 252, 0.08);
    transform: translateY(-4px);
}

.about-value-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(110, 61, 252, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    margin: 0 auto 20px;
    background: rgba(110, 61, 252, 0.06);
}

.about-value-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-value-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-journey {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.about-journey-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 56px;
    align-items: start;
}

.about-journey-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-journey-content p {
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 400px;
}

.about-timeline {
    display: flex;
    gap: 0;
    padding-top: 8px;
}

.about-timeline-item {
    flex: 1;
    min-width: 0;
}

.about-timeline-marker {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.about-timeline-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--purple);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px var(--purple-glow);
}

.about-timeline-line {
    flex: 1;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--border-light) 0,
        var(--border-light) 6px,
        transparent 6px,
        transparent 12px
    );
    margin: 0 8px;
    min-width: 12px;
}

.about-timeline-body strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text);
}

.about-timeline-body span {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.45;
    padding-right: 12px;
}

.about-newsletter {
    border-top: none;
}

/* ===== Contact Page ===== */
.contact-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 16px;
}

.contact-hero {
    padding: calc(var(--header-total) + 32px) 0 64px;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.contact-hero-content h1 {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.contact-hero-content p {
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 480px;
}

.contact-hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.contact-hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(110, 61, 252, 0.12) 1.5px, transparent 1.5px);
    background-size: 22px 22px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    z-index: 0;
}

.contact-hero-orb {
    position: absolute;
    width: min(360px, 80%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(110, 61, 252, 0.2) 0%, rgba(110, 61, 252, 0.04) 70%, transparent 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.contact-hero-pedestal {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 22px;
    background: linear-gradient(180deg, #e8e8ed 0%, #d1d1d6 100%);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

.contact-hero-visual img {
    position: relative;
    z-index: 3;
    max-height: 300px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.contact-main {
    padding-bottom: 80px;
}

.contact-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.06);
}

.contact-form-wrap h2,
.contact-info-wrap h2 {
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.contact-form-desc,
.contact-info-desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.5;
}

.contact-form {
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.label-optional {
    font-weight: 400;
    color: var(--text-muted);
}

.contact-submit {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(110, 61, 252, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    flex-shrink: 0;
}

.contact-method-title {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.contact-method-value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 2px;
    transition: opacity var(--transition);
}

a.contact-method-value:hover {
    opacity: 0.8;
}

.contact-method-note {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.contact-faq {
    padding: 80px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.contact-faq-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
}

.contact-faq-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.contact-faq-head p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item.open {
    border-color: rgba(110, 61, 252, 0.25);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform var(--transition);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--purple);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 18px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ===== Info Pages (Footer links) ===== */
.info-hero {
    padding: calc(var(--header-total) + 32px) 0 40px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.info-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--purple);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
}

.info-hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

.info-hero p {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.info-body {
    padding: 56px 0 80px;
}

.info-body--faq {
    padding-top: 0;
}

.info-content {
    max-width: 760px;
    margin: 0 auto;
}

.info-content--narrow {
    max-width: 640px;
}

.info-block {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.info-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-block h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.info-block p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 12px;
}

.info-block p:last-child {
    margin-bottom: 0;
}

.info-block a {
    color: var(--purple);
    font-weight: 600;
}

.info-block a:hover {
    text-decoration: underline;
}

.info-list {
    margin: 12px 0 0;
    padding-left: 0;
    list-style: none;
}

.info-list li {
    position: relative;
    padding: 10px 0 10px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--border);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--purple);
    opacity: 0.6;
}

.info-help {
    text-align: center;
    margin-top: 32px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.info-help a {
    color: var(--purple);
    font-weight: 600;
}

.contact-faq-grid--page {
    max-width: 900px;
    margin: 0 auto;
}

.contact-faq-head a {
    color: var(--purple);
    font-weight: 600;
}

.track-order-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.track-order-form .track-submit {
    width: 100%;
    justify-content: center;
}

.track-result {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.track-result-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.track-status-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(110, 61, 252, 0.1);
    color: var(--purple);
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 50px;
}

.track-order-id {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.track-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.track-step {
    display: flex;
    gap: 16px;
    padding-bottom: 24px;
    position: relative;
}

.track-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 28px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.track-step.done:not(:last-child)::before,
.track-step.active:not(:last-child)::before {
    background: var(--purple);
    opacity: 0.3;
}

.track-step-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg-card);
    flex-shrink: 0;
    margin-top: 2px;
}

.track-step.done .track-step-dot,
.track-step.active .track-step-dot {
    border-color: var(--purple);
    background: var(--purple);
    box-shadow: 0 0 0 4px rgba(110, 61, 252, 0.15);
}

.track-step strong {
    display: block;
    font-size: 0.9375rem;
    margin-bottom: 2px;
}

.track-step span {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.track-note {
    margin-top: 20px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-style: italic;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.9375rem;
    outline: none;
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 3px var(--purple-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid var(--purple);
    color: var(--purple-light);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    text-align: center;
}

/* ===== Footer (Dark) ===== */
.footer {
    background: #0a0a0a;
    color: #ffffff;
    padding: 64px 0 28px;
    margin-top: auto;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    display: inline-block;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: #a1a1a6;
    font-size: 0.875rem;
    margin-top: 14px;
    max-width: 320px;
    line-height: 1.65;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a1a1a6;
    transition: all var(--transition);
}

.footer-social a:hover {
    border-color: var(--purple);
    color: #ffffff;
    background: rgba(110, 61, 252, 0.2);
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.footer-links a {
    display: block;
    font-size: 0.8125rem;
    color: #a1a1a6;
    padding: 5px 0;
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--purple-light);
}

.footer-links a.active {
    color: #8B5CF6;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8125rem;
    color: #a1a1a6;
    padding: 6px 0;
    line-height: 1.5;
    transition: color var(--transition);
}

a.footer-contact-item:hover {
    color: #ffffff;
}

.footer-contact-item--static {
    color: #a1a1a6;
}

.footer-contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(110, 61, 252, 0.15);
    color: #8B5CF6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: #6e6e73;
}

.payment-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #a1a1a6;
    background: rgba(255, 255, 255, 0.04);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--purple);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    box-shadow: 0 4px 20px var(--purple-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--purple-light);
    transform: translateY(-2px);
}

/* ===== Toast Notification ===== */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--bg-card);
    border: 1px solid var(--purple);
    color: var(--text);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 3000;
    transform: translateY(100px);
    opacity: 0;
    transition: all var(--transition);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .banner-prev { left: 4px; }
    .banner-next { right: 4px; }

    .banner-arrow {
        opacity: 1;
    }

    .products-grid,
    .bestsellers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-card {
        flex-direction: column;
        text-align: center;
    }

    .collection-card .product-card-body {
        text-align: center;
    }

    .collection-card .product-card-image {
        width: 100%;
        height: 160px;
    }

    .featured-banner-inner {
        grid-template-columns: 1fr;
    }

    .featured-banner-content {
        padding: 32px;
        text-align: center;
    }

    .featured-banner-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .featured-banner-visual {
        min-height: 260px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .feature-item {
        border-right: none;
        padding: 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-journey-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 36px;
    }

    .home-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-categories .container {
        grid-template-columns: 1fr 1fr;
    }

    .home-cat-card--primary {
        grid-column: 1 / -1;
    }

    .home-products-grid,
    .home-accessories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-spotlight-inner {
        grid-template-columns: 1fr;
    }

    .home-spotlight-content {
        padding: 36px 32px;
        text-align: center;
    }

    .home-spotlight-content > p,
    .home-spotlight-list {
        margin-left: auto;
        margin-right: auto;
    }

    .home-spotlight-list {
        display: inline-block;
        text-align: left;
    }

    .home-spotlight-visual {
        min-height: 280px;
        padding: 24px;
    }

    .home-newsletter-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 24px;
    }

    .home-newsletter-icon {
        margin: 0 auto;
    }

    .home-newsletter-form {
        min-width: 0;
        width: 100%;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .site-header {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .search-overlay {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .search-modal {
        padding: 0 16px;
    }

    .search-modal input {
        font-size: 1rem;
        padding: 14px 44px 14px 16px;
    }

    .search-close {
        right: 24px;
    }

    .banner-section {
        padding: 12px 0 20px;
    }

    .banner-section .banner-wrap {
        padding: 0;
    }

    .banner-slider {
        border-radius: 12px;
    }

    .banner-arrow {
        opacity: 1;
        width: 36px;
        height: 36px;
    }

    .banner-arrow svg {
        width: 18px;
        height: 18px;
    }

    .banner-prev { left: 6px; }
    .banner-next { right: 6px; }

    .banner-controls {
        margin-top: 12px;
        gap: 12px;
    }

    .banner-dot {
        width: 7px;
        height: 7px;
    }

    .banner-dot.active {
        width: 22px;
    }

    .home-hero {
        padding: 12px 0 20px;
    }

    .home-banner-slider {
        border-radius: 16px;
    }

    .home-banner-wrap .home-banner-arrow {
        width: 40px;
        height: 40px;
    }

    .home-banner-wrap .banner-prev { left: 10px; }
    .home-banner-wrap .banner-next { right: 10px; }

    .home-banner-controls {
        bottom: 12px;
        padding: 8px 14px;
        gap: 12px;
    }

    .home-features {
        padding-bottom: 32px;
    }

    .home-features-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .home-categories .container {
        grid-template-columns: 1fr;
    }

    .home-cat-card {
        min-height: auto;
        padding: 22px 20px;
    }

    .home-section {
        padding: 48px 0;
    }

    .home-section-head {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 28px;
    }

    .home-products-grid,
    .home-accessories-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-product-image {
        height: 180px;
    }

    .home-spotlight {
        padding: 32px 0;
    }

    .home-spotlight-inner {
        border-radius: 16px;
    }

    .home-spotlight-content {
        padding: 28px 24px;
    }

    .home-spotlight-actions .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .home-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
    }

    .home-cta-inner .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .home-newsletter {
        padding: 32px 0 56px;
    }

    .features-bar {
        padding: 24px 0;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 16px 10px;
        border-right: none;
        border-bottom: none;
        border: 1px solid var(--border);
        border-radius: var(--radius-sm);
        background: var(--bg-card);
    }

    .feature-icon {
        width: 42px;
        height: 42px;
    }

    .feature-text h3 {
        font-size: 0.8125rem;
    }

    .feature-text p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-header p {
        font-size: 0.9375rem;
    }

    .products-section,
    .bestsellers-section {
        padding: 48px 0;
    }

    .products-grid,
    .bestsellers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-card {
        padding: 20px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
    }

    .collection-card {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding: 16px;
        gap: 14px;
    }

    .collection-card .product-card-body {
        text-align: left;
    }

    .collection-card .product-card-image {
        width: 88px;
        height: 88px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .collection-card .product-card-image img {
        max-height: 72px;
    }

    .collection-card .product-card-name {
        font-size: 0.9375rem;
    }

    .collection-card .product-card-desc {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
    }

    .bs-card-image {
        height: 200px;
    }

    .bs-card-body {
        padding: 18px;
    }

    .bs-add-btn {
        min-height: 48px;
    }

    .featured-banner {
        padding: 24px 0;
    }

    .featured-banner-inner {
        display: flex;
        flex-direction: column;
        min-height: auto;
        gap: 0;
    }

    .featured-banner-visual {
        order: -1;
        min-height: 200px;
        padding: 24px;
    }

    .featured-banner-visual img {
        max-height: 180px;
    }

    .featured-banner-content {
        padding: 24px 20px 28px;
        text-align: center;
    }

    .featured-banner-content p {
        margin-left: auto;
        margin-right: auto;
        font-size: 0.9375rem;
    }

    .featured-banner-content .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .newsletter-section {
        padding: 48px 0;
    }

    .newsletter-inner h2 {
        font-size: 1.375rem;
    }

    .newsletter-inner > p {
        font-size: 0.9375rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form .btn-primary {
        width: 100%;
        min-height: 48px;
    }

    .newsletter-form .btn-primary {
        justify-content: center;
    }

    .page-hero {
        padding: calc(var(--header-total) + 16px) 0 32px;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .page-hero p {
        font-size: 0.9375rem;
    }

    .contact-form {
        padding: 0;
    }

    .contact-hero {
        padding: calc(var(--header-total) + 20px) 0 40px;
    }

    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-hero-visual {
        order: -1;
        min-height: 280px;
    }

    .contact-hero-visual img {
        max-height: 220px;
    }

    .contact-hero-content p {
        max-width: none;
    }

    .contact-main {
        padding-bottom: 48px;
    }

    .contact-card {
        padding: 24px 20px;
        gap: 36px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-faq {
        padding: 48px 0;
    }

    .contact-faq-head {
        margin-bottom: 32px;
    }

    .info-hero {
        padding: calc(var(--header-total) + 20px) 0 32px;
    }

    .info-hero h1 {
        font-size: 1.75rem;
    }

    .info-body {
        padding: 40px 0 56px;
    }

    .info-block {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }

    .track-order-card {
        padding: 24px 20px;
    }

    .contact-faq-grid--page {
        grid-template-columns: 1fr;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .checkout-form-wrap,
    .checkout-summary {
        padding: 24px 20px;
    }

    .order-success-details {
        grid-template-columns: 1fr;
    }

    .order-success-card {
        padding: 28px 20px;
    }

    .pd-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-hero {
        padding: calc(var(--header-total) + 20px) 0 48px;
    }

    .about-hero-grid,
    .about-mission-grid,
    .about-journey-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-hero-visual {
        order: -1;
        min-height: 300px;
    }

    .about-hero-visual img {
        max-height: 240px;
    }

    .about-hero-content p {
        max-width: none;
    }

    .about-hero-content .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .about-mission,
    .about-values,
    .about-journey {
        padding: 48px 0;
    }

    .about-mission-content > p {
        max-width: none;
    }

    .about-mission-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-value-card {
        padding: 24px 20px;
    }

    .about-journey-content p {
        max-width: none;
    }

    .about-timeline {
        flex-direction: column;
        gap: 0;
        padding-top: 0;
    }

    .about-timeline-item {
        display: flex;
        gap: 16px;
        padding-bottom: 24px;
    }

    .about-timeline-item:last-child {
        padding-bottom: 0;
    }

    .about-timeline-marker {
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
        width: 44px;
        flex-shrink: 0;
    }

    .about-timeline-line {
        flex: 1;
        width: 2px;
        height: auto;
        min-height: 24px;
        min-width: 0;
        margin: 8px 0;
        background: repeating-linear-gradient(
            180deg,
            var(--border-light) 0,
            var(--border-light) 6px,
            transparent 6px,
            transparent 12px
        );
    }

    .about-timeline-body {
        padding-top: 10px;
    }

    .about-timeline-body span {
        padding-right: 0;
    }

    .pd-gallery {
        position: static;
    }

    .pd-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pd-main-image {
        min-height: 280px;
        padding: 32px 24px;
        border-radius: 16px;
    }

    .pd-main-image img {
        max-height: 240px;
    }

    .pd-title {
        font-size: 1.5rem;
    }

    .pd-price {
        font-size: 1.625rem;
    }

    .pd-trust-row {
        gap: 6px;
    }

    .pd-trust-chip {
        font-size: 0.6875rem;
        padding: 6px 10px;
    }

    .pd-feature-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .pd-feature-icon {
        padding: 12px 6px;
    }

    .pd-buy-card {
        padding: 20px;
        border-radius: 16px;
    }

    .pd-action-row {
        flex-direction: column;
    }

    .btn-add-cart,
    .btn-buy-now {
        width: 100%;
        min-height: 48px;
    }

    .pd-wishlist {
        width: 100%;
        border-radius: var(--radius-sm);
        height: 48px;
    }

    .pd-tabs-section {
        padding: 32px 0;
    }

    .pd-tab-panel {
        padding: 20px;
    }

    .pd-tab {
        padding: 12px 16px;
        font-size: 0.8125rem;
    }

    .pd-highlights {
        grid-template-columns: 1fr;
    }

    .pd-bundle-inner {
        flex-direction: column;
        padding: 20px;
    }

    .pd-sticky-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .pd-sticky-form {
        width: 100%;
    }

    .pd-sticky-form .btn-primary,
    .pd-sticky-form .btn-outline {
        flex: 1;
    }

    .product-page {
        padding-bottom: 20px;
    }

    .breadcrumbs {
        padding-top: calc(var(--header-total) + 4px);
        font-size: 0.75rem;
    }

    .cart-section {
        padding: 24px 0 48px;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tbody {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .cart-table tr {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 0;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 16px;
    }

    .cart-table td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        border: none;
        padding: 0;
    }

    .cart-table td:first-child {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-table td[data-label]:not([data-label=""])::before {
        content: attr(data-label);
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--text-secondary);
        text-transform: uppercase;
        letter-spacing: 0.04em;
        flex-shrink: 0;
    }

    .cart-table td[data-label=""] {
        justify-content: flex-end;
        padding-top: 4px;
        border-top: 1px solid var(--border);
    }

    .cart-product {
        width: 100%;
    }

    .cart-product img {
        width: 72px;
        height: 72px;
    }

    .cart-summary {
        margin-top: 24px;
        justify-content: stretch;
    }

    .cart-summary-box {
        max-width: none;
    }

    .footer {
        padding: 40px 0 calc(24px + env(safe-area-inset-bottom));
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand p {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .payment-icons {
        justify-content: center;
    }

    .back-to-top {
        bottom: calc(16px + env(safe-area-inset-bottom));
        right: calc(16px + env(safe-area-inset-right));
        width: 42px;
        height: 42px;
    }

    .toast {
        left: 16px;
        right: 16px;
        bottom: calc(16px + env(safe-area-inset-bottom));
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }


    .header-actions .icon-btn {
        width: 38px;
        height: 38px;
    }

    .banner-section {
        padding: 8px 0 16px;
    }

    .banner-slider {
        border-radius: 10px;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .feature-item {
        padding: 14px 8px;
    }

    .feature-icon {
        width: 38px;
        height: 38px;
    }

    .feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-header h2 {
        font-size: 1.375rem;
    }

    .product-card {
        padding: 18px;
    }

    .collection-card .product-card-image {
        width: 76px;
        height: 76px;
    }

    .bs-card-image {
        height: 180px;
    }

    .featured-banner-content h2 {
        font-size: 1.375rem;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

    .btn-primary {
        padding: 13px 22px;
        font-size: 0.875rem;
    }
}
