/*
Theme Name: BODR Premium Theme
Author: Oleksii
Version: 1.7.0
Text Domain: bodr-theme
*/

/* ==========================================================================
   🚨 1. ГЛОБАЛЬНІ СТИЛІ ТА СКИДАННЯ
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    max-width: 100% !important;
    overflow-x: hidden !important; 
    overflow-y: auto !important;   
    height: auto !important;
    background-color: #050505;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ==========================================================================
   🎬 2. ШАР №1: ФОН З КАВОЮ (ГОЛОВНА СТОРІНКА)
   ========================================================================== */
.bodr-hero-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #050505;
    z-index: 10;
}

.bodr-fullscreen-bg {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    animation: bgFadeIn 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    opacity: 0; 
}

/* Золоте внутрішнє свічення по периметру екрану */
.bodr-fullscreen-bg::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    box-shadow: inset 0 0 80px rgba(217, 119, 6, 0.45);
    border: 1px solid rgba(217, 119, 6, 0.2); 
    z-index: 2;
}

/* ==========================================================================
   🎯 2. ШАР №2: ЦЕНТРАЛЬНЕ КРУГЛЕ ЛОГО ТА КОЛА НА ПК (ІДЕАЛЬНА СИМЕТРІЯ)
   ========================================================================== */
.bodr-center-logo-wrapper {
    position: absolute;
    /* 🔥 Зсув під фіксований хедер (70px) + 10px ідеального візуального повітря */
    top: 30px; 
    left: 0; 
    width: 100%; 
    /* Перераховуємо висоту, щоб нижня межа композиції сиділа ідеально пиксель-в-пиксель */
    height: calc(100vh - 80px); 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 10;
}
.bodr-center-logo {
    position: relative;
    max-width: 500px;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center; /* Тримає саму картинку логотипа строго по центру */
    z-index: 10;
    overflow: visible;
}

.main-logo-img {
    height: 100%;
    width: 100%;
    object-fit: contain; /* Гарантує, що диск логотипа не деформується і не зміщується */
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.85));
    z-index: 5;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.bodr-center-logo:hover .main-logo-img {
    transform: scale(0.97);
}

/* ЗАГАЛЬНИЙ СТИЛЬ ДЛЯ ВЕЛИКИХ КІЛ (360px) НА ПК */
.bodr-popup-panel {
    position: absolute;
    top: 50%; 
    width: 360px; 
    height: 360px;
    border-radius: 50%;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.95) 0%, rgba(5, 5, 5, 0.98) 100%);
    border: 1px solid rgba(217, 119, 6, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85), inset 0 0 30px rgba(217, 119, 6, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px; 
    opacity: 0;
    z-index: 1; 
    /* Плавний і точний розрахунок анімації */
    transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.panel-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px; 
    width: 100%; 
    height: 100%;
}

