/* =================== HOME PAGE =================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    padding-top: var(--nav-height);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 70% 50%, rgba(124, 58, 237, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(6, 182, 212, 0.15) 0%, transparent 60%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    width: 100%;
}

.hero-text {
    animation: fadeInUp 0.8s ease;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-full);
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-light);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.hero-title .gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

.stat-item h3 {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-visual-inner {
    position: relative;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    backdrop-filter: var(--glass-blur);
}

.hero-product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition-base);
}

.showcase-card:hover {
    transform: translateY(-4px);
}

.showcase-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.showcase-card-info {
    padding: var(--space-sm) var(--space-md);
}

.showcase-card-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.showcase-card-price {
    font-size: 0.9rem;
    color: var(--primary-light);
    font-weight: 700;
}

/* Badge floating */
.hero-badge {
    position: absolute;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.hero-badge-1 {
    top: -20px;
    right: 20px;
    animation-delay: 0.5s;
}

.hero-badge-2 {
    bottom: 0px;
    left: -20px;
    animation-delay: 1s;
}

.hero-badge .badge-icon {
    font-size: 1.2rem;
}

/* =================== CATEGORIES =================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: var(--space-md);
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xl) var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
}

.category-card:hover {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.08);
    transform: translateY(-4px);
}

.category-card.active {
    background: rgba(124, 58, 237, 0.15);
    border-color: var(--primary);
}

.category-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: var(--gradient-primary);
    margin-bottom: 4px;
}

.category-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
}

.category-count {
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* =================== PROMO BANNER =================== */
.promo-grid {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: var(--space-lg);
}

.promo-card {
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-3xl);
    position: relative;
    overflow: hidden;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.promo-card.primary {
    background: var(--gradient-primary);
}

.promo-card.secondary {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    border: 1px solid var(--border);
}

.promo-card .promo-bg {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    opacity: 0.1;
}

.promo-card .promo-tag {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: var(--space-sm);
    opacity: 0.8;
}

.promo-card h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: var(--space-sm);
}

.promo-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: var(--space-lg);
}

.promo-card .countdown {
    display: flex;
    gap: var(--space-md);
}

.countdown-item {
    text-align: center;
}

.countdown-num {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.countdown-label {
    font-size: 0.65rem;
    opacity: 0.7;
    text-transform: uppercase;
}

/* =================== PRODUCTS PAGE =================== */
.products-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: var(--space-xl);
    padding-top: calc(var(--nav-height) + var(--space-xl));
    min-height: 100vh;
}

.filter-sidebar {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    height: fit-content;
    position: sticky;
    top: calc(var(--nav-height) + var(--space-md));
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
}

.clear-filters {
    font-size: 0.82rem;
    color: var(--primary-light);
    cursor: pointer;
    font-weight: 600;
}

.clear-filters:hover {
    color: var(--primary);
}

.products-main {}

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    gap: var(--space-md);
    flex-wrap: wrap;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.results-text {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.sort-select {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px 12px;
    color: var(--text-primary);
    font-size: 0.9rem;
    cursor: pointer;
    min-width: 160px;
}

.sort-select option {
    background: #1a1a2e;
    color: var(--text-primary);
}

.view-toggle {
    display: flex;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.view-btn {
    padding: 8px 12px;
    background: var(--bg-card);
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.view-btn.active {
    background: var(--primary);
    color: white;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--space-md);
}

.active-filter {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--primary-light);
}

.active-filter button {
    background: none;
    border: none;
    color: var(--primary-light);
    cursor: pointer;
    font-size: 0.8rem;
    padding: 0 0 0 4px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: var(--space-lg);
}

.products-grid.list-view {
    grid-template-columns: 1fr;
}

.products-grid.list-view .product-card {
    flex-direction: row;
}

.products-grid.list-view .product-card .card-image {
    width: 200px;
    aspect-ratio: auto;
    flex-shrink: 0;
}

.products-grid.list-view .product-card .card-body {
    padding: var(--space-xl);
}

/* =================== PRODUCT DETAIL =================== */
.product-detail-section {
    padding-top: calc(var(--nav-height) + var(--space-2xl));
    padding-bottom: var(--space-3xl);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.product-gallery {}

.gallery-main {
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    margin-bottom: var(--space-md);
    position: relative;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-main:hover img {
    transform: scale(1.03);
}

.gallery-zoom-btn {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: rgba(10, 10, 15, 0.8);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.gallery-zoom-btn:hover {
    color: var(--text-primary);
}

.gallery-thumbs {
    display: flex;
    gap: var(--space-sm);
}

.thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border);
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--transition-fast);
    flex-shrink: 0;
}

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

.thumb.active {
    border-color: var(--primary);
}

.thumb:hover {
    border-color: var(--primary-light);
}

.product-info {}

.product-category-tag {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-sm);
}

.product-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: var(--space-md);
}

.product-rating-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.review-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.in-stock {
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 600;
}

.out-stock {
    font-size: 0.85rem;
    color: var(--danger);
    font-weight: 600;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border);
}

