/* ==========================================================
   СЛАДКИЙ ОРЕШЕК — STYLESHEET
   Цветовая палитра: Изумрудный (#0F382A), Золотой (#D4AF37), Карамельно-кремовый (#FFFDF9)
   ========================================================== */

:root {
    --primary: #0F382A;
    --primary-light: #18533F;
    --primary-dark: #09241C;
    --gold: #D4AF37;
    --gold-light: #F4E7BE;
    --gold-dark: #B38E22;
    --accent-caramel: #C68B59;
    --bg-cream: #FBF8F3;
    --bg-white: #FFFFFF;
    --text-main: #1A1A1A;
    --text-muted: #666666;
    --border-color: #E8DFD4;
    --shadow-soft: 0 10px 30px rgba(15, 56, 42, 0.08);
    --shadow-hover: 0 15px 35px rgba(212, 175, 55, 0.18);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-cream);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Typography & Badges ── */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
}

.section-header {
    margin-bottom: 45px;
}

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

.section-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-badge.badge-gold {
    background: var(--gold);
    color: #000;
}

.section-title {
    font-size: 38px;
    line-height: 1.25;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #0F241A;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.45);
    background: linear-gradient(135deg, #E2BF48 0%, var(--gold) 100%);
}

.btn-tg {
    background: #229ED9;
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(34, 158, 217, 0.3);
}

.btn-tg:hover {
    background: #1C8BC3;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(34, 158, 217, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.btn-block {
    width: 100%;
}

/* ── HEADER ── */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-logo {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.brand-subtitle {
    font-size: 10px;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 1.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 17px;
    transition: var(--transition);
}

.tg-btn {
    background: #229ED9;
    color: #FFFFFF;
}

.inst-btn {
    background: linear-gradient(45deg, #F58529, #D92E7F, #833AB4);
    color: #FFFFFF;
}

.social-btn:hover {
    transform: scale(1.1);
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
    padding: 8px 16px;
    background: var(--bg-cream);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.phone-link:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}

.cart-trigger-btn {
    position: relative;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: var(--transition);
}

.cart-trigger-btn:hover {
    background: var(--primary-light);
    transform: scale(1.05);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #E53935;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 800;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FFFFFF;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--primary);
    cursor: pointer;
}

/* ── HERO SECTION ── */
.hero-section {
    padding: 70px 0 90px;
    background: linear-gradient(135deg, #0F382A 0%, #082119 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--gold-light);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 46px;
    line-height: 1.2;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
}

.hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    font-size: 22px;
    color: var(--gold);
}

.feature-item strong {
    display: block;
    font-size: 13px;
    color: #FFFFFF;
}

.feature-item span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: floatAnim 4s ease-in-out infinite;
}

@keyframes floatAnim {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-main);
    padding: 12px 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.floating-badge strong {
    display: block;
    font-size: 13px;
    color: var(--primary);
}

.floating-badge small {
    color: var(--text-muted);
    font-size: 11px;
}

.floating-badge .badge-icon {
    font-size: 24px;
}

.badge-1 {
    top: 20px;
    left: -30px;
}

.badge-2 {
    bottom: 20px;
    right: -30px;
}

/* ── ADVANTAGES ── */
.advantages-section {
    padding: 60px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.adv-card {
    background: var(--bg-white);
    padding: 30px 22px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

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

.adv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 18px;
}

.adv-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.adv-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── CATALOG SECTION ── */
.catalog-section {
    padding: 80px 0;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.filter-btn {
    padding: 10px 22px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}

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

.filter-btn.active {
    background: var(--primary);
    color: var(--gold);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(15, 56, 42, 0.2);
}

/* ── TOP SHOWCASE: СЕГОДНЯ В НАЛИЧИИ (НАВЕРХУ) ── */
.today-stock-top-banner {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(15, 56, 42, 0.07);
    overflow: hidden;
    margin-bottom: 30px;
}

.today-stock-top-header {
    background: linear-gradient(135deg, #0F382A 0%, #174D3B 100%);
    color: #FFFFFF;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 2px solid var(--gold);
}

.today-stock-title-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.today-stock-title-left h3 {
    font-size: 15px;
    font-weight: 800;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: 0.5px;
}

.today-stock-title-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.today-stock-sub-badge {
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-light);
    border: 1px solid rgba(212, 175, 55, 0.4);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}

.today-stock-total-badge-top {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 6px;
}

.today-stock-total-badge-top strong {
    background: #10B981;
    color: #FFFFFF;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
}

.today-stock-h-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 14px 18px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) #F5F1E8;
    background: #FAF8F5;
}

.today-stock-h-scroll::-webkit-scrollbar {
    height: 6px;
}

.today-stock-h-scroll::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}

.today-stock-top-card {
    min-width: 175px;
    max-width: 175px;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #EFEAE3;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: var(--transition);
    flex-shrink: 0;
}

.today-stock-top-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(15, 56, 42, 0.1);
}

