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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* ===== ВЕРХНЯЯ ПОЛОСА (бегущая строка) ===== */
.top-bar {
    background: #1a1a1a;
    color: white;
    padding: 8px 0;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    overflow: hidden;
}
.top-bar .ticker-wrap {
    overflow: hidden;
    width: 100%;
}
.top-bar .ticker-inner {
    display: inline-block;
    white-space: nowrap;
    padding-right: 2em;
    animation: ticker-scroll 35s linear infinite;
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== НАВИГАЦИЯ ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e5e5e5;
}

/* Страницы checkout/success: навбар и контент по центру */
.navbar .nav-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}
.footer .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
}

.logo {
    display: flex;
    align-items: center;
    transform: scale(1.3);
    transform-origin: left center;
    text-decoration: none;
    color: inherit;
}

.logo-bubbles {
    display: flex;
    align-items: center;
    position: relative;
    width: 90px;
    height: 60px;
}

.logo-bubbles span {
    display: block;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.98) 0%, rgba(238, 174, 202, 0.6) 55%, rgba(184, 134, 203, 0.9) 100%);
    box-shadow:
        inset 3px 3px 7px rgba(255,255,255,0.9),
        inset -3px -3px 8px rgba(184,134,203,0.7),
        0 6px 18px rgba(0,0,0,0.18);
    border: 1.5px solid rgba(255,255,255,0.9);
    backdrop-filter: blur(2px);
    position: absolute;
}

.logo-bubbles .bubble-1 { 
    width: 40px; 
    height: 40px; 
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.logo-bubbles .bubble-2 { 
    width: 26px; 
    height: 26px; 
    left: 40px;
    top: 28px;
    z-index: 2;
}

.logo-bubbles .bubble-3 { 
    width: 18px; 
    height: 18px; 
    left: 44px;
    top: 8px;
    z-index: 1;
}

/* Лёгкая динамика пузырей логотипа (1–5px) */
@keyframes logo-bubble-float-1 {
    0%, 100% { transform: translateY(-50%) translate(0, 0); }
    25% { transform: translateY(-50%) translate(2px, -3px); }
    50% { transform: translateY(-50%) translate(-2px, 2px); }
    75% { transform: translateY(-50%) translate(3px, 1px); }
}
@keyframes logo-bubble-float-2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(-3px, 2px); }
    66% { transform: translate(2px, -2px); }
}
@keyframes logo-bubble-float-3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(2px, 3px); }
}
.logo-bubbles .bubble-1 {
    animation: logo-bubble-float-1 4s ease-in-out infinite;
}
.logo-bubbles .bubble-2 {
    animation: logo-bubble-float-2 3.5s ease-in-out infinite 0.3s;
}
.logo-bubbles .bubble-3 {
    animation: logo-bubble-float-3 3s ease-in-out infinite 0.6s;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #d4a5a5;
}

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

.cart-icon, .account-icon {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    transition: color 0.2s;
}

.cart-icon:hover, .account-icon:hover {
    color: #b88888;
}

.account-icon.active {
    color: #d4a5a5;
}

.cart-count {
    color: #d4a5a5;
    font-weight: 600;
    font-size: 11px;
}

/* Кнопка «В корзину» на карточках товаров */
.btn-add-cart {
    background: #1a1a1a;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-add-cart:hover {
    background: #333;
    transform: translateY(-1px);
}

.product-overlay .btn-add-cart {
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    user-select: none;
}

/* ===== ГЛАВНЫЙ ЭКРАН ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px; /* Отступ для рамки */
    background: #fdfbfb; /* Мягкий фон за рамкой */
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    aspect-ratio: 16 / 9; /* Строгий формат 16:9 для видео */
    height: auto;
    max-height: 85vh;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1; /* Чтобы свечение было под ним */
}

/* Эффект Ambilight (Свечение вокруг видео) */
.hero-video-wrapper::before {
    content: '';
    position: absolute;
    inset: -60px; /* Насколько далеко расходится свет */
    background: linear-gradient(45deg, #FFB6D9, #a1c4fd, #E8B4B8, #fbc2eb, #FFB6D9);
    background-size: 400% 400%;
    filter: blur(80px); /* Сильное размытие для эффекта свечения */
    z-index: -1;
    animation: ambilightGlow 12s ease-in-out infinite;
    border-radius: inherit;
    opacity: 0.8;
}

.desktop-only { display: block; }
.mobile-only { display: none; }

@keyframes ambilightGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-video-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 24px; /* Совпадает с оберткой */
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15); /* Легкая тень для объема */
}

