/* ============================================================
   GildedNoir Store - CSS
   Black & Gold luxury aesthetic
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --gold: #C9A84C;
    --gold-light: #E8D48B;
    --gold-dark: #A68A3E;
    --black: #0A0A0A;
    --black-soft: #141414;
    --black-card: #1A1A1A;
    --black-hover: #222222;
    --white: #F5F0E8;
    --white-dim: #B8B0A0;
    --danger: #C94C4C;
    --success: #4CC96E;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* ---- NAVIGATION ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 64px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 3px;
}

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

.nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white-dim);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-cart {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-badge {
    background: var(--gold);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 600;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ---- MAIN CONTENT ---- */
#app {
    min-height: calc(100vh - 64px);
    padding-top: 64px;
}

/* ---- LOADING ---- */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(201, 168, 76, 0.15);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---- SHOP PAGE ---- */
.shop-header {
    text-align: center;
    padding: 60px 24px 20px;
    position: relative;
}

.shop-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.shop-badge {
    display: inline-block;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 8px 24px;
    margin-bottom: 24px;
    font-weight: 500;
}

.shop-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.shop-title .gold { color: var(--gold); }

.shop-subtitle {
    color: var(--white-dim);
    font-size: 1rem;
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 32px 24px 40px;
    flex-wrap: wrap;
}

.category-btn {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 24px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    background: transparent;
    color: var(--white-dim);
    cursor: pointer;
    transition: all 0.25s;
    font-weight: 400;
}

.category-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.category-btn.active {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    font-weight: 600;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.product-card {
    background: var(--black-card);
    cursor: pointer;
    transition: background 0.3s;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover {
    background: var(--black-hover);
}

.product-card:hover .product-image {
    transform: scale(1.02);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-soft);
    transition: transform 0.4s ease;
    overflow: hidden;
    position: relative;
}

.product-image svg {
    width: 60%;
    height: 60%;
    opacity: 0.85;
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--black-card), transparent);
    pointer-events: none;
}

.product-featured-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 4px 12px;
    font-weight: 600;
    z-index: 2;
}

.product-info {
    padding: 20px 24px 24px;
}

.product-category {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 500;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--white-dim);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold);
}

.product-compare-price {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: line-through;
}

/* ---- PRODUCT DETAIL PAGE ---- */
.product-detail {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.product-detail-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white-dim);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 40px;
    transition: color 0.2s;
}

.product-detail-back:hover {
    color: var(--gold);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-card);
    border: 1px solid rgba(201, 168, 76, 0.08);
    position: relative;
}

.product-detail-image svg {
    width: 55%;
    height: 55%;
    opacity: 0.9;
}

.product-detail-image .product-featured-tag {
    top: 20px;
    left: 20px;
}

.product-detail-category {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 500;
}

.product-detail-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.product-detail-price-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 8px;
}

.product-detail-price {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.product-detail-compare {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.25);
    text-decoration: line-through;
}

.product-detail-savings {
    font-size: 0.8rem;
    color: var(--success);
    margin-bottom: 28px;
    font-weight: 500;
}

.product-detail-desc {
    font-size: 1rem;
    color: var(--white-dim);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 36px;
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding-top: 24px;
}

.product-detail-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 36px;
}

.product-detail-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--white-dim);
    font-weight: 300;
}

.product-detail-feature .check {
    color: var(--gold);
    font-size: 1rem;
}

/* Quantity Selector */
.quantity-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.quantity-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-dim);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    font-family: 'DM Sans', sans-serif;
}

.quantity-btn:hover {
    background: rgba(201, 168, 76, 0.1);
}

.quantity-value {
    width: 50px;
    text-align: center;
    font-size: 1rem;
    font-weight: 500;
    border-left: 1px solid rgba(201, 168, 76, 0.2);
    border-right: 1px solid rgba(201, 168, 76, 0.2);
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add to Cart Button */
.btn-add-to-cart {
    width: 100%;
    padding: 16px 32px;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 16px;
}

.btn-add-to-cart:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.btn-add-to-cart:active {
    transform: translateY(0);
}

.btn-add-to-cart.added {
    background: var(--success);
    color: white;
}

.free-shipping-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--white-dim);
    font-weight: 300;
}

/* ---- CART PAGE ---- */
.cart-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.cart-header {
    text-align: center;
    margin-bottom: 48px;
}

.cart-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 8px;
}

.cart-title .gold { color: var(--gold); }

.cart-count {
    color: var(--white-dim);
    font-size: 0.9rem;
    font-weight: 300;
}

.cart-empty {
    text-align: center;
    padding: 80px 24px;
}

.cart-empty-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.cart-empty h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.cart-empty p {
    color: var(--white-dim);
    font-weight: 300;
    margin-bottom: 32px;
}

.btn-continue-shopping {
    display: inline-block;
    padding: 14px 36px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-continue-shopping:hover {
    background: var(--gold);
    color: var(--black);
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 40px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 20px;
    align-items: center;
    background: var(--black-card);
    padding: 20px;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--black-soft);
}