.today-stock-top-thumb {
    width: 75px;
    height: 75px;
    border-radius: 10px;
    object-fit: cover;
    border: 1px solid #E5E0D8;
}

.today-stock-top-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
}

.today-stock-top-price {
    font-size: 12px;
    font-weight: 800;
    color: #2E7D32;
}

.today-stock-top-qty {
    background: #E8F5E9;
    color: #166534;
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
}

.today-stock-top-add-btn {
    width: 100%;
    padding: 6px 0;
    border-radius: 6px;
    background: var(--primary);
    color: var(--gold);
    border: none;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.today-stock-top-add-btn:hover {
    background: var(--gold);
    color: #000;
}

/* ── CATALOG TOOLBAR & GRID SWITCHER ── */
.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.grid-mode-switcher {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3px;
    gap: 3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.grid-mode-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border: none;
    background: transparent;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.grid-mode-btn:hover {
    color: var(--primary);
}

.grid-mode-btn.active {
    background: var(--primary);
    color: var(--gold);
    box-shadow: 0 2px 6px rgba(15, 56, 42, 0.2);
}

/* ── FULL-WIDTH PRODUCTS GRID ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 30px;
}

.today-stock-mobile-bottom {
    display: none; /* Hidden on desktop */
}

.today-stock-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gold);
    box-shadow: 0 12px 35px rgba(15, 56, 42, 0.08);
    overflow: hidden;
}

.today-stock-header {
    background: linear-gradient(135deg, #0F382A 0%, #174D3B 100%);
    color: #FFFFFF;
    padding: 16px 18px;
}

.today-stock-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.today-stock-title-row h3 {
    font-size: 14px;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    margin: 0;
}

.live-pulse-dot {
    width: 10px;
    height: 10px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
    animation: livePulse 1.8s infinite;
}

@keyframes livePulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.today-stock-date {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.today-stock-sub {
    font-size: 11px;
    color: #A3C9B8;
    margin: 0;
}

.today-stock-list {
    max-height: 440px;
    overflow-y: auto;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.today-stock-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: #FAF8F5;
    border-radius: 12px;
    border: 1px solid #EFEAE3;
    transition: var(--transition);
}

.today-stock-item:hover {
    background: #FFFFFF;
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.today-stock-thumb {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #E5E0D8;
}

.today-stock-info {
    flex-grow: 1;
    min-width: 0;
}

.today-stock-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 2px;
}

.today-stock-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
}

.today-stock-price {
    font-weight: 800;
    color: #2E7D32;
    font-size: 11px;
}

.today-stock-qty-badge {
    background: #E8F5E9;
    color: #166534;
    padding: 2px 6px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 10px;
}

.today-stock-add-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--primary);
    color: var(--gold);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: var(--transition);
    flex-shrink: 0;
}

.today-stock-add-btn:hover {
    background: var(--gold);
    color: #000;
    transform: scale(1.08);
}