.product-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.product-original-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.discount-badge {
    font-size: 0.85rem;
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-weight: 700;
}

.product-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.product-options {
    margin-bottom: var(--space-xl);
}

.option-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.color-options {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color var(--transition-fast);
    position: relative;
}

.color-swatch.active {
    border-color: var(--text-primary);
    box-shadow: 0 0 0 2px var(--bg-primary);
}

.size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-btn {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    color: var(--text-secondary);
}

.size-btn:hover,
.size-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.size-btn.unavailable {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration: line-through;
}

.product-actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    align-items: center;
}

.product-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.product-qty .qty-btn {
    width: 44px;
    height: 50px;
    background: var(--bg-card);
    border: none;
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.product-qty .qty-btn:hover {
    background: var(--primary);
    color: white;
}

.product-qty input {
    width: 56px;
    background: transparent;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    text-align: center;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    padding: 0;
    height: 50px;
}

.wishlist-btn {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.wishlist-btn:hover,
.wishlist-btn.active {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-item .icon {
    color: var(--success);
}

/* Product Tabs */
.product-tabs-section {
    margin-top: var(--space-3xl);
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: var(--space-xl);
    gap: 0;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    margin-bottom: -1px;
}

.tab-btn.active {
    color: var(--primary-light);
    border-bottom-color: var(--primary);
}

.tab-btn:hover {
    color: var(--text-primary);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Reviews */
.review-item {
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
}

.review-meta {
    flex: 1;
}

.reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* =================== CART PAGE =================== */
.cart-page-section {
    padding-top: calc(var(--nav-height) + var(--space-2xl));
    padding-bottom: var(--space-3xl);
    min-height: 100vh;
}

.cart-page-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-xl);
    align-items: start;
}

.cart-page-items {}

.cart-page-item {
    display: flex;
    gap: var(--space-lg);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    transition: border-color var(--transition-fast);
}

.cart-page-item:hover {
    border-color: var(--border-hover);
}

.cart-page-img {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    object-fit: cover;
    background: var(--bg-tertiary);
    flex-shrink: 0;
}

.cart-page-info {
    flex: 1;
}

.cart-page-category {
    font-size: 0.78rem;
    color: var(--primary-light);
    font-weight: 600;
    text-transform: uppercase;
}

.cart-page-name {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 4px 0 8px;
}

.cart-page-variant {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.cart-page-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-md);
}

.order-summary-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: sticky;
    top: calc(var(--nav-height) + var(--space-md));
}

.order-summary-card h3 {
    margin-bottom: var(--space-lg);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.summary-row:last-of-type {
    border: none;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: var(--space-md) 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.coupon-form {
    display: flex;
    gap: 8px;
    margin: var(--space-md) 0;
}

.coupon-form input {
    flex: 1;
}

/* =================== CHECKOUT PAGE =================== */
.checkout-section {
    padding-top: calc(var(--nav-height) + var(--space-2xl));
    padding-bottom: var(--space-3xl);
    min-height: 100vh;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-xl);
    align-items: start;
}

.checkout-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: var(--space-2xl);
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
}

.step.active {
    color: var(--primary-light);
}

.step.active .step-num {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.step.done .step-num {
    background: var(--success);
    border-color: transparent;
    color: white;
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 12px;
    transition: background 0.4s ease;
}

.step.complete .step-num {
    background: var(--success);
    border-color: transparent;
    color: transparent;
    position: relative;
}

.step.complete .step-num::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.85rem;
}

.step.complete {
    color: var(--success);
}

.checkout-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.checkout-card h4 {
    margin-bottom: var(--space-lg);
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.order-review-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: sticky;
    top: calc(var(--nav-height) + var(--space-md));
}

.order-item-mini {
    display: flex;
    gap: var(--space-md);
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
}

.order-item-mini:last-child {
    border: none;
}

.order-item-img {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--bg-tertiary);
    flex-shrink: 0;
}

.order-item-details {
    flex: 1;
}

.order-item-name {
    font-size: 0.85rem;
    font-weight: 600;
}

.order-item-qty {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.order-item-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-light);
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.payment-method {
    padding: var(--space-md);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: 0.82rem;
    font-weight: 600;
}

.payment-method.active {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary-light);
}

.payment-method:hover {
    border-color: var(--primary-light);
}

.payment-method .pm-icon {
    font-size: 1.4rem;
    margin-bottom: 4px;
}

/* =================== SUCCESS =================== */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--nav-height);
}

.success-icon {
    font-size: 5rem;
    animation: float 2s ease-in-out infinite;
}

.success-card {
    max-width: 520px;
    padding: var(--space-3xl);
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
}

.order-number {
    font-family: monospace;
    background: var(--bg-card);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--primary-light);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

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

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

    .products-layout {
        grid-template-columns: 1fr;
    }

    .filter-sidebar {
        position: static;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .cart-page-grid,
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: var(--space-2xl) 0;
    }

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

    .hero-stats {
        gap: var(--space-xl);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}