/* ========== ИМПОРТ ШРИФТОВ ========== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Noto+Sans:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&family=Noto+Serif:ital,wght@0,400;0,700;1,400&display=swap');

/* ========== ПЕРЕМЕННЫЕ ========== */
:root {
    --gold: #B8860B;
    --gold-light: #D4AF37;
    --jade: #2E4A3A;
    --jade-dark: #1A2B21;
    --cream: #FBF7F0;
    --stone: #E8E2D5;
    --dark: #1C1C1C;
    --text: #3A322C;
    --text-light: #7A7268;
    --shadow-lux: 0 20px 40px rgba(0,0,0,0.08);
    --border-premium: 1px solid rgba(184,134,11,0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    /* Шрифты */
    --font-heading: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
    --font-body: 'Noto Sans', 'Segoe UI', 'Helvetica Neue', sans-serif;
    --font-accent: 'Noto Serif', 'Georgia', 'Times New Roman', serif;
}

/* ========== БАЗОВЫЕ СТИЛИ ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: #FDFBF7;
    color: var(--text);
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.text-center {
    text-align: center;
    margin: 50px 0;
}

a {
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* ========== ШАПКА ========== */
.header-premium {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184,134,11,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-premium {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--dark);
    text-transform: uppercase;
    line-height: 1;
}

.logo-premium span {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    display: block;
    margin-top: -2px;
    color: var(--gold);
}

.header-actions-premium {
    display: flex;
    align-items: center;
    gap: 35px;
}

.search-premium {
    display: flex;
    align-items: center;
}

.search-premium input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding: 8px 0;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--text);
    width: 180px;
    outline: none;
    transition: var(--transition-smooth);
}

.search-premium input:focus {
    border-bottom-color: var(--gold);
    width: 220px;
}

.search-premium input::placeholder {
    color: var(--text-light);
    font-style: italic;
}

.search-premium button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
}

.icon-link {
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.icon-link:hover {
    color: var(--gold);
}

.cart-count {
    color: var(--gold);
    font-weight: 600;
}

/* ========== НАВИГАЦИЯ ========== */
.nav-premium {
    background: white;
    border-bottom: 1px solid var(--stone);
    padding: 8px 0;
}

.nav-list {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.nav-list a {
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 12px 0;
    position: relative;
    transition: var(--transition-smooth);
}

.nav-list a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--gold);
}

.nav-list a:hover::before,
.nav-list a.active::before {
    width: 100%;
}

.sale-link {
    color: #B85450 !important;
}

/* ========== ВИДЕО-БАННЕР ========== */
.hero-video {
    position: relative;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 80px;
    background: linear-gradient(135deg, var(--jade-dark), var(--jade));
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 2px 4px 15px rgba(0,0,0,0.4);
}

.subtitle {
    font-family: var(--font-accent);
    font-weight: 300;
    font-style: italic;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 45px;
    color: var(--cream);
    text-transform: none;
}

.hero-btn {
    display: inline-block;
    padding: 18px 55px;
    border: 1px solid var(--gold-light);
    color: white;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(5px);
}

.hero-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    box-shadow: 0 0 30px rgba(184,134,11,0.4);
}

/* ========== СЕКЦИИ ========== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 2.5rem;
    color: var(--jade-dark);
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.section-divider {
    width: 80px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto;
    position: relative;
}

.section-divider::before {
    content: '◆';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold);
    font-size: 0.6rem;
    background: #FDFBF7;
    padding: 0 8px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.75rem;
}

/* ========== КАРТОЧКИ ТОВАРОВ ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 90px;
}

.product-card {
    background: white;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: var(--shadow-lux);
    transition: var(--transition-smooth);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.product-image {
    height: 280px;
    background: #F7F3EB;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    padding: 5px 12px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.tag-popular { color: var(--gold); }
.tag-new { color: var(--jade); }

.product-details {
    padding: 25px;
}

.product-category a {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    margin-bottom: 8px;
    display: inline-block;
}

.product-name {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
    letter-spacing: 0.03em;
}

.product-name a {
    color: inherit;
    text-decoration: none;
}

.product-desc {
    font-family: var(--font-accent);
    font-weight: 300;
    font-style: italic;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 18px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--stone);
    padding-top: 15px;
}

.price {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--dark);
}

.price small {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.7rem;
    color: var(--text-light);
    display: block;
}

.btn-cart {
    background: transparent;
    border: 1px solid var(--dark);
    padding: 10px 20px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    color: var(--dark);
}

.btn-cart:hover {
    background: var(--jade-dark);
    border-color: var(--jade-dark);
    color: white;
}

.btn-outline {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.btn-outline:hover {
    background: var(--gold);
    color: white;
}

/* ========== ПРЕИМУЩЕСТВА ========== */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin: 80px 0;
    text-align: center;
}

.feature-item {
    padding: 30px 20px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-title {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--jade-dark);
    letter-spacing: 0.03em;
}

