:root {
    --bg-color: #FFF9F5;
    --primary-color: #E8B4B8;
    /* Dusty Rose */
    --secondary-color: #B8C6AF;
    /* Sage Green */
    --text-color: #4A3E3E;
    --text-light: #7E6B6B;
    --accent-color: #D4A373;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

::selection {
    background-color: var(--primary-color);
    color: var(--white);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    /* Adjust based on original logo aspect ratio */
    width: auto;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-phone {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: var(--transition);
}

.nav-phone:hover {
    color: var(--primary-color);
}

.nav-social {
    display: flex;
    gap: 10px;
}

.social-icon-btn {
    text-decoration: none;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.social-icon-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.social-icon-btn:hover {
    transform: translateY(-3px) scale(1.1);
    background: transparent !important;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
    margin-left: 0;
}

.burger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    /* Initially scaled for entrance animation */
    animation: zoomOut 2s forwards;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(255, 249, 245, 0.4),
            rgba(255, 249, 245, 0.7));
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: 7rem;
    font-weight: 100;
    margin-bottom: 10px;
    letter-spacing: 15px;
    color: var(--text-color);
    opacity: 0;
    transform: translateY(30px);
    text-transform: uppercase;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.hero p {
    font-size: 1.1rem;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 50px;
    opacity: 0;
    font-weight: 300;
    transform: translateY(20px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(232, 180, 184, 0.4);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(232, 180, 184, 0.6);
    background-color: #df9ea3;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s 2s forwards;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--text-light);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--text-light);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* Animations */
@keyframes zoomOut {
    to {
        transform: scale(1);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

/* Text Animations and Entrance */
.animate-text {
    animation: slideUpFade 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-text-delay {
    animation: slideUpFade 1.5s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade {
    animation: fadeIn 1.5s 0.8s forwards;
    opacity: 0;
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Content Section */
.content-section {
    padding: 100px 0;
    background-color: var(--white);
    scroll-margin-top: 120px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-align: center;
}

.section-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
    color: var(--text-light);
    font-weight: 300;
}

/* Reward Grid */
.reward-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.reward-card {
    background: var(--bg-color);
    padding: 50px 40px;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.reward-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.reward-card.highlight {
    background: linear-gradient(135deg, #fff9f5 0%, #f7e8e9 100%);
    border: 1px solid var(--primary-color);
}

.card-icon {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 100;
    color: var(--primary-color);
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 10px;
}

.reward-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.reward-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

.reward-card strong {
    color: var(--text-color);
    font-weight: 600;
}

.card-footer {
    margin-top: auto;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
}

/* Order Notice */
.order-notice {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    border-left: 4px solid var(--primary-color);
}

.order-notice p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-color);
}

.order-notice strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Additional Info */
.additional-info {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.info-block:hover {
    transform: translateX(10px);
}

.dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

.info-block p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 300;
    margin: 0;
}

.info-block strong {
    color: var(--text-color);
    font-weight: 500;
}

/* Order Section Layout */
.alternate-bg {
    background-color: var(--bg-color);
}

.order-layout {
    display: flex;
    align-items: center;
    gap: 80px;
    text-align: left;
}

.section-title.left {
    text-align: left;
    margin-bottom: 25px;
}

.description {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 300;
    margin-bottom: 50px;
    line-height: 1.6;
}

.tasting-options {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tasting-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border-left: 2px solid var(--primary-color);
}

.tasting-card h3 {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.tasting-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.tasting-card strong {
    color: var(--text-color);
    font-weight: 500;
}

.order-image {
    flex-shrink: 0;
    width: 450px;
    position: relative;
    z-index: 1;
}

.order-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.image-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    z-index: -1;
}

@media (max-width: 768px) {
    .image-frame {
        display: none;
    }
}


@media (max-width: 992px) {
    .order-layout {
        flex-direction: column;
        gap: 50px;
    }

    .order-image {
        width: 100%;
        max-width: 500px;
    }
}

/* Pricing Section */
.pricing-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pricing-card.main {
    background: white;
    padding: 60px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(232, 180, 184, 0.2);
}

.pricing-icon {
    display: block;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pricing-text {
    font-size: 1.5rem;
    font-weight: 200;
    color: var(--text-color);
    line-height: 1.5;
}

.pricing-text strong {
    font-weight: 500;
    color: var(--primary-color);
}

.pricing-rules {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.rule-item {
    background: var(--bg-color);
    padding: 30px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: var(--transition);
}

.rule-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.rule-badge {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
}

.rule-content h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    color: var(--text-color);
    font-weight: 600;
}

.rule-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .pricing-rules {
        grid-template-columns: 1fr;
    }

    .pricing-text {
        font-size: 1.2rem;
    }

    .pricing-card.main {
        padding: 40px 20px;
    }
}

/* Tasting Details Section */
.tasting-info-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 992px) {
    .tasting-info-grid {
        grid-template-columns: 1fr;
    }
}


.tasting-main-card {
    background: white;
    padding: 50px;
    border-radius: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02);
}

.address-badge {
    display: inline-block;
    padding: 10px 20px;
    background: var(--bg-color);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 30px;
}

.tasting-intro {
    font-size: 1.3rem;
    font-weight: 200;
    color: var(--text-color);
    margin-bottom: 40px;
    line-height: 1.6;
}

.flavors-section h3 {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--text-light);
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.flavor-tag {
    background: var(--bg-color);
    padding: 15px 20px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: var(--transition);
    border: 1px solid transparent;
}

.flavor-tag:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.booking-card {
    background: white;
    padding: 40px;
    border-radius: 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.price-notice {
    text-align: center;
    border-bottom: 1px solid var(--bg-color);
    padding-bottom: 30px;
}

.price-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.price-val {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 100;
    margin-bottom: 10px;
}

.price-notice p {
    font-size: 0.75rem;
    color: var(--text-light);
}

.booking-steps h3 {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--text-light);
}

.booking-steps ul {
    list-style: none;
    margin-bottom: 30px;
}

.booking-steps li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-color);
    font-weight: 300;
}

.booking-steps span {
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    text-decoration: none;
    padding: 12px;
    background: var(--bg-color);
    color: var(--text-color);
    text-align: center;
    border-radius: 15px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary-color);
    color: white;
}

.flavor-notice {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 25px;
    font-weight: 300;
    line-height: 1.6;
}

.flavor-notice span {
    font-weight: 500;
    color: var(--text-color);
}

.delivery-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--bg-color);
}

.contact-links {
    margin-bottom: 25px;
}

.contact-links p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

.active-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.active-link:hover {
    border-bottom-color: var(--primary-color);
}

/* Designs Grid */
.designs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.design-item {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.design-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.slider-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slider-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 10;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
}

.slider-btn.prev {
    left: 15px;
}

.slider-btn.next {
    right: 15px;
}

.design-info {
    padding: 30px;
}

.design-info h3 {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text-color);
}

