/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --bg: #faf9f7;
    --bg-alt: #ffffff;
    --gold: #c9a84c;
    --gold-hover: #b8943d;
    --gold-light: rgba(201, 168, 76, 0.08);
    --gold-lighter: rgba(201, 168, 76, 0.04);
    --text-primary: #1a1a1a;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --border: #e5e5e5;
    --border-light: #f0f0f0;
    --white: #ffffff;

    /* Semantic colors (keep for JS compatibility) */
    --primary: #c9a84c;
    --primary-dark: #b8943d;
    --success: #16a34a;
    --danger: #dc2626;
    --warning: #f59e0b;

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lora', serif;

    /* Spacing */
    --container-max: 1200px;
    --container-padding: 20px;
    --section-padding: 80px 0;

    /* Radius */
    --radius: 12px;
    --radius-sm: 8px;

    /* Border */
    --border-width: 1px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;

    /* Shadows (minimal) */
    --shadow-subtle: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-hover: 0 4px 12px rgba(0,0,0,0.06);
}

/* ===== Reset ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.7;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--gold-hover);
}

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

::selection {
    background: var(--gold);
    color: white;
}

/* ===== Container ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===== Header ===== */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    gap: 30px;
}

.logo img {
    height: 36px;
}

.header__nav {
    display: flex;
    gap: 32px;
}

.header__nav a {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
}

.header__nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.header__nav a:hover {
    color: var(--gold);
    text-decoration: none;
}

.header__nav a:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__phone {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.02em;
}

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

.cart-btn {
    position: relative;
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-btn:hover {
    transform: scale(1.05);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--gold);
    color: white;
    font-size: 10px;
    font-weight: 700;
    font-family: var(--font-heading);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== City Selector ===== */
.city-selector {
    position: relative;
}

.city-selector__btn {
    background: var(--gold-lighter);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 13px;
    font-family: var(--font-heading);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.city-selector__btn:hover {
    background: var(--gold-light);
    border-color: var(--gold);
    color: var(--gold);
}

.city-selector__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    max-height: 400px;
    overflow-y: auto;
    z-index: 200;
    margin-top: 6px;
}

.city-search {
    width: 100%;
    padding: 12px;
    border: none;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    font-family: var(--font-heading);
}

.city-search:focus {
    outline: none;
}

.city-region {
    padding: 10px;
    border-bottom: 1px solid var(--border-light);
}

.city-region h4 {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
    font-weight: 600;
}

.city-item {
    display: block;
    padding: 8px 12px;
    color: var(--text-primary);
    font-size: 14px;
    font-family: var(--font-heading);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.city-item:hover {
    background: var(--gold-light);
    text-decoration: none;
    color: var(--gold);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    transition: var(--transition);
    font-size: 14px;
    letter-spacing: 0.02em;
    text-decoration: none;
}

.btn--primary {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

.btn--primary:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.btn--success {
    background: var(--success);
    color: white;
    border-color: var(--success);
}

.btn--success:hover {
    background: #15803d;
    border-color: #15803d;
    transform: translateY(-1px);
}

.btn--danger {
    background: var(--danger);
    color: white;
    border-color: var(--danger);
}

.btn--outline {
    background: transparent;
    border-color: var(--gold);
    color: var(--gold);
}

.btn--outline:hover {
    background: var(--gold);
    color: white;
    transform: translateY(-1px);
}

.btn--large {
    padding: 16px 32px;
    font-size: 15px;
}

.btn--block {
    display: flex;
    width: 100%;
}

.btn--small {
    padding: 8px 16px;
    font-size: 12px;
}

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

/* ===== Hero ===== */
.hero {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-lighter) 0%, transparent 70%);
    pointer-events: none;
}

.hero__content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero__title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: 18px;
    margin-bottom: 36px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== Sections ===== */
.section__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    letter-spacing: -0.01em;
}

/* ===== Categories ===== */
.categories {
    padding: var(--section-padding);
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.category-card {
    background: var(--bg-alt);
    padding: 36px 28px;
    border-radius: var(--radius);
    text-align: center;
    border: var(--border-width) solid var(--border);
    transition: var(--transition);
    display: block;
}

.category-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
}

.category-card__icon {
    font-size: 44px;
    margin-bottom: 18px;
}

.category-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.category-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== Products Grid ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