.feature-item p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.7;
}


/* ========== ПОДВАЛ ========== */
.footer-premium {
    background: var(--jade-dark);
    color: #A8A09A;
    padding: 40px 0 0;
    margin-top: 60px;
    position: relative;
    font-family: var(--font-body);
    font-weight: 300;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-grid h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--cream);
    font-size: 1rem;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.footer-grid ul {
    list-style: none;
}

.footer-grid li {
    margin-bottom: 4px;
}

.footer-grid a {
    color: #8A827A;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.8rem;
    font-weight: 300;
    display: inline-block;
    padding: 1px 0;
}

.footer-grid a:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}

.footer-about {
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: #9A928A;
}

.footer-contacts p {
    margin-bottom: 2px;
    font-size: 0.8rem;
    color: #8A827A;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    color: #6A625A;
}

.footer-payments {
    display: flex;
    gap: 8px;
    font-size: 1rem;
    color: #6A625A;
}

/* ========== ХЛЕБНЫЕ КРОШКИ ========== */
.breadcrumbs {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin: 30px 0;
}

.breadcrumbs a {
    color: var(--gold);
    font-weight: 400;
}

.breadcrumbs span {
    color: var(--text);
}

/* ========== СТРАНИЦА КАТЕГОРИИ ========== */
.category-banner {
    padding: 80px 0;
    margin-bottom: 60px;
    text-align: center;
    color: white;
}

.category-banner h1 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 3rem;
    letter-spacing: 0.08em;
    margin-bottom: 15px;
}

.category-banner .category-description {
    font-family: var(--font-accent);
    font-weight: 300;
    font-style: italic;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

.category-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--stone);
    font-family: var(--font-body);
    font-weight: 300;
}

.filter-sort {
    display: flex;
    gap: 20px;
    align-items: center;
}

.filter-link {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.filter-link:hover,
.filter-link.active {
    color: var(--gold);
}

/* ========== СТРАНИЦА ТОВАРА ========== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 40px 0 80px;
}

.product-gallery {
    position: sticky;
    top: 120px;
    align-self: start;
}

.product-main-image {
    background: #F7F3EB;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-icon-large {
    font-size: 8rem;
}

.product-info-detail h1 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 2.5rem;
    letter-spacing: 0.03em;
    margin-bottom: 15px;
}

.product-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.product-meta-info span {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--text-light);
}

.product-price-block {
    background: #FDFBF7;
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 20px;
    border: 1px solid var(--stone);
}

.current-price {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2rem;
    color: var(--dark);
}

.old-price {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
}

.weight {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 8px;
}

.btn-cart-large {
    width: 100%;
    padding: 16px;
    background: var(--jade-dark);
    color: white;
    border: none;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-bottom: 30px;
}

.btn-cart-large:hover {
    background: var(--gold);
}

.product-description-full,
.brewing-guide {
    margin-bottom: 30px;
}

.product-description-full h2,
.brewing-guide h2 {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    margin-bottom: 15px;
    color: var(--jade-dark);
}

.product-description-full p,
.brewing-guide p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.8;
}

.brewing-params {
    display: flex;
    gap: 30px;
    margin-top: 15px;
    padding: 15px;
    background: #FDFBF7;
    border-radius: 4px;
}

.brewing-params span {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
}

/* ========== О МАГАЗИНЕ ========== */
.about-section {
    margin: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--jade-dark);
    margin-bottom: 20px;
}

.about-text p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
}

.about-feature .icon {
    font-size: 1.5rem;
}

