:root {
    --primary-color: #DAA520; /* Goldenrod */
    --primary-gradient: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    --secondary-color: #FDF5E6; /* Old Lace - Natural cream */
    --accent-color: #3D2B1F; /* Bistre - Dark brown */
    --text-color: #333;
    --light-text: #666;
    --bg-color: #ffffff;
    --card-bg: #fff;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --hero-overlay: rgba(0, 0, 0, 0.4);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Honeycomb Background Utility */
.honeycomb-bg {
    background-color: var(--bg-color);
    background-image:  radial-gradient(var(--primary-color) 0.5px, transparent 0.5px), radial-gradient(var(--primary-color) 0.5px, var(--bg-color) 0.5px);
    background-size: 20px 20px;
    background-position: 0 0,10px 10px;
    opacity: 0.05;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, .logo-text {
    font-family: 'Prata', serif;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 10rem 0;
}

.section-padding-small {
    padding: 3rem 0;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    transition: var(--transition);
}

.navbar.scrolled .container {
    height: 70px;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.logo {
    display: flex;
    align-items: center;
}

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

.logo-text {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--accent-color);
    transition: var(--transition);
}

.logo-text span {
    color: var(--primary-color);
    font-weight: 400;
}

.navbar.scrolled .logo-text {
    font-size: 1.5rem;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.navbar.scrolled .logo-img {
    height: 55px;
}

.logo:hover .logo-img {
    transform: translateY(-2px) scale(1.05);
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    margin: 0 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

nav a:hover {
    color: var(--primary-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav a:hover::after, nav a.active::after {
    width: 100%;
}

nav a.active {
    color: var(--primary-color);
    font-weight: 700;
}

.btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 10s ease-out;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.05));
    z-index: 1;
}

.slider-dots {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 15;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.dot.active {
    background: var(--primary-color);
    transform: scale(1.5);
    box-shadow: 0 0 10px var(--primary-color);
}

.hero-content {
    color: #fff;
    text-align: left;
    max-width: 800px;
    z-index: 10;
}

.hero-glass-card {
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 3.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    display: block;
    text-transform: uppercase;
    letter-spacing: 10px;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    animation: pulse 3s infinite;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    margin-bottom: 2rem;
    line-height: 1.25;
}

.hero-content h1 span {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn-gold-full {
    background: var(--primary-gradient);
    color: #fff;
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(218, 165, 32, 0.4);
}

.btn-gold-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(218, 165, 32, 0.6);
    filter: brightness(1.1);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-5px);
}

/* Scroll Down Indicator */
.scroll-down-wrapper {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-down {
    height: 50px;
    width: 30px;
    border: 3px solid #fff;
    border-radius: 50px;
    position: relative;
    opacity: 0.7;
}

.scroll-down::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: #fff;
    margin-left: -3px;
    border-radius: 50%;
    animation: mouse-scroll 2s infinite;
}

@keyframes mouse-scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(20px); opacity: 0; }
}

@keyframes pulse {
    0% { opacity: 1; text-shadow: 0 0 10px rgba(218, 165, 32, 0); }
    50% { opacity: 0.8; text-shadow: 0 0 15px rgba(218, 165, 32, 0.5); }
    100% { opacity: 1; text-shadow: 0 0 10px rgba(218, 165, 32, 0); }
}

.btn-gold {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.btn-gold:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(218, 165, 32, 0.4);
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.3s, background-color 0.3s;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    white-space: nowrap;
    padding: 0 18px;
}

.float-btn i {
    z-index: 2;
}

.btn-label {
    margin-left: 0;
    opacity: 0;
    font-size: 1rem;
    font-weight: 700;
    transition: margin-left 0.4s, opacity 0.4s;
    pointer-events: none;
}

.float-btn:hover {
    width: 160px;
    transform: translateX(-5px);
}

.float-btn:hover .btn-label {
    margin-left: 10px;
    opacity: 1;
}

.float-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
    z-index: 1;
}

.float-btn:hover::before {
    left: 100%;
}

.btn-zalo { 
    background: linear-gradient(135deg, #0068ff, #00aaff);
}
.btn-phone { 
    background: linear-gradient(135deg, #4CAF50, #81C784);
}

.float-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    z-index: -1;
    animation: pulse-ring 2s infinite;
    top: 0;
    left: 0;
}

.btn-zalo::after { box-shadow: 0 0 0 0 rgba(0, 104, 255, 0.6); }
.btn-phone::after { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.6); }

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* About Section */
.about {
    background-color: var(--background-secondary, #fffaf0);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
}

.benefit-list {
    margin-top: 2rem;
    list-style: none;
    padding: 0;
}

.benefit-list li {
    margin-bottom: 1.2rem;
    padding-left: 0;
    position: relative;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--text-color);
}

.visual-stack {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.visual-card.main-card {
    width: 90%;
    margin-left: 0;
}

.visual-card.sub-card {
    width: 80%;
    margin-left: 20%;
    margin-top: -80px;
    z-index: 2;
    border: 8px solid #fff;
}

.visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    z-index: 3;
}

