/* File: styles.css */
/* Section: Typography Imports */
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700&family=Orbitron:wght@500;700;800&display=swap");

/* File: styles.css */
/* Section: Theme Variables */
:root {
    --bg: #050711;
    --bg-soft: #0b1020;
    --panel: rgba(14, 19, 35, 0.72);
    --panel-strong: rgba(12, 16, 31, 0.88);
    --line: rgba(255, 255, 255, 0.1);
    --text: #f5f8ff;
    --muted: #a8b1c8;
    --primary: #8858ff;
    --primary-strong: #6433ff;
    --secondary: #27d2ff;
    --success: #6af0a8;
    --danger: #ff7ba6;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    --glow: 0 0 0 1px rgba(136, 88, 255, 0.12), 0 0 40px rgba(39, 210, 255, 0.16);
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
    --container: min(1240px, calc(100% - 32px));
}

/* File: styles.css */
/* Section: Base Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Space Grotesk", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 15% 15%, rgba(136, 88, 255, 0.22), transparent 26%),
        radial-gradient(circle at 85% 12%, rgba(39, 210, 255, 0.2), transparent 24%),
        radial-gradient(circle at 55% 85%, rgba(136, 88, 255, 0.1), transparent 28%),
        linear-gradient(180deg, #050711 0%, #070b16 40%, #05060c 100%);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

/* File: styles.css */
/* Section: Shared Layout */
.container {
    width: var(--container);
    margin-inline: auto;
}

.section {
    padding: 36px 0 84px;
}

.page-hero {
    padding-top: 62px;
    padding-bottom: 22px;
}

.page-hero h1,
.hero-copy h1,
.section-header h2,
.product-info-card h2,
.summary-card h2 {
    margin: 0;
    font-family: "Orbitron", sans-serif;
    line-height: 1.05;
}

.page-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    max-width: 920px;
}

.page-copy,
.muted-text,
.testimonial-card span,
.team-card span,
.asset-card-copy span,
.mini-note,
.summary-line span,
.payment-card span {
    color: var(--muted);
    line-height: 1.75;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 800px;
}

.compact-header {
    margin-bottom: 18px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

/* File: styles.css */
/* Section: Glass Panels and Badges */
.glass-card,
.payment-card,
.review-card,
.mini-info-card {
    background: linear-gradient(180deg, rgba(18, 24, 44, 0.78), rgba(9, 13, 24, 0.7));
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.card-label,
.tag-chip,
.product-badge,
.review-chip,
.discount-chip,
.cart-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}

.card-label,
.tag-chip,
.review-chip,
.discount-chip {
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-badge {
    padding: 8px 14px;
    background: linear-gradient(135deg, rgba(136, 88, 255, 0.88), rgba(39, 210, 255, 0.88));
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.tag-chip {
    color: var(--secondary);
}

.review-chip,
.discount-chip,
.card-label {
    color: var(--muted);
}

.cart-pill {
    min-width: 26px;
    height: 26px;
    padding: 0 7px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.84rem;
}

/* File: styles.css */
/* Section: Header and Navigation */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(5, 7, 17, 0.76);
    backdrop-filter: blur(18px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Orbitron", sans-serif;
    letter-spacing: 0.08em;
}

.brand-mark {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 0 16px rgba(136, 88, 255, 0.8);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--muted);
    transition: color 0.22s ease, text-shadow 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
    text-shadow: 0 0 20px rgba(39, 210, 255, 0.44);
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 10px 16px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

/* File: styles.css */
/* Section: Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    padding: 14px 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.01em;
    cursor: pointer;
    isolation: isolate;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

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

.btn:disabled {
    opacity: 0.48;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn:disabled::before {
    display: none;
}

.btn::before {
    content: "";
    position: absolute;
    inset: -20% auto -20% -35%;
    width: 42%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    transform: skewX(-22deg) translateX(-220%);
    transition: transform 0.72s ease;
    pointer-events: none;
}

.btn:hover::before {
    transform: skewX(-22deg) translateX(430%);
}

.btn-primary {
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, var(--primary), var(--primary-strong) 48%, var(--secondary));
    box-shadow:
        0 16px 44px rgba(100, 51, 255, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        0 12px 30px rgba(5, 8, 18, 0.22);
}

.btn-ghost {
    padding: 0;
    background: transparent;
    color: var(--muted);
}

.btn-small {
    padding: 11px 16px;
    font-size: 0.92rem;
}

.btn-full {
    width: 100%;
}

.btn-glow {
    box-shadow:
        0 0 0 1px rgba(136, 88, 255, 0.18),
        0 0 20px rgba(136, 88, 255, 0.3),
        0 0 40px rgba(39, 210, 255, 0.18);
}

.btn.is-added {
    animation: buttonPop 0.78s cubic-bezier(0.2, 0.9, 0.22, 1);
}

/* File: styles.css */
/* Section: Hero Layout */
.hero-grid,
.shop-shell,
.product-shell,
.contact-shell,
.cart-shell,
.about-grid,
.info-grid,
.footer-grid,
.product-grid,
.category-grid,
.value-grid,
.testimonial-grid,
.team-grid,
.story-gallery {
    display: grid;
    gap: 20px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    align-items: center;
    gap: 34px;
}

.hero-copy h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
    margin-bottom: 20px;
}

.hero-copy p {
    margin: 0;
    max-width: 640px;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.85;
}

.button-row,
.price-row,
.review-meta,
.badge-row,
.product-actions,
.toolbar-controls,
.price-filter-head,
.filter-header,
.coupon-row,
.quantity-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.button-row {
    margin: 28px 0 30px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.stat-card,
.category-card,
.value-card,
.testimonial-card,
.about-card,
.team-card,
.contact-card,
.map-card,
.form-card,
.summary-card,
.cart-list-card,
.product-gallery-card,
.product-info-card,
.toolbar-card,
.filter-panel,
.promo-banner,
.info-card {
    padding: 24px;
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.6rem;
}

.hero-visual {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stage {
    position: relative;
    width: min(100%, 560px);
    min-height: 540px;
    padding: 28px;
    overflow: hidden;
}

.hero-product-image {
    position: relative;
    z-index: 2;
    width: 100%;
    max-height: 470px;
    object-fit: contain;
    transform: rotate(-8deg);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.46));
    animation: heroFloat 6s ease-in-out infinite;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
}

.glow-orb-left {
    inset: 18% auto auto 6%;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(136, 88, 255, 0.7), transparent 70%);
}

.glow-orb-right {
    inset: auto 2% 10% auto;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(39, 210, 255, 0.58), transparent 70%);
}