.today-stock-footer {
    padding: 14px 16px;
    background: #FAF8F5;
    border-top: 1px solid #EFEAE3;
}

.today-stock-total-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #555;
    font-weight: 600;
}

.today-stock-total-badge strong {
    font-size: 14px;
    color: #059669;
    font-weight: 800;
}

.product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.product-img-box {
    position: relative;
    height: 220px;
    background: #0F382A;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.popular-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stock-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    backdrop-filter: blur(8px);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.stock-badge.in-stock {
    background: rgba(16, 185, 129, 0.92);
    color: #FFFFFF;
}

.stock-badge.made-to-order {
    background: rgba(245, 158, 11, 0.92);
    color: #FFFFFF;
}

.product-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
}

.product-weight {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-cream);
    padding: 3px 8px;
    border-radius: 8px;
    white-space: nowrap;
}

.product-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.product-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-control {
    display: flex;
    align-items: center;
    background: var(--bg-cream);
    border-radius: 20px;
    padding: 2px;
    border: 1px solid var(--border-color);
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: none;
    border: none;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.qty-val {
    width: 26px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.btn-add-cart {
    background: var(--primary);
    color: var(--gold);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: var(--gold);
    color: var(--primary);
    transform: scale(1.08);
}

/* ── ABOUT SECTION ── */
.about-section {
    padding: 90px 0;
    background: var(--bg-white);
}

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
}

.about-img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 4px solid var(--border-color);
}

.about-exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--gold);
    padding: 20px 25px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 2px solid var(--gold);
}

.about-exp-badge strong {
    display: block;
    font-size: 36px;
    line-height: 1;
    font-family: var(--font-heading);
}

.about-exp-badge span {
    font-size: 12px;
    color: #FFFFFF;
}

.about-text {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.about-checklist {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
}

.check-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.check-item i {
    color: var(--gold-dark);
    font-size: 20px;
    margin-top: 3px;
}

.check-item span {
    font-size: 14px;
    color: var(--text-main);
}

/* ── WHOLESALE SECTION ── */
.wholesale-section {
    padding: 60px 0;
}

.wholesale-card {
    background: linear-gradient(135deg, #0F382A 0%, #0A241C 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    color: #FFFFFF;
    position: relative;
    border: 2px solid rgba(212, 175, 55, 0.4);
    box-shadow: var(--shadow-soft);
}

.wholesale-content h2 {
    color: #FFFFFF;
    font-size: 34px;
    margin: 15px 0 20px;
}

.wholesale-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 25px;
}

.wholesale-benefits {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.wholesale-benefits span {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.wholesale-benefits i {
    color: var(--gold);
    margin-right: 6px;
}

.wholesale-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.wholesale-actions .btn-outline {
    border-color: var(--gold);
    color: var(--gold);
}

.wholesale-actions .btn-outline:hover {
    background: var(--gold);
    color: #000;
}

/* ── CONTACTS & FORM ── */
.contacts-section {
    padding: 80px 0;
}

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

.contact-info-card, .fast-order-form-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 25px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 35px;
}

.c-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.c-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.c-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--primary);
}

.c-item p {
    font-size: 13px;
    color: var(--text-muted);
}

.social-links-block {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.s-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

.s-link.tg {
    background: #E8F5FD;
    color: #229ED9;
    border: 1px solid #BCE2FA;
}

.s-link.inst {
    background: #FDF0F6;
    color: #D92E7F;
    border: 1px solid #F6BCD7;
}

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

/* Fast Order Form */
.fast-order-form-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.fast-order-form-card > p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.quick-form .form-group {
    margin-bottom: 16px;
}

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

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--text-main);
    background: var(--bg-cream);
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--gold);
    background: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* ── FOOTER ── */
