/* Полный код style.css (с исправленным .logo) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== ПАДАЮЩИЕ ЛЕПЕСТКИ ===== */
@keyframes petalFall {
    0% {
        transform: translateY(-100vh) rotate(0deg) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(100vh) rotate(720deg) translateX(100px);
        opacity: 0;
    }
}

@keyframes petalSway {
    0%, 100% {
        transform: translateX(-20px) rotate(-10deg);
    }
    50% {
        transform: translateX(20px) rotate(10deg);
    }
}

/* Фоновые лепестки */
body::before {
    content: '';
    position: fixed;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background-image:
        radial-gradient(ellipse 20px 10px at 20% 20%, rgba(244, 215, 215, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 15px 8px at 40% 60%, rgba(244, 215, 215, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 18px 9px at 60% 30%, rgba(244, 215, 215, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 12px 6px at 80% 70%, rgba(244, 215, 215, 0.08) 0%, transparent 50%);
    background-size: 50% 50%;
    animation: petalBackground 30s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes petalBackground {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

:root {
    --primary: #5D1A1F;
    --primary-light: #7A2329;
    --primary-dark: #3b0a10;
    --accent: #F4D7D7;
    --accent-light: #F8E8E8;
    --text: #F4D7D7;
    --text-light: #E0C0C0;
    --bg: #1a0508;
    --white: #fff;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 30px 70px rgba(0, 0, 0, 0.5);
    --glow: 0 0 30px rgba(244, 215, 215, 0.3);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(93, 26, 31, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(122, 35, 41, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #1a0508 0%, #2a0810 50%, #3b0a10 100%);
    color: #F4D7D7;
    line-height: 1.7;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    animation: fadeIn 1s ease;
    overflow-x: hidden;
}

main {
    flex: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ШАПКА ===== */
.header {
    background: linear-gradient(180deg, rgba(59, 10, 16, 0.98) 0%, rgba(45, 8, 12, 0.92) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(255, 255, 255, 0.05) inset;
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideDown 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-bottom: 1px solid rgba(244, 215, 215, 0.08);
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F4D7D7, transparent);
    animation: headerLine 3s ease-in-out infinite;
}

@keyframes headerLine {
    0%, 100% {
        left: 0;
        width: 0;
    }
    50% {
        width: 100%;
    }
    100% {
        left: 100%;
        width: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(244, 215, 215, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(244, 215, 215, 0.4), 0 0 60px rgba(244, 215, 215, 0.2);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes rotateIn {
    from {
        transform: rotate(-180deg) scale(0.5);
        opacity: 0;
    }
    to {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    color: #F4D7D7;
    letter-spacing: 1.5px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-shadow: 0 2px 20px rgba(244, 215, 215, 0.2);
}

.logo:hover {
    text-shadow: 0 4px 30px rgba(244, 215, 215, 0.4);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 15px #00000033;
    background: #ffffff00;
    animation: float 3s ease-in-out infinite;
}

/* Навигация */
.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-list a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.nav-list a:hover::after {
    width: 100%;
}

/* Бургер-меню */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Корзина */
.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 28px;
    color: var(--primary);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: float 3s ease-in-out infinite;
}

.cart-icon:hover {
    transform: scale(1.2) rotate(10deg);
    text-shadow: 0 0 20px rgba(244, 215, 215, 0.5);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 50%;
    min-width: 24px;
    text-align: center;
    animation: pulse 1.5s infinite, glow 2s ease-in-out infinite;
    box-shadow: 0 2px 10px rgba(244, 215, 215, 0.3);
}

.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(59, 10, 16, 0.94);
    color: white;
    padding: 14px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    animation: toastIn 0.35s forwards;
    font-size: 14px;
}

@keyframes toastIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.toast.hide {
    animation: toastOut 0.35s forwards;
}

@keyframes toastOut {
    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(#3b0a104d, rgba(59, 10, 16, 0.3)), url('https://images.unsplash.com/photo-1561181286-d3fd65e3d2e5?w=1200') center/cover;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 120px 20px;
    margin-bottom: 50px;
    animation: fadeIn 1s ease;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(59, 10, 16, 0.4), rgba(244, 215, 215, 0.2));
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 215, 215, 0.1) 0%, transparent 60%);
    animation: heroGlow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(10%, 10%) scale(1.1);
    }
    66% {
        transform: translate(-10%, -5%) scale(0.9);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    animation: slideUp 0.8s ease 0.2s both;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    animation: slideUp 0.8s ease 0.4s both;
}

.hero-content .btn {
    animation: slideUp 0.8s ease 0.6s both;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== КНОПКИ ===== */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    background-size: 200% 200%;
    color: #F4D7D7;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(244, 215, 215, 0.2);
    cursor: pointer;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(93, 26, 31, 0.4);
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 215, 215, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    background-size: 200% 200%;
    animation: shimmer 0.6s ease;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 215, 215, 0.3);
    border-color: rgba(244, 215, 215, 0.4);
}

.btn:hover::before {
    left: 100%;
}

.btn:active {
    transform: translateY(0);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary);
    color: rgb(255, 255, 255);
}

/* ===== ЗАГОЛОВКИ ===== */
.page-title {
    text-align: center;
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 3px;
    margin: 50px 0;
    color: #F4D7D7;
    position: relative;
    animation: fadeIn 1s ease;
    text-transform: uppercase;
}

.page-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #F4D7D7, transparent);
    margin: 20px auto 0;
    border-radius: 1px;
    animation: shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: #F4D7D7;
    text-transform: uppercase;
}

.features {
    margin: 40px 0 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(93, 26, 31, 0.25) 0%, rgba(59, 10, 16, 0.4) 100%);
    border: 1px solid rgba(244, 215, 215, 0.15);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 215, 215, 0.4), transparent);
    animation: shimmer 4s ease-in-out infinite;
    background-size: 200% 100%;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), var(--glow);
    border-color: rgba(244, 215, 215, 0.4);
}

/* ===== ДОСТАВКА ===== */
.delivery-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.delivery-section {
    background: linear-gradient(145deg, rgba(93, 26, 31, 0.25) 0%, rgba(59, 10, 16, 0.45) 100%);
    padding: 40px 30px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(244, 215, 215, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    position: relative;
}

.delivery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 215, 215, 0.3), transparent);
}