.hero-floating-card {
    position: absolute;
    left: 0;
    bottom: 28px;
    z-index: 3;
    width: min(320px, 85%);
    padding: 24px;
}

.hero-floating-card h2 {
    margin: 10px 0 12px;
}

/* File: styles.css */
/* Section: Product Cards and Collections */
.product-grid,
.category-grid,
.value-grid,
.testimonial-grid,
.team-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-card {
    position: relative;
    overflow: hidden;
}

.product-card::after,
.product-info-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 50%, rgba(39, 210, 255, 0.18), transparent 58%);
    opacity: 0;
    transform: scale(0.92);
    pointer-events: none;
}

.product-card h3 {
    margin: 16px 0 10px;
}

.product-image-wrap {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        radial-gradient(circle at 20% 20%, rgba(136, 88, 255, 0.18), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    overflow: hidden;
}

.product-image-wrap img,
.zoom-frame img,
.team-card img,
.asset-card img,
.cart-item-image img {
    width: 88%;
    height: 88%;
    object-fit: contain;
    transition: transform 0.28s ease;
}

.product-card:hover .product-image-wrap img,
.zoom-frame:hover img,
.asset-card:hover img,
.team-card:hover img {
    transform: translateY(-8px) rotate(-5deg) scale(1.04);
}

.product-card.is-added-pop,
.product-info-card.is-added-pop {
    animation: cardPop 0.86s cubic-bezier(0.2, 0.9, 0.22, 1);
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.42),
        0 0 0 1px rgba(39, 210, 255, 0.22),
        0 0 32px rgba(39, 210, 255, 0.14);
}

.product-card.is-added-pop::after,
.product-info-card.is-added-pop::after {
    animation: premiumFlash 0.86s ease;
}

.product-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.old-price {
    color: rgba(168, 177, 200, 0.82);
    text-decoration: line-through;
}

.product-actions {
    justify-content: space-between;
    margin-top: 18px;
}

.asset-gallery,
.story-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.asset-card {
    padding: 14px;
    border-radius: var(--radius-lg);
}