.panel-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: #d97706; font-weight: 700; }
.panel-title { font-size: 24px; color: #f4f4f5; font-weight: 600; letter-spacing: 1px; line-height: 1.3; }
.panel-btn { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: #f4f4f5; border-bottom: 1px solid rgba(255, 255, 255, 0.3); padding-bottom: 3px; margin-top: 5px; transition: color 0.3s, border-color 0.3s; }
.panel-offer { font-size: 46px; font-weight: 800; color: #d97706; text-shadow: 0 0 20px rgba(217, 119, 6, 0.4); }

/* 🔥 ФІКС ГЕОМЕТРІЇ: Базовий стан кіл відносно точного центру логотипа */
.panel-left { 
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5); /* Стартують строго з геометричного центру диска */
}
.panel-right { 
    right: 50%;
    transform: translate(50%, -50%) scale(0.5); 
}

/* ⚡ МАГІЯ ХОВЕРУ: Вилітання на абсолютно однакову, симетричну відстань вліво і вправо */
.bodr-center-logo:hover .panel-left { 
    opacity: 1; 
    transform: translate(-450px, -50%) scale(1); /* Чіткий зсув вліво без наповзання на диск */
}
.bodr-center-logo:hover .panel-right { 
    opacity: 1; 
    transform: translate(450px, -50%) scale(1); /* Такий самий дзеркальний зсув вправо */
}

.bodr-popup-panel:hover { border-color: rgba(217, 119, 6, 0.6); box-shadow: 0 35px 70px rgba(0, 0, 0, 0.95), 0 0 20px rgba(217, 119, 6, 0.25); }
.bodr-popup-panel:hover .panel-btn { color: #d97706; border-color: #d97706; }

/* 🌉 Невидимий міст для ховеру */
.bodr-center-logo::before {
    content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 1200px; height: 450px; background: transparent; pointer-events: none; z-index: 1;
}
.bodr-center-logo:hover::before { pointer-events: auto; }

/* ЗАГАЛЬНИЙ СТИЛЬ ДЛЯ ВЕЛИКИХ КІЛ (360px) НА ПК */
.bodr-popup-panel {
    position: absolute;
    top: 50%; 
    width: 360px; 
    height: 360px;
    border-radius: 50%;
    text-decoration: none;
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.95) 0%, rgba(5, 5, 5, 0.98) 100%);
    border: 1px solid rgba(217, 119, 6, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.85), inset 0 0 30px rgba(217, 119, 6, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px; 
    opacity: 0;
    z-index: 1; 
    transition: transform 0.75s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.panel-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px; width: 100%; height: 100%;
}

.panel-tag { font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: #d97706; font-weight: 700; }
.panel-title { font-size: 24px; color: #f4f4f5; font-weight: 600; letter-spacing: 1px; line-height: 1.3; }
.panel-btn { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; color: #f4f4f5; border-bottom: 1px solid rgba(255, 255, 255, 0.3); padding-bottom: 3px; margin-top: 5px; transition: color 0.3s, border-color 0.3s; }
.panel-offer { font-size: 46px; font-weight: 800; color: #d97706; text-shadow: 0 0 20px rgba(217, 119, 6, 0.4); }

.panel-left { left: 0; transform: translate(60px, -50%) scale(0.5); }
.panel-right { right: 0; transform: translate(-60px, -50%) scale(0.5); }

.bodr-center-logo:hover .panel-left { opacity: 1; transform: translate(-390px, -50%) scale(1); }
.bodr-center-logo:hover .panel-right { opacity: 1; transform: translate(390px, -50%) scale(1); }

.bodr-popup-panel:hover { border-color: rgba(217, 119, 6, 0.6); box-shadow: 0 35px 70px rgba(0, 0, 0, 0.95), 0 0 20px rgba(217, 119, 6, 0.25); }
.bodr-popup-panel:hover .panel-btn { color: #d97706; border-color: #d97706; }

/* 🌉 Невидимий міст для ховеру */
.bodr-center-logo::before {
    content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 1200px; height: 380px; background: transparent; pointer-events: none; z-index: 1;
}
.bodr-center-logo:hover::before { pointer-events: auto; }

/* ==========================================================================
   💥 3. СТИЛІ ПРЕМІУМ-ХЕДЕРА (ДЛЯ ВЕЛИКИХ ЕКРАНІВ ПК)
   ========================================================================== */
@media screen and (min-width: 769px) {
    .bodr-header {
        position: fixed !important;
        top: 0; left: 0; width: 100%; height: 70px !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 60px !important;
        background: rgba(5, 5, 5, 0.5) !important;
        backdrop-filter: blur(10px);
        z-index: 9999 !important;
        box-sizing: border-box;
        animation: headerFadeIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) 0.6s forwards;
        opacity: 0;
    }
    .header-nav { display: flex !important; gap: 35px !important; }
    .header-actions { display: flex !important; gap: 35px !important; }
    .bodr-burger-btn { display: none !important; }
}

.nav-link, .action-link {
    color: #e4e4e7 !important;
    text-decoration: none !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 2.5px !important;
    transition: color 0.3s ease, text-shadow 0.3s ease !important;
}

.nav-link:hover, .action-link:hover {
    color: #d97706 !important;
    text-shadow: 0 0 10px rgba(217, 119, 6, 0.4) !important;
}

.cart-count {
    font-size: 11px; background-color: rgba(217, 119, 6, 0.2); color: #d97706;
    border: 1px solid rgba(217, 119, 6, 0.4); padding: 2px 7px; border-radius: 10px; margin-left: 5px; font-weight: 600;
}

/* ==========================================================================
   🛍️ 4. СТИЛІ СТОРІНКИ МАГАЗИНУ (BODR SHOP)
   ========================================================================== */
.bodr-shop-page {
    background-color: #0b0b0b;
    width: 100%;
    min-height: 100vh;
}

.shop-container {
    max-width: 1200px; margin: 0 auto; padding: 110px 24px 80px !important;
}

.shop-intro { text-align: center; margin-bottom: 50px; }

.shop-page-title { 
    font-size: 36px; font-weight: 500; letter-spacing: 5px; 
    text-transform: uppercase; margin-bottom: 24px; color: #f4f4f5;
}

.shop-filters { display: flex; justify-content: center; gap: 15px; }

.filter-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #a1a1aa;
    padding: 8px 22px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 20px; 
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    color: #d97706;
    border-color: #d97706;
    background-color: rgba(217, 119, 6, 0.05);
}

.bodr-breadcrumbs { display: flex; justify-content: center; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 11px; text-transform: uppercase; letter-spacing: 2px; }
.crumb-link { color: #a1a1aa; text-decoration: none; transition: color 0.3s; }
.crumb-link:hover { color: #d97706; }
.crumb-separator { color: rgba(217, 119, 6, 0.4); }
.crumb-current { color: #71717a; font-weight: 600; }

/* Повертаємо 3-колонкову преміум-сітку для ПК записів магазину */
@media screen and (min-width: 1201px) {
    .bodr-products-triple-grid { 
        display: grid !important; 
        grid-template-columns: repeat(3, 1fr) !important; 
        gap: 30px !important; 
        margin-top: 50px; 
        clear: both; 
    }
}

/* ==========================================================================
   🛍️ ВЕРТИКАЛЬНА КАРТКА ТОВАРУ — ПАЧКА НА ВЕСЬ ЗРІСТ З ХОВЕР-ПЛАШКОЮ
   ========================================================================== */
.bodr-vertical-card {
    background: #08080a !important; /* Насичений глибокий тон */
    border: 1px solid rgba(217, 119, 6, 0.15) !important; 
    border-radius: 24px !important;
    display: flex !important; 
    flex-direction: column !important; 
    overflow: hidden !important; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.6) !important;
    position: relative !important;
    z-index: 1;
    height: 480px !important; /* Чітко зафіксована висота картки */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease !important;
}

/* Статичне положення картки при ховері (стоїть як укопана) */
.bodr-vertical-card:hover { 
    transform: none !important; 
    border-color: rgba(217, 119, 6, 0.5) !important; 
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85) !important; 
}

/* 2. ПАЧКА КАВИ ЗАЙМАЄ ВЕСЬ ПРОСТІР КАРТКИ — ІДЕАЛЬНЕ ЦЕНТРУВАННЯ */
.v-card-thumb { 
    background-color: transparent !important; 
    height: 100% !important; 
    width: 100% !important;
    display: flex !important; 
    align-items: center !important;     /* Рівняємо строго по вертикалі */
    justify-content: center !important;   /* Рівняємо строго по горизонталі */
    padding: 30px !important;            /* Даємо пачці преміальне повітря від країв картки */
    position: relative;
    box-sizing: border-box !important;
}

.v-card-thumb img { 
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important; /* 🔥 МАГІЯ: Пачка більше не обрізається, а повністю ідеально вписується */
    object-position: center !important;
    filter: drop-shadow(0 20px 35px rgba(0,0,0,0.65)) !important; /* Об'ємна дорога тінь для левітації пачки */
    transform: none !important;
}

/* ==========================================================================
   🧊 МАТОВА ХОВЕР-ПЛАШКА З ОПИСОМ ТА СМАКАМИ (ПОВНІСТЮ СХОВАНА БАЗОВО)
   ========================================================================== */
.v-card-info { 
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important; /* Завжди закриває всю площу при проявленні */
    padding: 30px 24px !important; 
    display: flex !important; 
    flex-direction: column !important; 
    justify-content: center !important; /* Центруємо весь контент */
    align-items: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    
    /* Дорогий Glassmorphism ефект */
    background: rgba(8, 8, 10, 0.96) !important; 
    backdrop-filter: blur(20px) !important; 
    border-radius: 24px !important; 
    z-index: 5 !important;
    
    /* 🔥 БАЗОВИЙ СТАН: Плашка повністю невидима */
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.4s ease !important;
}

/* ⚡ МАГІЯ ХОВЕРУ: При наведенні на пачку плашка миттєво і плавно спливає */
.bodr-vertical-card:hover .v-card-info {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Елементи всередині спливаючої плашки */
.v-coffee-origin { 
    font-size: 10px !important; 
    text-transform: uppercase; 
    letter-spacing: 1.5px; 
    color: #71717a !important; 
    font-weight: 600; 
    margin-bottom: 4px !important; 
    display: block; 
}

.v-coffee-title { 
    font-size: 20px !important; 
    font-weight: 700; 
    color: #ffffff !important; 
    margin-bottom: 14px !important; 
    line-height: 1.2 !important;
}

/* Смакові теги */
.v-coffee-notes {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin-bottom: 16px !important;
}
.note-tag {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #e4e4e7 !important;
    font-size: 12px !important;
    padding: 4px 10px !important;
    border-radius: 8px !important;
}

/* Шкала крапок */
.v-coffee-specs {
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.02) !important;
    padding: 12px 14px !important;
    border-radius: 14px !important;
    margin-bottom: 16px !important;
    width: 100% !important;
    max-width: 280px;
}
.spec-row { display: flex !important; justify-content: space-between !important; align-items: center !important; margin-bottom: 6px !important; }
.spec-row:last-child { margin-bottom: 0 !important; }
.spec-label { color: #a1a1aa !important; font-size: 11px !important; }
.spec-dots { display: flex !important; gap: 4px !important; }
.spec-dots .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255, 255, 255, 0.15); }
.spec-dots .dot.active { background: #d97706 !important; box-shadow: 0 0 8px rgba(217, 119, 6, 0.6); }

/* Опис сорту */
.v-coffee-desc { 
    font-size: 13px !important; 
    color: #a1a1aa !important; 
    line-height: 1.5; 
    margin: 0 0 20px 0 !important;
}

/* Футер плашки (Ціна + Кнопка) */
.v-coffee-footer { 
    display: flex !important; 
    flex-direction: column !important; 
    align-items: center !important; 
    gap: 12px !important;
    width: 100% !important;
    margin-top: 5px !important;
}

.v-coffee-price { 
    font-size: 20px !important; 
    font-weight: 700; 
    color: #ffffff !important; 
}
/* Стилі для ваги — копіюють ціну, але у фірмовому помаранчевому кольорі */
.v-coffee-price .v-coffee-weight {
    font-size: 20px !important;       /* Такий самий преміальний розмір */
    font-weight: 700 !important;      /* Така сама соковита жирність */
    color: #d97706 !important;        /* 🔥 Фірмовий бурштиновий помаранчевий */
    margin-left: 8px !important;      /* Акуратний відступ від слова "грн" */
    letter-spacing: -0.5px !important;
    display: inline-block !important;
}

/* Золота преміум-кнопка замовлення */
.add-to-cart-btn {
    background: #d97706 !important; 
    color: #ffffff !important;          
    border: none !important; 
    padding: 12px 28px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 14px !important;     
    cursor: pointer !important;
    width: 90% !important; 
    transition: background 0.2s, transform 0.1s !important; 
}
.add-to-cart-btn:hover { background: #b45309 !important; }
.add-to-cart-btn:active { transform: scale(0.96); }


/* ==========================================================================
   📞 5. СТИЛІ ОКРЕМОЇ СТОРІНКИ КОНТАКТІВ
   ========================================================================== */
.bodr-isolated-contacts-page {
    padding-top: 110px; padding-bottom: 60px; background-color: #050505;
    min-height: calc(100vh - 110px); width: 100%; display: flex; align-items: center; box-sizing: border-box;
}
.bodr-contacts-section { position: relative; width: 100%; z-index: 20; }
.contacts-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.contacts-subtitle { font-size: 11px; text-transform: uppercase; letter-spacing: 3px; color: #a1a1aa; display: block; margin-bottom: 15px; }
.contacts-title { font-size: 3rem; font-weight: 300; color: #ffffff; margin: 0 0 20px 0; line-height: 1.1; }
.contacts-lead-text { color: #71717a; font-size: 16px; line-height: 1.6; margin-bottom: 40px; }
.contacts-details-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 45px; }
.contact-item { display: flex; flex-direction: column; gap: 4px; }
.contact-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #52525b; }
.contact-value { font-size: 18px; color: #e4e4e7; text-decoration: none; transition: color 0.3s; }
.contact-value.link-hover:hover { color: #ffffff; }

/* Форма */
.bodr-mini-form { display: flex; flex-direction: column; gap: 15px; max-width: 400px; }
.bodr-input { width: 100%; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.08); padding: 14px 20px; color: #ffffff; font-size: 14px; outline: none; transition: all 0.3s; box-sizing: border-box; }
.bodr-input:focus { border-color: rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.04); }
.bodr-form-btn { background: #ffffff; color: #000000; border: none; padding: 15px; font-size: 13px; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; font-weight: 600; transition: all 0.3s; }
.bodr-form-btn:hover { background: #d4d4d8; letter-spacing: 3px; }

/* Медіа/Картинка-карта */
.contacts-media-block { position: relative; height: 500px; width: 100%; }
.contacts-map-placeholder { width: 100%; height: 100%; background-size: cover; background-position: center; border: 1px solid rgba(255, 255, 255, 0.05); display: flex; align-items: flex-end; padding: 30px; box-sizing: border-box; }
.map-inner-card { background: rgba(10, 10, 10, 0.85); backdrop-filter: blur(10px); padding: 25px; border: 1px solid rgba(255, 255, 255, 0.05); width: 100%; max-width: 300px; box-sizing: border-box; }
.map-inner-card h3 { margin: 0 0 5px 0; color: #ffffff; font-size: 18px; font-weight: 400; }
.map-inner-card p { margin: 0 0 20px 0; color: #a1a1aa; font-size: 13px; }
.map-route-btn { color: #ffffff; text-decoration: none; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid #ffffff; padding-bottom: 2px; }

/* ==========================================================================
   💎 МІНІ-КАРТКИ КОНТАКТІВ У ХЕДЕРІ (ПК ВЕРСІЯ)
   ========================================================================== */
.header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
}

/* Компактна копія картки зі сторінки контактів */
.header-contact-card-btn {
    display: flex !important;
    align-items: center !important;
    background: #111111 !important; /* Твій фірмовий глибокий фон картки */
    border: 1px solid #222222 !important;
    padding: 6px 14px !important; /* Ультра-компактні падінги, щоб не міняти висоту хедера (70px) */
    border-radius: 10px !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Маленьке коло для іконки */
.header-card-icon {
    width: 28px !important;
    height: 28px !important;
    background: #1a1a1a !important;
    border: 1px solid #333333 !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-right: 10px !important;
    color: #e4e4e7 !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
}

.header-card-icon svg {
    width: 13px !important;
    height: 13px !important;
    stroke: currentColor;
}

/* Текстовий блок всередині міні-картки */
.header-card-text {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
}

.header-card-text span {
    display: block !important;
    font-size: 9px !important;
    color: #666666 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 1px !important;
    line-height: 1 !important;
}

.header-card-text strong {
    font-size: 11px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
    letter-spacing: 0.3px !important;
    line-height: 1.2 !important;
}

/* ⚡ ЛЮКСОВИЙ ХОВЕР: Всі фірмові ефекти з контактів, але адаптовані */
.header-contact-card-btn:hover {
    border-color: #ca8a04 !important; /* Твоє кавове золото */
    background: #161616 !important;
    transform: translateY(-2px) !important; /* Легке підняття вгору замість зсуву вбік — для хедера це красивіше */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4) !important;
}

.header-contact-card-btn:hover .header-card-icon {
    background: #ca8a04 !important;
    border-color: #ca8a04 !important;
    color: #ffffff !important;
}
/* ==========================================================================
   🧱 PREMIUM MAPS RESIZE & DARK MODE (ЧІТКІ ТОЧКИ BODR)
   ========================================================================== */
.bodr-location-card {
    display: flex !important;
    flex-direction: column !important;
    background: #111113 !important; /* Наш глибокий фірмовий фон карток */
    border: 1px solid #222222 !important;
    padding: 25px !important;
    border-radius: 16px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4) !important;
    transition: border-color 0.4s ease, box-shadow 0.4s ease !important;
}

.bodr-location-card:hover {
    border-color: #ca8a04 !important; /* Підсвічуємо кавовим золотом при ховері */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6) !important;
}

/* Обгортка карти — змушуємо її бути повністю адаптивною */
.bodr-map-wrapper {
    width: 100% !important;
    height: 250px !important; /* Ідеальна UX-висота карти для моніторів та телефонів */
    border-radius: 12px !important;
    overflow: hidden !important; /* Елегантне закруглення кутів самої карти */
    border: 1px solid #222222 !important;
    position: relative !important;
    margin-top: 15px !important;
}

/* Сам iframe карти розтягуємо на 100% простору обгортки */
.bodr-map-wrapper iframe {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    /* 🔥 КІНЕМАТОГРАФІЧНИЙ DARK MODE: Ідеальна заміна білого фону Google на нуарний стиль */
    filter: invert(90%) hue-rotate(180deg) grayscale(40%) opacity(0.85) !important;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Коли клієнт навів мишку на картку закладу — карта оживає, стає контрастною та кольоровою */
.bodr-location-card:hover .bodr-map-wrapper iframe {
    filter: invert(0%) hue-rotate(0deg) grayscale(0%) opacity(1) !important;
}
/* ==========================================================================
   🧱 PREMIUM DARK FOOTER — НОВА ЕЛЕТАРНА ШАФА САЙТУ BODR
   ========================================================================== */
.bodr-premium-footer {
    background: linear-gradient(180deg, #070708 0%, #030304 100%) !important;
    border-top: 1px solid rgba(217, 119, 6, 0.1) !important;
    padding: 60px 0 0 0 !important;
    width: 100%;
    position: relative;
    box-sizing: border-box;
    /* 🔥 МАРКЕТИНГОВИЙ ТРЮК: М'яке внутрішнє золоте свічення, щоб відбити "підвал" */
    box-shadow: inset 0 20px 40px rgba(217, 119, 6, 0.02), 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 40px 24px !important;
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* 2 великих логічних блоки на ПК */
    gap: 60px;
    align-items: flex-start;
}

/* 1. Блок брендингу */
.footer-brand-block {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 16px;
}
.footer-logo-img {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5));
}
.footer-brand-desc {
    font-size: 13px;
    color: #71717a;
    line-height: 1.6;
    max-width: 320px;
}

/* 2. Блок контактів */
.footer-contacts-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-block-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ca8a04; /* Наше фірмове кавове золото */
    font-weight: 600;
    text-align: left;
}
.footer-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 14px; /* Шляхетна відстань між інтерактивними кнопками */
}

/* 🔥 НАШІ АКУРАТНІ ПРЕМІУМ-КАРТКИ */
.footer-contact-card {
    display: flex !important;
    align-items: center !important;
    background: #111113 !important; /* В тон сторінки контактів */
    border: 1px solid #1e1e21 !important;
    padding: 14px 20px !important;
    border-radius: 14px !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-sizing: border-box;
    width: 100%;
}

.footer-card-icon {
    width: 38px !important;
    height: 38px !important;
    background: #18181b !important;
    border: 1px solid #27272a !important;
    border-radius: 50% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-right: 16px !important;
    color: #a1a1aa !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
}
.footer-card-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

.footer-card-text {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
}
.footer-card-text span {
    font-size: 10px !important;
    color: #52525b !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 2px !important;
}
.footer-card-text strong {
    font-size: 14px !important;
    color: #ffffff !important;
    font-weight: 500 !important;
}

/* ⚡ ХОВЕР ЕФЕКТ ЯК НА СТОРІНЦІ КОНТАКТІВ */
.footer-contact-card:hover {
    border-color: #ca8a04 !important;
    background: #151518 !important;
    transform: translateX(6px) !important; /* Плавний зсув вправо привертає увагу та створює динаміку */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4) !important;
}
.footer-contact-card:hover .footer-card-icon {
    background: #ca8a04 !important;
    border-color: #ca8a04 !important;
    color: #ffffff !important;
}

/* 3. Нижня лінія копірайту */
.footer-bottom-line {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    background: #030304;
    padding: 24px 0 !important;
    margin-top: 20px;
}
.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: #52525b;
}
.footer-bottom-links {
    display: flex;
    gap: 25px;
}
.footer-bottom-links a {
    color: #52525b;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
    color: #ca8a04;
}

/* ==========================================================================
   📱 УЛЬТРА-АДАПТИВНІСТЬ ДЛЯ ФУТЕРА (МАКСИМАЛЬНИЙ МОБІЛЬНИЙ UX)
   ========================================================================== */
@media screen and (max-width: 768px) {
    .bodr-premium-footer {
        padding: 40px 0 0 0 !important;
    }
    .footer-container {
        grid-template-columns: 1fr !important; /* На мобах блоки падають один під один */
        gap: 35px;
        text-align: center;
    }
    .footer-brand-block {
        align-items: center;
        text-align: center;
    }
    .footer-brand-desc {
        max-width: 100%;
    }
    .footer-block-title {
        text-align: center;
    }
    .footer-bottom-container {
        flex-direction: column-reverse !important; /* Текст копірайту знизу, посилання зверху */
        gap: 15px;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
    }
    /* Вимикаємо десктопний зсув вбік на мобільних, щоб не різати екран */
    .footer-contact-card:hover {
        transform: scale(1.01) !important;
    }
}
/* ==========================================================================
   📱 6. МОБІЛЬНА АДАПТИВНІСТЬ ДЛЯ ВСІХ ПРИСТРОЇВ
   ========================================================================== */
@media (max-width: 1400px) {
    .bodr-popup-panel { width: 300px; height: 300px; }
    .bodr-center-logo:hover .panel-left { transform: translate(-320px, -50%) scale(1); }
    .bodr-center-logo:hover .panel-right { transform: translate(320px, -50%) scale(1); }
    .panel-title { font-size: 20px; }
    .panel-offer { font-size: 38px; }
}

@media (max-width: 1200px) {
    .bodr-products-triple-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 25px !important; }
    .contacts-container { gap: 40px; padding: 0 20px; }
}

@media screen and (max-width: 768px) {
    .bodr-popup-panel { 
        display: flex !important;
        position: static !important; 
        transform: none !important;
        width: 100% !important; max-width: 290px !important; height: auto !important;
        aspect-ratio: auto !important; border-radius: 15px !important;
        margin: 0 auto !important; padding: 25px !important;
        opacity: 1 !important; order: 2 !important;
    }
   .header-contact-card-btn {
        display: none !important;
    }
    .bodr-center-logo-wrapper { height: auto !important; min-height: 100vh; padding: 120px 20px 40px 20px !important; box-sizing: border-box; }
    .bodr-center-logo { flex-direction: column !important; gap: 30px !important; height: auto !important; max-width: 100% !important; transform: none !important; }
    .main-logo-img { max-width: 180px !important; order: 1 !important; }

    .bodr-header {
        padding: 15px 20px !important; height: 60px !important; display: flex !important; flex-direction: row !important;
        justify-content: space-between !important; align-items: center !important;
        background: rgba(10, 10, 10, 0.98) !important; backdrop-filter: blur(15px);
        position: fixed !important; top: 0; left: 0; width: 100%; z-index: 9999 !important; box-sizing: border-box;
        opacity: 1 !important; transform: none !important; animation: none !important;
    }
    .bodr-burger-btn { display: flex !important; flex-direction: column; justify-content: space-between; width: 24px; height: 18px; background: none; border: none; cursor: pointer; padding: 0; z-index: 10001; }
    .burger-line { width: 100%; height: 2px; background-color: #ffffff; transition: all 0.3s ease; }
    .bodr-header.menu-open .burger-line:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .bodr-header.menu-open .burger-line:nth-child(2) { opacity: 0; }
    .bodr-header.menu-open .burger-line:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    .header-nav {
        position: fixed !important; top: 0; left: -100%; width: 100%; height: 100vh; background: #0a0a0a !important;
        display: flex !important; flex-direction: column !important; justify-content: center !important; align-items: center !important; gap: 30px !important;
        transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important; z-index: 10000;
    }
    .bodr-header.menu-open .header-nav { left: 0 !important; }
    .nav-link { font-size: 20px !important; letter-spacing: 3px; }
    .header-center-space { display: none !important; }
    .header-actions { display: flex !important; gap: 15px !important; z-index: 10001; }

    /* Мобільна адаптація (на телефонах плашка за замовчуванням відкрита, щоб зручно купувати пальцем) */
    .shop-container { padding: 90px 20px 40px !important; }
    .shop-page-title { font-size: 2.2rem !important; letter-spacing: 3px !important; }
    .bodr-products-triple-grid { display: grid !important; grid-template-columns: 1fr !important; gap: 35px !important; }
    .bodr-vertical-card { height: auto !important; min-height: 480px !important; }
    .v-card-thumb { height: 220px !important; }
    .v-card-info { position: static !important; opacity: 1 !important; visibility: visible !important; padding: 20px !important; background: rgba(14, 14, 16, 0.5) !important; backdrop-filter: none !important; }

    .bodr-isolated-contacts-page { padding-top: 90px !important; padding-bottom: 40px !important; }
    .contacts-container { grid-template-columns: 1fr !important; gap: 40px !important; }
    .contacts-title { font-size: 2.2rem !important; }
    .bodr-mini-form { max-width: 100% !important; }
    .contacts-media-block { height: 350px !important; }
    .map-inner-card { max-width: 100% !important; }
}

/* ==========================================================================
   🎬 АНІМАЦІЇ КІНЕМАТОГРАФУ (ПК ВЕРСІЯ)
   ========================================================================== */
@keyframes bgFadeIn { 0% { opacity: 0; transform: scale(1.04); filter: brightness(0.1); } 100% { opacity: 1; transform: scale(1); filter: brightness(0.45); } }
@keyframes logoFadeIn { 0% { opacity: 0; transform: scale(0.92); } 100% { opacity: 1; transform: scale(1); } }
@keyframes headerFadeIn { 0% { opacity: 0; transform: translateY(-10px); } 100% { opacity: 1; transform: translateY(0); } }

/* ==========================================================================
   🛒 КАСТОМНИЙ ЛЕГКИЙ КОШИК BODR (БЕЗ WOOCOMMERCE)
   ========================================================================== */
@media screen and (min-width: 992px) {
    .bodr-cart-page-wrapper {
        display: flex !important;
        align-items: flex-start !important;
        gap: 40px !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 120px 20px 80px 20px !important;
    }
    .bodr-cart-items-list { flex: 1 !important; }
    .bodr-cart-summary-panel {
        width: 380px !important;
        position: sticky !important;
        top: 100px;
        z-index: 10;
    }
}

.bodr-cart-item {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: linear-gradient(135deg, #141416 0%, #08080a 100%) !important;
    border: 1px solid rgba(217, 119, 6, 0.12) !important;
    border-radius: 16px !important;
    padding: 16px 24px !important;
    margin-bottom: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    gap: 20px;
    transition: border-color 0.3s ease;
}
.bodr-cart-item:hover { border-color: rgba(217, 119, 6, 0.3) !important; }

.bodr-cart-thumb { width: 65px !important; height: auto; display: flex; align-items: center; justify-content: center; }
.bodr-cart-thumb img { max-width: 100% !important; height: auto !important; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.6)) !important; }

.bodr-cart-details { flex-grow: 2 !important; text-align: left !important; }
.bodr-cart-title { color: #ffffff !important; font-size: 16px !important; font-weight: 600 !important; margin-bottom: 4px; text-decoration: none; }
.bodr-cart-meta { font-size: 11px !important; color: #a1a1aa !important; text-transform: uppercase; letter-spacing: 1px; }

.bodr-cart-qty-selector { display: flex; align-items: center; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(217, 119, 6, 0.25); border-radius: 20px; padding: 4px 8px; }
.bodr-qty-btn { background: none; border: none; color: #a1a1aa; cursor: pointer; font-size: 16px; padding: 0 8px; transition: color 0.2s; }
.bodr-qty-btn:hover { color: #d97706; }
.bodr-qty-value { color: #ffffff; font-weight: 600; width: 30px; text-align: center; font-size: 14px; }

.bodr-cart-price { font-size: 16px !important; font-weight: 600 !important; color: #d97706 !important; min-width: 90px; text-align: right !important; }
.bodr-cart-remove { background: none; border: none; color: #52525b; font-size: 20px; cursor: pointer; transition: color 0.3s; line-height: 1; }
.bodr-cart-remove:hover { color: #ef4444; }

.bodr-cart-summary-panel {
    background: linear-gradient(135deg, #141416 0%, #08080a 100%) !important;
    border: 1px solid rgba(217, 119, 6, 0.15) !important;
    border-radius: 24px !important;
    padding: 30px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6) !important;
    box-sizing: border-box;
}

.bodr-summary-title {
    font-size: 18px !important; text-transform: uppercase !important; letter-spacing: 3px !important; color: #ffffff !important;
    margin-bottom: 20px !important; font-weight: 500 !important; border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding-bottom: 15px; text-align: left;
}
.bodr-summary-row { display: flex; justify-content: space-between; padding: 14px 0 !important; font-size: 14px !important; border-bottom: 1px solid rgba(255, 255, 255, 0.04); }
.bodr-summary-row .label { color: #a1a1aa; }
.bodr-summary-row .value { color: #ffffff; font-weight: 500; }
.bodr-summary-row.total { border-bottom: none !important; padding-top: 20px !important; }
.bodr-summary-row.total .value { color: #d97706 !important; font-size: 24px !important; font-weight: 700 !important; }

.bodr-checkout-btn {
    background: #d97706 !important; color: #000000 !important; font-size: 12px !important; font-weight: 700 !important;
    text-transform: uppercase !important; letter-spacing: 2.5px !important; padding: 16px 20px !important; border-radius: 30px !important;
    text-align: center !important; display: block !important; width: 100% !important; border: 1px solid #d97706 !important;
    box-shadow: 0 12px 30px rgba(217, 119, 6, 0.2) !important; cursor: pointer; text-decoration: none; margin-top: 20px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.bodr-checkout-btn:hover { background: transparent !important; color: #ffffff !important; box-shadow: 0 0 25px rgba(217, 119, 6, 0.4) !important; transform: translateY(-2px) !important; }

.bodr-cart-page-main-bg { background-color: #050505 !important; min-height: 100vh; width: 100%; box-sizing: border-box; }

/* ==========================================================================
   🧊 МОДАЛЬНЕ ВІКНО ТА ФОРМА ОФОРМЛЕННЯ (BODR PREMIUM MODAL)
   ========================================================================== */
.bodr-modal {
    display: none; /* Керується через JS */
    position: fixed !important; /* 🔥 ЖОРСТКО ФІКСУЄМО на екрані, а не на сторінці! */
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;  /* На всю ширину вікна */
    height: 100vh !important; /* На всю висоту вікна */
    background: rgba(5, 5, 5, 0.85) !important; /* Напівпрозора нуарна вуаль */
    backdrop-filter: blur(12px) !important; /* Люксове розмиття фону */
    z-index: 999999 !important; /* Поверх абсолютно всього на сайті */
    
    /* Центруємо внутрішній контент форми строго посередині */
    display: none; 
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

/* Переконайся, що коли додається клас active, флекс вмикається */
.bodr-modal.active {
    display: flex !important;
}

.bodr-modal-content {
    background: linear-gradient(135deg, #141416 0%, #08080a 100%) !important; border: 1px solid rgba(217, 119, 6, 0.2) !important;
    border-radius: 24px !important; padding: 40px !important; width: 100%; max-width: 450px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.8) !important; position: relative; text-align: center;
    transform: translateY(-20px); transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.bodr-modal.active .bodr-modal-content { transform: translateY(0); }

.bodr-modal-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: #52525b; font-size: 28px; cursor: pointer; transition: color 0.2s; }
.bodr-modal-close:hover { color: #ef4444; }
.bodr-modal-title { color: #ffffff; font-size: 22px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 8px; }
.bodr-modal-subtitle { color: #71717a; font-size: 13px; margin-bottom: 30px; line-height: 1.4; }

.bodr-input-group { position: relative; margin-bottom: 25px; text-align: left; }
.bodr-input-group input { width: 100%; background: rgba(255, 255, 255, 0.02) !important; border: 1px solid rgba(255, 255, 255, 0.08) !important; border-radius: 12px !important; padding: 14px 16px !important; color: #ffffff !important; font-size: 14px !important; box-sizing: border-box; transition: all 0.3s ease; }
.bodr-input-group label { position: absolute; left: 16px; top: 14px; color: #52525b; font-size: 14px; pointer-events: none; transition: all 0.3s ease; }

.bodr-input-group input:focus, .bodr-input-group input:not(:placeholder-shown) { border-color: #d97706 !important; background: rgba(217, 119, 6, 0.02) !important; outline: none; }
.bodr-input-group input:focus ~ label, .bodr-input-group input:not(:placeholder-shown) ~ label { top: -10px; left: 12px; font-size: 11px; color: #d97706; background: #0d0d0f; padding: 0 6px; }

.bodr-submit-order-btn { background: #d97706 !important; color: #000000 !important; border: 1px solid #d97706 !important; width: 100%; padding: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 12px; border-radius: 30px; cursor: pointer; box-shadow: 0 10px 25px rgba(217, 119, 6, 0.2) !important; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.bodr-submit-order-btn:hover { background: transparent !important; color: #ffffff !important; box-shadow: 0 0 25px rgba(217, 119, 6, 0.4) !important; }


/* ==========================================================================
   🔒 ФІНАЛЬНИЙ UX-КОСМОС: СТИЛІ АВТОКОМПЛІТУ НОВОЇ ПОШТИ ДЛЯ BODR COFFEE
   ========================================================================== */

/* Обгортка списку підказок */
/* 🔥 СУПЕР-ТАРАН: Якщо в блоці з'явився хоч один запис — примусово показуємо його, ігноруючи будь-який JS-кеш! */
#np-suggestions-list:not(:empty) {
    display: block !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    max-height: 200px !important;
    overflow-y: auto !important;
    background: #18181b !important; /* Чорний преміум-фон */
    border: 1px solid #d97706 !important; /* Твоє золото */
    z-index: 999999 !important;
}

/* Кожен окремий рядок з адресою відділення */
.bodr-np-item {
    padding: 12px 16px !important;
    color: #ffffff !important; /* Жорстко фіксуємо БІЛИЙ колір літер, щоб не було чорного на чорному */
    font-size: 14px !important;
    font-family: sans-serif !important;
    cursor: pointer !important;
    text-align: left !important;
    border-bottom: 1px solid #2d2d2d !important;
    transition: background 0.2s ease, color 0.2s ease !important;
    background: transparent !important;
}

/* Ефект наведення на рядок */
.bodr-np-item:hover {
    background-color: #d97706 !important; /* Золотий бренд-колір при ховері */
    color: #ffffff !important;
    padding-left: 20px !important; /* Елегантний зсув */
}

/* ==========================================================================
   🚀 ЕФЕКТ ПОЛЬОТУ ТОВАРУ В КОШИК (FLYING ITEM EFFECT)
   ========================================================================== */
.bodr-fly-phantom { position: fixed; z-index: 999999 !important; pointer-events: none; object-fit: contain; transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); transform: scale(1); opacity: 1; }
@keyframes bodr-basket-shake { 0% { transform: scale(1); } 30% { transform: scale(1.3) rotate(-10deg); } 50% { transform: scale(1.3) rotate(10deg); } 70% { transform: scale(1.2) rotate(-5deg); } 100% { transform: scale(1); } }
.bodr-shake-active { animation: bodr-basket-shake 0.6s ease-in-out; display: inline-block; }
/* 🔒 ПРЕМІУМ-СТИЛІ ДЛЯ АВТОКОМПЛІТУ НОВОЇ ПОШТИ (BODR STYLE) */
.bodr-input-group {
    position: relative; /* Щоб список випадав строго під інпутом */
}

.bodr-np-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 220px;
    overflow-y: auto;
    background: #18181b; /* Глибокий антрацит, в тон сайту */
    border: 1px solid #3f3f46;
    border-radius: 8px;
    z-index: 999999;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.7);
    margin-top: 5px;
    display: none; /* Спочатку сховано, JS увімкне при наборі 3 літер */
}

/* Красивий люксовий скроллбар під кубики кави */
.bodr-np-suggestions::-webkit-scrollbar {
    width: 6px;
}
.bodr-np-suggestions::-webkit-scrollbar-thumb {
    background: #d97706; /* Золотий/бурштиновий бренд-колір BODR */
    border-radius: 4px;
}

/* Кожен рядок відділення кави */
.bodr-np-item {
    padding: 12px 16px;
    color: #e4e4e7;
    font-size: 13px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
    border-bottom: 1px solid #27272a;
}

.bodr-np-item:last-child {
    border-bottom: none;
}

/* Ефект ховеру рівня преміальних інтерфейсів */
.bodr-np-item:hover {
    background: #27272a;
    color: #fbbf24; /* Золоте підсвічування тексту при наведенні */
    padding-left: 20px; /* Легкий динамічний зсув вправо */
}
/* ==========================================================================
   СТОРАНКА КОНТАКТІВ БРЕНДУ BODR
   ========================================================================== */
   
   /* Повний фікс фону та сумісності для сторінки контактів */
.bodr-contacts-page-wrapper {
    background-color: #000000 !important; /* Примусовий глибокий чорний фон сторінки */
    min-height: 100vh; /* Розтягує фон на всю висоту екрану */
    width: 100%;
    color: #ffffff;
    padding-top: 1px; /* Фікс для маргінів */
    font-family: sans-serif; /* Тимчасовий дефолтний чистий шрифт */
}

/* Прибираємо сині дефолтні підкреслення у посилань, які ми бачимо на скріні */
.bodr-contact-item, .bodr-contact-item:user-select {
    text-decoration: none !important;
}

/* Головна сітка сторінки */
.bodr-contacts-container {
    max-width: 1100px;
    margin: 120px auto 60px auto; /* Великий верхній відступ, щоб не залізало під хедер */
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Ділимо екран навпіл на десктопі */
    gap: 60px;
}

/* Заголовки */
.bodr-page-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.bodr-subtitle {
    font-size: 18px;
    color: #ca8a04; /* Наш фірмовий кавово-золотий */
    margin-bottom: 40px;
}
.bodr-section-title {
    font-size: 24px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 40px;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
}

/* Сітка інтерактивних контактів (Ліва частина) */
.bodr-contacts-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Картка контакту (Посилання) */
.bodr-contact-item {
    display: flex;
    align-items: center;
    background: #111111;
    border: 1px solid #222222;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.bodr-contact-item:hover {
    border-color: #ca8a04;
    background: #161616;
    transform: translateX(5px); /* Ефект легкого зсуву вправо при наведенні */
}

/* Іконки в колі */
.bodr-contact-icon, .bodr-marker {
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-right: 20px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}
.bodr-contact-item:hover .bodr-contact-icon {
    background: #ca8a04;
    border-color: #ca8a04;
}

/* Тексти всередині карток */
.bodr-contact-text span {
    display: block;
    font-size: 12px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.bodr-contact-text strong {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
}

/* КАРТКИ ЛОКАЦІЙ (Права частина) */
.bodr-location-card {
    display: flex;
    align-items: flex-start;
    background: #111111;
    border: 1px solid #222222;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
}
.bodr-location-details h3 {
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 5px 0;
}
.bodr-location-details p {
    color: #cccccc;
    font-size: 15px;
    margin: 0 0 5px 0;
}
.bodr-location-details .bodr-city {
    font-size: 12px;
    color: #555555;
    text-transform: uppercase;
}

/* Адаптивність під мобільні пристрої (Пріоритет №1) */
@media (max-width: 768px) {
    .bodr-contacts-container {
        grid-template-columns: 1fr; /* На смартфонах блоки стають один під один */
        margin-top: 100px;
        gap: 40px;
    }
    .bodr-page-title {
        font-size: 32px;
    }
    .bodr-section-title {
        margin-bottom: 20px;
    }
}
/* КАРТКИ ЛОКАЦІЙ З КАРТАМИ */
.bodr-location-card {
    display: flex;
    flex-direction: column; /* Елементи всередині картки йдуть зверху вниз */
    background: #111111;
    border: 1px solid #222222;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: border-color 0.3s ease;
}

.bodr-location-card:hover {
    border-color: #ca8a04; /* Підсвічуємо золотом при наведенні */
}

/* Шапка картки (Маркер + Адреса) */
.bodr-location-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px; /* Відступ перед картою */
}

.bodr-location-details h3 {
    font-size: 18px;
    color: #ffffff;
    margin: 0 0 4px 0;
    font-weight: 600;
}

.bodr-location-details p {
    color: #999999;
    font-size: 14px;
    margin: 0;
}

/* Обгортка карти з ефектом закруглення */
.bodr-map-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden; /* Щоб кути карти красиво закруглялися */
    border: 1px solid #222222;
    line-height: 0; /* Прибирає дефолтні відступи знизу */
}

/* ТРЮК: Інтеграція Google Maps у Dark Mode */
.bodr-map-wrapper iframe {
    filter: invert(90%) hue-rotate(180sdeg) grayscale(30%) opacity(0.85);
    transition: all 0.5s ease;
}

/* Коли користувач наводить мишку на карту — вона стає повноколірною та контрастною */
.bodr-location-card:hover .bodr-map-wrapper iframe {
    filter: invert(0%) hue-rotate(0deg) grayscale(0%) opacity(1);
}
/* ==========================================================================
   ☕ СТОРІНКА "ПРО НАС" БРЕНДУ BODR (PREMIUM DARK STYLE)
   ========================================================================== */
.bodr-about-page-wrapper {
    background-color: #050505 !important;
    min-height: 100vh;
    width: 100%;
    color: #ffffff;
    padding-top: 1px;
}

.bodr-about-container {
    max-width: 1100px;
    margin: 120px auto 80px auto; /* Захист від налізання під фіксований хедер 70px */
    padding: 0 20px;
}

/* Блок 1: Інтро та маніфест */
.bodr-about-intro {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 40px auto;
}
.bodr-about-subtitle {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #71717a;
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
}
.bodr-about-title {
    font-size: 46px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    color: #ffffff;
}
.bodr-about-tagline {
    font-size: 22px;
    color: #d97706; /* Твій фірмовий помаранчево-бурштуновий колір */
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}
.bodr-about-description {
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    color: #a1a1aa;
}
.bodr-about-description p {
    margin-bottom: 20px;
}
.bodr-about-description p:last-child {
    margin-bottom: 0;
}

/* Лінії розділення */
.bodr-divider {
    border: none;
    border-top: 1px solid rgba(217, 119, 6, 0.1);
    margin: 60px 0;
}

/* Блок 2: Переваги (Сітка 3х2 на десктопі) */
.bodr-section-title-center {
    font-size: 28px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 45px;
    font-weight: 600;
}
.bodr-about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.bodr-about-feature-card {
    background: linear-gradient(135deg, #141416 0%, #08080a 100%) !important;
    border: 1px solid rgba(217, 119, 6, 0.12) !important;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.bodr-about-feature-card:hover {
    border-color: rgba(217, 119, 6, 0.45) !important;
    transform: translateY(-4px);
}
.bodr-feat-icon {
    font-size: 28px;
    margin-bottom: 15px;
}
.bodr-about-feature-card h3 {
    font-size: 17px;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.bodr-about-feature-card p {
    font-size: 13.5px;
    color: #71717a;
    line-height: 1.6;
    margin: 0;
}

/* Плашка індивідуального підходу */
.bodr-individual-approach-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(217, 119, 6, 0.03);
    border: 1px dashed rgba(217, 119, 6, 0.25);
    padding: 24px 30px;
    border-radius: 16px;
    margin-top: 40px;
}
.bodr-individual-approach-box .box-icon {
    font-size: 24px;
}
.bodr-individual-approach-box p {
    font-size: 14.5px;
    color: #e4e4e7;
    line-height: 1.6;
    margin: 0;
}
.bodr-individual-approach-box strong {
    color: #d97706;
}

/* Блок 3: Заклик до дії (CTA) */
.bodr-about-cta {
    text-align: center;
    background: linear-gradient(180deg, #0b0b0d 0%, #050505 100%);
    border: 1px solid rgba(217, 119, 6, 0.08);
    padding: 60px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}
.bodr-about-cta h2 {
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 700;
}
.bodr-about-cta p {
    color: #a1a1aa;
    margin-bottom: 35px;
    font-size: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Кнопки */
.bodr-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.bodr-btn-primary, .bodr-btn-secondary {
    padding: 15px 32px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.bodr-btn-primary {
    background: #d97706;
    color: #000000;
    border: 1px solid #d97706;
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.15);
}
.bodr-btn-primary:hover {
    background: transparent;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(217, 119, 6, 0.4);
    transform: translateY(-1px);
}
.bodr-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #27272a;
}
.bodr-btn-secondary:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
    transform: translateY(-1px);
}

/* ==========================================================================
   📱 МОБІЛЬНА АДАПТИВНІСТЬ (Пріоритет №1)
   ========================================================================== */
@media (max-width: 1024px) {
    .bodr-about-features-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 колонки на планшетах */
    }
}

@media (max-width: 768px) {
    .bodr-about-container {
        margin-top: 100px;
    }
    .bodr-about-title {
        font-size: 32px;
        letter-spacing: 2px;
    }
    .bodr-about-tagline {
        font-size: 18px;
    }
    .bodr-about-features-grid {
        grid-template-columns: 1fr; /* 1 колонка на смартфонах */
        gap: 16px;
    }
    .bodr-individual-approach-box {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    .bodr-about-cta {
        padding: 40px 20px;
    }
    .bodr-about-cta h2 {
        font-size: 24px;
    }
    .bodr-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .bodr-btn-primary, .bodr-btn-secondary {
        width: 100%;
        text-align: center;
    }
}
.bodr-about-page-wrapper {
    /* 🔥 МАРКЕТИНГОВИЙ ТРЮК: М'яке радіальне свічення (Glow Effect) замість "похоронів" */
    background: radial-gradient(
        circle at 50% 30%, 
        rgba(217, 119, 6, 0.06) 0%,   /* Ледь помітне кавово-золоте преміальне світло по центру */
        rgba(11, 11, 13, 0.98) 50%,    /* Плавно переходимо в глибокий благородний тон */
        #050505 100%                   /* По краях залізно тримаємо твій фірмовий чорний */
    ) !important;
    
    min-height: 100vh;
    width: 100%;
    color: #ffffff;
    padding-top: 1px;
    position: relative;
}

/* Додаємо легку внутрішню преміум-тінь, щоб відокремити контент */
.bodr-about-container {
    max-width: 1100px;
    margin: 120px auto 80px auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Покращуємо контраст карток, щоб вони буквально левітували над цим свіченням */
.bodr-about-feature-card {
    background: linear-gradient(135deg, rgba(20, 20, 22, 0.7) 0%, rgba(8, 8, 10, 0.85) 100%) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(217, 119, 6, 0.15) !important;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.75);
    transition: border-color 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
/* 🔥 ФІКС ФІЛЬТРАЦІЇ: Кінематографічне зникнення невідповідних сортів кави */
.bodr-vertical-card.fade-out {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: scale(0.92) !important;
    pointer-events: none !important;
    display: none !important; /* Повністю виключаємо з сітки сайту, щоб потрібні пачки красиво зсувалися */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
/* 🔥 МАРКЕТИНГОВИЙ UX-ФОКУС: Центрування та підсвічування Вибору Дня */
.bodr-products-triple-grid.single-product-focus {
    display: flex !important;
    justify-content: center !important; /* Залізно ставить картку строго по центру екрана */
    align-items: center !important;
    min-height: 50vh; /* Дає преміальний простір навколо */
}

/* Ексклюзивний візуальний ефект для головного товару дня */
.bodr-products-triple-grid.single-product-focus .bodr-vertical-card:not(.fade-out) {
    transform: scale(1.05) !important; /* Картка стає трохи більшою, показуючи свою важливість */
    border-color: rgba(217, 119, 6, 0.6) !important; /* Більш насичене золото бренду BODR */
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 30px rgba(217, 119, 6, 0.2) !important; /* Люксове свічення */
}
/* 🔥 МАРКЕТИНГОВИЙ UX-ФОКУС: Ідеальне центрування Вибору Дня */
.bodr-products-triple-grid.single-product-focus {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px !important;
    justify-content: center !important;
}

/* Змушуємо картку стати строго в другу (центральну) колонку */
.bodr-products-triple-grid.single-product-focus .bodr-vertical-card:not(.fade-out) {
    grid-column: 2 !important; 
    transform: scale(1.05) !important; /* Делікатне збільшення флагмана бренду */
    border-color: rgba(217, 119, 6, 0.6) !important; /* Фірмове насичене золото */
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 30px rgba(217, 119, 6, 0.25) !important; /* Люксовий Glow-ефект */
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Адаптивність: на мобах повертаємо картку в загальний потік */
@media screen and (max-width: 768px) {
    .bodr-products-triple-grid.single-product-focus .bodr-vertical-card:not(.fade-out) {
        grid-column: 1 !important;
        transform: none !important;
    }
}
/* ==========================================================================
   📱 УЛЬТРА-АДАПТИВНІСТЬ ДЛЯ МАГАЗИНУ BODR (DESKTOP, TABLET, MOBILE)
   ========================================================================== */

/* 1. Планшети та невеликі екрани (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .bodr-products-triple-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* Переходимо на 2 колонки */
        gap: 20px !important;
    }
    
    .bodr-products-triple-grid.single-product-focus {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .bodr-products-triple-grid.single-product-focus .bodr-vertical-card:not(.fade-out) {
        grid-column: span 2 !important; /* Розтягуємо акційну картку на всю ширину */
        max-width: 450px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   📱 PREMIUM MOBILE ADAPTIVITY ДЛЯ БРЕНДУ BODR (max-width: 768px)
   ========================================================================== */
@media screen and (max-width: 768px) {
    
    /* ----------------------------------------------------------------------
       1. ГОЛОВНА СТОРІНКА: Рятуємо Логотип та Плашки
       ---------------------------------------------------------------------- */
    /* Базовий контейнер на головній */
    .bodr-center-logo-wrapper {
        top: 70px !important;
        height: auto !important;
        min-height: calc(100vh - 90px) !important;
        padding: 20px 16px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 20px !important;
    }

    /* 🔥 ФІКС ЛОГОТИПУ: Повертаємо йому адекватний преміальний розмір */
    .bodr-center-logo-wrapper img {
        width: 160px !important; /* Фіксована ідеальна ширина для мобільного екрана */
        height: auto !important;
        max-height: none !important;
        object-fit: contain !important;
        margin: 20px 0 !important;
    }

    /* Картки під логотипом ("ВИБІР ДНЯ", "ШИРОКИЙ ВИБІР") */
    .bodr-center-logo-wrapper .about-card,
    .bodr-center-logo-wrapper [class*="-card"] {
        width: 100% !important;
        max-width: 350px !important;
        background: linear-gradient(135deg, rgba(20, 20, 22, 0.85) 0%, rgba(8, 8, 10, 0.95) 100%) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(217, 119, 6, 0.2) !important;
        padding: 20px !important;
        border-radius: 16px !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
        position: relative !important;
        bottom: auto !important;
        transform: none !important;
    }

    /* ----------------------------------------------------------------------
       2. МАГАЗИН: Строго по одній картці в ряд (Чистий UX/Маркетинг)
       ---------------------------------------------------------------------- */
    .shop-container {
        padding: 0 16px !important;
        margin-top: 90px !important;
    }

    /* 🔥 ФІКС СІТКИ: Залізно в ОДНУ колонку. Жодних витягнутих карток-близнюків! */
    .bodr-products-triple-grid,
    .bodr-products-triple-grid.single-product-focus {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 30px !important; /* Великі преміальні відступи між товарами */
    }

    /* Картка товару займає всю ширину і виглядає розкішно */
    .bodr-vertical-card {
        width: 100% !important;
        max-width: 380px !important; /* Ідеальна ширина для фокусу ока на телефоні */
        box-sizing: border-box !important;
        padding: 25px 20px !important;
        transform: none !important;
    }

    /* Вимикаємо десктопне Grid-центрування на мобах */
    .bodr-products-triple-grid.single-product-focus .bodr-vertical-card:not(.fade-out) {
        grid-column: auto !important;
        transform: scale(1.02) !important; /* Легкий дорогий акцент для Вибору Дня */
    }

   /* 📦 ВРАППЕР ЗОБРАЖЕННЯ: Даємо йому більше простору та центруємо */
    .v-card-thumb {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-bottom: 25px !important; /* Збільшуємо відступ до тексту */
        padding: 10px 0 !important;
    }

    /* 🔥 ФІКС ФОТО: Робимо пачку кави великою та соковитою */
    .v-card-thumb img {
        width: auto !important;
        height: auto !important;
        /* Збільшуємо максимальну висоту пачки з 260px до 340px, щоб вона виглядала масштабно */
        max-height: 340px !important; 
        object-fit: contain !important;
        /* Додаємо легку м'яку тінь під саму пачку, щоб вона преміально відділялася від фону */
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7)) !important;
        transition: transform 0.4s ease !important;
    }
    
    /* Інформаційна частина картки (текст) центрується під великою пачкою */
    .v-card-info {
        text-align: center !important;
        width: 100% !important;
    }

    /* Теги нот (горіх, карамель) */
    .v-coffee-notes {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
    }

    /* Характеристики кави (Кислотність, Гіркота) */
    .v-coffee-specs {
        margin: 20px 0 !important;
        width: 100% !important;
    }
    
    .spec-row {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-bottom: 10px !important;
    }

    /* Кнопка та ціна */
    .v-coffee-footer {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 15px !important;
        margin-top: 20px !important;
    }

    .v-coffee-price {
        font-size: 22px !important;
        justify-content: center !important;
    }

    /* Зручна кнопка під великий палець */
    .add-to-cart-btn {
        width: 100% !important;
        padding: 16px !important;
        font-size: 13px !important;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        border-radius: 30px !important;
    }
}
/* 3. Мікро-екрани (старі телефони, max-width: 375px) */
@media screen and (max-width: 375px) {
    .v-coffee-title {
        font-size: 20px !important;
    }
    .note-tag {
        font-size: 10px !important;
        padding: 4px 8px !important;
    }
}
@media screen and (max-width: 768px) {
    /* 🔥 ВИШТОВХУЄМО КОШИК З-ПІД ФІКСОВАНОГО ХЕДЕРА */
    .bodr-cart-page-wrapper {
        margin-top: 90px !important; /* Робить безпечний преміум-відступ під мобільну шапку сайту */
        padding: 20px 16px !important;
        display: flex !important;
        flex-direction: column !important; /* Ставимо список товарів та панель замовлення один під один */
        gap: 30px !important;
    }

    /* Контейнер одного товару в кошику (Ідеальна мобільна сітка) */
    .bodr-cart-item {
        display: grid !important;
        grid-template-columns: 80px 1fr auto !important; /* Фото | Текст | Хрестик */
        grid-template-rows: auto auto !important; /* Два ряди для правильного розподілу */
        gap: 15px !important;
        padding: 20px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        align-items: center !important;
        position: relative !important;
        background: transparent !important; /* Прибираємо важкі плашки, робимо повітряний преміум-мінімалізм */
        border: none !important;
        box-shadow: none !important;
    }

    /* Фото пачки в кошику */
    .bodr-cart-thumb {
        grid-column: 1 !important;
        grid-row: 1 / span 2 !important;
        width: 80px !important;
        height: 100px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border-radius: 12px !important;
        border: 1px solid rgba(217, 119, 6, 0.12) !important;
        padding: 5px !important;
    }

    .bodr-cart-thumb img {
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
    }

    /* Блок з назвою */
    .bodr-cart-details {
        grid-column: 2 !important;
        grid-row: 1 !important;
        text-align: left !important;
        padding-right: 20px !important;
    }

    .bodr-cart-title {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        margin: 0 0 4px 0 !important;
    }

    /* Селектор кількості переносимо вниз під великий палець */
    .bodr-cart-qty-selector {
        grid-column: 2 !important;
        grid-row: 2 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        margin-top: 5px !important;
        width: fit-content !important;
    }

    /* Ціна товару */
    .bodr-cart-price {
        grid-column: 3 !important;
        grid-row: 2 !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        color: #d97706 !important;
        text-align: right !important;
    }

    /* Кнопка видалення (Хрестик зверху праворуч) */
    .bodr-cart-remove {
        grid-column: 3 !important;
        grid-row: 1 !important;
        position: absolute !important;
        top: 15px !important;
        right: 0 !important;
        color: #71717a !important;
        font-size: 22px !important;
    }

    /* Панель підсумку "ВАШЕ ЗАМОВЛЕННЯ" на весь екран мобільного */
    .bodr-cart-summary-panel {
        width: 100% !important;
        margin-top: 10px !important;
        padding: 24px !important;
    }
}
@media (max-width: 768px) {
    .bodr-contacts-container {
        grid-template-columns: 1fr; /* На смартфонах блоки стають один під один */
        margin-top: 100px;
        gap: 40px;
    }
    .bodr-page-title {
        font-size: 32px;
    }
    .bodr-section-title {
        margin-bottom: 20px;
    }

    /* 🔥 ФІКС ДЛЯ МОБІЛЬНИХ КАРТОК КОНТАКТІВ (Рятуємо Instagram та Email) */
    .bodr-contact-item {
        display: flex !important;
        align-items: center !important;
        padding: 16px 14px !important; /* Трохи компактніші відступи, щоб звільнити місце тексту */
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important; /* Захист від вилізання */
    }

    /* Зменшуємо іконку на мобах, щоб дати більше простору для тексту */
    .bodr-contact-icon {
        width: 42px !important;
        height: 42px !important;
        margin-right: 12px !important;
        flex-shrink: 0 !important; /* Іконка залізно тримає круглу форму і не стискається */
    }

    .bodr-contact-text {
        flex: 1 !important;
        min-width: 0 !important; /* 🔥 Головний трюк для увімкнення переносу слів */
        text-align: left !important;
    }

    /* Рятуємо довгі лінки (Instagram, Email) */
    .bodr-contact-text strong {
        font-size: 14px !important; /* Оптимальний преміум-розмір під мобільний екран */
        word-break: break-all !important; /* Якщо посилання занадто довге, воно акуратно перенесеться на новий рядок */
        line-height: 1.4 !important;
        display: block !important;
    }
    
    .bodr-contact-text span {
        font-size: 11px !important;
        margin-bottom: 4px !important;
    }
}