.visual-card img {
    width: 100%;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.visual-card:hover img {
    transform: scale(1.1);
}

.visual-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--accent-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Apiary Preview Section */
.apiary-preview {
    background-color: var(--secondary-color);
}

.apiary-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.apiary-text h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.apiary-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

/* Products Section */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.underline {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 1rem auto;
}

/* Testimonials Marquee */
.testimonial-marquee {
    overflow: hidden;
    padding: 3rem 0;
    position: relative;
    width: 100%;
}

.testimonial-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
    gap: 2rem;
}

.testimonial-marquee:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    width: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    flex-shrink: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author {
    display: block;
    font-weight: 700;
    color: var(--accent-color);
    font-size: 0.9rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-350px * 8 - 2rem * 8));
    }
}

.container-full {
    max-width: 100% !important;
    padding: 0 !important;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(218, 165, 32, 0.15);
    border-color: var(--primary-color);
}

.product-img {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.product-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4));
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 1s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.product-info p {
    color: var(--light-text);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-dark {
    background-color: var(--accent-color);
    color: #fff;
    width: 100%;
    text-align: center;
}

/* Contact Section */
.contact-card {
    background: var(--accent-color);
    color: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 1rem;
}

.contact-info {
    padding: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-details {
    margin-top: 3rem;
}

.contact-details p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-form {
    padding: 4rem;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input, .contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.btn-gold-full {
    background: var(--primary-color);
    color: #fff;
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* Footer Premium */
.footer {
    background-color: #1a1510;
    color: #fff;
    padding-top: 10rem;
    padding-bottom: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-map {
    margin-top: 1rem;
    filter: grayscale(0.5) invert(0.9) contrast(1.2);
    transition: var(--transition);
    height: 140px;
    width: 100%;
}

.footer-map:hover {
    filter: grayscale(0) invert(0);
}

.contact-info li {
    line-height: 1.4;
    align-items: flex-start;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

.footer-col.brand-info p {
    color: #999;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.footer-links, .contact-info {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-links li, .contact-info li {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-start;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.contact-info li {
    position: relative;
    padding-left: 2.2rem; /* Exact space for icon to make text align with H3 */
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-info i {
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
    width: 20px;
    font-size: 1rem;
    text-align: center;
}

.zalo-qr {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 20px;
    width: fit-content;
    text-align: center;
}

.qr-label {
    display: block;
    color: #333;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qr-img {
    width: 100px;
    height: 100px;
}

.copyright {
    text-align: center;
    color: #555;
    font-size: 0.85rem;
}

.underline-full {
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .social-links, .zalo-qr {
        margin: 0 auto;
    }
    .contact-info li {
        justify-content: center;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards ease-out;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Blog Page Styles */
.blog-header {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 100px;
    margin-bottom: 4rem;
}

.blog-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.blog-header .container {
    position: relative;
    z-index: 2;
}

.blog-tag {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.blog-header h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #fff;
    max-width: 900px;
}

.container-narrow {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    color: #888;
    font-size: 0.9rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 2rem;
}

.blog-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #444;
}

.blog-content h2 {
    font-size: 2.2rem;
    margin: 3rem 0 1.5rem;
    color: var(--accent-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.info-card, .step-card {
    background: #fcf8ee;
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    border-left: 5px solid var(--primary-color);
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.premium-quote {
    font-family: 'Prata', serif;
    font-size: 1.8rem;
    text-align: center;
    padding: 4rem;
    color: var(--accent-color);
    position: relative;
    font-style: italic;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border-radius: 30px;
}

.comparison-table {
    width: 100%;
    border-spacing: 0;
    margin: 3rem 0;
}

.comparison-table th, .comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 768px) {
    .blog-header {
        height: 40vh;
    }
    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    .premium-quote {
        font-size: 1.3rem;
        padding: 2rem;
    }
}

/* Scroll reveal classes */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: 1s ease-out;
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* Product & Category Pages */
.section-padding-small {
    padding: 2rem 0;
}

.page-banner {
    background-color: var(--accent-color);
    color: #fff;
    padding: 8rem 0 4rem;
}

.page-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    background-color: var(--secondary-color);
    font-size: 0.9rem;
    color: var(--light-text);
}

.breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    display: block;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    color: #fff;
    transition: var(--transition);
}

.category-overlay h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.category-overlay span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.category-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.category-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

/* Category Specific Content */
.about-honey-benefits {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 1px solid #eee;
}

.about-honey-benefits h3 {
    font-size: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.benefit-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.benefit-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: var(--light-text);
    font-size: 0.95rem;
}

/* Fix for existing pages */
.product-page .navbar, .category-page .navbar {
    background-color: #fff;
}

.category-content .product-grid {
    margin-top: 2rem;
}

/* --- COMPREHENSIVE RESPONSIVE DESIGN (MOBILE FIX) --- */
@media (max-width: 1024px) {
    .container { padding: 0 1.5rem; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .hero-content h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .navbar .container { height: 70px; }
    #main-nav { display: none; } /* Hide regular nav on mobile for simplicity or can build hamburger */
    
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1rem; }
    
    .product-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
    .footer-col h3::after { left: 50%; transform: translateX(-50%); }
    .footer-map { height: 200px; }
    
    .section-padding { padding: 4rem 0; }
    
    .testimonial-card { width: 300px; padding: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2.2rem; }
    .logo-text { font-size: 1.4rem; }
    .logo-img { height: 45px; }
    
    .info-card, .step-card { padding: 1.5rem; }
}

/* Ensure no horizontal overflow */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}