.footer {
    background: var(--primary-dark);
    color: #FFFFFF;
    padding: 40px 0;
    border-top: 2px solid var(--gold);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.footer-brand strong {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--gold);
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contacts {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-contacts a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
}

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

/* ── CART DRAWER / MODAL ── */
.cart-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.cart-drawer-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -480px;
    width: 460px;
    max-width: 100%;
    height: 100%;
    background: #FFFFFF;
    z-index: 2001;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 20px 24px;
    background: var(--primary);
    color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--gold);
}

.cart-header h3 {
    color: var(--gold);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-close-btn {
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 28px;
    cursor: pointer;
}

.free-delivery-progress {
    padding: 12px 24px;
    background: var(--bg-cream);
    border-bottom: 1px solid var(--border-color);
}

.progress-bar-bg {
    width: 100%;
    height: 8px;
    background: #E5E0D8;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 6px;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, #2E7D32 100%);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.free-delivery-progress small {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
}

.cart-items-list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-info strong {
    display: block;
    font-size: 14px;
    color: var(--primary);
}

.cart-item-info small {
    font-size: 12px;
    color: var(--text-muted);
}

.cart-item-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-item-price {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary);
    white-space: nowrap;
}

.cart-footer {
    padding: 20px 24px;
    background: var(--bg-cream);
    border-top: 1px solid var(--border-color);
    max-height: 55vh;
    overflow-y: auto;
}

.cart-summary {
    margin-bottom: 18px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.summary-row.total-row {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    border-top: 1px dashed var(--border-color);
    padding-top: 10px;
    margin-top: 10px;
}

.cart-checkout-form .form-group {
    margin-bottom: 10px;
}

.checkout-submit-btn {
    margin-top: 14px;
    padding: 14px;
}

/* ── SUCCESS MODAL ── */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    padding: 20px;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    border: 2px solid var(--gold);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.modal-content h2 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 12px;
}

.modal-content p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.success-info-box {
    background: var(--bg-cream);
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: left;
    margin-bottom: 25px;
    border: 1px solid var(--border-color);
}

.success-info-box p {
    font-size: 13px;
    margin-bottom: 6px;
    color: var(--text-main);
}

.success-info-box p:last-child {
    margin-bottom: 0;
}