/* ===== Product Card ===== */
.product-card {
    background: var(--bg-alt);
    border-radius: var(--radius);
    overflow: hidden;
    border: var(--border-width) solid var(--border);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--danger);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    z-index: 1;
}

.product-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.product-card__image {
    padding: 24px;
    text-align: center;
    background: var(--gold-lighter);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__image img {
    max-height: 180px;
    object-fit: contain;
    transition: var(--transition);
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__info {
    padding: 0 18px 18px;
}

.product-card__category {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
    font-weight: 600;
}

.product-card__name {
    font-size: 15px;
    font-weight: 600;
    margin: 10px 0;
    line-height: 1.4;
    min-height: 42px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-family: var(--font-heading);
}

.product-card__brand {
    font-size: 13px;
    color: var(--text-secondary);
    font-family: var(--font-heading);
}

.product-card__flavor {
    font-size: 13px;
    color: var(--gold);
    margin: 6px 0;
    font-weight: 500;
}

.product-card__spec {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 2px 0;
}

.product-card__price {
    margin: 14px 0 16px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.product-card__old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 14px;
    font-family: var(--font-heading);
}

.product-card__price-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.product-card__btn {
    width: 100%;
    padding: 11px;
    background: var(--gold);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
    font-size: 13px;
    letter-spacing: 0.02em;
}

.product-card__btn:hover {
    background: var(--gold-hover);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
    transform: translateY(-1px);
}

/* ===== Page Title ===== */
.page-title {
    font-size: 36px;
    font-weight: 700;
    margin: 40px 0;
    letter-spacing: -0.01em;
}

/* ===== Breadcrumbs ===== */
.breadcrumbs {
    padding: 20px 0;
}

.breadcrumbs ul {
    list-style: none;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.breadcrumbs li::after {
    content: '/';
    margin-left: 8px;
    color: var(--border);
}

.breadcrumbs li:last-child::after {
    display: none;
}

.breadcrumbs a {
    color: var(--text-secondary);
    font-size: 13px;
    font-family: var(--font-heading);
}

.breadcrumbs a:hover {
    color: var(--gold);
}

.breadcrumbs li:last-child a,
.breadcrumbs li:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

/* ===== Catalog ===== */
.catalog {
    padding: 40px 0 80px;
}

.catalog__layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
}

.catalog__filters {
    background: var(--bg-alt);
    padding: 24px;
    border-radius: var(--radius);
    border: var(--border-width) solid var(--border);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group h4 {
    font-size: 12px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
    font-weight: 600;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 14px;
    cursor: pointer;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.filter-label:hover {
    color: var(--gold);
}

.filter-label input[type="radio"],
.filter-label input[type="checkbox"] {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
}

.price-inputs {
    display: flex;
    gap: 10px;
}

.price-inputs input {
    width: 50%;
    padding: 10px 12px;
    border: var(--border-width) solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-heading);
    transition: var(--transition-fast);
}

.price-inputs input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-light);
}

.filter-select {
    width: 100%;
    padding: 10px 12px;
    border: var(--border-width) solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font-heading);
    background: var(--bg-alt);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-light);
}

.catalog__count {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 14px;
    font-family: var(--font-heading);
}

.no-products {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
    font-size: 16px;
}

/* ===== Product Detail ===== */
.product-page {
    padding: 40px 0 80px;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    background: var(--bg-alt);
    padding: 40px;
    border-radius: var(--radius);
    border: var(--border-width) solid var(--border);
}

.product-gallery__main img {
    max-width: 100%;
    border-radius: var(--radius);
}