.hero-mobile-img {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-mobile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.hero-content {
    position: absolute;
    z-index: 10;
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 80px;
    max-width: 500px;
    border-radius: 12px;
}

.hero-title {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 14px;
    color: #666;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* ===== КНОПКИ ===== */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
}

.btn-primary:hover {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: white;
}

/* ===== КОЛЛЕКЦИИ ===== */
.collections {
    padding: 100px 60px;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    cursor: pointer;
}

.product-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 3 / 4;
    background: #f5f5f5;
}

/* Фото вписывается в рамку целиком (голова и ноги не режутся) */
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.15s ease-out;
}

/* Сильный зум + навигация по картинке при движении мыши — через JS (product-image-zoom.js) */
.product-image.is-zoom-active img {
    transition: none;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay .btn-add-cart,
.product-overlay .btn-quick {
    pointer-events: auto;
}
.product-overlay .product-out-of-stock-label {
    display: inline-block;
    padding: 12px 24px;
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.95);
    background: rgba(0,0,0,0.4);
    border-radius: 8px;
    pointer-events: none;
}

.btn-quick {
    background: white;
    color: #1a1a1a;
    border: none;
    padding: 12px 30px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-quick:hover {
    background: #d4a5a5;
    color: white;
}

.product-name {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 8px;
}

.product-price {
    font-size: 14px;
    color: #666;
}
.product-price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
    margin-right: 8px;
}
.product-price-current {
    color: #1a1a1a;
    font-weight: 600;
}
.product-price .product-price-current {
    color: inherit;
}
/* Цена со скидкой: старая и новая на разных строках, чтобы было понятно */
.product-price-block {
    margin-bottom: 20px;
}
.product-price-block .product-price-old-line {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin-bottom: 4px;
}
.product-price-block .product-price-current-line {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
}
.product-description {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
    white-space: pre-line;
}

/* ===== О БРЕНДЕ ===== */
.about-brand {
    background: #f9f9f9;
    padding: 100px 60px;
    text-align: center;
}

.about-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    align-items: start;
}
@media (max-width: 900px) {
    .about-page {
        grid-template-columns: 1fr;
    }
}
.about-content {
    max-width: 600px;
}
.about-page .about-content {
    margin: 0;
}
.about-image {
    position: sticky;
    top: 100px;
}
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}
@media (max-width: 900px) {
    .about-image { position: static; }
}
.about-content h2 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.about-content p,
.about-content .about-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

/* Медиа-блок на странице О нас */
.about-media {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px 80px;
}
.about-media-title {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 32px;
    color: #1a1a1a;
}
.about-media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 768px) {
    .about-media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.about-media-item {
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
}
.about-media-item img,
.about-media-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-media-note {
    font-size: 12px;
    color: #999;
    text-align: center;
    margin-top: 16px;
}

/* ===== СТРАНИЦА КОНТАКТОВ ===== */
.contacts-section {
    padding: 80px 24px 120px;
    text-align: center;
    background: #fdfbfb;
}
.contacts-inner {
    max-width: 480px;
    margin: 0 auto;
}
.contacts-heading {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 12px;
    color: #1a1a1a;
}
.contacts-sub {
    font-size: 13px;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 36px;
}
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.btn-contact {
    display: inline-block;
    min-width: 260px;
    padding: 16px 32px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    color: #1a1a1a;
    background: transparent;
    border: 1px solid #1a1a1a;
    transition: all 0.3s;
    text-align: center;
}
.btn-contact:hover {
    background: #1a1a1a;
    color: #fff;
}

/* ===== ПОДВАЛ ===== */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 80px 60px 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-column h4 {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    font-size: 12px;
    color: #666;
}

/* ===== COOKIE / ПОЛИТИКА ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 420px;
    width: 100%;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
    z-index: 1100;
}

.cookie-banner p {
    margin: 0;
    color: #444;
}

.cookie-banner a {
    color: #d4a5a5;
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-banner .cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 6px;
}

.cookie-btn-primary,
.cookie-btn-secondary {
    border-radius: 40px;
    padding: 8px 18px;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
}

.cookie-btn-primary {
    background: #1a1a1a;
    color: #fff;
}

.cookie-btn-secondary {
    background: #f3f3f3;
    color: #333;
}

.cookie-btn-primary:hover {
    background: #333;
}

.cookie-btn-secondary:hover {
    background: #e5e5e5;
}

/* ===== КНОПКА НАВЕРХ ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #d4a5a5;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(212, 165, 165, 0.4);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #c38d8d;
    transform: translateY(-5px);
}

/* ===== СТРАНИЦЫ ===== */
.page-header {
    background: #f9f9f9;
    padding: 80px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.page-header p {
    color: #666;
    font-size: 14px;
}

.collection-description-wrap {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0 24px;
}
.collection-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    white-space: pre-line;
}

/* ===== КОРЗИНА ===== */
.cart-page {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    padding: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cart-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
}

.cart-item img {
    width: 150px;
    height: 200px;
    object-fit: cover;
}

.cart-item-info h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.cart-item-info p {
    color: #666;
    font-size: 13px;
    margin-bottom: 5px;
}

.cart-item-info .price {
    color: #1a1a1a;
    font-weight: 600;
    margin-top: 10px;
}

.btn-remove {
    background: none;
    border: 1px solid #ddd;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-remove:hover {
    background: #1a1a1a;
    color: white;
}

.cart-summary {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    height: fit-content;
}

.cart-summary h3 {
    font-size: 20px;
    margin-bottom: 25px;
}

.cart-summary p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 14px;
}