/* ── COMPREHENSIVE MOBILE & TABLET RESPONSIVE OVERHAUL ── */
@media (max-width: 1080px) {
    .catalog-layout {
        grid-template-columns: 1fr;
    }
    .today-stock-sidebar {
        position: static;
        width: 100%;
        margin-bottom: 25px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: left;
    }
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-container {
        grid-template-columns: 1fr;
    }
    .contacts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* 1. Header & Navigation */
    .header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .header-container {
        padding: 8px 12px;
    }
    .logo-link {
        gap: 8px;
    }
    .header-logo {
        width: 36px;
        height: 36px;
    }
    .brand-title {
        font-size: 13px;
        letter-spacing: 0.2px;
        line-height: 1.1;
    }
    .brand-subtitle {
        font-size: 8px;
        letter-spacing: 0.8px;
    }
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0F382A;
        flex-direction: column;
        padding: 14px 18px;
        gap: 10px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.25);
        border-bottom: 2px solid var(--gold);
    }
    .nav-menu.active {
        display: flex;
    }
    .nav-link {
        color: #FFFFFF;
        font-size: 13px;
        padding: 6px 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .nav-link:last-child {
        border-bottom: none;
    }
    .header-actions {
        gap: 6px;
    }
    .header-actions .social-btn {
        display: none; /* Hide in compact header */
    }
    .phone-link {
        padding: 6px 8px;
        font-size: 12px;
        border-radius: 50%;
        width: 34px;
        height: 34px;
        justify-content: center;
    }
    .phone-link span {
        display: none;
    }
    .cart-trigger-btn {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
    .cart-badge {
        width: 16px;
        height: 16px;
        font-size: 9px;
        top: -3px;
        right: -3px;
    }
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        font-size: 18px;
    }

    /* 2. Hero Section */
    .hero-section {
        padding: 30px 0 40px;
    }
    .hero-badge {
        font-size: 11px;
        padding: 4px 12px;
        margin-bottom: 12px;
    }
    .hero-title {
        font-size: 24px;
        line-height: 1.25;
        margin-bottom: 12px;
    }
    .hero-subtitle {
        font-size: 13px;
        line-height: 1.45;
        margin-bottom: 20px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        padding: 12px 18px;
        font-size: 13px;
    }
    .hero-image-wrapper {
        width: 180px;
        height: 180px;
        margin: 15px auto 0;
    }
    .floating-badge {
        display: none;
    }
    .hero-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 20px;
    }
    .feature-item {
        font-size: 12px;
        gap: 8px;
    }

    /* 3. Advantages Grid */
    .advantages-section {
        padding: 35px 0;
    }
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .adv-card {
        padding: 16px 10px;
    }
    .adv-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        margin-bottom: 10px;
    }
    .adv-card h3 {
        font-size: 13px;
        margin-bottom: 4px;
    }
    .adv-card p {
        font-size: 11px;
        line-height: 1.35;
    }

    /* 4. Catalog & Today in Stock Layout */
    .catalog-section {
        padding: 35px 0 45px;
    }
    .section-header {
        margin-bottom: 20px;
    }
    .section-badge {
        font-size: 10px;
        padding: 3px 10px;
    }
    .section-title {
        font-size: 20px;
        line-height: 1.25;
        margin-bottom: 6px;
    }
    .section-subtitle {
        font-size: 12px;
        line-height: 1.4;
        padding: 0 6px;
    }
    .category-filters {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 6px;
        margin-bottom: 20px;
        justify-content: flex-start;
    }
    .category-filters::-webkit-scrollbar {
        display: none;
    }
    .filter-btn {
        flex-shrink: 0;
        padding: 7px 14px;
        font-size: 12px;
    }

    /* 5. 'Сегодня в наличии' на мобильных отображается ВНИЗУ */
    .today-stock-top-banner {
        display: none !important;
    }
    .today-stock-mobile-bottom {
        display: block !important;
        margin-top: 30px;
    }
    .today-stock-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 10px;
        max-height: 320px;
    }
    .today-stock-item {
        flex-direction: column;
        align-items: stretch;
        padding: 8px;
        gap: 6px;
    }
    .today-stock-thumb {
        width: 100%;
        height: 80px;
        border-radius: 8px;
    }
    .today-stock-name {
        font-size: 11px;
        white-space: normal;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 28px;
        line-height: 14px;
    }
    .today-stock-meta {
        justify-content: space-between;
    }
    .today-stock-add-btn {
        width: 100%;
        height: 28px;
        border-radius: 6px;
        font-size: 11px;
        margin-top: 4px;
    }

    /* 6. Products Grid (Standard 2-in-row view) */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .product-card {
        border-radius: 12px;
    }
    .product-img-box {
        height: 125px;
    }
    .popular-badge {
        top: 6px;
        left: 6px;
        font-size: 8px;
        padding: 2px 6px;
    }
    .stock-badge {
        top: 6px;
        right: 6px;
        font-size: 8px;
        padding: 2px 6px;
        gap: 2px;
    }
    .product-content {
        padding: 8px 8px 10px;
    }
    .product-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        margin-bottom: 2px;
    }
    .product-title {
        font-size: 12px;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        height: 30px;
    }
    .product-weight {
        font-size: 10px;
        color: #888;
    }
    .product-desc {
        display: none; /* Hide description in mobile 2-column view */
    }
    .product-footer {
        margin-top: 6px;
        padding-top: 6px;
        flex-direction: column;
        gap: 6px;
        align-items: stretch;
    }
    .product-price {
        font-size: 12px;
        font-weight: 800;
        text-align: center;
    }
    .product-actions {
        width: 100%;
        gap: 4px;
        justify-content: space-between;
    }
    .qty-control {
        padding: 2px;
        gap: 2px;
    }
    .qty-btn {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }
    .qty-val {
        font-size: 11px;
        min-width: 14px;
    }
    .btn-add-cart {
        flex-grow: 1;
        height: 26px;
        border-radius: 6px;
        font-size: 11px;
    }

    /* 6.1 Compact 4-in-One Grid Mode (▦ 4 на одном экране) */
    .products-grid.grid-compact-4 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important;
    }
    .products-grid.grid-compact-4 .product-card {
        border-radius: 10px;
    }
    .products-grid.grid-compact-4 .product-img-box {
        height: 80px !important;
    }
    .products-grid.grid-compact-4 .popular-badge {
        display: none;
    }
    .products-grid.grid-compact-4 .stock-badge {
        top: 4px;
        right: 4px;
        font-size: 7px;
        padding: 1px 4px;
    }
    .products-grid.grid-compact-4 .product-content {
        padding: 5px 6px 7px !important;
    }
    .products-grid.grid-compact-4 .product-header {
        margin-bottom: 2px;
    }
    .products-grid.grid-compact-4 .product-title {
        font-size: 11px !important;
        height: 26px !important;
        line-height: 13px !important;
    }
    .products-grid.grid-compact-4 .product-weight {
        display: none;
    }
    .products-grid.grid-compact-4 .product-footer {
        margin-top: 3px !important;
        padding-top: 3px !important;
        gap: 3px !important;
    }
    .products-grid.grid-compact-4 .product-price {
        font-size: 11px !important;
        font-weight: 800;
    }
    .products-grid.grid-compact-4 .qty-control {
        display: none !important;
    }
    .products-grid.grid-compact-4 .btn-add-cart {
        height: 22px !important;
        font-size: 10px !important;
        padding: 0 4px !important;
    }

    /* 7. About & Contacts (Fix heart badge on mobile) */
    .about-section {
        padding: 35px 0;
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .about-img-box {
        max-width: 170px;
        margin: 0 auto 20px;
        position: relative;
    }
    .about-img {
        width: 100%;
        border-radius: var(--radius-lg);
    }
    .about-exp-badge {
        position: absolute;
        bottom: -12px;
        right: -8px;
        padding: 6px 10px !important;
        border-radius: 10px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
        border: 1.5px solid var(--gold) !important;
    }
    .about-exp-badge strong {
        font-size: 16px !important;
        margin-bottom: 2px;
    }
    .about-exp-badge span {
        font-size: 8px !important;
        white-space: nowrap;
    }
    .about-text {
        font-size: 12px;
        line-height: 1.45;
    }
    .about-checklist .check-item {
        font-size: 11px;
    }
    .wholesale-section {
        padding: 35px 0;
    }
    .wholesale-card {
        padding: 24px 16px;
    }
    .wholesale-card h2 {
        font-size: 20px;
    }
    .wholesale-form {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .footer {
        padding: 30px 0 40px;
        margin: 0;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    .footer-social {
        justify-content: center;
    }

    /* 8. Cart Drawer & Mobile Bar */
    .cart-drawer {
        width: 100%;
        max-width: 100%;
    }
    body {
        padding-bottom: 60px;
        margin: 0;
    }
}

/* ── MOBILE FLOATING ACTION BAR (FIXED AT SCREEN BOTTOM) ── */
.mobile-floating-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0F382A;
    border-top: 2px solid var(--gold);
    z-index: 2500;
    padding: 8px 12px 10px;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
}

.mob-bar-btn {
    background: none;
    border: none;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    flex: 1;
}

.mob-bar-btn i {
    font-size: 18px;
}

.mob-call-btn i {
    color: #4CAF50;
}

.mob-tg-btn i {
    color: #229ED9;
}

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

.mob-cart-icon-box {
    position: relative;
}

.mob-cart-badge {
    position: absolute;
    top: -6px;
    right: -10px;
    background: #E53935;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    border-radius: 50%;
    text-align: center;
    padding: 0 4px;
}

@media (max-width: 768px) {
    .mobile-floating-bar {
        display: flex !important;
    }
}
