/* Подключение шрифта Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Базові стилі */
:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --accent-color: #363334;
    --light-gray: #f5f5f5;
    --gray: #9ca3af;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Стили для хедера при наведении */
header {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Дефолтное состояние - прозрачный хедер, белые элементы */
header:not(.scrolled) {
    background-color: transparent !important;
    box-shadow: none !important;
}

header:not(.scrolled) .logo,
header:not(.scrolled) .nav-links a,
header:not(.scrolled) .header-icons i:not(.fa-heart),
header:not(.scrolled) .current-currency {
    color: var(--secondary-color) !important;
}

/* Состояние при скролле или наведении - белый хедер, черные элементы */
header.scrolled {
    background-color: var(--secondary-color) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}

header.scrolled .logo,
header.scrolled .nav-links a,
header.scrolled .header-icons i:not(.fa-heart),
header.scrolled .current-currency {
    color: var(--primary-color) !important;
}

/* Иконка избранного всегда розовая */
header .wishlist-icon i {
    color: #ee5180 !important;
}

/* Маленька червона крапка справа зверху від "New Arrivals" — статичний акцент.
   Використовуємо ::before, бо ::after зайнятий .nav-links a::after (hover-underline animation),
   через що крапка розтягувалась у лінію при hover. */
.dropdown-menu a[data-translate="new_arrivals"],
.mobile-dropdown-menu a[data-translate="new_arrivals"] {
    position: relative;
}
.dropdown-menu a[data-translate="new_arrivals"]::before,
.mobile-dropdown-menu a[data-translate="new_arrivals"]::before {
    content: '';
    position: absolute;
    top: 2px;
    right: -10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d32f2f;
    pointer-events: none;
}

/* Dropdown-menu на всю ширину экрана */
@media (min-width: 769px) {
    .has-dropdown {
        position: static !important; /* Важно для полной ширины */
    }
    
    .dropdown-menu {
        position: fixed !important;
        left: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        top: 69px !important;
        justify-content: center !important;
        display: flex !important;
        gap: 40px !important;
        padding: 15px 0 !important;
        z-index: 1001 !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
        border-radius: 0 !important;
        background-color: var(--secondary-color) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-10px) !important;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease !important;
    }
    
    .dropdown-menu li {
        white-space: nowrap;
    }

    .dropdown-menu li a {
        padding: 8px 20px !important;
        color: var(--primary-color) !important;
    }
    
    /* Плавное появление */
    .has-dropdown:hover .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    /* Ховер для десктопа */
    header:hover:not(.scrolled) {
        background-color: var(--secondary-color) !important;
    }
    
    header:hover:not(.scrolled) .logo,
    header:hover:not(.scrolled) .nav-links a,
    header:hover:not(.scrolled) .header-icons i:not(.fa-heart),
    header:hover:not(.scrolled) .current-currency {
        color: var(--primary-color) !important;
    }
}

/* Для мобильных устройств */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static !important;
        width: 100% !important;
        display: none !important;
    }
    
    .has-dropdown:hover .dropdown-menu {
        display: block !important;
    }
    
    /* Мобильный хедер */
    header {
        padding: 0 15px;
        background-color: transparent !important;
        box-shadow: none !important;
    }
    
    header .logo,
    header .header-icons i:not(.fa-heart),
    header .current-currency,
    header .mobile-menu-btn i {
        color: var(--secondary-color) !important;
    }
    
    header .wishlist-icon i {
        color: #ee5180 !important;
    }
    
    header.scrolled {
        background-color: var(--secondary-color) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    }
    
    header.scrolled .logo,
    header.scrolled .header-icons i:not(.fa-heart),
    header.scrolled .current-currency,
    header.scrolled .mobile-menu-btn i {
        color: var(--primary-color) !important;
    }
    
    header.scrolled .wishlist-icon i {
        color: #ee5180 !important;
    }
}

/* Шапка сайту */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    padding: 0 15px;
    transition: var(--transition);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
}