.delivery-section:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), var(--glow);
    border-color: rgba(244, 215, 215, 0.4);
}

.title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F4D7D7, transparent);
    margin: 15px auto 25px;
    border-radius: 2px;
}

.delivery-section h3 {
    color: #F4D7D7;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.delivery-section p {
    color: #E0C0C0;
    line-height: 1.9;
    font-size: 16px;
    font-weight: 300;
}

/* ===== КОНТАКТЫ ===== */
.contacts-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.contact-card {
    background: linear-gradient(145deg, rgba(93, 26, 31, 0.25) 0%, rgba(59, 10, 16, 0.45) 100%);
    padding: 35px 25px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
    text-decoration: none;
    color: #F4D7D7;
    display: block;
    border: 1px solid rgba(244, 215, 215, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 215, 215, 0.3), transparent);
}

.contact-card.reveal-item.active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), var(--glow);
    border-color: rgba(244, 215, 215, 0.4);
}

.contact-card.contact-link:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 50px 100px rgba(244, 215, 215, 0.2), var(--glow);
}

.contact-card .link-text {
    color: #F4D7D7;
    font-weight: 500;
    font-size: 18px;
    margin: 10px 0;
    letter-spacing: 0.5px;
}

.card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(244, 215, 215, 0.1) 0%, rgba(244, 215, 215, 0.25) 100%);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #F4D7D7;
    border: 2px solid rgba(244, 215, 215, 0.2);
    animation: float 3s ease-in-out infinite;
}

.card-icon:hover {
    transform: translateY(-10px) scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, rgba(244, 215, 215, 0.25) 0%, rgba(244, 215, 215, 0.5) 100%);
    border-color: rgba(244, 215, 215, 0.5);
    box-shadow: 0 10px 30px rgba(244, 215, 215, 0.3);
}

