/* 
=======================================
   Nahlat Boinou - Exact Copy of Beezi Home-5
======================================= 
*/

:root {
    /* Colors strictly based on the provided screenshot */
    --primary-color: #FDC016;
    /* Bright Yellow / Gold */
    --primary-hover: #E5A90C;
    --dark-blue: #0A1E2A;
    /* Headings and dark text */
    --text-main: #666666;
    /* Body text */
    --bg-light-blue: #F0F7FB;
    /* Hero background */
    --bg-white: #FFFFFF;
    --bg-gray: #F9F9F9;
    --border-color: #EEEEEE;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Jost', sans-serif;
    --font-script: 'Great Vibes', cursive;

    /* Hexagon Path (Pointy Top) */
    --hex-clip: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    --hex-clip-flat: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);

    /* Shadows & Transitions */
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;

    --container-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--dark-blue);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Subtitles (Script Font) */
.script-subtitle {
    font-family: var(--font-script);
    font-size: 2.2rem;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-blue);
    border-radius: 3px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-link {
    color: var(--dark-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.btn-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Top Bar */
.top-bar {
    display: none; /* Hidden as requested */
}

/* Floating Delivery Badge */
@keyframes badgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(10, 30, 42, 0.08);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 35px rgba(253, 192, 22, 0.25);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(10, 30, 42, 0.08);
    }
}

.delivery-badge {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--bg-white);
    color: var(--dark-blue);
    padding: 8px 14px;
    border-radius: 50px;
    border: 1.5px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 1999;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 24px rgba(10, 30, 42, 0.08);
    animation: badgePulse 3s infinite ease-in-out;
    transition: var(--transition);
    cursor: pointer;
}

.delivery-badge i,
.delivery-badge svg {
    color: var(--primary-color);
    font-size: 1.05rem;
}

.delivery-badge:hover {
    animation-play-state: paused;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(10, 30, 42, 0.15);
    background-color: var(--primary-color);
    border-color: var(--dark-blue);
}

.delivery-badge:hover i,
.delivery-badge:hover svg {
    color: var(--dark-blue);
}

@media (max-width: 768px) {
    .delivery-badge {
        bottom: 15px;
        left: 15px;
        padding: 6px 10px;
        font-size: 0.65rem;
        gap: 4px;
    }
    .delivery-badge i,
    .delivery-badge svg {
        font-size: 0.95rem;
    }
}

/* Header */
.site-header {
    background: transparent;
    padding: 25px 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
    box-shadow: none;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.site-header.scrolled .logo-icon {
    height: 55px;
}

.site-header.scrolled .logo-text {
    font-size: 1.4rem;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

.main-nav,
.header-actions {
    flex: 1;
}

.logo {
    flex: 0 0 auto;
    text-align: center;
    padding: 0 30px;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    align-items: center;
    flex-wrap: nowrap;
}

.logo a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-icon {
    height: 75px;
    /* Increased size */
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Great Vibes', cursive;
    font-size: 1.8rem;
    color: var(--dark-blue);
    line-height: 1;
    margin-top: -10px;
    /* Slight overlap with the icon for a cohesive look */
}

.main-nav ul {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap;
}

.main-nav li {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.main-nav li:not(:last-child)::after {
    display: none;
}

.main-nav a {
    font-weight: 600;
    color: var(--dark-blue);
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0.3px;
    white-space: nowrap;
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--dark-blue);
    background-color: rgba(253, 192, 22, 0.1);
    border-color: rgba(253, 192, 22, 0.3);
}

.main-nav a.active {
    color: var(--dark-blue);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(253, 192, 22, 0.25);
}

.contact-number {
    display: flex;
    align-items: center;
    color: #666;
    font-weight: 500;
    margin-right: 15px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.phone-highlight {
    color: #E65540;
    font-weight: 600;
    margin-left: 5px;
    white-space: nowrap;
}

.action-btn {
    background: none;
    border: none;
    color: var(--dark-blue);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.action-btn:hover {
    color: var(--primary-color);
}

.cart-btn {
    display: flex;
    align-items: center;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: var(--primary-color);
    color: var(--dark-blue);
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    background-color: var(--bg-light-blue);
    padding: 80px 0 120px;
    height: 100vh;
    min-height: 700px;
    border-radius: 0 0 50% 50% / 0 0 15% 15%;
    position: relative;
    overflow: hidden;
}

/* Hero Slider Styles */
.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%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), visibility 1.2s ease;
    display: flex;
    align-items: center;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-container {
    /* --- CONTROL THE TEXT POSITION HERE --- */
    --hero-x: 20%;
    /* Increase to move Right, Decrease to move Left */
    --hero-y: 0px;
    /* Increase to move Down, Decrease to move Up */

    width: 100%;
    display: flex;
    align-items: center;
    /* Vertically centered */
    justify-content: flex-start;
    padding-left: var(--hero-x);
    margin-top: var(--hero-y);
    position: relative;
    z-index: 10;
}

.hero-content {
    max-width: 500px;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    color: var(--dark-blue);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-main);
}

/* Staggered entrance animations for text */
.hero-slide .script-subtitle,
.hero-slide h1,
.hero-slide p,
.hero-slide .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active .script-subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.hero-slide.active h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.hero-slide.active p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

.hero-slide.active .btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.1s;
}

/* Instant reset when slide becomes inactive */
.hero-slide:not(.active) .script-subtitle,
.hero-slide:not(.active) h1,
.hero-slide:not(.active) p,
.hero-slide:not(.active) .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: none;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 20;
}