.product-gallery__thumbs {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.product-gallery__thumbs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.product-gallery__thumbs img:hover,
.product-gallery__thumbs img.active {
    border-color: var(--gold);
}

.product-detail__name {
    font-size: 28px;
    margin: 12px 0 8px;
    font-weight: 700;
}

.product-detail__brand {
    color: var(--text-secondary);
    font-size: 16px;
    font-family: var(--font-heading);
}

.product-detail__price-block {
    margin: 28px 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.product-detail__old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 22px;
    font-family: var(--font-heading);
}

.product-detail__price {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.product-detail__specs {
    margin: 28px 0;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.spec-label {
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 14px;
}

.spec-value {
    font-weight: 600;
    font-family: var(--font-heading);
    font-size: 14px;
}

.product-detail__description {
    margin: 28px 0;
}

.product-detail__description h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.product-detail__description p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.product-detail__actions {
    display: flex;
    gap: 12px;
    margin: 28px 0;
}

.product-detail__warning {
    background: var(--gold-light);
    border: 1px solid var(--gold);
    padding: 16px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    margin-top: 28px;
    color: var(--text-primary);
    line-height: 1.6;
}

/* ===== Cart ===== */
.cart-page {
    padding: 40px 0 80px;
}

.cart {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: var(--border-width) solid var(--border);
    transition: var(--transition);
}

.cart-item:hover {
    border-color: var(--border);
    box-shadow: var(--shadow-subtle);
}

.cart-item__image img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.cart-item__name {
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 4px;
}

.cart-item__price {
    color: var(--text-secondary);
    font-size: 13px;
}

.cart-item__quantity {
    display: flex;
    align-items: center;
}

.qty-btn {
    width: 34px;
    height: 34px;
    border: var(--border-width) solid var(--border);
    background: var(--bg-alt);
    cursor: pointer;
    font-size: 18px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

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

.qty-value {
    margin: 0 12px;
    font-weight: 600;
    font-family: var(--font-heading);
    min-width: 30px;
    text-align: center;
}

.cart-item__subtotal {
    font-weight: 700;
    font-size: 16px;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.cart-item__remove {
    background: none;
    border: none;
    color: var(--danger);
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition-fast);
}

.cart-item__remove:hover {
    transform: scale(1.1);
}

.cart__summary {
    background: var(--bg-alt);
    padding: 24px;
    border-radius: var(--radius);
    border: var(--border-width) solid var(--border);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.cart-summary__total {
    font-size: 20px;
    font-weight: 700;
    border-top: 2px solid var(--border);
    margin-top: 10px;
    padding-top: 15px;
    font-family: var(--font-heading);
}

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

.cart-empty__icon {
    font-size: 64px;
    margin-bottom: 20px;
}

/* ===== Checkout ===== */
.checkout-page {
    padding: 40px 0 80px;
}

.checkout__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.checkout__summary,
.checkout__form {
    background: var(--bg-alt);
    padding: 28px;
    border-radius: var(--radius);
    border: var(--border-width) solid var(--border);
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.order-total {
    display: flex;
    justify-content: space-between;
    font-size: 22px;
    font-weight: 700;
    padding: 18px 0;
    font-family: var(--font-heading);
}

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

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    font-family: var(--font-heading);
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: var(--border-width) solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    font-family: var(--font-heading);
    background: var(--bg-alt);
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-light);
}

.checkout__warning {
    background: var(--gold-light);
    border: 1px solid var(--gold);
    padding: 16px 20px;
    border-radius: var(--radius);
    font-size: 14px;
    margin: 18px 0;
    line-height: 1.6;
}

.checkout__privacy {
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 18px;
}

.checkout-success {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    border: var(--border-width) solid var(--border);
}

.checkout-success__icon {
    font-size: 64px;
    margin-bottom: 20px;
}

/* ===== City Landing ===== */
.city-hero {
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
    padding: 60px 0;
    text-align: center;
}

.city-hero__title {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.city-hero__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

.city-hero__info {
    margin-top: 15px;
    font-size: 16px;
    color: var(--text-secondary);
}

.city-info__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.info-card {
    background: var(--bg-alt);
    padding: 28px;
    border-radius: var(--radius);
    border: var(--border-width) solid var(--border);
    transition: var(--transition);
}

.info-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}

.info-card h3 {
    margin-bottom: 10px;
    font-weight: 600;
}

.city-seo {
    padding: 40px 0;
    background: var(--bg-alt);
}

.city-seo p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ===== Advantages ===== */
.advantages {
    padding: var(--section-padding);
    background: var(--bg-alt);
}

.advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.advantage-item__icon {
    font-size: 48px;
    margin-bottom: 18px;
}

/* ===== Footer ===== */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 50px 0 25px;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer__col h4 {
    margin-bottom: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer__col ul {
    list-style: none;
}

.footer__col ul li {
    margin-bottom: 10px;
}

.footer__col a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.footer__col a:hover {
    color: var(--gold);
}

.footer__disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 18px;
    line-height: 1.6;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.footer__warning {
    margin-top: 12px;
    color: var(--gold);
    font-weight: 500;
}

/* ===== Alerts ===== */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.alert--success {
    background: var(--gold-light);
    border: 1px solid var(--gold);
    color: var(--text-primary);
}

.alert--error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}