.card-icon svg {
    width: 26px;
    height: 26px;
    color: #F4D7D7;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


.card-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.contact-card h3 {
    color: #F4D7D7;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-card p {
    color: #E0C0C0;
    margin: 5px 0;
    line-height: 1.6;
}

.contacts-form-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.contact-form-card.full-width {
    max-width: 900px;
    margin: 0 auto;
}

.map-container {
    background: linear-gradient(145deg, rgba(93, 26, 31, 0.3) 0%, rgba(59, 10, 16, 0.5) 100%);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: none;
    border: 1px solid rgba(244, 215, 215, 0.2);
}

.map-container h3 {
    color: #F4D7D7;
    margin-bottom: 15px;
    text-align: center;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 15px;
}

.contact-form-card {
    background: linear-gradient(135deg, rgba(59, 10, 16, 0.9) 0%, rgba(93, 26, 31, 0.8) 100%);
    padding: 45px 40px;
    border-radius: 35px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(244, 215, 215, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
}

.contact-form-card h3 {
    color: #F4D7D7;
    margin-bottom: 12px;
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-form-card p {
    text-align: center;
    color: #E0C0C0;
    margin-bottom: 35px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8;
}

.contact-form-card form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-card form input,
.contact-form-card form textarea {
    width: 100%;
    padding: 18px 24px;
    background: rgba(59, 10, 16, 0.6) !important;
    color: #F4D7D7 !important;
    -webkit-text-fill-color: #F4D7D7 !important;
    border: 1px solid rgba(244, 215, 215, 0.25);
    border-radius: 18px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-sizing: border-box;
    font-weight: 300;
}

.contact-form-card form input:focus,
.contact-form-card form textarea:focus {
    outline: none !important;
    background: rgba(59, 10, 16, 0.8) !important;
    border-color: rgba(244, 215, 215, 0.6) !important;
    box-shadow: 0 0 0 4px rgba(244, 215, 215, 0.1) !important;
    transform: translateY(-2px);
}

.contact-form-card form input::placeholder,
.contact-form-card form textarea::placeholder {
    color: #E0C0C0 !important;
    opacity: 0.7 !important;
}

.contact-form-card form input::-webkit-input-placeholder,
.contact-form-card form textarea::-webkit-input-placeholder {
    color: #E0C0C0 !important;
}

.contact-form-card form input::-moz-placeholder,
.contact-form-card form textarea::-moz-placeholder {
    color: #E0C0C0 !important;
}

.contact-form-card form input:-ms-input-placeholder,
.contact-form-card form textarea:-ms-input-placeholder {
    color: #E0C0C0 !important;
}

.contact-form-card form button[type="submit"] {
    background: linear-gradient(135deg, rgba(244, 215, 215, 0.8) 0%, rgba(244, 215, 215, 0.8) 100%);
    border: 1px solid rgba(244, 215, 215, 0.5);
    color: #1a0508;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    margin-top: 15px;
    box-shadow: 0 10px 35px rgba(244, 215, 215, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-form-card form button[type="submit"]:hover {
    background: linear-gradient(135deg, rgba(244, 215, 215, 1) 0%, rgba(244, 215, 215, 1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(244, 215, 215, 0.6);
    border-color: rgba(244, 215, 215, 0.8);
}

.feature-card i {
    color: #F4D7D7;
    font-size: 32px;
    margin-bottom: 12px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 20px;
    color: #F4D7D7;
    margin-bottom: 10px;
}

.feature-card p {
    color: #E0C0C0;
    font-size: 15px;
}

.center {
    text-align: center;
    margin: 40px 0;
}

/* ===== СЕТКА ТОВАРОВ ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Карточка товара */
.product-card {
    background: linear-gradient(145deg, rgba(93, 26, 31, 0.3) 0%, rgba(59, 10, 16, 0.5) 100%);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    cursor: pointer;
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
    animation-delay: calc(0.1s * var(--i, 1));
    border: 1px solid rgba(244, 215, 215, 0.12);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 215, 215, 0.4), transparent);
    animation: shimmer 5s ease-in-out infinite;
    background-size: 200% 100%;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.5), var(--glow);
    border-color: rgba(244, 215, 215, 0.4);
}

.product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(1) contrast(1);
}

.product-card:hover .product-img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.05);
}

.product-card .product-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(244, 215, 215, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-img::after {
    opacity: 1;
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-name {
    font-size: 19px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #F4D7D7;
    text-transform: uppercase;
}

.product-price {
    font-size: 24px;
    font-weight: 300;
    color: #F4D7D7;
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-shadow: 0 2px 20px rgba(244, 215, 215, 0.3);
}

.add-to-cart {
    background: linear-gradient(135deg, rgba(93, 26, 31, 0.8) 0%, rgba(122, 35, 41, 0.8) 100%);
    background-size: 200% 200%;
    border: 1px solid rgba(244, 215, 215, 0.3);
    color: #F4D7D7;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.add-to-cart::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(244, 215, 215, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, rgba(122, 35, 41, 0.9) 0%, rgba(93, 26, 31, 0.9) 100%);
    background-size: 200% 200%;
    opacity: 1;
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(244, 215, 215, 0.4);
    border-color: rgba(244, 215, 215, 0.6);
}

.add-to-cart:hover::after {
    width: 350px;
    height: 350px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== КОРЗИНА (выезжающая панель) ===== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 10, 16, 0.8);
    backdrop-filter: blur(5px);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100%;
    background: linear-gradient(180deg, rgba(59, 10, 16, 0.98) 0%, rgba(93, 26, 31, 0.95) 100%);
    box-shadow: -15px 0 60px rgba(0, 0, 0, 0.6);
    z-index: 201;
    transition: right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(244, 215, 215, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
}

.cart-panel.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 25px;
    border-bottom: 1px solid rgba(244, 215, 215, 0.2);
    background: rgba(59, 10, 16, 0.95);
    color: #F4D7D7;
}

.cart-header h2 {
    font-size: 26px;
    font-weight: 400;
    margin: 0;
    color: #F4D7D7;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.close-cart {
    background: rgba(244, 215, 215, 0.2);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #F4D7D7;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart:hover {
    background: rgba(244, 215, 215, 0.35);
    transform: rotate(180deg) scale(1.1);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: linear-gradient(180deg, rgba(59, 10, 16, 0.4) 0%, rgba(93, 26, 31, 0.3) 100%);
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 25px;
    background: linear-gradient(145deg, rgba(93, 26, 31, 0.35) 0%, rgba(59, 10, 16, 0.45) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: slideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(244, 215, 215, 0.15);
    backdrop-filter: blur(10px);
}

.cart-item:hover {
    transform: translateX(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), var(--glow);
    border-color: rgba(244, 215, 215, 0.35);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(244, 215, 215, 0.3);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 16px;
    color: #F4D7D7;
    letter-spacing: 0.5px;
}

.cart-item-price {
    color: #F4D7D7;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 1px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-btn {
    background: rgba(244, 215, 215, 0.2);
    border: 1px solid rgba(244, 215, 215, 0.3);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 600;
    color: #F4D7D7;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: rgba(244, 215, 215, 0.4);
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 5px 15px rgba(244, 215, 215, 0.3);
}

.quantity-value {
    font-weight: 500;
    min-width: 25px;
    text-align: center;
    font-size: 16px;
    color: #F4D7D7;
}

.remove-item {
    background: linear-gradient(135deg, #7A2329, #9A2A33);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: #F4D7D7;
    opacity: 0.9;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.remove-item:hover {
    opacity: 1;
    transform: scale(1.2) rotate(90deg);
    background: linear-gradient(135deg, #9A2A33, #7A2329);
    box-shadow: 0 5px 20px rgba(244, 215, 215, 0.4);
}

.cart-footer {
    padding: 30px 25px;
    border-top: 1px solid rgba(244, 215, 215, 0.2);
    background: rgba(59, 10, 16, 0.8);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 25px;
    color: #F4D7D7;
    letter-spacing: 1px;
}

.total-price {
    color: #F4D7D7;
    font-size: 28px;
    font-weight: 500;
    text-shadow: 0 2px 20px rgba(244, 215, 215, 0.3);
}

.checkout-btn {
    background: linear-gradient(135deg, rgba(244, 215, 215, 0.8) 0%, rgba(244, 215, 215, 0.8) 100%);
    border: 1px solid rgba(244, 215, 215, 0.5);
    color: #1a0508;
    padding: 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    box-shadow: 0 10px 35px rgba(244, 215, 215, 0.4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, rgba(244, 215, 215, 1) 0%, rgba(244, 215, 215, 1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(244, 215, 215, 0.6);
    border-color: rgba(244, 215, 215, 0.8);
}

/* ===== МОДАЛЬНЫЕ ОКНА ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 10, 16, 0.85);
    backdrop-filter: blur(8px);
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    background: linear-gradient(135deg, rgba(59, 10, 16, 0.98) 0%, rgba(93, 26, 31, 0.95) 100%);
    border-radius: 35px;
    padding: 0;
    width: 90%;
    max-width: 580px;
    z-index: 301;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.5s;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(244, 215, 215, 0.2);
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(180%);
}

.modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 35px;
    background: linear-gradient(135deg, rgba(93, 26, 31, 0.85) 0%, rgba(59, 10, 16, 0.95) 100%);
    border-bottom: 1px solid rgba(244, 215, 215, 0.2);
}

.modal-header h3 {
    font-size: 28px;
    font-weight: 400;
    color: #F4D7D7;
    margin: 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.close-modal {
    background: rgba(244, 215, 215, 0.2);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #F4D7D7;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.close-modal:hover {
    background: rgba(244, 215, 215, 0.35);
    color: #F4D7D7;
    transform: rotate(180deg) scale(1.2);
    box-shadow: 0 5px 25px rgba(244, 215, 215, 0.4);
}

/* Стили для формы оформления заказа */
#checkoutForm {
    padding: 35px;
    background: rgba(59, 10, 16, 0.5);
}

#checkoutForm h4 {
    color: #F4D7D7;
    font-size: 15px;
    font-weight: 500;
    margin: 30px 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(244, 215, 215, 0.2);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-weight: 400;
    margin-bottom: 10px;
    color: #F4D7D7;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(244, 215, 215, 0.25);
    border-radius: 16px;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(59, 10, 16, 0.6) !important;
    font-family: 'Poppins', sans-serif;
    color: #F4D7D7 !important;
    font-weight: 300;
    -webkit-text-fill-color: #3b0a10 !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #E0C0C0 !important;
    font-style: italic;
    opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none !important;
    border-color: rgba(244, 215, 215, 0.6) !important;
    box-shadow: 0 0 0 4px rgba(244, 215, 215, 0.08) !important;
    background: rgba(59, 10, 16, 0.8) !important;
    transform: translateY(-2px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.pay-btn {
    background: linear-gradient(135deg, rgba(244, 215, 215, 0.8) 0%, rgba(244, 215, 215, 0.8) 100%);
    border: 1px solid rgba(244, 215, 215, 0.5);
    color: #1a0508;
    padding: 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 25px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 12px 40px rgba(244, 215, 215, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.pay-btn:hover {
    background: linear-gradient(135deg, rgba(244, 215, 215, 1) 0%, rgba(244, 215, 215, 1) 100%);
    transform: translateY(-3px);
    box-shadow: 0 18px 55px rgba(244, 215, 215, 0.6);
    border-color: rgba(244, 215, 215, 0.8);
}

.pay-btn:active {
    transform: translateY(-1px);
}

/* Модальное окно успеха */
.success-modal .modal-body {
    text-align: center;
    padding: 40px 30px;
    background: rgba(59, 10, 16, 0.6);
}

.success-modal .modal-body p {
    font-size: 17px;
    color: #F4D7D7;
    line-height: 1.6;
}

.success-icon {
    font-size: 100px;
    color: #F4D7D7;
    margin-bottom: 30px;
    animation: bounce 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), glow 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(244, 215, 215, 0.5));
    display: inline-block;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* ===== СТРАНИЦЫ ===== */
/* О нас */
.about-page .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.about-content img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.about-content img:hover {
    transform: scale(1.02);
}

/* Контакты */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.contacts-grid iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contacts-grid p {
    margin: 10px 0;
}

#contactForm input,
#contactForm textarea {
    margin: 10px 0;
}

/* Доставка */
.delivery-block {
    max-width: 800px;
    margin: 0 auto 50px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.delivery-block h3 {
    margin: 25px 0 10px;
    color: var(--primary);
}

/* ===== ПОДВАЛ ===== */
.footer {
    background: linear-gradient(180deg, rgba(59, 10, 16, 0.9) 0%, #1a0508 100%);
    color: #F4D7D7;
    padding: 50px 0;
    margin-top: 80px;
    border-top: 1px solid rgba(244, 215, 215, 0.15);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 215, 215, 0.3), transparent);
    animation: shimmer 5s linear infinite;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social a {
    color: #F4D7D7;
    margin-left: 15px;
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.social a:hover {
    color: #F4D7D7;
    transform: translateY(-5px) scale(1.2);
    text-shadow: 0 5px 20px rgba(244, 215, 215, 0.5);
}

/* ===== АВТОРИЗАЦИЯ ===== */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.auth-section {
    display: flex;
    align-items: center;
}

.profile-icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 32px;
    color: var(--primary);
    transition: all 0.3s;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-icon-btn:hover {
    transform: scale(1.15);
    color: var(--primary-light);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

#userName {
    color: var(--primary);
}

/* Модальные окна авторизации с табами */
.auth-modal-tabbed {
    max-width: 450px;
    padding: 0;
    overflow: hidden;
}

.auth-modal-tabbed .modal-header {
    display: flex;
    justify-content: flex-end;
    padding: 15px 20px;
    border-bottom: none;
    margin-bottom: 0;
}

.auth-modal-tabbed .close-modal {
    margin: 0;
}

/* Вкладки авторизации */
.auth-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--accent-light);
    padding: 0;
    margin: 0;
    border-bottom: 2px solid var(--accent);
}

.auth-tab {
    background: transparent;
    border: none;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
    border-bottom: 3px solid transparent;
    position: relative;
}

.auth-tab:hover {
    color: var(--primary);
    background: rgba(59, 10, 16, 0.05);
}

.auth-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: white;
}

/* Содержимое авторизации */
.auth-content {
    padding: 30px 35px;
    background: white;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-btn {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    border: none;
    color: rgb(255, 255, 255);
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    margin-top: 10px;
    transition: var(--transition);
}

.auth-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* ===== АДАПТИВНОСТЬ ===== */
/* Планшеты и меньше (768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-container {
        position: relative;
        height: 70px;
    }

    .logo {
        font-size: 20px;
        gap: 8px;
    }

    .logo-img {
        width: 28px;
        height: 28px;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 100;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 15px 0;
    }

    .nav-list li {
        text-align: center;
        border-bottom: 1px solid rgba(59, 10, 16, 0.1);
    }

    .nav-list li:last-child {
        border-bottom: none;
    }

    .nav-list a {
        display: block;
        padding: 12px 20px;
        color: var(--text);
        font-size: 15px;
    }

    .nav-list a::after {
        display: none;
    }

    .nav-list a:hover {
        background: rgba(59, 10, 16, 0.05);
        color: var(--primary);
    }

    .burger-menu {
        display: flex;
    }

    .header-right {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .auth-section {
        display: flex;
        align-items: center;
    }

    .profile-icon-btn {
        font-size: 28px;
        padding: 6px;
    }

    .auth-buttons {
        flex-direction: column;
        gap: 8px;
        min-width: auto;
    }

    .btn {
        padding: 8px 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .user-info {
        display: none;
        flex-direction: column;
        gap: 8px;
        padding: 10px;
        background: var(--accent-light);
        border-radius: 8px;
        min-width: 150px;
    }

    .user-info.active {
        display: flex;
    }

    .cart-icon {
        font-size: 22px;
        margin-left: 10px;
    }

    /* Hero Section */
    .hero {
        padding: 60px 20px;
        margin-bottom: 30px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-card i {
        font-size: 32px;
    }

    .feature-card h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 12px;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }

    .product-card {
        border-radius: 15px;
    }

    .product-img {
        height: 160px;
    }

    .product-info {
        padding: 12px;
    }

    .product-name {
        font-size: 14px;
    }

    .product-price {
        font-size: 16px;
    }

    .add-to-cart {
        font-size: 13px;
        padding: 8px 15px;
    }

    /* Page Title */
    .page-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    /* About Page */
    .about-page .about-content,
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Cart Panel */
    .cart-panel {
        width: 100%;
        right: -100%;
        max-width: 100%;
    }

    .cart-header {
        padding: 15px;
    }

    .cart-header h2 {
        font-size: 20px;
    }

    .cart-item {
        gap: 12px;
        padding: 15px;
        margin-bottom: 12px;
    }

    .cart-item-img {
        width: 60px;
        height: 60px;
    }

    .cart-item-name {
        font-size: 14px;
    }

    .cart-item-price {
        font-size: 16px;
    }

    /* Modal Windows */
    .modal {
        width: 95%;
        max-width: 100%;
        padding: 0;
        max-height: 90vh;
        overflow-y: auto;
    }

    .auth-modal-tabbed {
        width: 95%;
        max-width: 100%;
    }

    .auth-modal-tabbed .modal-header {
        padding: 12px 15px;
    }

    .auth-tabs {
        grid-template-columns: 1fr 1fr;
    }

    .auth-tab {
        padding: 14px;
        font-size: 14px;
    }

    .auth-content {
        padding: 20px 15px;
    }

    .modal-header h3 {
        font-size: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 16px;
    }

    /* Profile Section */
    .profile-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .profile-info,
    .orders-section {
        padding: 20px;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .social a {
        margin: 0 10px;
    }

    /* Catalog Page */
    .catalog-filters {
        margin-bottom: 20px;
    }

    /* Delivery Page */
    .delivery-block {
        padding: 20px;
        margin-bottom: 30px;
    }
}

/* Мобильные устройства (480px и меньше) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .header-container {
        height: 60px;
        gap: 10px;
    }

    .logo {
        font-size: 16px;
        gap: 6px;
    }

    .logo-img {
        width: 24px;
        height: 24px;
    }

    .burger-menu {
        width: 28px;
        height: 28px;
    }

    .burger-menu span {
        height: 2px;
    }

    .header-right {
        gap: 8px;
    }

    .auth-buttons {
        gap: 6px;
    }

    .btn {
        padding: 6px 10px;
        font-size: 12px;
    }

    .btn.btn-primary,
    .btn.btn-outline {
        padding: 6px 12px;
    }

    .cart-icon {
        font-size: 20px;
    }

    /* Hero */
    .hero {
        padding: 40px 12px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 20px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .btn.btn-primary {
        font-size: 13px;
        padding: 10px 16px;
    }

    /* Features Grid */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-card {
        padding: 12px;
        text-align: center;
    }

    .feature-card i {
        font-size: 28px;
    }

    .feature-card h3 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .feature-card p {
        font-size: 11px;
    }

    /* Page Title */
    .page-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .product-card {
        border-radius: 12px;
        display: flex;
        gap: 12px;
    }

    .product-img {
        width: 100px;
        height: 100px;
        flex-shrink: 0;
    }

    .product-info {
        flex: 1;
        padding: 10px;
        text-align: left;
    }

    .product-name {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .product-price {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .add-to-cart {
        font-size: 12px;
        padding: 6px 12px;
        width: 100%;
    }

    /* Cart Panel */
    .cart-panel {
        width: 100%;
    }

    .cart-header {
        padding: 12px;
    }

    .cart-header h2 {
        font-size: 18px;
    }

    .cart-items {
        padding: 12px;
    }

    .cart-item {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
        margin-bottom: 10px;
    }

    .cart-item-img {
        width: 100%;
        height: 120px;
    }

    .cart-item-name {
        font-size: 13px;
    }

    .cart-item-price {
        font-size: 15px;
    }

    .cart-item-quantity {
        width: 100%;
        justify-content: space-between;
    }

    .quantity-btn {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .remove-item {
        align-self: flex-end;
    }

    /* Cart Footer */
    .cart-footer {
        padding: 12px;
    }

    .cart-total {
        font-size: 14px;
    }

    .total-price {
        font-size: 16px;
        font-weight: 700;
    }

    .checkout-btn {
        font-size: 14px;
        padding: 12px;
    }

    /* Modal Windows */
    .modal {
        width: 98%;
        padding: 15px;
        max-height: 95vh;
    }

    .modal-header {
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .modal-header h3 {
        font-size: 18px;
    }

    .close-modal {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 16px;
        border-radius: 8px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .auth-btn,
    .pay-btn {
        font-size: 14px;
        padding: 12px;
    }

    /* Profile Section */
    .profile-section {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .profile-info,
    .orders-section {
        padding: 15px;
    }

    .profile-info h2,
    .orders-section h2 {
        font-size: 18px;
    }

    .profile-info p {
        font-size: 13px;
    }

    .order-card {
        padding: 15px;
    }

    /* Footer */
    .footer {
        padding: 20px 0;
    }

    .footer-container {
        flex-direction: column;
        gap: 15px;
    }

    .footer-container p {
        font-size: 12px;
    }

    .social a {
        font-size: 20px;
        margin: 0 8px;
    }

    /* Success Icon */
    .success-icon {
        font-size: 60px;
        margin-bottom: 15px;
    }

    /* Contact Form */
    #contactForm input,
    #contactForm textarea {
        font-size: 16px;
    }

    /* Delivery Page */
    .delivery-block {
        padding: 15px;
        margin-bottom: 20px;
    }

    .delivery-block h3 {
        font-size: 16px;
        margin: 15px 0 8px;
    }

    /* Navigation overlay (if needed) */
    .nav {
        max-height: calc(100vh - 60px);
    }

    .nav-list a {
        padding: 10px 15px;
        font-size: 14px;
    }

    .center {
        margin: 20px 0;
    }
}

/* ===== СТРАНИЦА КОРЗИНЫ ===== */
.cart-page-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.cart-page-items {
    background: linear-gradient(145deg, rgba(93, 26, 31, 0.35) 0%, rgba(59, 10, 16, 0.55) 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(244, 215, 215, 0.2);
    backdrop-filter: blur(10px);
}

.cart-page-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(244, 215, 215, 0.15);
    animation: fadeIn 0.4s ease;
}

.cart-page-item:last-child {
    border-bottom: none;
}

.cart-page-item-img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(244, 215, 215, 0.3);
}

.cart-page-item-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cart-page-item-name {
    font-size: 18px;
    font-weight: 600;
    color: #F4D7D7;
    margin: 0;
}

.cart-page-item-price {
    font-size: 16px;
    color: #E0C0C0;
    margin: 0;
}

.cart-page-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-page-item-total {
    font-size: 20px;
    font-weight: 700;
    color: #F4D7D7;
    min-width: 100px;
    text-align: right;
}

.remove-item-btn {
    background: #7A2329;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #F4D7D7;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item-btn:hover {
    background: #9A2A33;
    transform: scale(1.1);
}

.cart-page-summary {
    background: linear-gradient(145deg, rgba(93, 26, 31, 0.4) 0%, rgba(59, 10, 16, 0.6) 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(244, 215, 215, 0.2);
    backdrop-filter: blur(10px);
}

.cart-page-summary h3 {
    color: #F4D7D7;
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(244, 215, 215, 0.2);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(244, 215, 215, 0.1);
    color: #E0C0C0;
}

.summary-row:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 18px;
    padding-top: 15px;
    color: #F4D7D7;
}

.continue-shopping-btn {
    background: transparent;
    border: 2px solid rgba(244, 215, 215, 0.3);
    color: #F4D7D7;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    margin-top: 15px;
}

.continue-shopping-btn:hover {
    background: rgba(244, 215, 215, 0.15);
    border-color: rgba(244, 215, 215, 0.5);
}

.empty-cart-message {
    text-align: center;
    padding: 80px 20px;
    animation: fadeIn 0.5s ease;
}

.empty-cart-icon {
    font-size: 80px;
    color: rgba(244, 215, 215, 0.3);
    margin-bottom: 25px;
}

.empty-cart-message h2 {
    color: #F4D7D7;
    font-size: 28px;
    margin-bottom: 15px;
}

.empty-cart-message p {
    color: #E0C0C0;
    font-size: 18px;
    margin-bottom: 30px;
}

/* ===== КАК ЭТО РАБОТАЕТ ===== */
.how-it-works {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(93, 26, 31, 0.25) 0%, rgba(59, 10, 16, 0.45) 100%);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(244, 215, 215, 0.2);
    backdrop-filter: blur(20px) saturate(180%);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(244, 215, 215, 0.4), transparent);
}

.step-card:hover {
    transform: translateY(-15px);
    border-color: rgba(244, 215, 215, 0.5);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), var(--glow);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F4D7D7 0%, var(--gold-light) 100%);
    color: #1a0508;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(244, 215, 215, 0.4);
}

.step-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(244, 215, 215, 0.15) 0%, rgba(244, 215, 215, 0.3) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #F4D7D7;
    transition: var(--transition);
    border: 2px solid rgba(244, 215, 215, 0.3);
    box-shadow: 0 10px 30px rgba(244, 215, 215, 0.2);
}

.step-card:hover .step-icon {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, rgba(244, 215, 215, 0.25) 0%, rgba(244, 215, 215, 0.45) 100%);
    border-color: rgba(244, 215, 215, 0.6);
    box-shadow: 0 15px 45px rgba(244, 215, 215, 0.4);
}

.step-card h3 {
    color: #F4D7D7;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.step-card p {
    color: #E0C0C0;
    font-size: 15px;
    line-height: 1.8;
}

/* ===== CTA СЕКЦИЯ ===== */
.cta-section {
    padding: 100px 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(93, 26, 31, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(244, 215, 215, 0.1) 0%, transparent 60%),
        linear-gradient(135deg, rgba(59, 10, 16, 0.95) 0%, rgba(93, 26, 31, 0.85) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(244, 215, 215, 0.2);
    border-bottom: 1px solid rgba(244, 215, 215, 0.2);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 215, 215, 0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(244, 215, 215, 0.05) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite reverse, pulse 5s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    color: #F4D7D7;
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.cta-content > p {
    color: #E0C0C0;
    font-size: 20px;
    margin-bottom: 45px;
    font-weight: 300;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 20px 45px;
    font-size: 15px;
    letter-spacing: 1.5px;
}

.cta-section .btn-outline {
    border-color: rgba(244, 215, 215, 0.5);
    color: #F4D7D7;
    background: transparent;
}

.cta-section .btn-outline:hover {
    background: rgba(244, 215, 215, 0.15);
    border-color: #F4D7D7;
    box-shadow: 0 0 30px rgba(244, 215, 215, 0.3);
}

/* ===== ОТЗЫВЫ ===== */
.reviews-section {
    padding: 60px 0 80px;
    margin-top: 60px;
}

.reviews-section .section-title {
    margin-bottom: 50px;
    font-size: 36px;
    color: #F4D7D7;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 25px;
}

.review-card {
    background: linear-gradient(145deg, rgba(93, 26, 31, 0.3) 0%, rgba(59, 10, 16, 0.5) 100%);
    border-radius: 30px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    border: 1px solid rgba(244, 215, 215, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px) saturate(180%);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 100px;
    background: linear-gradient(135deg, #F4D7D7, transparent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.2;
}

.review-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.6), 0 0 40px rgba(244, 215, 215, 0.15);
    border-color: rgba(244, 215, 215, 0.4);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.review-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5D1A1F 0%, #7A2329 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    border: 2px solid rgba(244, 215, 215, 0.3);
}

.review-info h4 {
    color: #F4D7D7;
    font-size: 17px;
    margin: 0 0 6px 0;
    font-weight: 600;
}

.review-stars {
    color: #F4D7D7;
    font-size: 18px;
    letter-spacing: 3px;
    text-shadow: 0 2px 20px rgba(244, 215, 215, 0.5);
    animation: pulse 3s ease-in-out infinite;
    display: inline-block;
}

.review-text {
    color: #E0C0C0;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* ===== ЛИЧНЫЙ КАБИНЕТ ===== */
.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

.profile-header .section-title {
    margin: 0;
    color: #F4D7D7;
}

.profile-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 20px;
}

.profile-info,
.orders-section {
    background: linear-gradient(145deg, rgba(93, 26, 31, 0.3) 0%, rgba(59, 10, 16, 0.5) 100%);
    padding: 40px 35px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(244, 215, 215, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
}

.profile-info h2,
.orders-section h2 {
    color: #F4D7D7;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.profile-info p {
    margin: 12px 0;
    font-size: 16px;
    color: #E0C0C0;
    font-weight: 300;
}

.order-card {
    background: linear-gradient(145deg, rgba(93, 26, 31, 0.25) 0%, rgba(59, 10, 16, 0.45) 100%);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    animation: slideIn 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(244, 215, 215, 0.12);
    backdrop-filter: blur(10px);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.order-header h3 {
    color: #F4D7D7;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1px;
}

.order-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending {
    background: rgba(255, 193, 7, 0.3);
    color: #FFD700;
    border: 1px solid rgba(255, 193, 7, 0.4);
}

.status-completed {
    background: rgba(76, 175, 80, 0.3);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.4);
}

.order-details p {
    margin: 5px 0;
    font-size: 14px;
    color: #E0C0C0;
}

.order-items h4 {
    margin: 15px 0 10px;
    color: #F4D7D7;
}

.order-items ul {
    list-style: none;
    padding: 0;
}

.order-items li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(244, 215, 215, 0.1);
    color: #E0C0C0;
}

@media (max-width: 768px) {
    .cart-page-content {
        grid-template-columns: 1fr;
    }

    .cart-page-summary {
        position: static;
    }

    .cart-page-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }

    .cart-page-item-img {
        width: 80px;
        height: 80px;
    }

    .cart-page-item-quantity,
    .cart-page-item-total {
        grid-column: 1 / -1;
    }

    .cart-page-item-quantity {
        justify-content: center;
    }

    .cart-page-item-total {
        text-align: center;
    }

    .remove-item-btn {
        grid-column: 2 / -1;
        justify-self: center;
        width: 35px;
        height: 35px;
    }

    .profile-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .profile-header .section-title {
        font-size: 20px;
    }

    .profile-section {
        grid-template-columns: 1fr;
    }
}