.slider-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(10, 30, 42, 0.15);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary-color);
    border-color: var(--dark-blue);
    transform: scale(1.25);
}

.slider-arrow {
    background: none;
    border: none;
    color: var(--dark-blue);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.slider-arrow:hover {
    opacity: 1;
    background-color: var(--primary-color);
    color: var(--dark-blue);
    transform: scale(1.1);
}

/* Services / Features */
.services {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: inline-block;
}

.service-item img.service-icon {
    width: 45px;
    height: auto;
}

.service-text h3 {
    font-size: 1.1rem;
    font-family: var(--font-body);
    margin-bottom: 5px;
}

.service-text p {
    font-size: 0.9rem;
}

/* Promos */
.promos {
    padding: 0 0 80px;
}

.promos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.promo-card {
    position: relative;
    border-radius: 20px;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px;
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.promo-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.promo-content {
    position: relative;
    z-index: 2;
    color: var(--bg-white);
    max-width: 60%;
}

.promo-content h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--bg-white);
}

.promo-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.promo-card .btn-link {
    color: var(--bg-white);
}

.promo-card .btn-link:hover {
    color: var(--primary-color);
}

/* Products Section (Best Sellers) */
.products-section {
    padding: 60px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    transition: var(--transition);
    background: transparent;
    border: 1px solid transparent;
}

.product-card:hover {
    background: var(--bg-white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: var(--border-color);
}

.product-image {
    position: relative;
    background-color: transparent;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-image .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .main-img {
    opacity: 0;
}

.product-card:hover .hover-img {
    opacity: 1;
}

.product-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    width: 100%;
}

.btn-add-cart {
    background: var(--primary-color);
    color: var(--dark-blue);
    border: none;
    padding: 12px 20px;
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    width: 90%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0 50%);
}

.btn-add-cart::before,
.btn-add-cart::after {
    content: '⬢';
    font-size: 0.6rem;
    color: var(--dark-blue);
}

.btn-add-cart:hover {
    background: var(--dark-blue);
    color: var(--bg-white);
}

.btn-add-cart:hover::before,
.btn-add-cart:hover::after {
    color: var(--bg-white);
}

.action-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
}

.action-links a {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

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

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

.product-rating {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.product-info h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-info h3 a:hover {
    color: var(--primary-color);
}

.price {
    color: #E65540;
    /* Reddish color for price as per screenshot */
    font-weight: 600;
    font-size: 1.1rem;
}

/* About Beekeeper Full Bleed */
.about-beekeeper-section {
    padding: 100px 0;
    overflow: hidden;
    background-color: var(--bg-white);
}

.about-beekeeper-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Left Half (Full bleed image) */
.about-image-half {
    position: relative;
    width: 55%;
    flex-shrink: 0;
}

.about-image-half>img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 0 400px 400px 0;
    /* Huge curve on the right */
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.05);
}

/* Circular Stamp */
.stamp-circle {
    position: absolute;
    top: 15%;
    right: -75px;
    /* Overlapping the edge */
    width: 150px;
    height: 150px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.stamp-icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: counter-rotate 20s linear infinite;
}

@keyframes counter-rotate {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

/* Counter Hex Overlay */
.counter-hex-overlay {
    position: absolute;
    bottom: 50px;
    right: 50px;
    width: 220px;
    height: 254px;
    /* Regular pointy-topped hexagon ratio (H/W = 1.1547) */
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(253, 192, 22, 0.3);
}

.hex-inner {
    text-align: center;
    color: var(--dark-blue);
}

.hex-inner .count {
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 500;
    font-family: var(--font-heading);
    line-height: 1;
}

.hex-inner .plus {
    font-size: 2rem;
    font-weight: 500;
    font-family: var(--font-heading);
}

.hex-inner .label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 5px;
}

/* Right Half Content */
.about-content-half {
    width: 45%;
    padding-right: 5%;
}

.about-content-half .script-subtitle {
    margin-bottom: 10px;
    display: block;
}

.about-content-half .section-title {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.about-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 35px;
    padding-right: 20px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 10px;
}

.about-features-grid .feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-weight: 500;
}

.about-features-grid .feature-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .about-image-half>img {
        border-radius: 0 300px 300px 0;
        height: 600px;
    }

    .about-content-half .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .about-beekeeper-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .about-image-half {
        width: 100%;
        padding-right: 20px;
    }

    .about-image-half>img {
        border-radius: 0 200px 200px 0;
        height: 500px;
    }

    .about-content-half {
        width: 100%;
        padding: 0 20px;
    }
}

.btn-hex {
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 10px 100%, 0 50%);
    padding: 15px 40px !important;
}

/* Why Choose Us (Honeycomb) */
.honeycomb-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.honeycomb-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1400px;
}

.honeycomb-side-img {
    max-width: 100%;
    margin-top: 40px;
    border-radius: 20px;
}

.honeycomb-grid-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Beezi-style cluster of 6 hexagons using exact mathematical positions */
.honeycomb-cluster {
    position: relative;
    width: 684px;
    height: 715px;
}

/* Base hex style - Mathematically regular hexagon ratio (W/H = 1.1547) */
.hx {
    position: absolute;
    width: 260px;
    height: 225px;
    cursor: pointer;
    transition: var(--transition);
}

.hx-inner {
    width: 100%;
    height: 100%;
    background: #f4fbff;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 25px;
    transition: var(--transition);
}

.hx-inner i {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 12px;
    transition: var(--transition);
}

