
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: #fcf7f4;
    color: #4a3f3a;
    overflow-x: hidden;
    min-height: 100vh;
}

.flowers-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.flower {
    position: absolute;
    font-size: 2rem;
    opacity: 0.25;
    animation: floatFlower linear infinite;
    animation-duration: calc(15s + (var(--i, 0) * 3s));
    animation-delay: calc(var(--i, 0) * -2s);
    transform-origin: center;
    filter: blur(0.5px);
}

@keyframes floatFlower {
    0% {
        transform: translateY(110vh) rotate(0deg) scale(0.6);
        opacity: 0.2;
    }
    10% {
        opacity: 0.35;
    }
    90% {
        opacity: 0.35;
    }
    100% {
        transform: translateY(-10vh) rotate(720deg) scale(1.2);
        opacity: 0;
    }
}

.content {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.hero {
    text-align: center;
    padding: 70px 0 50px;
    background: linear-gradient(135deg, #fceae5 0%, #fcf7f4 50%, #fce8e0 100%);
    background-size: 300% 300%;
    animation: gradientShift 8s ease-in-out infinite alternate;
    border-radius: 0 0 50% 50% / 0 0 40px 40px;
    position: relative;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.hero::before,
.hero::after {
    content: '❀';
    position: absolute;
    font-size: 3.5rem;
    color: #e8d5cf;
    opacity: 0.5;
    animation: twinkle 3s ease-in-out infinite alternate;
}
.hero::before {
    top: 20px;
    left: 30px;
    transform: rotate(-20deg);
}
.hero::after {
    bottom: 20px;
    right: 30px;
    transform: rotate(20deg);
    animation-delay: 1.5s;
}

@keyframes twinkle {
    0% {
        opacity: 0.3;
        transform: scale(0.9) rotate(-5deg);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.2) rotate(5deg);
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.6rem;
    font-weight: 400;
    color: #c48b84;
    letter-spacing: 3px;
    margin-bottom: 5px;
    animation: fadeUp 1.2s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 8px;
}

.hero h1 .decor-left,
.hero h1 .decor-right {
    font-size: 2rem;
    color: #e8d5cf;
    opacity: 0.5;
    font-weight: 300;
    flex-shrink: 0;
}

.hero h1 .highlight {
    font-weight: 700;
    background: linear-gradient(135deg, #d98272, #7d413a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

.hero h1 .title {
    font-weight: 400;
    color: #7d413a;
    white-space: nowrap;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 300;
    color: #856861;
    letter-spacing: 6px;
    margin-top: 4px;
    animation: fadeUp 1.2s ease-out 0.15s both;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e8d5cf, #dbb0a8, #e8d5cf, transparent);
    margin: 18px auto;
    border-radius: 10px;
    animation: fadeUp 1.2s ease-out 0.25s both;
}

.hero-sub {
    font-size: 1rem;
    color: #856861;
    max-width: 560px;
    margin: 10px auto 0;
    font-weight: 300;
    line-height: 1.8;
    animation: fadeUp 1.2s ease-out 0.35s both;
}

.hero-features {
    font-size: 0.9rem;
    font-weight: 300;
    color: #856861;
    margin-top: 10px;
    letter-spacing: 3px;
    animation: fadeUp 1.2s ease-out 0.45s both;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
        gap: 2px 6px;
        letter-spacing: 2px;
    }
    
    .hero h1 .decor-left,
    .hero h1 .decor-right {
        font-size: 1.6rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 4px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 50px 0 35px;
    }
    
    .hero::before,
    .hero::after {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        gap: 2px 4px;
        letter-spacing: 1px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 .decor-left,
    .hero h1 .decor-right {
        font-size: 1.2rem;
    }
    
    .hero h1 .highlight {
        white-space: nowrap;
    }
    
    .hero h1 .title {
        white-space: nowrap;
    }
    
    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 3px;
        margin-top: 2px;
    }
    
    .hero-sub {
        font-size: 0.85rem;
        padding: 0 10px;
        line-height: 1.6;
    }
    
    .hero-features {
        font-size: 0.7rem;
        letter-spacing: 2px;
        margin-top: 6px;
    }
    
    .divider {
        width: 70px;
        margin: 12px auto;
    }
}

@media (max-width: 400px) {
    .hero h1 {
        font-size: 1.8rem;
        gap: 1px 3px;
    }
    
    .hero h1 .decor-left,
    .hero h1 .decor-right {
        font-size: 1rem;
    }
    
    .hero h1 .highlight {
        white-space: nowrap;
    }
    
    .hero h1 .title {
        white-space: nowrap;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }
}

.hero-subscribe {
    margin-top: 24px;
    animation: fadeUp 1.2s ease-out 0.55s both;
    display: flex;
    justify-content: center;
}

.btn-subscribe {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 60px;
    text-decoration: none;
    color: #4a3f3a;
    font-family: 'Quicksand', sans-serif;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px rgba(180, 140, 130, 0.06);
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.btn-subscribe .subscribe-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.btn-subscribe:hover .subscribe-glow {
    opacity: 1;
}

.btn-subscribe:hover {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 35px rgba(196, 139, 132, 0.15);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-subscribe:active {
    transform: scale(0.97);
}

.btn-subscribe .subscribe-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.btn-subscribe:hover .subscribe-icon {
    transform: scale(1.2) rotate(-10deg);
}

.btn-subscribe .subscribe-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    text-align: left;
}

.btn-subscribe .subscribe-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #4a3f3a;
    letter-spacing: 0.5px;
}

.btn-subscribe .subscribe-desc {
    font-weight: 300;
    font-size: 0.75rem;
    color: #b7a09a;
    letter-spacing: 0.3px;
}

.btn-subscribe .subscribe-arrow {
    font-size: 1.4rem;
    color: #c48b84;
    flex-shrink: 0;
    transition: transform 0.4s ease;
    font-weight: 300;
}

.btn-subscribe:hover .subscribe-arrow {
    transform: translateX(6px);
}

@media (max-width: 600px) {
    .btn-subscribe {
        padding: 12px 20px;
        gap: 12px;
        border-radius: 40px;
        width: 100%;
        max-width: 400px;
        justify-content: center;
    }
    
    .btn-subscribe .subscribe-icon {
        font-size: 1.2rem;
    }
    
    .btn-subscribe .subscribe-title {
        font-size: 0.8rem;
    }
    
    .btn-subscribe .subscribe-desc {
        font-size: 0.65rem;
    }
    
    .btn-subscribe .subscribe-arrow {
        font-size: 1.1rem;
    }
}

@media (max-width: 400px) {
    .btn-subscribe {
        padding: 10px 16px;
        gap: 10px;
        border-radius: 30px;
    }
    
    .btn-subscribe .subscribe-icon {
        font-size: 1rem;
    }
    
    .btn-subscribe .subscribe-title {
        font-size: 0.7rem;
    }
    
    .btn-subscribe .subscribe-desc {
        font-size: 0.55rem;
    }
    
    .btn-subscribe .subscribe-arrow {
        font-size: 0.9rem;
    }
}

.catalog {
    padding: 50px 0 20px;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 2.5rem;
    color: #c76c60;
    margin-bottom: 6px;
    animation: fadeUp 1s ease-out;
}

.section-sub {
    text-align: center;
    color: #b7a09a;
    margin-bottom: 40px;
    font-size: 1rem;
    letter-spacing: 2px;
    animation: fadeUp 1s ease-out 0.1s both;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    padding: 22px 20px 28px;
    box-shadow: 0 12px 40px rgba(180, 140, 130, 0.08);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    animation: fadeUp 0.9s ease-out both;
    position: relative;
    overflow: hidden;
}

.card:nth-child(1) {
    animation-delay: 0.1s;
}
.card:nth-child(2) {
    animation-delay: 0.25s;
}
.card:nth-child(3) {
    animation-delay: 0.4s;
}
.card:nth-child(4) {
    animation-delay: 0.55s;
}

.card::before {
    content: '✦';
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 3rem;
    color: #e8d5cf;
    opacity: 0.3;
    transform: rotate(15deg);
}

.card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 25px 50px rgba(180, 140, 130, 0.18);
    background: rgba(255, 255, 255, 0.8);
    border-color: #e8d5cf;
}

.card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    background: #f3edea;
    margin-bottom: 15px;
    display: block;
    transition: transform 0.6s ease;
    box-shadow: 0 4px 15px rgba(180, 140, 130, 0.06);
}

.card:hover img {
    transform: scale(1.03);
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.6rem;
    color: #4a3f3a;
    margin-bottom: 2px;
}

.card .size {
    font-size: 0.85rem;
    color: #b7a09a;
    letter-spacing: 2px;
    margin-bottom: 4px;
    font-weight: 300;
}

.card .price {
    font-weight: 700;
    font-size: 1.7rem;
    color: #c48b84;
    letter-spacing: 1px;
}

.card .price small {
    font-weight: 300;
    font-size: 0.9rem;
    color: #b7a09a;
}

.card .flower-icon {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 1.6rem;
    opacity: 0.15;
    transform: rotate(-10deg);
}

.note-wrapper {
    padding: 10px 0 20px;
}

.note {
    background: linear-gradient(135deg, rgba(255, 249, 246, 0.9), rgba(255, 241, 236, 0.7));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 28px;
    padding: 28px 35px;
    border: 1px solid rgba(232, 213, 207, 0.5);
    font-size: 0.95rem;
    color: #5f4e48;
    animation: fadeUp 1s ease-out 0.6s both;
    position: relative;
}

.note::before {
    content: '🌸';
    position: absolute;
    left: -12px;
    top: -12px;
    font-size: 2.2rem;
    animation: twinkle 2.5s ease-in-out infinite alternate;
}

.note strong {
    color: #c48b84;
    font-weight: 600;
}

.note .highlight {
    display: inline-block;
    background: rgba(212, 160, 155, 0.12);
    padding: 0 10px;
    border-radius: 30px;
    color: #c48b84;
}

.qr-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 35px;
    padding: 30px 40px;
    box-shadow: 0 10px 35px rgba(180, 140, 130, 0.07);
    margin: 30px 0 50px;
    animation: fadeUp 1s ease-out 0.7s both;
    transition: all 0.4s ease;
}

.qr-block:hover {
    box-shadow: 0 18px 50px rgba(180, 140, 130, 0.12);
}

.qr-block .qr-image {
    flex: 0 0 150px;
    height: 150px;
    background: linear-gradient(135deg, #f3edea, #fce8e0);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #b7a09a;
    border: 2px dashed #e8d5cf;
    transition: all 0.4s ease;
    position: relative;
}

.qr-block .qr-image:hover {
    border-color: #c48b84;
    transform: rotate(-2deg) scale(1.02);
}

.qr-block .qr-image .qr-label {
    background: rgba(255, 255, 255, 0.7);
    padding: 5px 14px;
    border-radius: 40px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: #b7a09a;
}

.qr-block .qr-text h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: #4a3f3a;
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.qr-block .qr-text h3 span {
    color: #c48b84;
}

.qr-block .qr-text p {
    color: #5f4e48;
    font-size: 0.95rem;
    line-height: 1.7;
}

.qr-block .qr-text .delivery-icon {
    display: inline-block;
    animation: bounceIcon 2s ease-in-out infinite;
}

@keyframes bounceIcon {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.footer {
    text-align: center;
    padding: 45px 0 30px;
    border-top: 1px solid rgba(232, 213, 207, 0.5);
    margin-top: 10px;
    animation: fadeUp 1s ease-out 0.9s both;
}

.footer .phone {
    font-size: 1.5rem;
    font-weight: 400;
    color: #c48b84;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
}

.footer .phone:hover {
    transform: scale(1.05);
    color: #b07a73;
}

.footer .phone::before {
    content: '📞 ';
    font-size: 1.2rem;
}

.footer .socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 18px 0 12px;
    flex-wrap: wrap;
}

.footer .socials a {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(232, 213, 207, 0.4);
    color: #4a3f3a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.35s ease;
    letter-spacing: 1px;
}

.footer .socials a:hover {
    background: #c48b84;
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(196, 139, 132, 0.3);
    border-color: #c48b84;
}

.footer .socials a i {
    margin-right: 6px;
}

.footer .copy {
    font-size: 0.8rem;
    color: #b7a09a;
    margin-top: 18px;
    letter-spacing: 1px;
}

.footer .copy span {
    display: inline-block;
    animation: twinkle 3s ease-in-out infinite;
}

.btn-more {
    position: fixed;
    top: 25px;
    left: 25px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    padding: 12px 28px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #4a3f3a;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px rgba(180, 140, 130, 0.08);
    cursor: pointer;
}

.btn-more:hover {
    background: rgba(196, 139, 132, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-color: rgba(196, 139, 132, 0.4);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 35px rgba(196, 139, 132, 0.15);
}

.btn-more:active {
    transform: scale(0.96);
}

.corner-decor {
    position: fixed;
    font-size: 2.8rem;
    opacity: 0.1;
    pointer-events: none;
    z-index: 0;
}
.corner-decor.tl {
    top: 20px;
    left: 20px;
    transform: rotate(-15deg);
}
.corner-decor.br {
    bottom: 20px;
    right: 20px;
    transform: rotate(25deg);
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero::before,
    .hero::after {
        font-size: 2rem;
    }
    .qr-block {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    .qr-block .qr-image {
        flex: 0 0 120px;
        height: 120px;
        width: 120px;
    }
    .note {
        padding: 20px;
    }
    .section-title {
        font-size: 1.9rem;
    }
    .btn-more {
        top: 15px;
        left: 15px;
        padding: 8px 18px;
        font-size: 0.8rem;
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    animation: fadeUp 1.2s ease-out 0.6s both;
}

.btn-hero {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 38px;
    border: none;
    border-radius: 60px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    letter-spacing: 0.5px;
}

.btn-hero .btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.btn-hero .btn-text {
    position: relative;
    z-index: 2;
}

.btn-hero .btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.btn-hero:hover .btn-glow {
    opacity: 1;
}

.btn-hero:hover .btn-icon {
    transform: scale(1.2) rotate(-5deg);
}

.btn-call {
    background: linear-gradient(135deg, #c48b84, #b07a73);
    box-shadow: 0 8px 30px rgba(196, 139, 132, 0.3);
}

.btn-call::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.btn-call:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 45px rgba(196, 139, 132, 0.4);
    background: linear-gradient(135deg, #d49a93, #b87a73);
}

.btn-call:active {
    transform: scale(0.95);
}

.btn-message {
    background: linear-gradient(135deg, #e8d5cf, #dbb0a8);
    box-shadow: 0 8px 30px rgba(219, 176, 168, 0.3);
    color: #4a3f3a;
}

.btn-message::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.btn-message:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 45px rgba(219, 176, 168, 0.4);
    background: linear-gradient(135deg, #f0dfd9, #e0c0b8);
}

.btn-message:active {
    transform: scale(0.95);
}

@media (max-width: 600px) {
    .btn-hero {
        padding: 14px 28px;
        font-size: 0.9rem;
        gap: 10px;
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }
    
    .hero-buttons {
        gap: 12px;
        flex-direction: row;
        width: 100%;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 36, 33, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #ffffff;
    border-radius: 28px;
    padding: 44px 48px 40px;
    max-width: 400px;
    width: 100%;
    box-shadow: 0 30px 80px rgba(45, 36, 33, 0.1);
    transform: scale(0.96) translateY(15px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-marshmallow-top,
.modal-marshmallow-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #fce4e0 15%, 
        #f5c8c0 30%, 
        #fce4e0 50%, 
        #f5c8c0 70%, 
        #fce4e0 85%, 
        transparent 100%
    );
    opacity: 0.5;
    pointer-events: none;
}

.modal-marshmallow-top {
    top: 0;
    border-radius: 28px 28px 0 0;
}

.modal-marshmallow-bottom {
    bottom: 0;
    border-radius: 0 0 28px 28px;
}

/* Декоративный цветок (СЛЕВА) */
.modal-flower-decor {
    position: absolute;
    top: -20px;
    left: -10px;
    pointer-events: none;
    z-index: 1;
    animation: flowerFloat 6s ease-in-out infinite alternate;
}

@keyframes flowerFloat {
    0% {
        transform: translateY(0) rotate(-5deg);
    }
    100% {
        transform: translateY(-8px) rotate(5deg);
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #c4b8b2;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 6px 10px;
    border-radius: 8px;
    line-height: 1;
    z-index: 10;
    font-weight: 300;
}

.modal-close:hover {
    color: #c48b84;
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
    padding-top: 4px;
}

.modal h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #2d2421;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.modal-sub {
    color: #c4b8b2;
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 300;
}

.modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.modal-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 14px;
    text-decoration: none;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #4a3f3a;
    background: linear-gradient(135deg, #fce4e0, #f5d0ca);
    border: 1px solid rgba(196, 139, 132, 0.12);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.modal-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(255, 255, 255, 0.5) 0%, 
                rgba(255, 255, 255, 0.1) 30%, 
                transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.modal-btn:hover::before {
    opacity: 1;
}

.modal-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(196, 139, 132, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.modal-btn:hover::after {
    opacity: 1;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 15px rgba(196, 139, 132, 0.1), 0 0 30px rgba(196, 139, 132, 0.05);
    }
    50% {
        box-shadow: 0 0 30px rgba(196, 139, 132, 0.2), 0 0 60px rgba(196, 139, 132, 0.1);
    }
    100% {
        box-shadow: 0 0 15px rgba(196, 139, 132, 0.1), 0 0 30px rgba(196, 139, 132, 0.05);
    }
}

.modal-btn:hover {
    animation: glowPulse 2s ease-in-out infinite;
    transform: translateX(4px) scale(1.02);
    border-color: rgba(196, 139, 132, 0.3);
    background: linear-gradient(135deg, #fce4e0, #f0c8c0);
    box-shadow: 0 8px 30px rgba(196, 139, 132, 0.2), 0 0 50px rgba(196, 139, 132, 0.08);
}

.modal-btn .modal-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.modal-btn .modal-icon svg {
    width: 20px;
    height: 20px;
    transition: fill 0.3s ease;
}

.modal-btn span:last-child:not(.modal-icon) {
    position: relative;
    z-index: 3;
}

.modal-btn:hover .modal-icon {
    transform: scale(1.2) rotate(-8deg);
}

.modal-btn:hover .modal-icon svg {
    fill: #c48b84;
}

.modal-btn .heart-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2.5rem;
    color: rgba(196, 139, 132, 0.15);
    pointer-events: none;
    z-index: 0;
    font-weight: 300;
    transition: none;
}

.modal-btn:hover .heart-ripple {
    animation: heartPulse 0.9s ease-out forwards;
}

@keyframes heartPulse {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }
    40% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

/* Анимация появления кнопок */
.modal-btn {
    animation: btnAppear 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.modal-btn:nth-child(1) { animation-delay: 0.05s; }
.modal-btn:nth-child(2) { animation-delay: 0.12s; }
.modal-btn:nth-child(3) { animation-delay: 0.19s; }
.modal-btn:nth-child(4) { animation-delay: 0.26s; }
.modal-btn:nth-child(5) { animation-delay: 0.33s; }

@keyframes btnAppear {
    0% {
        opacity: 0;
        transform: translateX(-20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@media (max-width: 600px) {
    .modal {
        padding: 50px 20px 28px;
        border-radius: 22px;
        max-width: 100%;
        margin: 10px;
    }
    
    .modal h3 {
        font-size: 1.2rem;
    }
    
    .modal-sub {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }
    
    .modal-close {
        top: 14px;
        right: 16px;
        font-size: 1.3rem;
        padding: 4px 12px;
        z-index: 10;
    }
    
    .modal-flower-decor {
        top: -12px;
        left: -8px;
    }
    
    .modal-flower-decor svg {
        width: 70px;
        height: 70px;
    }
    
    .modal-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
        gap: 12px;
    }
    
    .modal-btn .modal-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .modal-marshmallow-top,
    .modal-marshmallow-bottom {
        height: 4px;
    }

    .modal-header {
        margin-bottom: 22px;
        padding-top: 6px;
    }
}

@media (max-width: 400px) {
    .modal {
        padding: 48px 16px 24px;
        border-radius: 18px;
    }
    
    .modal-close {
        top: 12px;
        right: 12px;
        font-size: 1.2rem;
        padding: 2px 10px;
    }
    
    .modal-flower-decor svg {
        width: 55px;
        height: 55px;
    }
    
    .modal-flower-decor {
        top: -10px;
        left: -6px;
    }
    
    .modal-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
        gap: 10px;
    }
    
    .modal-btn .modal-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .modal h3 {
        font-size: 1.1rem;
    }
}

.catalog {
    padding: 40px 0 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeUp 1s ease-out;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #c76c60;
    margin-bottom: 4px;
}

.section-title::before {
    content: '✦ ';
    font-size: 2rem;
    opacity: 0.4;
}

.section-title::after {
    content: ' ✦';
    font-size: 2rem;
    opacity: 0.4;
}

.section-sub {
    color: #b7a09a;
    font-size: 0.95rem;
    letter-spacing: 3px;
    font-weight: 300;
}

.catalog-section {
    margin-bottom: 50px;
}

.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.label-line {
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e8d5cf);
}

.label-line:last-child {
    background: linear-gradient(90deg, #e8d5cf, transparent);
}

.label-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #c48b84;
    letter-spacing: 2px;
    white-space: nowrap;
}

.grid-popular {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 30px;
    padding: 22px 20px 28px;
    box-shadow: 0 12px 40px rgba(180, 140, 130, 0.08);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    animation: fadeUp 0.9s ease-out both;
    position: relative;
    overflow: hidden;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }

.card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #f5c8c0, #e8a89e);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 30px;
    z-index: 2;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(196, 139, 132, 0.2);
}

.card::before {
    content: '✦';
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 3rem;
    color: #e8d5cf;
    opacity: 0.3;
    transform: rotate(15deg);
}

.card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(180, 140, 130, 0.18);
    background: rgba(255, 255, 255, 0.8);
    border-color: #e8d5cf;
}

.card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    background: #f3edea;
    margin-bottom: 15px;
    display: block;
    transition: transform 0.6s ease;
    box-shadow: 0 4px 15px rgba(180, 140, 130, 0.06);
}

.card:hover img {
    transform: scale(1.04);
}

.card h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #4a3f3a;
    margin-bottom: 2px;
}

.card .size {
    font-size: 0.85rem;
    color: #b7a09a;
    letter-spacing: 2px;
    margin-bottom: 4px;
    font-weight: 300;
}

.card .price {
    font-weight: 700;
    font-size: 1.7rem;
    color: #c48b84;
    letter-spacing: 1px;
}

.card .price small {
    font-weight: 300;
    font-size: 0.9rem;
    color: #b7a09a;
}

.card .flower-icon {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 1.6rem;
    opacity: 0.15;
    transform: rotate(-10deg);
}

.card-hover {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.9) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.card:hover .card-hover {
    opacity: 1;
    transform: translateY(0);
}

.card-hover-text {
    font-size: 0.8rem;
    color: #c48b84;
    font-weight: 500;
    letter-spacing: 1px;
}

.catalog-more {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.btn-more-catalog {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #c48b84;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(196, 139, 132, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 20px rgba(180, 140, 130, 0.06);
}

.btn-more-catalog .btn-more-arrow {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.btn-more-catalog:hover {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-color: rgba(196, 139, 132, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 139, 132, 0.12);
}

.btn-more-catalog:hover .btn-more-arrow {
    transform: translateX(6px);
}

.btn-more-catalog:active {
    transform: scale(0.96);
}

@media (max-width: 768px) {
    .grid-popular,
    .grid-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .grid-popular,
    .grid-boxes {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 360px;
        margin: 0 auto;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-title::before,
    .section-title::after {
        font-size: 1.2rem;
    }
    
    .section-sub {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }
    
    .label-text {
        font-size: 0.9rem;
    }
    
    .label-line {
        max-width: 50px;
    }
    
    .card h3 {
        font-size: 1.2rem;
    }
    
    .card .price {
        font-size: 1.4rem;
    }
    
    .btn-more-catalog {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

@media (max-width: 400px) {
    .grid-popular,
    .grid-boxes {
        max-width: 300px;
    }
    
    .card {
        padding: 16px 14px 20px;
        border-radius: 22px;
    }
    
    .card-badge {
        font-size: 0.55rem;
        padding: 3px 10px;
        top: 10px;
        right: 10px;
    }
}

.note-wrapper {
    padding: 20px 0 10px;
}

.note {
    background: linear-gradient(145deg, rgba(255, 249, 246, 0.95), rgba(255, 241, 236, 0.8));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 35px 40px 30px;
    border: 1px solid rgba(232, 213, 207, 0.4);
    box-shadow: 0 8px 35px rgba(180, 140, 130, 0.06);
    animation: fadeUp 1s ease-out 0.6s both;
    position: relative;
    transition: all 0.4s ease;
}

.note:hover {
    box-shadow: 0 12px 50px rgba(180, 140, 130, 0.1);
}

/* Заголовок */
.note-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.note-icon {
    font-size: 1.6rem;
}

.note-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #c48b84;
    letter-spacing: 2px;
}

.note-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px 24px;
    margin-bottom: 24px;
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.note-item:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(180, 140, 130, 0.06);
}

.note-item-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.note-item-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.note-item-label {
    font-size: 0.7rem;
    font-weight: 300;
    color: #b7a09a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.note-item-value {
    font-size: 0.95rem;
    color: #4a3f3a;
    font-weight: 400;
    line-height: 1.3;
}

.note-item-value strong {
    color: #c48b84;
    font-weight: 600;
}

.note-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 18px 28px;
    background: linear-gradient(135deg, rgba(196, 139, 132, 0.08), rgba(232, 213, 207, 0.08));
    border-radius: 18px;
    border: 1px solid rgba(196, 139, 132, 0.08);
    margin-top: 4px;
    width: 100%;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-family: 'Quicksand', sans-serif;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.note-footer:hover {
    background: rgba(196, 139, 132, 0.12);
    border-color: rgba(196, 139, 132, 0.2);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 30px rgba(196, 139, 132, 0.1);
}

.note-footer:active {
    transform: scale(0.98);
}

.note-footer-icon {
    font-size: 1.5rem;
    animation: bounceIcon 2.5s ease-in-out infinite;
    flex-shrink: 0;
}

.note-footer-text {
    font-size: 1rem;
    color: #4a3f3a;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.note-footer-text strong {
    color: #c48b84;
    font-weight: 600;
}

.note-footer-arrow {
    font-size: 1.3rem;
    color: #c48b84;
    transition: transform 0.4s ease;
    flex-shrink: 0;
}

.note-footer:hover .note-footer-arrow {
    transform: translateX(6px);
}

@media (max-width: 768px) {
    .note {
        padding: 28px 24px 24px;
        border-radius: 24px;
    }
    
    .note-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .note-title {
        font-size: 1.3rem;
    }
    
    .note-footer {
        flex-direction: row;
        text-align: center;
        padding: 16px 20px;
        gap: 12px;
        flex-wrap: wrap;
    }
    
    .note-footer-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 500px) {
    .note {
        padding: 20px 16px 18px;
        border-radius: 20px;
    }
    
    .note-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .note-item {
        padding: 8px 12px;
    }
    
    .note-item-value {
        font-size: 0.85rem;
    }
    
    .note-title {
        font-size: 1.1rem;
    }
    
    .note-header {
        gap: 8px;
        margin-bottom: 18px;
    }
    
    .note-icon {
        font-size: 1.3rem;
    }
    
    .note-footer {
        padding: 14px 16px;
        border-radius: 14px;
        flex-direction: column;
        gap: 8px;
    }
    
    .note-footer-text {
        font-size: 0.8rem;
    }
    
    .note-footer-icon {
        font-size: 1.2rem;
    }
    
    .note-footer-arrow {
        font-size: 1rem;
    }
}

.footer {
    text-align: center;
    padding: 45px 0 30px;
    border-top: 1px solid rgba(232, 213, 207, 0.5);
    margin-top: 10px;
    animation: fadeUp 1s ease-out 0.9s both;
}

.footer .phone {
    font-size: 1.5rem;
    font-weight: 400;
    color: #c48b84;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 16px;
}

.footer .phone:hover {
    transform: scale(1.05);
    color: #b07a73;
}

.footer .phone::before {
    content: '📞 ';
    font-size: 1.2rem;
}

.footer .socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 18px 0 16px;
    flex-wrap: wrap;
}

.footer .socials .social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(232, 213, 207, 0.3);
    color: #4a3f3a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(180, 140, 130, 0.04);
}

.footer .socials .social-link svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.footer .socials .social-link.telegram:hover {
    background: #e8f4fd;
    border-color: #2aabee;
    color: #0088cc;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(42, 171, 238, 0.15);
}

.footer .socials .social-link.telegram:hover svg {
    transform: rotate(-10deg) scale(1.1);
}

.footer .socials .social-link.whatsapp:hover {
    background: #e6f9ef;
    border-color: #25d366;
    color: #128c7e;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.15);
}

.footer .socials .social-link.whatsapp:hover svg {
    transform: rotate(-10deg) scale(1.1);
}

.footer .socials .social-link.instagram:hover {
    background: #fdf0f0;
    border-color: #c13584;
    color: #bc1888;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(193, 53, 132, 0.15);
}

.footer .socials .social-link.instagram:hover svg {
    transform: rotate(-10deg) scale(1.1);
}

.footer .socials .social-link.vk:hover {
    background: #eef2f7;
    border-color: #4a76a8;
    color: #2c5a8c;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(74, 118, 168, 0.15);
}

.footer .socials .social-link.vk:hover svg {
    transform: rotate(-10deg) scale(1.1);
}

.footer .socials .social-link.maks:hover {
    background: #fef5e6;
    border-color: #f7971e;
    color: #d4880a;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 25px rgba(247, 151, 30, 0.15);
}

.footer .socials .social-link.maks:hover svg {
    transform: rotate(-10deg) scale(1.1);
}

.footer .copy {
    font-size: 0.8rem;
    color: #b7a09a;
    margin-top: 18px;
    letter-spacing: 1px;
}

.footer .copy span {
    display: inline-block;
    animation: twinkle 3s ease-in-out infinite;
}

@media (max-width: 600px) {
    .footer .socials {
        gap: 8px;
    }
    
    .footer .socials .social-link {
        padding: 8px 16px;
        font-size: 0.75rem;
        gap: 6px;
    }
    
    .footer .socials .social-link svg {
        width: 16px;
        height: 16px;
    }
    
    .footer .phone {
        font-size: 1.2rem;
    }
    
    .footer .copy {
        font-size: 0.7rem;
    }
}

@media (max-width: 400px) {
    .footer .socials {
        gap: 6px;
    }
    
    .footer .socials .social-link {
        padding: 6px 12px;
        font-size: 0.7rem;
        gap: 4px;
        border-radius: 30px;
    }
    
    .footer .socials .social-link svg {
        width: 14px;
        height: 14px;
    }
}

.image-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 36, 33, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 30px;
}

.image-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.image-modal-content {
    position: relative;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: imageModalIn 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes imageModalIn {
    0% {
        transform: scale(0.85) translateY(30px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.image-modal-content img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.image-modal-info {
    margin-top: 20px;
    text-align: center;
    color: #fff;
}

.image-modal-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #fce4e0;
    letter-spacing: 2px;
}

.image-modal-info p {
    font-size: 1.2rem;
    color: #e8d5cf;
    margin-top: 4px;
    font-weight: 300;
    letter-spacing: 1px;
}

.image-modal-close {
    position: fixed;
    top: 30px;
    right: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.6rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    font-weight: 300;
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.05);
}

@media (max-width: 600px) {
    .image-modal-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .image-modal-content img {
        max-height: 60vh;
        border-radius: 14px;
    }
    
    .image-modal-info h3 {
        font-size: 1.2rem;
    }
    
    .image-modal-info p {
        font-size: 1rem;
    }
    
    .image-modal-overlay {
        padding: 15px;
    }
}

.image-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 36, 33, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 30px;
}

.image-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.image-modal-content {
    position: relative;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: imageModalIn 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes imageModalIn {
    0% {
        transform: scale(0.85) translateY(30px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.image-modal-content img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.image-modal-info {
    margin-top: 20px;
    text-align: center;
    color: #fff;
}

.image-modal-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #fce4e0;
    letter-spacing: 2px;
}

.image-modal-info p {
    font-size: 1.2rem;
    color: #e8d5cf;
    margin-top: 4px;
    font-weight: 300;
    letter-spacing: 1px;
}

.image-modal-close {
    position: fixed;
    top: 30px;
    right: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.6rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    font-weight: 300;
}

.image-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg) scale(1.05);
}

@media (max-width: 600px) {
    .image-modal-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .image-modal-content img {
        max-height: 60vh;
        border-radius: 14px;
    }
    
    .image-modal-info h3 {
        font-size: 1.2rem;
    }
    
    .image-modal-info p {
        font-size: 1rem;
    }
    
    .image-modal-overlay {
        padding: 15px;
    }
}

.grid-boxes .card:nth-child(3) img { /*БОКСЫ КОР*/
    margin-top: 4px;
    object-position: center top; 
}

.advantages {
    padding: 40px 0 30px;
    animation: fadeUp 1s ease-out 0.3s both;
}

.advantages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 32px;
    padding: 40px 45px;
    border: 1px solid rgba(232, 213, 207, 0.3);
    box-shadow: 0 8px 35px rgba(180, 140, 130, 0.06);
    transition: all 0.4s ease;
}

.advantages-grid:hover {
    box-shadow: 0 12px 50px rgba(180, 140, 130, 0.1);
}

.advantages-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.advantages-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #4a3f3a;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 12px;
}

.advantages-title .decor-left,
.advantages-title .decor-right {
    color: #e8d5cf;
    font-size: 1.4rem;
    opacity: 0.5;
}

.advantages-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.advantages-list li {
    font-size: 1rem;
    color: #5f4e48;
    line-height: 1.6;
    padding-left: 4px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.advantages-list li strong {
    color: #c48b84;
    font-weight: 600;
}

.advantages-calories {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(196, 139, 132, 0.1), rgba(232, 213, 207, 0.1));
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(196, 139, 132, 0.15);
    margin-top: 4px;
    align-self: flex-start;
}

.advantages-calories .calories-icon {
    font-size: 1.3rem;
}

.advantages-calories .calories-text {
    font-size: 0.95rem;
    color: #4a3f3a;
}

.advantages-calories .calories-text strong {
    color: #c48b84;
    font-size: 1.1rem;
}

.advantages-composition {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 24px;
    padding: 28px 30px;
    border: 1px solid rgba(232, 213, 207, 0.2);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.composition-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #c48b84;
    text-align: center;
    letter-spacing: 2px;
}

.composition-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.composition-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 14px;
    border: 1px solid rgba(232, 213, 207, 0.15);
    font-size: 0.9rem;
    color: #4a3f3a;
    transition: all 0.3s ease;
}

.composition-item:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(180, 140, 130, 0.06);
}

.composition-item .comp-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.composition-note {
    text-align: center;
    font-size: 0.8rem;
    color: #b7a09a;
    letter-spacing: 1px;
    margin-top: 4px;
    font-weight: 300;
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 28px;
    }
    
    .advantages-title {
        font-size: 1.5rem;
        justify-content: center;
        text-align: center;
    }
    
    .advantages-list li {
        font-size: 0.95rem;
    }
    
    .advantages-calories {
        align-self: center;
    }
}

@media (max-width: 600px) {
    .advantages {
        padding: 25px 0 15px;
    }
    
    .advantages-grid {
        padding: 24px 18px;
        border-radius: 24px;
        gap: 24px;
    }
    
    .advantages-title {
        font-size: 1.3rem;
        gap: 4px 8px;
    }
    
    .advantages-title .decor-left,
    .advantages-title .decor-right {
        font-size: 1rem;
    }
    
    .advantages-list {
        gap: 10px;
    }
    
    .advantages-list li {
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .advantages-calories {
        padding: 8px 16px;
        gap: 8px;
    }
    
    .advantages-calories .calories-text {
        font-size: 0.85rem;
    }
    
    .advantages-calories .calories-text strong {
        font-size: 1rem;
    }
    
    .advantages-composition {
        padding: 20px 18px;
        border-radius: 18px;
        gap: 14px;
    }
    
    .composition-title {
        font-size: 1.1rem;
    }
    
    .composition-items {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .composition-item {
        padding: 8px 12px;
        font-size: 0.8rem;
        gap: 8px;
        border-radius: 10px;
    }
    
    .composition-item .comp-icon {
        font-size: 1rem;
    }
    
    .composition-note {
        font-size: 0.7rem;
    }
}

@media (max-width: 400px) {
    .advantages-grid {
        padding: 18px 14px;
        border-radius: 18px;
        gap: 18px;
    }
    
    .advantages-title {
        font-size: 1.1rem;
    }
    
    .advantages-list li {
        font-size: 0.8rem;
    }
    
    .advantages-calories .calories-text {
        font-size: 0.75rem;
    }
    
    .advantages-calories .calories-text strong {
        font-size: 0.9rem;
    }
    
    .composition-items {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    
    .composition-item {
        padding: 6px 10px;
        font-size: 0.75rem;
        border-radius: 8px;
    }
}