.price-tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--bg-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.design-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 500px) {
    .designs-grid {
        grid-template-columns: 1fr;
    }
}

/* Portion Cakes Section */
.portion-layout {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-direction: row-reverse;
}

.portion-image {
    position: relative;
    flex: 1;
}

.portion-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.equipment-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 20px 30px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(232, 180, 184, 0.4);
}

.portion-content {
    flex: 1.2;
}

.equipment-box {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(232, 180, 184, 0.1);
}

.eq-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.eq-icon {
    font-size: 1.5rem;
}

.eq-header h3 {
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-color);
}

.equipment-box p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.eq-terms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid var(--bg-color);
    padding-top: 25px;
}

.term-item {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.term-item strong {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 992px) {
    .portion-layout {
        flex-direction: column;
        gap: 60px;
    }

    .equipment-badge {
        right: 0;
        bottom: -10px;
    }

    .eq-terms {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Delivery Section */
.delivery-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.delivery-text {
    flex: 1;
}

.delivery-features {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 40px;
}

.delivery-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.df-icon {
    font-size: 1.5rem;
    background: var(--bg-color);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    flex-shrink: 0;
    color: var(--primary-color);
}

.df-content h3 {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--text-color);
}

.df-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.delivery-image {
    flex: 1;
    position: relative;
}

.delivery-image img {
    width: 100%;
    border-radius: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    z-index: 2;
    position: relative;
}

.image-accent-frame {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 40px;
    z-index: 1;
}

@media (max-width: 768px) {
    .image-accent-frame {
        display: none;
    }
}


@media (max-width: 992px) {
    .delivery-layout {
        flex-direction: column-reverse;
        gap: 60px;
    }

    .image-accent-frame {
        display: none;
    }
}

/* Contact Section */
.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cm-icon {
    width: 60px;
    height: 60px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cm-content h3 {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 600;
}

.cm-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 300;
}



.contact-map {
    flex: 1.5;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(232, 180, 184, 0.2);
    line-height: 0;
}

@media (max-width: 992px) {
    .contact-layout {
        flex-direction: column;
    }

    .contact-map {
        width: 100%;
    }
}

/* Mobile Responsive & Tablet - Update to 1100px to cover landscape/tablets */
@media (max-width: 1100px) {
    .navbar {
        padding: 15px 0;
        background: var(--glass-bg);
        backdrop-filter: blur(10px);
    }

    .navbar .container {
        padding: 0 20px;
    }

    .logo img {
        height: 40px;
    }

    .nav-actions {
        gap: 20px;
    }

    .nav-phone {
        font-size: 0.8rem;
    }

    .nav-social {
        gap: 10px;
    }

    .social-icon-btn {
        width: 28px;
        height: 28px;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }

    .section-intro {
        margin-bottom: 30px;
    }

    .content-section {
        padding: 60px 0;
        scroll-margin-top: 100px;
    }

    .hero h1 {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }

    .hero p {
        font-size: 0.8rem;
        letter-spacing: 1px;
        padding: 0 10px;
    }

    .container {
        padding: 0 15px;
    }

    .tasting-main-card,
    .booking-card {
        padding: 30px 20px;
    }

    .flavors-grid {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
        /* Simplification for mobile hero showcase */
    }
}

/* Catalog Section */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px 30px;
    margin-top: 50px;
}

.catalog-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.catalog-img {
    position: relative;
    aspect-ratio: 1 / 1.1;
    /* Чуть выше для элегантности */
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.catalog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.catalog-item:hover .catalog-img img {
    transform: scale(1.05);
}

/* Staggered animation for catalog items */
.catalog-grid .catalog-item:nth-child(1) {
    transition-delay: 0.1s;
}

.catalog-grid .catalog-item:nth-child(2) {
    transition-delay: 0.2s;
}

.catalog-grid .catalog-item:nth-child(3) {
    transition-delay: 0.3s;
}

.catalog-grid .catalog-item:nth-child(4) {
    transition-delay: 0.1s;
}

.catalog-grid .catalog-item:nth-child(5) {
    transition-delay: 0.2s;
}

.catalog-grid .catalog-item:nth-child(6) {
    transition-delay: 0.3s;
}

.catalog-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.catalog-sku {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
    letter-spacing: 0.5px;
}

.catalog-price,
.catalog-weight {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 300;
}

.catalog-badge {
    padding: 4px 12px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.75rem;
    transition: var(--transition);
    cursor: default;
    flex-shrink: 0;
    white-space: nowrap;
}

.catalog-badge:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .catalog-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 15px;
    }

    .catalog-sku {
        font-size: 0.9rem;
    }

    .catalog-price,
    .catalog-weight {
        font-size: 0.75rem;
    }

    .catalog-badge {
        padding: 3px 8px;
        font-size: 0.65rem;
    }
}

@media (max-width: 1100px) {
    .burger-menu {
        display: flex;
    }

    nav {
        display: flex !important;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }

    nav.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* Footer Section */
.footer {
    padding: 80px 0 40px;
    background-color: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--text-color);
    font-weight: 600;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact p,
.footer-contact a {
    font-size: 0.95rem;
    color: var(--text-light);
    text-decoration: none;
    line-height: 1.6;
}

.footer-contact a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.footer-social-simple {
    display: flex;
    gap: 20px;
}

.footer-social-simple a {
    width: 24px;
    height: 24px;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-social-simple a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col {
        border-bottom: none;
    }

    .footer-col h4 {
        margin-bottom: 20px;
        padding: 0;
        cursor: default;
        display: block;
    }

    .footer-col h4::after {
        display: none;
    }

    .footer-links,
    .footer-contact,
    .footer-col>p,
    .footer-social-simple {
        display: flex;
        padding-bottom: 0;
        opacity: 1;
        transform: none;
    }

    .footer-links,
    .footer-contact {
        align-items: center;
    }

    .footer-social-simple {
        justify-content: center;
    }

    .footer-bottom {
        padding-top: 30px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
}