.cart-summary hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

.cart-summary .total {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
}

/* ===== ЛИЧНЫЙ КАБИНЕТ ===== */
.account-page {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    padding: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.account-sidebar ul {
    list-style: none;
}

.account-sidebar li {
    margin-bottom: 15px;
}

.account-sidebar a {
    text-decoration: none;
    color: #666;
    font-size: 14px;
    padding: 10px 15px;
    display: block;
    border-radius: 5px;
    transition: all 0.3s;
}

.account-sidebar a:hover,
.account-sidebar a.active {
    background: #f9f9f9;
    color: #1a1a1a;
}

.account-sidebar .logout {
    color: #d4a5a5;
}

.account-content h2 {
    font-size: 24px;
    margin-bottom: 30px;
}

.profile-info p {
    margin-bottom: 15px;
    font-size: 14px;
}

.account-placeholder {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* ===== АВТОРИЗАЦИЯ ===== */
.auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.auth-container {
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 450px;
    width: 100%;
}

.auth-container h1 {
    font-size: 28px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 4px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 1px;
    color: #666;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #d4a5a5;
}

.auth-container .btn-primary {
    width: 100%;
    margin-bottom: 20px;
}

.auth-link {
    text-align: center;
    font-size: 13px;
    color: #666;
}

.auth-link a {
    color: #d4a5a5;
    text-decoration: none;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: block !important; }

    .navbar {
        padding: 12px 16px;
        flex-wrap: wrap;
    }
    
    .mobile-menu-btn {
        display: block;
        order: 1;
    }
    
    .logo {
        order: 2;
        flex-grow: 1;
        text-align: center;
        transform: scale(1);
        transform-origin: center;
        justify-content: center;
    }
    
    .logo-bubbles {
        width: 72px;
        height: 48px;
        margin: 0 auto;
    }
    
    .nav-actions {
        order: 3;
    }
    
    .nav-links {
        display: none;
        width: 100%;
        order: 4;
        flex-direction: column;
        gap: 20px;
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid #eee;
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero {
        padding: 20px;
    }
    
    .hero-video-wrapper {
        aspect-ratio: 3 / 4; /* Вертикальный формат для телефона */
        height: auto;
        padding: 0;
        border-radius: 16px;
    }
    
    .hero-mobile-img {
        display: block !important;
    }
    .hero-mobile-img img {
        display: block !important; /* На мобильных всегда показывать картинку (заставка), иначе чёрный экран при hero_type=video */
    }
    
    .hero-video-wrapper::before {
        inset: -30px; /* На мобильных свечение чуть меньше */
        filter: blur(40px);
    }
    
    .hero-video-inner {
        border-radius: 16px;
    }
    
    .hero-content {
        padding: 25px 20px;
        width: 85%;
    }
    
    .hero-title {
        font-size: 28px;
        letter-spacing: 4px;
    }
    
    .collections, .about-brand {
        padding: 60px 30px;
    }
    
    .cart-page, .account-page {
        grid-template-columns: 1fr;
    }
    
    .product-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
        align-items: flex-end;
        padding-bottom: 16px;
    }
    
    .product-overlay .btn-add-cart {
        padding: 12px 20px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    
    .btn-quick {
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
    
    .cart-icon, .account-icon {
        font-size: 10px;
        letter-spacing: 1.5px;
    }
    
    .cart-count {
        font-size: 10px;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contacts-section {
        padding: 50px 20px 80px;
    }
    .btn-contact {
        min-width: 100%;
        max-width: 280px;
    }
}