.hx-inner span {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.4;
}

/* Hover and active state */
.hx:hover .hx-inner,
.hx.active .hx-inner {
    background: var(--primary-color);
}

/* 
   Exact mathematical positions for uniform 20px gaps.
   dX = 212px, dY = 245px (half dY = 122.5px)
*/
.hx-top {
    left: 212px;
    top: 0px;
}

.hx-center {
    left: 212px;
    top: 245px;
}

.hx-mid-right {
    left: 424px;
    top: 122.5px;
}

.hx-mid-left {
    left: 0px;
    top: 367.5px;
}

.hx-bot-right {
    left: 424px;
    top: 367.5px;
}

.hx-bot-left {
    left: 212px;
    top: 490px;
}

@media (max-width: 1200px) {
    .honeycomb-cluster {
        transform: scale(0.8);
        transform-origin: top center;
    }
}

@media (max-width: 991px) {
    .honeycomb-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .honeycomb-cluster {
        transform: scale(0.65);
        transform-origin: top center;
    }
}

/* Featured Collections */
.featured-collections-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.collection-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.collection-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.collection-img {
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.collection-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-item:hover .collection-img img {
    transform: scale(1.1);
}

.collection-content {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.collection-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.collection-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
}

.products-section .container {
    max-width: 1450px;
    /* Wider container to make 4 items look large */
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns as per screenshot */
    gap: 30px;
    margin-top: 50px;
}

/* Product Card */
.product-card {
    background: transparent;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s ease;
    padding-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    /* Adjusted height for 4-column layout */
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: absolute;
    top: 0;
    left: 0;
}

.img-default {
    opacity: 1;
    object-fit: contain !important;
    padding: 0px;
    /* No padding so the image fills the maximum space */
    transform: scale(1.2);
    /* Pre-scale the default image to make it look massive */
}

.img-hover {
    opacity: 0;
    object-fit: cover !important;
    transform: scale(1);
    /* Starting scale for the hover zoom animation */
}

.product-info {
    padding: 0 20px;
    position: relative;
    z-index: 2;
    background: transparent;
    transition: all 0.4s ease;
}

.product-rating {
    color: #ffb800;
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 3px;
}

.product-rating .ph {
    color: #e0e0e0;
}

.product-rating .ph-fill {
    color: #ffb800;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    /* Enlarged title */
    color: var(--dark-blue);
    margin-bottom: 12px;
    font-weight: 500;
}

.product-price {
    color: #E65540;
    font-size: 1.25rem;
    /* Enlarged price */
    font-weight: 500;
    margin-bottom: 0;
    transition: margin-bottom 0.4s ease;
}

/* Hover Actions (hidden by default) */
.product-hover-actions {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.yellow-btn {
    background-color: var(--primary-color) !important;
    border: none !important;
    padding: 12px 30px !important;
    margin-bottom: 15px;
    width: 100%;
    justify-content: center;
}

.yellow-btn .dot {
    background-color: var(--dark-blue) !important;
}

.product-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.product-links a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #777;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-links a i {
    font-size: 1rem;
}

.product-links a:hover {
    color: var(--dark-blue);
}

/* HOVER STATE */
.product-card:hover {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.product-card:hover .img-default {
    opacity: 0;
}

.product-card:hover .img-hover {
    opacity: 1;
    transform: scale(1.1);
    /* Clear, smooth light zoom effect as requested */
}

.product-card:hover .product-hover-actions {
    max-height: 150px;
    opacity: 1;
}

/* Analysis Section (Composite Images) */
.analysis-section {
    padding: 100px 0;
    overflow: hidden;
}

.analysis-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.analysis-images-composite {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sketch-flower {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    z-index: 0;
}

.large-hex-mask {
    position: absolute;
    width: 450px;
    height: 390px;
    /* W/H ratio ~ 1.15 for regular hex */
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: 1;
    overflow: hidden;
    left: 10%;
    top: 15%;
}

.large-hex-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-hex-mask {
    position: absolute;
    width: 220px;
    height: 190px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    z-index: 2;
    overflow: hidden;
    left: 0;
    bottom: 5%;
    border: 5px solid var(--bg-white);
    /* To separate it from the large hex */
}

.small-hex-mask img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jar-image {
    position: absolute;
    width: 200px;
    height: auto;
    z-index: 3;
    right: 5%;
    bottom: 0;
    transform: rotate(15deg);
    filter: drop-shadow(5px 15px 15px rgba(0, 0, 0, 0.2));
}

.analysis-feature {
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

.hex-icon-small {
    width: 75px;
    height: 65px;
    background-color: var(--primary-color);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--dark-blue);
    font-size: 1.6rem;
}

.analysis-text h4 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-weight: 500;
}

.analysis-text p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Beezi-Style Footer */
.beezi-footer {
    background: #ffffff;
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 60px;
}

/* Vertical Dividers */
.footer-divider-vertical {
    width: 1px;
    background-image: linear-gradient(to bottom, #d0d0d0 50%, rgba(255, 255, 255, 0) 0%);
    background-position: left;
    background-size: 1px 10px;
    background-repeat: repeat-y;
}

/* Column 1: Brand */
.brand-widget {
    flex: 0 0 30%;
}

.brand-widget .logo {
    margin-bottom: 30px;
}

.brand-title {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-weight: 500;
}

.brand-widget p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.social-links-hex {
    display: flex;
    gap: 15px;
}

.social-links-hex a {
    width: 45px;
    height: 50px;
    background-color: #f4fbff;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links-hex a:hover {
    background-color: var(--primary-color);
}

/* Columns 2 & 3: Links */
.links-widget {
    flex: 0 0 15%;
}

.footer-widget h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.links-widget ul li {
    margin-bottom: 12px;
}

.links-widget ul a {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: var(--transition);
}

.links-widget ul a:hover {
    color: var(--dark-blue);
    padding-left: 5px;
}

/* Column 4: Newsletter */
.newsletter-widget {
    flex: 0 0 28%;
}

.newsletter-widget p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-wrapper {
    position: relative;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    /* Slightly rounded to match screenshot style, or use hex */
    padding: 12px 20px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.input-wrapper input {
    border: none;
    outline: none;
    font-size: 0.95rem;
    width: 85%;
    font-family: var(--font-body);
}

.input-wrapper .input-icon {
    color: #e55b5b;
    /* Reddish envelope icon from screenshot */
    font-size: 1.4rem;
}

.btn-subscribe {
    align-self: flex-start;
    padding: 12px 30px;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: var(--dark-blue);
    clip-path: polygon(15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%, 0% 50%);
    /* slightly flattened hex button */
    border-radius: 0;
    border: none;
    text-transform: uppercase;
}

.btn-subscribe i {
    font-size: 1.1rem;
}

.btn-subscribe:hover {
    background-color: var(--dark-blue);
    color: var(--bg-white);
}

/* Footer Bottom */
.footer-divider-horizontal {
    border: none;
    height: 1px;
    background-image: linear-gradient(to right, #d0d0d0 50%, rgba(255, 255, 255, 0) 0%);
    background-position: top;
    background-size: 10px 1px;
    background-repeat: repeat-x;
    margin: 0;
}

.footer-bottom {
    padding: 25px 0;
    background: #fff;
}

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

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom p .highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

.payment-methods-boxes {
    display: flex;
    gap: 10px;
}

.pay-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    padding: 0 10px;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #888;
    background: #fff;
}

.pay-box i {
    font-size: 1.2rem;
}

/* Scroll To Top Button - User Explicit Hexagonal Request */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 50px;
    height: 55px;
    /* Adjust height for perfect hex proportion */
    background-color: var(--primary-color);
    color: var(--dark-blue);
    border: none;
    z-index: 9999;
    cursor: pointer;
    clip-path: var(--hex-clip);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background-color: var(--dark-blue);
    color: var(--bg-white);
    transform: translateY(-5px);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-hex {
    font-size: 4rem;
    color: var(--primary-color);
    animation: loaderRotate 2s infinite cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

@keyframes loaderRotate {
    0% {
        transform: rotate(0) scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 1;
    }

    100% {
        transform: rotate(360deg) scale(0.8);
        opacity: 0.5;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}

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

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

.reveal-scale {
    transform: scale(0.9);
}

.reveal-rotate {
    transform: rotate(-5deg) translateY(30px);
}

.reveal.active {
    opacity: 1;
    transform: translate(0) scale(1) rotate(0);
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(15deg);
    }

    50% {
        transform: translateY(-15px) rotate(12deg);
    }

    100% {
        transform: translateY(0px) rotate(15deg);
    }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

/* Pulse for Hexagons */
@keyframes hexPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.hx.active .hx-inner {
    animation: hexPulse 3s ease-in-out infinite;
}

/* Drawing Line Animation for SVG (if any) */
@keyframes lineDraw {
    from {
        stroke-dashoffset: 1000;
    }

    to {
        stroke-dashoffset: 0;
    }
}

/* Premium Button Effect */
.btn-shop-dots {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-shop-dots::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn-shop-dots:hover::after {
    height: 100%;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(10, 30, 42, 0.05);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-blue);
    font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(10, 30, 42, 0.1);
    border-radius: 8px;
    background-color: #fff;
    color: var(--dark-blue);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(225, 173, 56, 0.15);
}

.contact-form .btn-submit {
    width: 100%;
    padding: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    background-color: var(--primary-color);
    color: var(--dark-blue);
    cursor: pointer;
    transition: var(--transition);
}

.contact-form .btn-submit:hover {
    background-color: var(--dark-blue);
    color: #fff;
}

.contact-info-map {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--primary-color);
    background-color: rgba(225, 173, 56, 0.1);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 4px;
    font-weight: 600;
}

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

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(10, 30, 42, 0.05);
    height: 320px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Contact Hero Banner */
.contact-hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 120px;
    background-size: cover;
    background-position: center;
    color: var(--dark-blue);
    text-align: center;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-hero-content p {
    font-family: var(--font-body);
    font-size: 1.15rem;
    color: var(--text-main);
    max-width: 600px;
    margin: 0 auto;
}

.honey-drip-separator {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 3;
}

.honey-drip-separator svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Product Details Page Layout */
.product-details-section {
    padding: 140px 0 80px;
    background-color: var(--bg-white);
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.product-gallery-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.main-image-viewport {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background-color: var(--bg-light-blue);
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(10, 30, 42, 0.05);
    box-shadow: var(--shadow-sm);
    cursor: zoom-in;
    height: 450px;
}

.main-image-viewport img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.1s ease, opacity 0.2s ease;
    transform-origin: center center;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumb-item {
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--bg-light-blue);
    border: 2px solid transparent;
    padding: 5px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    box-shadow: var(--shadow-sm);
}

.thumb-item img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
}

.thumb-item.active {
    border-color: var(--primary-color);
    background-color: #fff;
}

.thumb-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.product-info-column .product-category {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.product-info-column .product-title-large {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.product-info-column .product-rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-info-column .product-price-large {
    font-size: 2rem;
    color: #E65540;
    font-weight: 600;
    margin-bottom: 25px;
}

.product-info-column .product-desc-text {
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.order-actions-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
}

.qty-selector-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.qty-label {
    font-weight: 600;
    color: var(--dark-blue);
}

.qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid rgba(10, 30, 42, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.qty-btn {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    color: var(--dark-blue);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background-color: rgba(10, 30, 42, 0.05);
}

.qty-input {
    width: 50px;
    height: 40px;
    border: none;
    border-left: 1px solid rgba(10, 30, 42, 0.1);
    border-right: 1px solid rgba(10, 30, 42, 0.1);
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-blue);
    outline: none;
}

.order-buttons-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-order-site {
    background-color: var(--primary-color);
    color: var(--dark-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(253, 192, 22, 0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-order-site:hover {
    background-color: var(--dark-blue);
    color: #fff;
    transform: translateY(-2px);
}

.btn-order-whatsapp {
    background-color: #25D366;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-order-whatsapp:hover {
    background-color: #1ebd59;
    transform: translateY(-2px);
}

/* Modal order styling */
.order-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 30, 42, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.order-modal.open {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(10, 30, 42, 0.05);
    transform: translateY(-50px);
    transition: var(--transition);
}

.order-modal.open .modal-content {
    transform: translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal-btn:hover {
    color: var(--dark-blue);
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
}

.modal-form {
    margin-top: 25px;
}

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

.modal-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-blue);
}

.modal-form input,
.modal-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(10, 30, 42, 0.1);
    border-radius: 8px;
    outline: none;
    font-family: var(--font-body);
}

.modal-form input:focus,
.modal-form textarea:focus {
    border-color: var(--primary-color);
}

/* Tabs Section */
.product-tabs-section {
    padding: 60px 0 100px;
    border-top: 1px solid var(--border-color);
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    padding-bottom: 10px;
    transition: var(--transition);
}

.tab-btn.active {
    color: var(--dark-blue);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.tab-panel {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-main);
    line-height: 1.7;
    font-size: 1.05rem;
}

.tab-panel.active {
    display: block;
}

@media (max-width: 991px) {
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-image-viewport {
        padding: 20px;
        height: 350px;
    }
    
    .product-info-column .product-title-large {
        font-size: 2.2rem;
    }
    
    .order-buttons-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Shop Page Layout */
.shop-hero {
    position: relative;
    padding-top: 180px;
    padding-bottom: 80px;
    background-color: var(--bg-light-blue);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.shop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(253, 192, 22, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

.shop-hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.shop-hero-text h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.shop-hero-text .breadcrumbs {
    font-size: 1.05rem;
    color: var(--text-light);
}

.shop-hero-text .breadcrumbs a {
    color: var(--primary-color);
    font-weight: 600;
}

.shop-hero-image {
    max-width: 400px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

.shop-hero-image img {
    max-width: 350px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.08));
    animation: floatAnimation 4s ease-in-out infinite;
}

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

/* Shop Layout Grid (Sidebar + Main Content) */
.shop-main-section {
    padding: 80px 0 100px;
    background-color: var(--bg-white);
}

.shop-layout-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.sidebar-overlay {
    display: none;
}

/* Sidebar Styling */
.shop-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.close-sidebar-btn {
    display: none;
}

.sidebar-widget {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(10, 30, 42, 0.05);
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
    font-weight: 600;
}

/* Categories Widget */
.widget-categories ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.widget-categories li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
    font-weight: 500;
    transition: var(--transition);
}

.widget-categories li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.widget-categories .count {
    font-size: 0.85rem;
    color: var(--text-light);
    background-color: var(--bg-light-blue);
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
}

/* Price Filter Widget */
.price-slider-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-range-slider {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 5px;
    position: relative;
}

.price-range-slider::before {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    top: 0;
    bottom: 0;
    background: var(--primary-color);
    border-radius: 5px;
}

.price-slider-handles {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 600;
}

.btn-filter-price {
    background-color: var(--dark-blue);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    align-self: flex-start;
}

.btn-filter-price:hover {
    background-color: var(--primary-color);
    color: var(--dark-blue);
}

/* Top Sellers Widget */
.sidebar-top-sellers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.seller-item {
    display: flex;
    gap: 15px;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    text-decoration: none;
}

.seller-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.seller-img-wrapper {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 8px;
    background-color: var(--bg-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    border: 1px solid rgba(10, 30, 42, 0.05);
    overflow: hidden;
}

.seller-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    width: auto;
    height: auto;
}

.seller-info h4 {
    font-size: 0.95rem;
    color: var(--dark-blue);
    margin-bottom: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.seller-item:hover .seller-info h4 {
    color: var(--primary-color);
}

.seller-info .price {
    font-size: 0.9rem;
    color: #E65540;
    font-weight: 600;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tags-cloud a {
    font-size: 0.85rem;
    background-color: var(--bg-light-blue);
    color: var(--text-main);
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(10, 30, 42, 0.05);
    transition: var(--transition);
}

.tags-cloud a:hover {
    background-color: var(--primary-color);
    color: var(--dark-blue);
}

/* Shop Main Grid */
.shop-content-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.shop-content-column .product-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
}

.filter-mobile-btn {
    display: none;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-light-blue);
    color: var(--dark-blue);
    border: 1px solid rgba(10, 30, 42, 0.08);
    border-radius: 6px;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-mobile-btn:hover {
    background-color: var(--primary-color);
}


.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 15px 25px;
    border: 1px solid rgba(10, 30, 42, 0.05);
    box-shadow: var(--shadow-sm);
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.layout-icons {
    display: flex;
    gap: 10px;
}

.layout-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.layout-btn.active,
.layout-btn:hover {
    color: var(--primary-color);
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-select {
    padding: 8px 15px;
    border-radius: 6px;
    border: 1px solid rgba(10, 30, 42, 0.1);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    background-color: #fff;
    cursor: pointer;
}

/* Pagination */
.shop-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-item {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light-blue);
    color: var(--dark-blue);
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(10, 30, 42, 0.05);
    text-decoration: none;
}

.pagination-item.active,
.pagination-item:hover {
    background-color: var(--primary-color);
    color: var(--dark-blue);
}

@media (max-width: 991px) {
    .shop-layout-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .shop-sidebar {
        order: 2;
    }
    
    .shop-content-column {
        order: 1;
    }
}

@media (max-width: 992px) {

    .services-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-container,
    .about-beekeeper-container,
    .honeycomb-container,
    .analysis-container,
    .newsletter-clean-container {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .hero-image {
        display: none;
    }
}

/* Responsiveness for Boutique Product Grid */
@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ── Dual Range Price Slider ─────────────────────────────────── */
.dual-range-wrapper {
    position: relative;
    height: 30px;
    margin-bottom: 12px;
}

.price-range-input {
    -webkit-appearance: none;
    appearance: none;
    position: absolute;
    width: 100%;
    height: 4px;
    background: transparent;
    pointer-events: none;
    outline: none;
    top: 50%;
    transform: translateY(-50%);
}

.price-range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    cursor: pointer;
    pointer-events: all;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.price-range-input::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
}

.price-range-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--primary-color);
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
    cursor: pointer;
    pointer-events: all;
}

/* Grey track base */
.dual-range-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #e0e0e0;
    border-radius: 4px;
    transform: translateY(-50%);
}

/* Yellow fill between handles */
.range-track-fill {
    position: absolute;
    top: 50%;
    height: 4px;
    background: var(--primary-color);
    border-radius: 4px;
    transform: translateY(-50%);
    pointer-events: none;
}

/* ── Category filter active state ───────────────────────────── */
.widget-categories ul li a.cat-filter {
    transition: color 0.2s, font-weight 0.2s;
}

.widget-categories ul li a.cat-filter.active {
    color: var(--primary-color);
    font-weight: 700;
}

/* ── Price filter button ────────────────────────────────────── */
.btn-filter-price {
    display: block;
    width: 100%;
    margin-top: 14px;
    padding: 10px;
    background: var(--dark-blue);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-filter-price:hover {
    background: var(--primary-color);
    color: var(--dark-blue);
}

/* ═══════════════════════════════════════════════════════════════════
   📱 MOBILE RESPONSIVE — Complete Overhaul
   Breakpoints: 768px (tablet), 480px (mobile), 375px (small mobile)
═══════════════════════════════════════════════════════════════════ */

/* ── Hamburger Button ─────────────────────────────────────────── */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 2px solid rgba(10, 30, 42, 0.12);
    border-radius: 8px;
    cursor: pointer;
    z-index: 1100;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
    order: -1;
}

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark-blue);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

.hamburger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}
.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav Drawer ────────────────────────────────────────── */
@media (max-width: 768px) {

    /* Show hamburger */
    .hamburger-btn {
        display: flex;
    }

    /* Header layout */
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 16px;
    }

    .hamburger-btn {
        display: flex;
        order: 1;
    }

    /* Logo centered */
    .logo {
        order: 2;
        flex: 1;
        display: flex;
        justify-content: center;
        padding: 0;
    }

    .logo-icon {
        height: 50px;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .header-actions {
        display: flex !important;
        order: 3;
        flex: 1;
        justify-content: flex-end;
        align-items: center;
        gap: 15px;
    }

    /* Hide desktop elements except cart-btn */
    .contact-number,
    .social-links,
    .action-btn:not(.cart-btn) {
        display: none !important;
    }

    .action-btn.cart-btn {
        display: flex !important;
        background: transparent;
        border: none;
        color: var(--dark-blue);
        font-size: 1.45rem;
        cursor: pointer;
        position: relative;
    }

    /* Mobile nav drawer */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 30, 42, 0.97);
        backdrop-filter: blur(10px);
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s ease, visibility 0.35s ease;
    }

    .main-nav.mobile-open {
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        align-items: center;
        width: 100%;
        padding: 0 30px;
    }

    .main-nav li {
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        justify-content: center;
    }

    .main-nav li:not(:last-child)::after {
        display: none;
    }

    .main-nav a {
        color: #fff !important;
        font-size: 1.3rem !important;
        font-weight: 600 !important;
        padding: 18px 0 !important;
        display: block !important;
        text-align: center !important;
        text-transform: capitalize !important;
        letter-spacing: 1px !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        transition: color 0.2s, letter-spacing 0.2s;
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: var(--primary-color) !important;
        letter-spacing: 2px !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    /* Staggered animation for nav items */
    .main-nav.mobile-open li {
        animation: navItemIn 0.4s ease forwards;
        opacity: 0;
    }
    .main-nav.mobile-open li:nth-child(1) { animation-delay: 0.05s; }
    .main-nav.mobile-open li:nth-child(2) { animation-delay: 0.1s; }
    .main-nav.mobile-open li:nth-child(3) { animation-delay: 0.15s; }
    .main-nav.mobile-open li:nth-child(4) { animation-delay: 0.2s; }
    .main-nav.mobile-open li:nth-child(5) { animation-delay: 0.25s; }
    .main-nav.mobile-open li:nth-child(6) { animation-delay: 0.3s; }

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

    /* hamburger open state border */
    .hamburger-btn.open {
        border-color: var(--primary-color);
        background: rgba(253, 192, 22, 0.1);
    }
    .hamburger-btn.open span {
        background: var(--primary-color);
    }

    /* ── Hero Section ───────────────────────────────────────── */
    .hero {
        height: auto;
        min-height: 100svh;
        padding: 0;
        border-radius: 0 0 30% 30% / 0 0 8% 8%;
    }

    .hero-slide::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.4) 100%);
        z-index: 2;
    }

    .hero-container {
        padding: 120px 20px 80px;
        grid-template-columns: 1fr;
        z-index: 3;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.6rem;
        line-height: 1.15;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-content .btn {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    .script-subtitle {
        font-size: 1.6rem;
    }

    /* ── Top Bar ────────────────────────────────────────────── */
    .top-bar p {
        font-size: 0.72rem;
        padding: 0 10px;
    }

    /* ── Services Grid ──────────────────────────────────────── */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 15px;
    }

    /* ── Products Grid ──────────────────────────────────────── */
    .product-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .product-card .product-img-wrapper {
        height: 180px;
    }

    .product-info {
        padding: 12px 10px;
    }

    .product-title {
        font-size: 0.9rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .product-hover-actions {
        display: none !important;
    }

    /* ── Promos Grid ────────────────────────────────────────── */
    .promos-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .promo-card {
        height: 240px;
        padding: 25px;
    }

    .promo-content {
        max-width: 80%;
    }

    .promo-content h3 {
        font-size: 1.8rem;
    }

    /* ── Section Titles ─────────────────────────────────────── */
    .section-title {
        font-size: 1.8rem;
    }

    /* ── About Section ──────────────────────────────────────── */
    .about-beekeeper-wrapper {
        flex-direction: column;
    }

    .about-image-half > img {
        border-radius: 15px;
        height: 280px;
        object-fit: cover;
    }

    /* ── Collections Grid ───────────────────────────────────── */
    .collections-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    /* ── Newsletter ─────────────────────────────────────────── */
    .newsletter-clean-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0 20px;
    }

    .newsletter-clean-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-clean-form input {
        width: 100%;
    }

    /* ── Footer ─────────────────────────────────────────────── */
    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-divider-vertical {
        display: none;
    }

    .footer-widget {
        width: 100%;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .payment-methods-boxes {
        justify-content: center;
    }

    /* ── Boutique Page ──────────────────────────────────────── */
    .shop-hero-container {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 40px;
    }

    .shop-hero-image {
        max-width: 200px;
        margin: 0 auto;
    }

    .shop-hero-text h1 {
        font-size: 2rem;
    }

    .shop-layout-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* ── Mobile Sidebar Drawer ────────────────────────────── */
    .shop-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100vh;
        background-color: #fff;
        z-index: 10000;
        padding: 60px 20px 30px;
        overflow-y: auto;
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
        transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        order: initial;
    }

    .shop-sidebar.active {
        left: 0;
    }

    .close-sidebar-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: var(--text-light);
        cursor: pointer;
        transition: var(--transition);
        display: block !important;
    }

    .close-sidebar-btn:hover {
        color: var(--dark-blue);
    }

    .sidebar-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: rgba(10, 30, 42, 0.5);
        backdrop-filter: blur(3px);
        z-index: 9999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .filter-mobile-btn {
        display: flex;
    }

    .shop-content-column {
        order: initial;
    }

    .shop-toolbar {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 12px 15px !important;
        gap: 10px !important;
    }

    .toolbar-left {
        flex-wrap: wrap !important;
        gap: 8px !important;
    }

    .toolbar-left span {
        font-size: 0.85rem !important;
        display: none !important; /* Hide results text on small screens to save space */
    }

    .sort-select {
        width: auto !important;
        font-size: 0.85rem !important;
        padding: 8px 12px !important;
    }

    .shop-toolbar {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .sort-select {
        width: 100%;
    }

    /* ── Product Detail Page ────────────────────────────────── */
    .product-details-section {
        padding: 100px 0 40px;
    }

    .product-details-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .main-image-viewport {
        height: 300px;
    }

    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .thumb-item {
        height: 60px;
    }

    .product-title-large {
        font-size: 1.8rem !important;
    }

    .product-price-large {
        font-size: 1.6rem !important;
    }

    .order-buttons-row {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .btn-order-site,
    .btn-order-whatsapp {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    /* ── Contact Page ───────────────────────────────────────── */
    .contact-grid {
        grid-template-columns: 1fr !important;
    }

    .form-row {
        flex-direction: column !important;
        gap: 15px !important;
    }

    /* ── Scroll-to-top Button ───────────────────────────────── */
    .scroll-top-btn {
        width: 44px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 90px;
        z-index: 9999 !important;
    }

    /* ── Modal ──────────────────────────────────────────────── */
    .modal-content {
        margin: 20px;
        padding: 25px 20px;
        width: calc(100% - 40px);
        max-height: 90vh;
        overflow-y: auto;
    }

    /* ── Tabs ───────────────────────────────────────────────── */
    .tabs-nav {
        gap: 15px;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .tab-btn {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    /* ── Honeycomb Section ──────────────────────────────────── */
    .honeycomb-section {
        padding: 60px 0;
        overflow: hidden;
    }

    .honeycomb-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .honeycomb-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .honeycomb-text h2.section-title {
        text-align: center;
    }

    .honeycomb-side-img {
        margin: 30px auto 0 !important;
        display: block;
    }

    .honeycomb-grid-wrapper {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        overflow: visible !important;
    }

    .honeycomb-cluster {
        transform: scale(0.55);
        transform-origin: top center;
        margin-bottom: -200px;
    }

    /* ── Analysis Section ───────────────────────────────────── */
    .analysis-container {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    /* ── Tags Cloud ─────────────────────────────────────────── */
    .tags-cloud {
        flex-wrap: wrap;
        gap: 8px;
    }

    /* ── Sidebar collapsed on mobile ────────────────────────── */
    .shop-sidebar .sidebar-widget {
        border-radius: 12px;
        padding: 20px;
    }

    /* ── General padding fix ────────────────────────────────── */
    .container {
        padding: 0 16px;
    }

    section {
        overflow: hidden;
    }
}

/* ── Extra Small (480px phones) ───────────────────────────────── */
@media (max-width: 480px) {
    .product-grid,
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .product-title-large {
        font-size: 1.5rem !important;
    }

    .main-image-viewport {
        height: 240px;
    }

    .logo-icon {
        height: 42px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .honeycomb-cluster {
        transform: scale(0.42);
        transform-origin: top center;
        margin-bottom: -320px;
    }
}

/* ── Tiny screens (e.g. 320px-360px phones) ─────────────────── */
@media (max-width: 380px) {
    .honeycomb-cluster {
        transform: scale(0.35);
        transform-origin: top center;
        margin-bottom: -360px;
    }
}

/* ── Live Chat Assistant ────────────────────────────────────────── */
.chat-assistant-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 2000;
    font-family: var(--font-body);
}

/* Launcher Button */
.chat-launcher {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--dark-blue);
    border: none;
    box-shadow: 0 10px 30px rgba(253, 192, 22, 0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
}

.chat-launcher i,
.chat-launcher svg {
    font-size: 1.8rem;
    transition: var(--transition);
}

.chat-launcher:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 15px 35px rgba(253, 192, 22, 0.45);
    background-color: var(--dark-blue);
    color: var(--bg-white);
}

/* Pulse ring around launcher */
@keyframes launcherPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

.chat-launcher .pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: launcherPulse 2.5s infinite ease-out;
    pointer-events: none;
    z-index: -1;
}

.chat-launcher .unread-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #E65540;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Chat Window */
.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    height: 500px;
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(10, 30, 42, 0.15);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.92) translateY(20px);
    transform-origin: bottom right;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.3s, 
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-window.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

/* Chat Header */
.chat-header {
    background-color: var(--dark-blue);
    color: var(--bg-white);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.assistant-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
}

.assistant-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    background-color: var(--bg-light-blue);
}

.avatar-wrapper .status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: #28a745;
    border-radius: 50%;
    border: 2px solid var(--dark-blue);
}

.assistant-info h4 {
    color: var(--bg-white);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

.assistant-info span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

.close-chat-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-chat-btn:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: var(--bg-gray);
    scroll-behavior: smooth;
}

.message {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.message.assistant {
    align-self: flex-start;
}

.message.user {
    align-self: flex-end;
}

.message-content {
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.message.assistant .message-content {
    background-color: var(--bg-white);
    color: var(--dark-blue);
    border-bottom-left-radius: 2px;
    border: 1px solid var(--border-color);
}

.message.user .message-content {
    background-color: var(--primary-color);
    color: var(--dark-blue);
    border-bottom-right-radius: 2px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(253, 192, 22, 0.15);
}

.message-time {
    font-size: 0.7rem;
    color: #999;
}

.message.assistant .message-time {
    margin-left: 4px;
}

.message.user .message-time {
    align-self: flex-end;
    margin-right: 4px;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 18px;
    background-color: var(--bg-white);
    border-radius: 14px;
    border-bottom-left-radius: 2px;
    border: 1px solid var(--border-color);
}

.typing-dot {
    width: 6px;
    height: 6px;
    background-color: var(--dark-blue);
    border-radius: 50%;
    opacity: 0.4;
    animation: typingBounce 1.4s infinite ease-in-out both;
}

.typing-dot:nth-child(1) { animation-delay: -0.32s; }
.typing-dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes typingBounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Options/FAQs Container */
.chat-options-container {
    padding: 16px 20px;
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-white);
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 180px;
    overflow-y: auto;
}

.chat-option-btn {
    width: 100%;
    text-align: left;
    padding: 10px 14px;
    background-color: var(--bg-light-blue);
    border: 1px solid rgba(10, 30, 42, 0.06);
    border-radius: 8px;
    color: var(--dark-blue);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.chat-option-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateX(3px);
}

.chat-option-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Footer (WhatsApp Connection) */
.chat-footer {
    padding: 12px 20px;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.whatsapp-direct-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25d366;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.whatsapp-direct-link i,
.whatsapp-direct-link svg {
    font-size: 1.15rem;
}

.whatsapp-direct-link:hover {
    color: #128c7e;
    transform: translateY(-1px);
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
    .chat-window {
        width: 320px;
        height: 450px;
        bottom: 70px;
    }
    .chat-assistant-container {
        bottom: 20px;
        right: 20px;
    }
    .chat-launcher {
        width: 54px;
        height: 54px;
    }
}