.nav-section {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.logo {
    flex: 1;
    display: flex;
    justify-content: center;
    font-size: 34px;
    font-weight: 100;
    letter-spacing: -4px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.header-icons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    align-items: center;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 35px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    position: relative;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 100;
    transition: var(--transition);
    padding: 10px 0;
    display: block;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.header-icons i {
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.cart-count, .wishlist-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--accent-color);
    color: var(--secondary-color);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon, .wishlist-icon {
    position: relative;
}

.currency-dropdown {
    position: relative;
    cursor: pointer;
    padding: 5px 10px;
}

.current-currency {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.currency-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--secondary-color);
    border: 1px solid var(--light-gray);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 120px;
}

.currency-options div {
    padding: 10px 15px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid var(--light-gray);
}

.currency-options div:hover {
    background-color: var(--light-gray);
}

.currency-options div:last-child {
    border-bottom: none;
}

.currency-dropdown:hover .currency-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* "0 Reviews" / "Подивитися на собі" — за рішенням клієнта прибрати з модалки */
.modal-product-reviews2,
.modal-see-on-you2 {
    display: none !important;
}

/* ===== Language dropdown у header — клон currency-dropdown ===== */
.language-dropdown {
    position: relative;
    cursor: pointer;
    padding: 5px 8px;
}
.current-language {
    font-size: 14px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.language-options {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--secondary-color);
    border: 1px solid var(--light-gray);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    min-width: 80px;
}
.language-options div {
    padding: 10px 15px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid var(--light-gray);
}
.language-options div:hover {
    background-color: var(--light-gray);
}
.language-options div:last-child {
    border-bottom: none;
}
.language-options div.active {
    font-weight: 600;
}
.language-dropdown:hover .language-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* Колір тексту синхронізуємо з .current-currency */
header:not(.scrolled) .current-language { color: var(--secondary-color); }
header.scrolled .current-language,
header:hover:not(.scrolled) .current-language { color: var(--primary-color); }

/* Мобильное меню */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100dvh;
    background: linear-gradient(180deg, #ffffff 0%, #fafaf9 100%);
    z-index: 1200;
    transition: left 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 90px 28px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu::before {
    content: '4FLOW';
    position: absolute;
    top: 26px;
    left: 28px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu.active .mobile-nav-links > ul > li,
.mobile-menu.active .mobile-menu-extra {
    animation: mmSlideIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) both;
}
.mobile-menu.active .mobile-nav-links > ul > li:nth-child(1) { animation-delay: 0.08s; }
.mobile-menu.active .mobile-nav-links > ul > li:nth-child(2) { animation-delay: 0.14s; }
.mobile-menu.active .mobile-nav-links > ul > li:nth-child(3) { animation-delay: 0.20s; }
.mobile-menu.active .mobile-menu-extra                        { animation-delay: 0.28s; }

@keyframes mmSlideIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu-close {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.05);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}

.mobile-nav-links ul {
    list-style: none;
}

.mobile-nav-links > ul > li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav-links > ul > li:last-child {
    border-bottom: none;
}

.mobile-nav-links a {
    display: block;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 4px;
    color: var(--primary-color);
    transition: color 0.2s, transform 0.2s;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
    color: var(--accent-color);
    transform: translateX(4px);
}

.mobile-has-dropdown > a {
    position: relative;
    padding-right: 30px;
}

.mobile-has-dropdown > a::after {
    content: '+';
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.mobile-has-dropdown.active > a::after {
    transform: translateY(-50%) rotate(45deg);
}

.mobile-dropdown-menu {
    display: none;
    padding: 4px 0 12px 20px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    margin-left: 4px;
}

.mobile-has-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-dropdown-menu li {
    border: none !important;
}

.mobile-dropdown-menu li a {
    font-size: 13px;
    letter-spacing: 1.5px;
    padding: 10px 0;
    color: #555;
}

.mobile-menu-extra {
    padding-top: 28px;
    margin-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.mobile-menu-extra::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: var(--primary-color);
}

/* Pill switchers (мова + валюта) */
.mobile-pill-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.mobile-pill-label {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gray);
    flex-shrink: 0;
}

.mobile-pill-group {
    position: static !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    min-width: 0 !important;
}

.mobile-pill-group .mobile-current-language,
.mobile-pill-group .mobile-current-currency {
    display: none;
}

.mobile-language-options,
.mobile-currency-options {
    display: flex !important;
    gap: 6px;
    position: static !important;
    background: transparent !important;
    border: none !important;
    min-width: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.mobile-pill {
    padding: 7px 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 1px;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    background: transparent;
    text-align: center;
    min-width: 42px;
}

.mobile-pill:hover {
    border-color: var(--primary-color);
}

.mobile-pill.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.mobile-currency-options .mobile-pill[data-currency].active {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.mobile-search {
    position: relative;
    margin-top: 24px;
}

.mobile-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 13px;
    pointer-events: none;
}

.mobile-search-input {
    width: 100%;
    padding: 12px 16px 12px 40px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 999px;
    font-size: 14px;
    background: transparent;
    transition: border-color 0.2s;
}

.mobile-search-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Поиск */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1300;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

.search-input {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border: 1px solid var(--light-gray);
    margin-bottom: 20px;
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.search-result-item img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
    background: #f5f5f5;
}

.search-result-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
}

.search-result-info h4 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-result-info .price {
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 600;
}

.search-results .no-results {
    padding: 24px 8px;
    text-align: center;
    color: var(--gray);
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Боковые панели */
.cart-sidebar, .wishlist-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background-color: var(--secondary-color);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    transition: var(--transition);
    padding: 30px;
    overflow-y: auto;
}

.cart-sidebar.active, .wishlist-sidebar.active {
    right: 0;
}

.cart-header, .wishlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-gray);
}

.close-cart, .close-wishlist {
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.cart-items, .wishlist-items {
    margin-bottom: 30px;
}

.cart-item, .wishlist-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
}

.cart-item-image, .wishlist-item-image {
    width: 80px;
    height: 100px;
    object-fit: cover;
}

.cart-item-details, .wishlist-item-details {
    flex: 1;
}

