:root {
    --gold: #e8a020;
    --gold-dark: #b9740a;
    --gold-light: #fef7e9;
    --brown: #3d1f00;
    --brown-mid: #7a4010;
    --cream: #fffdf5;
    --text: #2a1500;
    --text-muted: #8a6a45;
    --white: #ffffff;
    --shadow: rgba(61, 31, 0, 0.08);
    --radius: 20px;
    --transition: 0.3s cubic-bezier(0.2, 0.9, 0.4, 1);
}

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

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
}

/* Noise overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: rgba(255, 253, 245, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(232, 160, 32, 0.15);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--brown);
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 16px;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width var(--transition);
}

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

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

.nav-cta {
    background: var(--gold);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(232, 160, 32, 0.3);
}

.nav-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(184, 116, 10, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 5% 80px;
    gap: 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fffef9 0%, #fdf3e0 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(232,160,32,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,160,32,0.12);
    border: 1px solid rgba(232,160,32,0.3);
    color: var(--gold-dark);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1.08;
    color: var(--brown);
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold-dark);
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(232,160,32,0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(232,160,32,0.55);
}

.btn-outline {
    background: transparent;
    color: var(--brown-mid);
    border: 2px solid rgba(122,64,16,0.3);
    padding: 16px 36px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    background: rgba(232,160,32,0.04);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: var(--gold-dark);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.honey-jar-wrapper {
    position: relative;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.honey-jar-bg {
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 40%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 40px 80px rgba(232,160,32,0.35), 0 0 0 40px rgba(232,160,32,0.06);
}

.honey-jar-inner {
    text-align: center;
}

.honey-jar-inner i {
    font-size: 100px;
    color: rgba(255,255,255,0.9);
    display: block;
    margin-bottom: 12px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
}

.honey-jar-inner .jar-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.honey-jar-inner .jar-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}

.floating-badge {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    font-size: 14px;
    font-weight: 500;
    color: var(--brown);
    white-space: nowrap;
}

.floating-badge .badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 18px;
}

.badge-1 { top: 8%; left: -20px; animation: float 5s ease-in-out infinite 0.5s; }
.badge-2 { bottom: 12%; right: -30px; animation: float 6s ease-in-out infinite 1s; }
.badge-3 { top: 55%; left: -40px; animation: float 8s ease-in-out infinite 0.2s; }

/* Products Section */
.products {
    padding: 120px 5%;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    color: var(--gold-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(36px, 4vw, 52px);
    color: var(--brown);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 520px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--white);
    border: 1px solid rgba(232,160,32,0.12);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
    box-shadow: 0 8px 30px var(--shadow);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(61,31,0,0.16);
    border-color: rgba(232,160,32,0.4);
}

.product-badge-top {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.product-img-area {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fef7e9 0%, #fff 100%);
}

.product-icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.product-body {
    padding: 28px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 10px;
}

.product-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.product-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.product-tag {
    background: rgba(232,160,32,0.08);
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 100px;
    border: 1px solid rgba(232,160,32,0.2);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-main {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--gold-dark);
}

.price-sub {
    font-size: 13px;
    color: var(--text-muted);
}

.btn-add {
    background: var(--gold);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(232,160,32,0.3);
}

.btn-add:hover {
    background: var(--gold-dark);
    transform: scale(1.06);
    box-shadow: 0 8px 24px rgba(184,116,10,0.4);
}

/* About Section */
.about {
    padding: 120px 5%;
    background: linear-gradient(135deg, #fffdf5 0%, #fef7e9 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '🐝';
    position: absolute;
    font-size: 240px;
    opacity: 0.04;
    top: -30px;
    right: -40px;
    transform: rotate(-15deg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-visual {
    position: relative;
}

.about-main-img {
    background: linear-gradient(135deg, #fde68a, #f59e0b, #92400e);
    border-radius: 36px;
    height: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.about-main-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.2) 100%);
}

.about-main-img i {
    font-size: 72px;
    color: rgba(255,255,255,0.9);
    z-index: 1;
}

.about-main-img .img-label {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: white;
    z-index: 1;
}

.about-stat-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 18px 24px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    bottom: -30px;
    right: -30px;
}

.about-stat-row {
    display: flex;
    gap: 24px;
}

.about-stat-item {
    text-align: center;
}

.about-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--gold-dark);
}