.asset-card img {
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.asset-card-copy {
    display: grid;
    gap: 6px;
    margin-top: 12px;
}

.category-card,
.value-card,
.testimonial-card,
.about-card,
.contact-card,
.review-card,
.mini-info-card,
.info-card {
    border-radius: var(--radius-xl);
}

.category-index {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 0.85rem;
    letter-spacing: 0.18em;
}

.testimonial-card p {
    margin-top: 0;
    color: var(--text);
    line-height: 1.8;
}

/* File: styles.css */
/* Section: Shop Page */
.shop-stack {
    display: grid;
    gap: 20px;
}

.shop-shell {
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
}

.filter-panel,
.summary-card {
    position: sticky;
    top: 96px;
}

.field-group {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.field-group label {
    font-weight: 600;
}

.input-field,
.range-field,
.sort-select {
    width: 100%;
}

.input-field {
    padding: 14px 16px;
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    outline: none;
}

.input-field:focus {
    border-color: rgba(39, 210, 255, 0.55);
    box-shadow: 0 0 0 4px rgba(39, 210, 255, 0.12);
}

select.input-field {
    color: var(--text);
    background-color: rgba(255, 255, 255, 0.04);
}

select.input-field option,
select.input-field optgroup {
    color: #0b1020;
    background-color: #f5f8ff;
}

.textarea-field {
    min-height: 150px;
    resize: vertical;
}

.range-field {
    accent-color: var(--secondary);
}

.toolbar-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.toolbar-label {
    color: var(--muted);
}

.mini-note {
    font-size: 0.92rem;
}

/* File: styles.css */
/* Section: Product Detail Page */
.product-shell {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    align-items: start;
}

.product-gallery-card,
.product-info-card {
    height: 100%;
}

.product-info-card {
    position: relative;
    overflow: hidden;
}

.zoom-frame {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    padding: 18px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        radial-gradient(circle at 20% 20%, rgba(136, 88, 255, 0.18), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.thumb-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.thumb-button {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.thumb-button.active {
    border-color: rgba(39, 210, 255, 0.62);
    box-shadow: var(--glow);
}

.thumb-button img {
    width: 100%;
    height: 80px;
    object-fit: contain;
}

.product-info-card h2 {
    margin: 18px 0 12px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.price-block {
    display: grid;
    gap: 14px;
    margin: 24px 0 18px;
}

.price-row strong {
    font-size: 1.9rem;
}

.selector-block {
    margin: 24px 0;
}

.selector-block h3 {
    margin: 0 0 14px;
}

.size-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.size-chip {
    min-width: 58px;
    padding: 12px 16px;
    color: var(--muted);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.size-chip:hover,
.qty-button:hover,
.thumb-button:hover {
    transform: translateY(-2px);
}

.size-chip.active {
    color: white;
    border-color: rgba(39, 210, 255, 0.56);
    background: linear-gradient(135deg, rgba(136, 88, 255, 0.22), rgba(39, 210, 255, 0.14));
}

.button-stack {
    display: grid;
    gap: 12px;
}

.meta-grid,
.review-grid,
.info-grid {
    display: grid;
    gap: 18px;
}

.meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
}

.mini-info-card {
    padding: 18px;
    border-radius: var(--radius-lg);
}

.mini-info-card h4 {
    margin: 0 0 10px;
}

.info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.spec-list {
    margin: 14px 0 0;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.9;
}

.review-card {
    padding: 16px;
    border-radius: var(--radius-lg);
}

/* File: styles.css */
/* Section: About Page */
.about-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-card {
    overflow: hidden;
}

.team-card img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    border-radius: 20px;
    background:
        radial-gradient(circle at 20% 20%, rgba(136, 88, 255, 0.18), transparent 30%),
        rgba(255, 255, 255, 0.03);
}

.team-card h3 {
    margin-bottom: 6px;
}

/* File: styles.css */
/* Section: Contact Page */
.contact-shell {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 14px;
}

.contact-select-light {
    color: #0b1020;
    font-weight: 600;
    background: #f5f8ff;
    border-color: rgba(39, 210, 255, 0.35);
}

.contact-select-light:focus {
    border-color: rgba(39, 210, 255, 0.7);
    box-shadow: 0 0 0 4px rgba(39, 210, 255, 0.14);
}

.contact-select-light option {
    color: #0b1020;
    background: #ffffff;
}

.contact-side {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.map-card {
    min-height: 270px;
    display: grid;
    align-content: end;
}

.map-lines {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.map-lines span {
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(136, 88, 255, 0.55), rgba(39, 210, 255, 0.2));
}

/* File: styles.css */
/* Section: Cart Page */
.checkout-page-stack {
    display: grid;
    gap: 24px;
}

.cart-shell {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
}

.delivery-form-card,
.delivery-success-card {
    padding: 28px;
}

.delivery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.delivery-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 10px;
}

.delivery-note {
    margin-bottom: 0;
    color: var(--muted);
}

.cart-list,
.summary-lines,
.payment-grid {
    display: grid;
    gap: 14px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item-image {
    display: grid;
    place-items: center;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
}

.cart-item-image img {
    width: 82%;
    height: 82%;
}

.cart-item-side {
    display: grid;
    justify-items: end;
    gap: 10px;
}

.qty-button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 12px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
}

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

.payment-card {
    position: relative;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

.payment-card input {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.payment-card span {
    display: block;
    padding: 16px 12px;
    text-align: center;
}

.payment-card input:checked + span {
    color: white;
    background: linear-gradient(135deg, rgba(136, 88, 255, 0.24), rgba(39, 210, 255, 0.18));
}

.confirmation-grid,
.ordered-items-list {
    display: grid;
    gap: 16px;
}

.confirmation-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 18px;
}

.confirmation-card {
    padding: 18px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.confirmation-card h3 {
    margin-bottom: 12px;
}

.ordered-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.ordered-item-row p {
    margin-bottom: 0;
}

.confirmation-totals {
    margin-top: 18px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.total-line {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.08rem;
}

/* File: styles.css */
/* Section: Newsletter and Footer */
.promo-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
}

.newsletter-form {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) auto;
    gap: 14px;
    width: min(100%, 520px);
}

.site-footer {
    padding: 18px 0 42px;
}

.footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    align-items: start;
}

.footer-links {
    display: grid;
    gap: 10px;
    color: var(--muted);
}

/* File: styles.css */
/* Section: Empty State and Toast */
.empty-card {
    display: grid;
    justify-items: start;
    gap: 10px;
    padding: 28px;
}

.toast-stack {
    position: fixed;
    top: 88px;
    right: 18px;
    z-index: 70;
    display: grid;
    gap: 10px;
}

.toast {
    min-width: 240px;
    padding: 14px 18px;
    border-radius: 18px;
    color: white;
    background: rgba(8, 11, 19, 0.94);
    border: 1px solid rgba(39, 210, 255, 0.3);
    box-shadow: var(--shadow);
}

/* File: styles.css */
/* Section: Reveal Animation */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes heroFloat {
    0%,
    100% {
        transform: rotate(-8deg) translateY(0);
    }
    50% {
        transform: rotate(-6deg) translateY(-14px);
    }
}

@keyframes buttonPop {
    0% {
        transform: scale(1);
    }
    30% {
        transform: scale(1.08);
    }
    55% {
        transform: scale(0.97);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes cardPop {
    0% {
        transform: scale(1);
    }
    35% {
        transform: scale(1.018);
    }
    60% {
        transform: scale(0.992);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes premiumFlash {
    0% {
        opacity: 0;
        transform: scale(0.92);
    }
    35% {
        opacity: 1;
        transform: scale(1.02);
    }
    100% {
        opacity: 0;
        transform: scale(1.08);
    }
}

@keyframes badgeBounce {
    0% {
        transform: scale(1);
    }
    35% {
        transform: scale(1.22);
    }
    65% {
        transform: scale(0.94);
    }
    100% {
        transform: scale(1);
    }
}

.cart-pill.bump {
    animation: badgeBounce 0.68s ease;
}

/* File: styles.css */
/* Section: Responsive Styles */
@media (max-width: 1120px) {
    .hero-grid,
    .shop-shell,
    .product-shell,
    .contact-shell,
    .cart-shell,
    .delivery-grid,
    .confirmation-grid,
    .about-grid,
    .info-grid,
    .footer-grid,
    .promo-banner {
        grid-template-columns: 1fr;
    }

    .filter-panel,
    .summary-card {
        position: static;
    }
}

@media (max-width: 820px) {
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
        border-radius: 22px;
        background: rgba(8, 11, 20, 0.94);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: var(--shadow);
    }

    .nav-links.is-open {
        display: flex;
    }

    .stat-grid,
    .form-grid,
    .meta-grid,
    .payment-grid,
    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .toolbar-card,
    .product-actions,
    .delivery-actions,
    .section-header {
        align-items: flex-start;
    }

    .delivery-actions {
        flex-direction: column;
        justify-content: flex-start;
    }
}

@media (max-width: 620px) {
    .hero-copy h1 {
        font-size: clamp(2.5rem, 11vw, 4rem);
    }

    .hero-visual {
        min-height: 380px;
    }

    .hero-stage {
        min-height: 360px;
    }

    .hero-floating-card {
        position: static;
        width: 100%;
        margin-top: 16px;
    }

    .thumb-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .cart-item-side {
        justify-items: start;
    }

    .ordered-item-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .asset-gallery,
    .story-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