.cart-item-title, .wishlist-item-title {
    font-size: 14px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.cart-item-price, .wishlist-item-price {
    font-weight: bold;
    margin-bottom: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-btn {
    width: 25px;
    height: 25px;
    border: 1px solid var(--light-gray);
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item, .remove-wishlist {
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    position: absolute;
    top: 10px;
    right: 10px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 30px;
}

.empty-cart, .empty-wishlist {
    text-align: center;
    padding: 40px 0;
    color: var(--gray);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Герой-видео */
.hero-video {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.desktop-video {
    display: block;
}

.mobile-video {
    display: none;
}

#heroVideoDesktop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-video .slide-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 500px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-video .slide-content h2 {
    font-size: 193px;
    margin-bottom: 25px;
    font-family: 'Ballet', cursive;
    letter-spacing: 2px;
    font-weight: 400;
    line-height: 60px;
    color: var(--secondary-color);
    text-shadow: 0 5px 3px #00000068;
}

.hero-slider-btn {
    padding: 15px 35px;
    background-color: transparent;
    border: 1px solid #ffffff;
    transition: 0.6s;
    position: relative;
    color: #000;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-slider-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    right: 0;
    z-index: -1;
    top: 0;
    background-color: #fff;
    height: 100%;
    transition: 0.4s;
}

.hero-slider-btn:hover {
    color: #fff;
}

.hero-slider-btn:hover::after {
    width: 0%;
    left: 0;
}

/* Новые поступления */
.new-arrivals {
    margin: 50px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 400;
    padding: 0 20px;
}

.products-slider {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
}

.products-container {
    display: flex;
    transition: transform 0.3s ease;
    gap: 20px;
    padding: 10px 0;
}

.product-card2 {
    flex: 0 0 auto;
    width: calc(25% - 15px);
    background-color: white;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: default; /* Изменено с pointer на default */
}

.product-image2 {
    position: relative;
    overflow: hidden;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
    aspect-ratio: 3/4;
    width: 100%;
}

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

.product-card2:hover .product-image2 img {
    transform: scale(1.05);
}

.product-actions2 {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
    z-index: 2;
}

.product-card2:hover .product-actions2 {
    opacity: 1;
    transform: translateX(0);
}

.action-btn2 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 1px solid #eee;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.action-btn2:hover {
    background: #000;
    color: white;
    transform: scale(1.1);
}

.action-btn2.active, .action-btn2.active2 {
    background-color: #ee5180;
    color: white;
}

.product-info2 {
    padding: 20px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 80px;
    background: white;
}

.product-title2 {
    font-size: 1.1em;
    margin: 0;
    font-weight: 400;
    color: #333;
    line-height: 1.4;
    height: auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Ціни видимі: попереднє `display: none !important` приховувало їх скрізь — прибрано */

.slider-nav {
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 5;
}

.slider-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: all;
}

.slider-nav-btn:hover {
    background-color: var(--accent-color);
    color: var(--secondary-color);
}

.new-arrivals-btn {
    padding: 15px 35px;
    background-color: transparent;
    border: 1px solid #000000;
    transition: 0.4s;
    position: relative;
    color: #fff;
    cursor: pointer;
    margin-top: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.new-arrivals-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    right: 0;
    z-index: -1;
    top: 0;
    background-color: #000000;
    height: 100%;
    transition: 0.6s;
}

.new-arrivals-btn:hover {
    color: #000000;
}

.new-arrivals-btn:hover::after {
    width: 0%;
    left: 0;
}

/* Секція з 4 блоків (категорії) */
.section-3 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.section-3_block {
    width: 100%;
    height: 80vh;
    min-height: 520px;
    background-size: cover;
    position: relative;
}

.section-3_block div {
    width: 200px;
    height: 200px;
    position: absolute;
    bottom: 0;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: end;
    padding-bottom: 40px;
    gap: 20px;
    text-align: end;
    color: white;
}

.section-3_block-title {
    text-shadow: 0 1px 3px #00000068;
    font-size: 32px;
    font-weight: 600;
}

.section-3-btn {
    padding: 15px 35px;
    background-color: transparent;
    border: 1px solid #ffffff;
    transition: 0.4s;
    position: relative;
    color: #000000;
    z-index: 1;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-3-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    right: 0;
    z-index: -1;
    top: 0;
    background-color: #ffffff;
    height: 100%;
    transition: 0.6s;
}

.section-3-btn:hover {
    color: #ffffff;
}

.section-3-btn:hover::after {
    width: 0%;
    left: 0;
}

/* Слайдер Shop the look */
.slider-container1-block {
    margin: 0 auto;
    text-align: center;
    margin-top: 80px;
}

.slider-container1-block_title-mini {
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-weight: 400;
}

.slider-container1 {
    display: flex;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 5px auto;
    overflow: hidden;
    margin-top: 50px;
}

.slider-wrapper1 {
    display: flex;
    justify-content: space-between;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.slide1 {
    flex: 0 0 100%;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.image-area1 {
    position: relative;
    width: 550px;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.image-area1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotspot1 {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.677);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
    opacity: 0.8;
    animation: hot1 linear 1s infinite alternate-reverse;
}

@keyframes hot1 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.3);
    }
}

.hotspot1::after {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background-color: #ffffff;
    border-radius: 50%;
}

.product-info-area1 {
    width: 350px;
    padding: 30px 20px;
    background-color: #fff;
    border: 1px solid #eee;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.product-info-area1 .product-info-image1 {
    width: 100%;
    height: 400px;
    object-fit: contain !important;
    margin-bottom: 20px;
    display: block;
    background-color: var(--secondary-color);
}

.product-name1 {
    font-size: 1.1em;
    font-weight: 600;
    margin-bottom: 15px;
    height: 60px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-color1 {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
}

.view-product-btn1 {
    padding: 15px 35px;
    background-color: transparent;
    transition: 0.4s;
    position: relative;
    color: #fff;
    cursor: pointer;
    z-index: 1;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.view-product-btn1::after {
    content: '';
    position: absolute;
    width: 100%;
    right: 0;
    z-index: -1;
    top: 0;
    background-color: #000000;
    height: 100%;
    transition: 0.6s;
}

.view-product-btn1:hover {
    color: #000000;
}

.view-product-btn1:hover::after {
    width: 0%;
    left: 0;
}

.slider-dots1 {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0px 0px 40px 0;
}

.dot1 {
    width: 8px;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-bottom: 20px;
}

.dot1.active {
    background-color: #333;
    transform: scale(1.2);
}

/* Elusive секция */
.elusive {
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #fff;
    background-size: cover;
    flex-direction: column;
    background-position: 0% 20%;
}

.elusive-block {
    background-color: #00000090;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.elusive-btn {
    text-decoration: underline;
    color: #fff;
    font-size: 18px;
}

/* Newsletter */
.newsletter {
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    color: #000;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.newsletter-lines {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    z-index: 1;
}

.newsletter-line {
    position: absolute;
    width: 1px;
    height: 150%;
    background: rgba(0, 0, 0, 0.2);
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.newsletter-line.left-1 {
    left: 15%;
    transform: translateY(-100%);
}

.newsletter-line.left-2 {
    left: 25%;
    transform: translateY(-120%);
}

.newsletter-line.left-3 {
    left: 35%;
    transform: translateY(-80%);
}

.newsletter-line.right-1 {
    right: 15%;
    transform: translateY(100%);
}

.newsletter-line.right-2 {
    right: 25%;
    transform: translateY(120%);
}

.newsletter-line.right-3 {
    right: 35%;
    transform: translateY(80%);
}

.newsletter.animate .newsletter-line.left-1 {
    transform: translateY(50%);
}

.newsletter.animate .newsletter-line.left-2 {
    transform: translateY(30%);
}

.newsletter.animate .newsletter-line.left-3 {
    transform: translateY(70%);
}

.newsletter.animate .newsletter-line.right-1 {
    transform: translateY(-50%);
}

.newsletter.animate .newsletter-line.right-2 {
    transform: translateY(-30%);
}

.newsletter.animate .newsletter-line.right-3 {
    transform: translateY(-70%);
}

.newsletter-block-animation {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.newsletter-title-mini {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(30px) rotate(-5deg);
    transition: all 0.8s ease;
    display: inline-block;
    color: rgba(0, 0, 0, 0.7);
}

.newsletter.animate .newsletter-title-mini {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.newsletter-title {
    font-size: 48px;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 30px;
    position: relative;
    opacity: 0;
    transform: scale(0.8) translateY(50px);
    transition: all 1s ease 0.3s;
    color: #000;
}

.newsletter.animate .newsletter-title {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.newsletter-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000, transparent);
    transform: translateX(-50%);
    transition: width 1.2s ease 0.8s;
}

.newsletter.animate .newsletter-title::after {
    width: 200px;
}

.newsletter-subscribe {
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
    color: rgba(0, 0, 0, 0.8);
    z-index: 2;
    position: relative;
}

.newsletter.animate .newsletter-subscribe {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-btn {
    color: #000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.newsletter-form {
    width: 400px;
    display: flex;
    margin-top: 15px;
    gap: 15px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.9s;
    z-index: 2;
    position: relative;
}

.newsletter.animate .newsletter-form {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: #000;
    width: 60%;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.newsletter-form button {
    width: 40%;
    padding: 15px 35px;
    background-color: transparent;
    border: 1px solid #000;
    transition: 0.4s;
    position: relative;
    color: #fff;
    z-index: 1;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.newsletter-form button::after {
    content: '';
    position: absolute;
    width: 100%;
    right: 0;
    z-index: -1;
    top: 0;
    background-color: #000;
    height: 100%;
    transition: 0.6s;
}

.newsletter-form button:hover {
    color: #000;
}

.newsletter-form button:hover::after {
    width: 0%;
    left: 0;
}

/* Футер */
.footer {
    background-color: #f5f5f5;
    padding: 35px 20px;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    margin: 0 auto;
    gap: 30px;
}

.footer-container-block {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.footer-container-block .ff {
    width: 300px;
}

.ff-icons {
    margin: 0 auto;
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.footer-container-block-2 {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
    gap: 30px;
}

.footer-container-block-3 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 20px;
    gap: 15px;
    text-align: center;
}

.footer-section {
    margin-bottom: 20px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    transition: color 0.3s ease;
    margin: 10px 0;
}

.footer-section a:hover {
    color: #000;
    text-decoration: underline;
}

.footer-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 30px 0 45px;
}

.icons-new {
    margin-bottom: 30px;
    font-size: 25px;
}

.language-selector {
    display: flex;
    gap: 10px;
}

.language-option {
    cursor: pointer;
    transition: color 0.3s ease;
}

.language-option:hover {
    color: #000;
}

.language-option.active {
    font-weight: bold;
    color: #000;
}

.payment-methods {
    margin: 20px 0;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.payment-icon {
    width: 50px;
    height: 30px;
    background-color: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.payment-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.payment-icon i {
    font-size: 20px;
    color: #333;
}

/* Промокод в корзине */
.promo-section {
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
}

.promo-input-group {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.promo-code-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    font-size: 14px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.apply-promo-btn {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.apply-promo-btn:hover {
    background-color: var(--accent-color);
}

.promo-message {
    margin: 10px 0;
    font-size: 14px;
    min-height: 20px;
    display: none;
}

.discount-applied {
    color: #28a745;
    font-weight: 500;
}

.order-total {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 18px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.place-order-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.place-order-btn:hover {
    background-color: var(--accent-color);
}

/* Loading overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffffd8;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.8s ease-out;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(1.2);
    transition: 0.3s;
}

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

.shapes-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #000;
    border-radius: 50%;
    animation: rotate 4s linear infinite;
    box-sizing: border-box;
}

.shape-1 {
    animation-delay: 0s;
    border-color: #656565;
}

.shape-2 {
    animation-delay: -1s;
    border-color: #6c757d;
}

.shape-3 {
    animation-delay: -2s;
    border-color: #4d4d4d;
}

.shape-4 {
    animation-delay: -3s;
    border-color: #000000;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: rotate(180deg) scale(0.7);
        opacity: 0.7;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 1;
    }
}

.loading-text {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: #333;
    display: flex;
    position: relative;
    z-index: 10000;
}

.loading-text span {
    opacity: 0;
    animation: letterFadeIn 0.3s ease-out forwards;
}

.loading-text span:nth-child(1) { animation-delay: 0.2s; }
.loading-text span:nth-child(2) { animation-delay: 0.4s; }
.loading-text span:nth-child(3) { animation-delay: 0.6s; }
.loading-text span:nth-child(4) { animation-delay: 0.8s; }
.loading-text span:nth-child(5) { animation-delay: 1s; }

@keyframes letterFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Стили для всплывающего окна */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.popup-overlay.popup-show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.popup-overlay.popup-show .popup-content {
    transform: translateY(0);
    opacity: 1;
}

.popup-close-button {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #aaa;
    transition: color 0.2s ease;
}

.popup-close-button:hover {
    color: #333;
}

.popup-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.popup-text {
    font-size: 16px;
    margin-bottom: 25px;
    color: #666;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.popup-email-input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
}

.popup-submit-button {
    background-color: #ee5180;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    width: 100%;
}

.popup-submit-button:hover {
    background-color: #ce1962;
    transform: translateY(-1px);
}

.popup-no-thanks {
    color: #ee5180;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.popup-no-thanks:hover {
    color: #ce1962;
}

.popup-success-message {
    font-size: 24px;
    margin-bottom: 15px;
    color: #28a745;
}

.popup-promo-code {
    display: inline-block;
    background-color: #f8f9fa;
    border: 1px dashed #ccc;
    padding: 10px 20px;
    margin: 15px 0;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    border-radius: 5px;
    user-select: all;
}

.popup-continue-shopping {
    color: #ee5180;
    text-decoration: none;
    font-size: 16px;
    margin-top: 10px;
    display: inline-block;
}

.popup-continue-shopping:hover {
    color: #ce1962;
}

.popup-scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
    z-index: 999;
    background-image: linear-gradient(45deg, #000000, #323232);
}

.popup-scroll-to-top.popup-show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    animation: popup-pulse 2s infinite ease-in-out;
}

.popup-scroll-to-top:hover {
    background-image: linear-gradient(45deg, #ee5180, #f50565);
    transform: translateY(-5px) scale(1.05);
    animation: none;
}

@keyframes popup-arrow-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.popup-scroll-to-top span {
    display: block;
    font-size: 28px;
    line-height: 1;
    animation: popup-arrow-bounce 1.2s infinite ease-in-out;
}

.popup-scroll-to-top:hover span {
    animation: none;
    transform: translateY(-3px);
}

@keyframes popup-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(87, 87, 87, 0.4);
    }
    100% {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }
}

/* Фикс для удаления из избранного */
.wishlist-item {
    position: relative;
}

.remove-wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.remove-wishlist:hover {
    background: var(--accent-color);
    color: var(--secondary-color);
}

/* Стили для кнопки в избранном */
.move-to-cart {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    margin-top: 10px;
    font-weight: 600;
}

.move-to-cart:hover {
    background-color: var(--accent-color);
}

/* Уведомления */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 15px 25px;
    border-radius: 5px;
    z-index: 2000;
    height: 50px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    max-width: 300px;
    font-size: 14px;
}

.notification.show {
    transform: translateX(0);
}

/* Стили для модального окна email */
.email-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.email-modal {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.email-modal-overlay.active .email-modal {
    transform: translateY(0);
}

.email-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
}

.email-modal-header h3 {
    margin: 0;
    font-size: 1.3em;
    font-weight: 600;
    color: #333;
}

.email-modal-close {
    background: none;
    border: none;
    font-size: 1.2em;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
    padding: 5px;
}

.email-modal-close:hover {
    color: #333;
}

.email-modal-body {
    padding: 25px;
}

.email-modal-body p {
    margin: 0 0 20px 0;
    color: #666;
    line-height: 1.5;
    font-size: 0.95em;
}

.email-input-group {
    margin-bottom: 25px;
}

.email-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.email-input:focus {
    outline: none;
    border-color: #000;
}

.email-input.error {
    border-color: #dc3545;
}

.email-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.email-cancel-btn, .email-submit-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95em;
}

.email-cancel-btn {
    background-color: #f5f5f5;
    color: #333;
}

.email-cancel-btn:hover {
    background-color: #e9e9e9;
}

.email-submit-btn {
    background-color: #000;
    color: white;
}

.email-submit-btn:hover {
    background-color: #333;
}

/* Стили для расширенного модального окна заказа */
.email-modal {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.email-modal-body {
    padding: 20px 25px;
}

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

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
    box-sizing: border-box;
    background-color: #fff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #dc3545;
}

.form-error {
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
    min-height: 18px;
}

.form-textarea {
    resize: vertical;
    min-height: 60px;
}

.order-summary-section {
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #eee;
}

.order-summary-section h4 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.order-items-list {
    max-height: 200px;
    overflow-y: auto;
    margin-bottom: 15px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-name {
    flex: 2;
}

.order-item-details {
    flex: 1;
    color: #666;
    font-size: 12px;
}

.order-item-price {
    flex: 1;
    text-align: right;
    font-weight: 500;
}

.order-total-line {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 2px solid #ddd;
    font-weight: 600;
    font-size: 16px;
}

.email-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.email-cancel-btn {
    padding: 12px 25px;
    background-color: #f5f5f5;
    color: #333;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
}

.email-cancel-btn:hover {
    background-color: #e9e9e9;
}

.email-submit-btn {
    padding: 12px 25px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 15px;
    min-width: 140px;
}

.email-submit-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.email-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Стили для уведомлений */
.success-message {
    display: none;
    text-align: center;
    padding: 30px;
}

.success-message i {
    font-size: 48px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-message h3 {
    color: #28a745;
    margin-bottom: 15px;
}

.success-message p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* АДАПТИВ */
@media (max-width: 768px) {
    .header-top {
        width: 100%;
    }
    
    .nav-section {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
        margin-right: 13px;
    }
    
    .header-top {
        justify-content: center;
    }
    
    .logo {
        font-size: 25px;
    }
    
    /* Видео на мобильных */
    .desktop-video {
        display: none;
    }

    .mobile-video {
        display: block;
    }

    #heroVideoMobile {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
       width:130%;
        object-fit: contain;
    }
    
    .hero-video .slide-content {
        margin-left: 5%;
        padding: 20px;
        width: 90%;
    }
    
    .hero-video .slide-content h2 {
        font-size: 130px;
        letter-spacing: 3px;
        line-height: 30px;
    }
    
    /* Продукты */
    .products-container {
        padding: 10px 5px;
        gap: 15px;
    }
    
    .product-card2 {
        min-width: calc(50% - 8px);
        max-width: calc(100% - 8px);
    }
    
    .empty-slot {
        display: none;
    }
    
    /* Секція з 4 блоків — mobile */
    .section-3 {
        grid-template-columns: 1fr;
    }

    .section-3_block {
        height: 60vh;
        min-height: 420px;
    }
    
    .section-3_block div {
        right: 20px;
        width: 150px;
        height: 150px;
        padding-bottom: 20px;
    }
    
    /* Слайдер Shop the look */
    .slider-container1 {
        margin: 30px auto;
    }
    
    .slide1 {
        flex-direction: column;
        gap: 20px;
    }
    
    .image-area1 {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }
    
    .product-info-area1 {
        width: 100%;
        max-width: 300px;
    }
    
    .slider-nav {
        display: none !important;
    }
    
    /* Elusive */
    .elusive {
        height: 60vh;
        padding: 0 20px;
        object-fit: cover;
    }
    
    .elusive-block h2 {
        font-size: 20px;
    }
    
    .elusive-block h3 {
        font-size: 10px;
    }
    
    /* Newsletter */
    .newsletter-form {
        width: 100%;
        flex-direction: column;
        padding: 0 20px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    .newsletter-title {
        font-size: 33px;
    }
    
    /* Футер */
    .footer-container-block {
        flex-direction: column;
        gap: 35px;
    }
    
    .footer-container-block-2 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 10px;
    }
    
    .footer-section {
        width: 100%;
        max-width: 320px;
    }
    
    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-section p,
    .footer-section a {
        font-size: 13px;
    }
    
    .footer-container-block-3 {
        flex-direction: column;
        gap: 10px;
    }
    
    .payment-icons {
        justify-content: center;
    }
    
    .footer-divider {
        margin: 25px 0 30px;
    }
    
    .loading-text {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    
    .shapes-container {
        width: 150px;
        height: 150px;
    }
    
    /* Боковые панели */
    .cart-sidebar, .wishlist-sidebar {
        width: 100%;
        right: -100%;
        padding: 20px;
    }
    
    /* Кнопки */
    .section-3-btn {
        padding: 10px 15px;
        font-size: 19px;
    }
    
    /* Уведомления на мобильных */
    .notification {
        top: 80px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .hero-video .slide-content h2 {
        font-size: 130px;
        letter-spacing: 1px;
        font-weight: 500;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .product-card2 {
        min-width: 75%;
    }
    
    .section-3_block div {
        right: 10px;
        width: 120px;
        height: 120px;
        gap: 10px;
    }
    
    .section-3-btn {
        padding: 10px;
        font-size: 17px;
    }
    
    .new-arrivals-btn,
    .view-product-btn1,
    .hero-slider-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .payment-icons {
        gap: 10px;
    }
    
    .payment-icon {
        width: 45px;
        height: 28px;
    }
    
    .payment-icon i {
        font-size: 18px;
    }
    
    .product-image2 {
        height: 350px;
    }
    
    .image-area1 {
        height: 250px;
    }
    
    .product-info-area1 .product-info-image1 {
        height: 250px;
    }
    
    .footer {
        padding: 25px 15px;
    }
    
    .footer-section {
        max-width: 280px;
    }
}

@media (max-width: 360px) {
    .header-top {
        padding: 10px 0;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .mobile-nav-links a {
        font-size: 16px;
    }
    
    .hero-video .slide-content {
        padding: 15px;
    }
    
    .products-slider {
        margin: 0 10px;
    }
    
    .footer-container-block-2 {
        padding: 5px;
    }
}

/* ==========================================================================
   SALE -40% БАНЕР НА ГОЛОВНІЙ
   ========================================================================== */

.sale-banner {
    position: relative;
    background: #0a0a0a;
    color: #fff;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

/* Декоративний градієнт-світіння позаду */
.sale-banner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90%;
    height: 60%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(211, 47, 47, 0.18) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

/* Біжуча стрічка marquee */
.sale-marquee {
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0;
    background: rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.sale-marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 36px;
    white-space: nowrap;
    animation: saleMarqueeScroll 40s linear infinite;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    padding-left: 0;
    will-change: transform;
}

.sale-marquee-track span:not(.sale-dot) {
    color: #fff;
}

.sale-marquee-track .sale-dot {
    font-size: 10px;
    color: #d32f2f;
    line-height: 1;
}

.sale-marquee-reverse .sale-marquee-track {
    animation-direction: reverse;
    animation-duration: 45s;
}

@keyframes saleMarqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Центральний контент */
.sale-banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 90px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.sale-eyebrow {
    font-family: 'Lora', serif;
    font-style: italic;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 32px;
}

.sale-headline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 0.92;
    margin: 0;
    letter-spacing: -2px;
}

.sale-headline-percent {
    display: block;
    font-size: clamp(80px, 14vw, 200px);
    background: linear-gradient(180deg, #fff 0%, #d32f2f 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff;
    line-height: 1;
}

.sale-headline-percent small {
    font-size: 0.5em;
    vertical-align: top;
    line-height: 1;
    opacity: 0.7;
    margin-left: 4px;
}

.sale-headline-script {
    display: block;
    font-family: 'Ballet', 'Lora', cursive;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(28px, 4.5vw, 64px);
    letter-spacing: 1px;
    margin-top: 18px;
    color: #fff;
    text-transform: none;
    line-height: 1.1;
}

.sale-sub {
    margin: 32px auto 40px;
    font-family: 'Lora', serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 580px;
}

.sale-cta {
    display: inline-block;
    padding: 18px 56px;
    background: #fff;
    color: #0a0a0a !important;
    border: 1.5px solid #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 4px;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.35s ease, color 0.35s ease, transform 0.25s ease;
    cursor: pointer;
    position: relative;
}

.sale-cta:hover {
    background: transparent;
    color: #fff !important;
    transform: translateY(-2px);
}

/* TABLET */
@media (max-width: 900px) {
    .sale-banner-content {
        padding: 60px 20px;
    }
    .sale-eyebrow {
        letter-spacing: 6px;
        font-size: 11px;
        margin-bottom: 22px;
    }
    .sale-marquee {
        padding: 14px 0;
    }
    .sale-marquee-track {
        gap: 28px;
        font-size: 13px;
        letter-spacing: 4px;
    }
    .sale-headline-script {
        margin-top: 12px;
    }
    .sale-sub {
        font-size: 15px;
        margin: 24px auto 32px;
    }
    .sale-cta {
        padding: 16px 44px;
        letter-spacing: 3px;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .sale-banner-content {
        padding: 48px 18px;
    }
    .sale-eyebrow {
        letter-spacing: 4px;
        font-size: 10px;
        margin-bottom: 18px;
    }
    .sale-marquee {
        padding: 12px 0;
    }
    .sale-marquee-track {
        gap: 20px;
        font-size: 11px;
        letter-spacing: 3px;
    }
    .sale-headline-percent {
        letter-spacing: -1px;
    }
    .sale-headline-script {
        letter-spacing: 0.5px;
        margin-top: 10px;
    }
    .sale-sub {
        font-size: 14px;
        margin: 20px auto 28px;
        line-height: 1.6;
    }
    .sale-cta {
        padding: 14px 32px;
        font-size: 12px;
        letter-spacing: 2.5px;
        display: block;
        max-width: 280px;
        margin: 0 auto;
    }
}

/* Уважаємо prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .sale-marquee-track {
        animation: none;
    }
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR (поверх хедера, біжучий нагадник про знижку)
   ========================================================================== */

:root {
    --top-bar-h: 38px;
}

.top-announcement {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--top-bar-h);
    background: #0a0a0a;
    color: #fff;
    overflow: hidden;
    z-index: 1002;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.top-announcement-track {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    white-space: nowrap;
    animation: topAnnouncementScroll 38s linear infinite;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding-left: 0;
    will-change: transform;
}

.top-announcement-track span:not(.top-announcement-dot) {
    color: #fff;
}

.top-announcement-track .top-announcement-dot {
    font-size: 7px;
    color: #d32f2f;
    line-height: 1;
}

@keyframes topAnnouncementScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* Хедер зсувається донизу на висоту bar */
header {
    top: var(--top-bar-h) !important;
}

/* Dropdown desktop — теж пересувається */
@media (min-width: 769px) {
    .dropdown-menu {
        top: calc(var(--top-bar-h) + 69px) !important;
    }
}

/* Mobile: бар тонший, шрифт менший */
@media (max-width: 600px) {
    :root {
        --top-bar-h: 32px;
    }
    .top-announcement-track {
        font-size: 10px;
        letter-spacing: 3px;
        gap: 22px;
        animation-duration: 30s;
    }
}

/* prefers-reduced-motion — вимикаємо рух */
@media (prefers-reduced-motion: reduce) {
    .top-announcement-track {
        animation: none;
    }
}

/* ==========================================================================
   SCROLL REVEAL — тонкі fade+slide-up анімації при появі в viewport
   Стиль "premium minimalism" (Lululemon, Aritzia вайб) — без перебільшень.
   ========================================================================== */

.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity   0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Картки товарів — легше і швидше (більше елементів — каскад) */
.scroll-reveal-fast {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity   0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.scroll-reveal-fast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Шанобливо до людей, які не хочуть рухомості */
@media (prefers-reduced-motion: reduce) {
    .scroll-reveal,
    .scroll-reveal-fast {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ==========================================================================
   SALE OFF — ховаємо банер/бар/відступи коли SALE_ACTIVE = false
   ========================================================================== */

html.sale-inactive .top-announcement,
html.sale-inactive .sale-banner {
    display: none !important;
}

html.sale-inactive {
    --top-bar-h: 0px;
}

html.sale-inactive header {
    top: 0 !important;
}

@media (min-width: 769px) {
    html.sale-inactive .dropdown-menu {
        top: 69px !important;
    }
}

/* ==========================================================================
   PREMIUM SCROLL-REVEAL — три типи анімацій для різного контенту
   Стиль: Lululemon / Aritzia / Off-White промо-сторінки
   Принцип: повільні видихи через ease-out-expo, без bouncy/rotate
   ========================================================================== */

/* 1) Універсальний reveal для тексту (slide-up + fade) */
.reveal-up {
    opacity: 0;
    transform: translateY(26px);
    transition:
        opacity   0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* 2) Image reveal — opacity + легкий zoom-out (фото "вдихає") */
.reveal-image {
    opacity: 0;
    transform: scale(1.05);
    transition:
        opacity   0.8s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1s   cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}
.reveal-image.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* 3) Title reveal — clip-path "штора" зліва направо */
.reveal-title {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);
    transition:
        clip-path         0.9s cubic-bezier(0.65, 0, 0.35, 1),
        -webkit-clip-path 0.9s cubic-bezier(0.65, 0, 0.35, 1),
        opacity           0.3s 0.1s ease;
    will-change: clip-path;
}
.reveal-title.is-visible {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
}

/* Шанобливо до reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .reveal-up,
    .reveal-image,
    .reveal-title {
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
        -webkit-clip-path: none !important;
        transition: none !important;
    }
}

/* === Чекбокс згоди з умовами у формі замовлення === */
.form-group-terms {
    margin-top: 6px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #444;
    user-select: none;
}

.form-checkbox input[type="checkbox"] {
    margin: 2px 0 0;
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    accent-color: #000;
    cursor: pointer;
}

.form-checkbox-text a {
    color: #000;
    text-decoration: none;
    margin-left: 4px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
    transition: color 0.2s ease;
}

.form-checkbox-text a:hover {
    color: #c33;
}

.form-group-terms .form-error {
    margin-left: 27px;
    font-size: 12px;
    color: #c33;
    margin-top: 4px;
}

/* === Follow icons (соц-мережі) — глобальні стилі, працюють на contact.html і terms.html === */
.follow-text {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    color: #666;
    margin-bottom: 14px;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.follow-icons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.follow-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1.5px solid #000;
    border-radius: 999px;
    color: #000;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.25s ease;
    background: transparent;
}

.follow-icon i {
    font-size: 17px;
    line-height: 1;
}

.follow-icon:hover {
    background-color: #000;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .follow-icons {
        gap: 10px;
    }
    .follow-icon {
        padding: 9px 14px;
        font-size: 12px;
    }
    .follow-icon i {
        font-size: 15px;
    }
}

/* === section-3: адаптивна сітка 4→2→1 === */
@media (max-width: 1100px) and (min-width: 769px) {
    .section-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .section-3_block {
        height: 55vh;
        min-height: 420px;
    }
}

/* Плейсхолдер фону для accessories блока (поки не завантажене фото) */
.section-3_block-accessories {
    background-position: center;
    background-color: #e8dcc4;
}

/* === Юридичні реквізити ФОП — дрібним сірим унизу футера === */
.legal-info {
    width: 100%;
    margin: 22px 0 0;
    padding: 16px 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: rgba(0, 0, 0, 0.45);
    line-height: 1.7;
    letter-spacing: 0.3px;
}

.legal-info > span {
    display: inline-block;
    margin: 0 10px;
}

.legal-info a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
}

.legal-info a:hover {
    color: rgba(0, 0, 0, 0.7);
    border-bottom-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 600px) {
    .legal-info {
        font-size: 10px;
        padding-top: 14px;
    }
    .legal-info > span {
        display: block;
        margin: 3px 0;
    }
}

/* footer-container-block-3: грид-вирівнювання для ідеального центру copyright === */
.footer-container-block-3 > .currency {
    justify-self: start;
}
.footer-container-block-3 > .copyright {
    justify-self: center;
    text-align: center;
}
.footer-container-block-3 > .payment-methods {
    justify-self: end;
}

@media (max-width: 768px) {
    .footer-container-block-3 {
        grid-template-columns: 1fr !important;
    }
    .footer-container-block-3 > .currency,
    .footer-container-block-3 > .copyright,
    .footer-container-block-3 > .payment-methods {
        justify-self: center;
    }
}