.about-stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.about-content h2 {
    font-size: clamp(36px, 4vw, 50px);
    color: var(--brown);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-content p {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 16px;
    color: var(--text-muted);
}

.feature-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 10px;
    background: rgba(232,160,32,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    font-size: 14px;
    margin-top: 2px;
}

/* Testimonials */
.testimonials {
    padding: 120px 5%;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fefdf7;
    border: 1px solid rgba(232,160,32,0.1);
    border-radius: 24px;
    padding: 36px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 16px 40px rgba(61,31,0,0.08);
    border-color: rgba(232,160,32,0.3);
}

.stars {
    color: var(--gold);
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
}

.author-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--brown);
}

.author-city {
    font-size: 13px;
    color: var(--text-muted);
}

/* Footer */
footer {
    background: var(--brown);
    color: rgba(255,255,255,0.7);
    padding: 70px 5% 35px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 56px;
}

.footer-brand .nav-logo-text {
    color: white;
}

.footer-brand p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(61,31,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 500;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.modal {
    background: white;
    border-radius: 32px;
    max-width: 480px;
    width: 100%;
    padding: 48px;
    position: relative;
    animation: modalIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--gold-light);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s;
}

.modal-close:hover {
    background: #fde68a;
    color: var(--brown);
}

.modal-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 24px;
}

.modal h3 {
    font-size: 28px;
    color: var(--brown);
    margin-bottom: 8px;
}

.modal-product-name {
    color: var(--gold-dark);
    font-size: 16px;
    margin-bottom: 32px;
    font-weight: 500;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(232,160,32,0.25);
    border-radius: 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: var(--text);
    background: var(--gold-light);
    transition: all 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(232,160,32,0.12);
    background: white;
}

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

.modal-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    border: none;
    border-radius: 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
    box-shadow: 0 4px 20px rgba(232,160,32,0.35);
}

.modal-submit:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(232,160,32,0.5);
}

.modal-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.modal-status {
    margin-top: 18px;
    text-align: center;
    font-size: 15px;
    min-height: 22px;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
}

.chat-toggle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 12px 36px rgba(232,160,32,0.5);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle:hover {
    transform: scale(1.08);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 560px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(61,31,0,0.18);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(232,160,32,0.15);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-window.hidden {
    transform: scale(0.85);
    opacity: 0;
    pointer-events: none;
}

.chat-header {
    background: linear-gradient(135deg, var(--brown), #5a2e0a);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
}

.chat-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.chat-avatar {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
}

.chat-online {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid var(--brown);
}

.chat-header-name {
    font-weight: 600;
    font-size: 16px;
}

.chat-header-status {
    font-size: 13px;
    opacity: 0.7;
}

.chat-header-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 22px;
    cursor: pointer;
    transition: color 0.2s;
}

.chat-header-close:hover {
    color: white;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    scroll-behavior: smooth;
}

.msg {
    display: flex;
    gap: 10px;
    animation: msgIn 0.25s ease-out;
}

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

.msg.user {
    flex-direction: row-reverse;
}

.msg-avatar {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.msg.user .msg-avatar {
    background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.msg-bubble {
    max-width: 80%;
    padding: 12px 18px;
    border-radius: 20px;
    font-size: 15px;
    line-height: 1.5;
}

.msg.bot .msg-bubble {
    background: #fef7e9;
    color: var(--text);
    border-bottom-left-radius: 6px;
}

.msg.user .msg-bubble {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: white;
    border-bottom-right-radius: 6px;
}

.typing-dots {
    display: flex;
    gap: 4px;
    padding: 8px 4px;
}

.typing-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-dark);
    animation: typingBounce 1.2s infinite;
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-8px);
        opacity: 1;
    }
}

.chat-input-area {
    padding: 16px 18px;
    border-top: 1px solid rgba(232,160,32,0.12);
    background: var(--gold-light);
}

.chat-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input {
    flex: 1;
    padding: 12px 18px;
    border: 2px solid rgba(232,160,32,0.25);
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    outline: none;
    background: white;
    color: var(--text);
    transition: border-color 0.2s;
}

.chat-input:focus {
    border-color: var(--gold);
}

.chat-send {
    width: 44px;
    height: 44px;
    background: var(--gold);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-send:hover {
    background: var(--gold-dark);
    transform: scale(1.05);
}

.chat-hint {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 10px;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        padding-top: 100px;
    }

    .honey-jar-bg {
        width: 280px;
        height: 280px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-links {
        display: none;
    }

    .chat-window {
        width: 320px;
        height: 500px;
    }

    .badge-1,
    .badge-2,
    .badge-3 {
        display: none;
    }
}

.about-main-img-container {
    width: 100%;
    height: 440px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 36px;
    box-shadow: 0 20px 50px rgba(146, 64, 14, 0.18);
}

.about-main-img-file {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Фото красиво заполнит всю отведенную область */
    display: block;
}

@media (max-width: 768px) {
    .about-main-img-container {
        height: 320px;
    }
}