.about-video {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background: var(--jade-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
}
.stock-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    padding: 3px 8px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.6rem;
    letter-spacing: 0.04em;
    z-index: 2;
    text-transform: uppercase;
}
.stock-badge.in-stock { background: #e8f5e9; color: #2e7d32; }
.stock-badge.low-stock { background: #fff3e0; color: #e65100; }
.stock-badge.out-of-stock { background: #ffebee; color: #c62828; }
/* ========== МОБИЛЬНАЯ АДАПТАЦИЯ ========== */

/* Планшеты */
@media (max-width: 1024px) {
    .container { padding: 0 20px; }
    .products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .features { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .hero-content h1 { font-size: 3.5rem; }
    .nav-list { gap: 25px; }
    .catalog-layout { grid-template-columns: 220px 1fr; gap: 20px; }
}

/* Телефоны */
@media (max-width: 768px) {
    .container { padding: 0 15px; }
    
    /* Шапка */
    .header-inner { flex-direction: column; gap: 12px; padding: 10px 0; }
    .logo-premium { font-size: 1.6rem; text-align: center; }
    .logo-premium span { font-size: 0.65rem; letter-spacing: 0.2em; }
    .header-actions-premium { gap: 15px; flex-wrap: wrap; justify-content: center; }
    .search-premium input { width: 140px; font-size: 0.8rem; }
    .icon-link { font-size: 0.7rem; letter-spacing: 0.05em; gap: 4px; }
    
    /* Навигация */
    .nav-premium { padding: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .nav-list { gap: 0; flex-wrap: nowrap; justify-content: flex-start; padding: 5px 10px; }
    .nav-list a { font-size: 0.7rem; letter-spacing: 0.08em; padding: 10px 12px; white-space: nowrap; }
    
    /* Баннер */
    .hero-video { height: 50vh; min-height: 350px; margin-bottom: 40px; }
    .hero-content h1 { font-size: 2.5rem; letter-spacing: 0.1em; }
    .subtitle { font-size: 0.9rem; letter-spacing: 0.05em; margin-bottom: 25px; }
    .hero-btn { padding: 12px 35px; font-size: 0.75rem; }
    
    /* Секции */
    .section-header { margin-bottom: 30px; }
    .section-title { font-size: 1.8rem; }
    .section-subtitle { font-size: 0.65rem; letter-spacing: 0.15em; }
    
    /* Карточки товаров */
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 40px; }
    .product-image { height: 180px; font-size: 3rem; }
    .product-details { padding: 15px; }
    .product-name { font-size: 1.1rem; }
    .product-desc { font-size: 0.75rem; }
    .price { font-size: 1.2rem; }
    .btn-cart { padding: 8px 14px; font-size: 0.65rem; }
    .product-tag { font-size: 0.55rem; padding: 3px 8px; top: 8px; left: 8px; }
    .stock-badge { font-size: 0.55rem; padding: 2px 6px; bottom: 5px; right: 5px; }
    
    /* О магазине */
    .about-section { margin: 40px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 25px; }
    .about-text h3 { font-size: 1.4rem; }
    .about-text p { font-size: 0.9rem; }
    .about-features { grid-template-columns: 1fr 1fr; gap: 10px; }
    .about-feature { font-size: 0.8rem; }
    .about-video { aspect-ratio: 4/3; }
    
    /* Преимущества */
    .features { grid-template-columns: repeat(2, 1fr); gap: 15px; margin: 40px 0; }
    .feature-item { padding: 20px 10px; }
    .feature-icon { font-size: 2rem; margin-bottom: 10px; }
    .feature-title { font-size: 1rem; }
    .feature-item p { font-size: 0.8rem; }
    
    /* Страница товара */
    .product-detail { grid-template-columns: 1fr; gap: 20px; margin: 20px 0 40px; }
    .product-gallery { position: static; }
    .product-main-image { aspect-ratio: 1/1; }
    .product-info-detail h1 { font-size: 1.6rem; }
    .product-meta-info { gap: 10px; }
    .product-meta-info span { font-size: 0.75rem; }
    .current-price { font-size: 1.6rem; }
    .btn-cart-large { font-size: 0.8rem; padding: 14px; }
    
    /* Каталог */
    .catalog-layout { grid-template-columns: 1fr; margin: 20px 0; }
    .catalog-sidebar { position: static; margin-bottom: 20px; padding: 15px; }
    .catalog-sidebar h3 { font-size: 1.1rem; margin-bottom: 10px; }
    .category-list { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 0; }
    .category-list li { margin-bottom: 0; }
    .category-list a { font-size: 0.75rem; padding: 6px 10px; }
    
    /* Футер */
    .footer-premium { padding: 30px 0 0; margin-top: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
    .footer-grid h4 { font-size: 0.9rem; margin-bottom: 8px; }
    .footer-bottom { flex-direction: column; text-align: center; gap: 8px; padding: 12px 0; }
    
    /* Хлебные крошки */
    .breadcrumbs { font-size: 0.75rem; margin: 15px 0; }
    
    /* Корзина */
    .cart-table th, .cart-table td { padding: 10px 8px; font-size: 0.75rem; }
    .qty-input { width: 45px; padding: 5px; }
    
    /* Чек-аут */
    .checkout-grid { grid-template-columns: 1fr; }
    
    /* Аккаунт */
    .account-layout { grid-template-columns: 1fr; }
    .account-nav { position: static; display: flex; flex-wrap: wrap; gap: 5px; padding: 10px; }
    .account-nav a { padding: 8px 12px; font-size: 0.75rem; }
    .order-card { grid-template-columns: 1fr; }
}

/* Маленькие телефоны */
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .product-image { height: 150px; font-size: 2.5rem; }
    .product-details { padding: 10px; }
    .product-name { font-size: 1rem; }
    .product-desc { font-size: 0.7rem; }
    .price { font-size: 1.1rem; }
    
    .hero-video { height: 40vh; min-height: 280px; }
    .hero-content h1 { font-size: 2rem; }
    
    .features { grid-template-columns: 1fr 1fr; gap: 10px; }
    .feature-item { padding: 15px 8px; }
    .feature-icon { font-size: 1.8rem; }
    .feature-title { font-size: 0.9rem; }
    
    .about-features { grid-template-columns: 1fr; }
    
    .btn-outline { padding: 10px 20px; font-size: 0.7rem; }
}