.cart-item-image svg {
    width: 55%;
    height: 55%;
    opacity: 0.8;
}

.cart-item-info {
    min-width: 0;
}

.cart-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item-category {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.cart-item-price {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-weight: 600;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.cart-item-quantity .quantity-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
}

.cart-item-quantity .quantity-value {
    width: 40px;
    height: 32px;
    font-size: 0.9rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 8px;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: var(--danger);
}

/* Cart Summary */
.cart-summary {
    background: var(--black-card);
    padding: 32px;
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 0.95rem;
}

.cart-summary-row.label {
    color: var(--white-dim);
    font-weight: 300;
}

.cart-summary-row.total {
    border-top: 1px solid rgba(201, 168, 76, 0.15);
    margin-top: 8px;
    padding-top: 16px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
}

.cart-summary-row.total .amount {
    color: var(--gold);
}

.cart-free-shipping {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gold);
    margin: 16px 0;
    font-weight: 400;
}

.cart-shipping-progress {
    height: 3px;
    background: rgba(201, 168, 76, 0.15);
    margin-bottom: 20px;
    overflow: hidden;
}

.cart-shipping-progress-bar {
    height: 100%;
    background: var(--gold);
    transition: width 0.3s;
}

.btn-checkout {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-checkout:hover {
    background: var(--gold-light);
}

.cart-actions {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

/* ---- CHECKOUT PAGE ---- */
.checkout-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

.checkout-header {
    text-align: center;
    margin-bottom: 48px;
}

.checkout-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
}

.checkout-title .gold { color: var(--gold); }

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

.checkout-form-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white-dim);
    margin-bottom: 8px;
    font-weight: 400;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--black-card);
    border: 1px solid rgba(201, 168, 76, 0.15);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    outline: none;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.form-input:focus {
    border-color: var(--gold);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row-3 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
}

/* Checkout Order Summary */
.checkout-summary {
    background: var(--black-card);
    padding: 32px;
    border: 1px solid rgba(201, 168, 76, 0.1);
    position: sticky;
    top: 88px;
}

.checkout-summary h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.9rem;
}

.checkout-item-name {
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkout-item-qty {
    font-size: 0.75rem;
    color: var(--white-dim);
    background: rgba(201, 168, 76, 0.1);
    padding: 2px 8px;
    font-weight: 500;
}

.checkout-item-price {
    color: var(--gold);
    font-weight: 500;
}

.btn-place-order {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--gold);
    color: var(--black);
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 24px;
}

.btn-place-order:hover {
    background: var(--gold-light);
}

.btn-place-order:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.checkout-error {
    color: var(--danger);
    font-size: 0.85rem;
    margin-top: 12px;
    text-align: center;
}

/* ---- ORDER CONFIRMATION ---- */
.order-page {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    text-align: center;
}

.order-check {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.8rem;
    color: var(--gold);
}

.order-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.order-title .gold { color: var(--gold); }

.order-subtitle {
    color: var(--white-dim);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.6;
}

.order-number-display {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 40px;
    padding: 16px 32px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    display: inline-block;
}

.order-details {
    background: var(--black-card);
    padding: 32px;
    text-align: left;
    margin-bottom: 40px;
    border: 1px solid rgba(201, 168, 76, 0.08);
}

.order-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.order-detail-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
}

.order-detail-item .name {
    color: var(--white-dim);
    font-weight: 300;
}

.order-detail-item .value {
    font-weight: 500;
}

/* ---- FOOTER ---- */
.store-footer {
    padding: 60px 24px 40px;
    border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--gold-light);
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 24px;
}

.footer-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.footer-divider .diamond {
    width: 6px;
    height: 6px;
    background: var(--gold);
    transform: rotate(45deg);
}

.footer-divider .dash {
    width: 40px;
    height: 1px;
    background: rgba(201, 168, 76, 0.2);
    margin: 0 16px;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
}

/* ---- NOTIFICATION TOAST ---- */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--black-card);
    border: 1px solid var(--gold);
    padding: 16px 24px;
    font-size: 0.9rem;
    color: var(--white);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-icon {
    color: var(--gold);
    font-size: 1.1rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

    .checkout-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 12px;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
    }

    .cart-item-quantity,
    .cart-item-remove {
        grid-column: 2;
    }

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

@media (max-width: 480px) {
    .nav {
        padding: 0 16px;
        height: 56px;
    }

    #app {
        padding-top: 56px;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        padding: 0 0 60px;
    }

    .product-info {
        padding: 12px 14px 16px;
    }

    .product-name {
        font-size: 0.95rem;
    }

    .product-desc {
        display: none;
    }

    .category-filter {
        padding: 20px 16px 28px;
        gap: 6px;
    }

    .category-btn {
        padding: 8px 16px;
        font-size: 0.7rem;
    }
}
