/* Reset i podstawowe style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --kolorGlowny: #deb300;
    --kolorTla: #1e1e1e;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', Arial, sans-serif;
    font-size: 14px;
    color: #666;
    background-color: #fff;
    line-height: 1.7em;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.vertical-nav {
    padding-left: 0;
}

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

/* Performance optimizations */
img[loading="lazy"] {
    content-visibility: auto;
}

.video-background video {
    content-visibility: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Container */
.container {
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
}

/* Vertical Navigation */
#vertical-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 100vh;
    background-color: var(--kolorTla);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vertical-nav-inner {
    padding: 40px;
    width: 100%;
}

.logo-container {
    text-align: center;
    margin-bottom: 28px;
}

#logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

.nav-menu li {
    display: block;
}

.nav-link {
    display: block;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--kolorGlowny);
    font-weight: 900;
}

/* Mobile Header */
#mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99999;
    padding: 15px 20px;
}

.mobile-logo {
    float: left;
}

.mobile-logo img {
    height: 50px;
    width: auto;
}

#mobile-menu-toggle {
    float: right;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-text {
    font-weight: 500;
    color: #666;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #666;
    transition: all 0.3s ease;
}

#mobile-menu-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translateY(7px);
}

#mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

#mobile-menu-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translateY(-7px);
}

/* Page Container */
#page-container {
    margin-left: 260px;
    min-height: 100vh;
}

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

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    background: url('images/hero-poster.jpg') center center / cover no-repeat;
    background-color: #1a1a1a;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    will-change: auto;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    padding: 0 20px;
}

.hero-logo img {
    max-width: 50%;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-icon {
    width: 30px;
    height: 45px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
    display: block;
}

.scroll-icon::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-animation 2s infinite;
}

@keyframes scroll-animation {
    0% {
        opacity: 1;
        top: 8px;
    }
    50% {
        opacity: 0.5;
        top: 20px;
    }
    100% {
        opacity: 0;
        top: 8px;
    }
}

/* Offer Section */
.offer-section {
    padding: 54px 0;
    background-image: url('images/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h1 {
    font-family: 'Italianno', cursive;
    font-size: 70px;
    color: #333;
    font-weight: 400;
    margin: 0;
    line-height: 1;
}

.offer-grid {
    display: flex;
    justify-content: space-between;
    gap: 0;
}

.offer-card {
    width: 31.33%;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(30, 30, 30, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(30, 30, 30, 0.3);
}

.offer-link {
    display: block;
    color: inherit;
}

.offer-image {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-bottom: 100%;
}

.offer-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.offer-card h4 {
    font-family: 'Italianno', cursive;
    font-size: 40px;
    font-weight: 400;
    text-align: center;
    padding: 20px;
    margin: 0;
    color: #333;
}

/* About Section */
.about-section {
    padding: 0;
    background-image: url('images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.about-hero {
    background-image: url('images/hero_about.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    min-height: 180px;
    position: relative;
    background-color: #deb300;
    display: flex;
    align-items: center;
}

.about-hero-container {
    width: 100%;
    padding: 20px 0;
}

.about-hero-container.left {
    text-align: left;
}

.about-hero-content-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 30px;
}

.about-hero-content-container.center {
    text-align: left;
}

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

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(222, 179, 0, 0.1);
    z-index: 1;
}

.about-hero h1 {
    font-family: 'Italianno', cursive;
    font-size: 52px;
    color: #fff;
    font-weight: 400;
    margin: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-section .container {
    padding: 54px 0;
}

.about-layout {
    margin-bottom: 40px;
}

.about-row-1 {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 5.5%;
    margin-bottom: 40px;
}

.about-row-2 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5.5%;
    margin-bottom: 40px;
}

.about-bg-column {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 400px;
}

.about-bg-column-1 {
    background-image: url('images/about_gallery2.webp');
}

.about-bg-column-2 {
    background-image: url('images/about_gallery1.webp');
}

.about-bg-column-3 {
    background-image: url('images/about_gallery3.webp');
}

.about-bg-column-4 {
    background-image: url('images/about_gallery4.webp');
}

.about-content-column {
    /* Kolumna z tekstem i galerią wewnątrz */
    display: flex;
    flex-direction: column;
}

.about-content-column p {
    font-size: 14px;
    line-height: 1.7em;
    color: #666;
    padding-bottom: 1em;
    text-align: justify;
    margin: 0;
}

.about-content-column p:last-of-type {
    padding-bottom: 1em;
}

.about-content-column strong {
    font-weight: 600;
    color: #333;
}

.about-gallery {
    display: none; /* Ukryte na desktopie - pokazują się tylko na mobile */
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 980px) {
    .about-row-1,
    .about-row-2 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-bg-column {
        display: none;
    }
    
    .about-gallery {
        display: grid; /* Pokazują się na mobile */
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0 0 0;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-header {
    text-align: left;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-family: 'Italianno', cursive;
    font-size: 48px;
    color: #333;
    font-weight: 400;
    margin: 0;
    text-align: left;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    padding-bottom: 60px;
}

.contact-info {
    display: block;
}

.contact-item {
    width: 100%;
    margin: 0;
}

.et_pb_text_inner h2 {
    font-family: 'Open Sans', sans-serif;
    font-size: 26px;
    color: #deb300;
    font-weight: 700;
    margin: 0 0 30px 0;
    line-height: 1.4;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-detail i,
.contact-detail .icon-svg {
    font-size: 18px;
    width: 20px;
    height: 20px;
    color: #deb300;
    fill: #deb300;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.contact-text a {
    color: #deb300;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #333;
}

.contact-map {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.et_pb_code_inner iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Awards Section */
.awards-section {
    padding: 54px 0;
    background-color: #deb300;
}

.awards-content h2 {
    font-family: 'Italianno', cursive;
    font-size: 41px;
    color: #333;
    font-weight: 400;
    margin: 0 0 30px 0;
    text-align: left;
}

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

.award-item {
    text-align: center;
    position: relative;
}

.award-item img {
    width: 100%;
    height: 284px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.award-item:hover img {
    transform: scale(1.05);
}

.award-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(222, 179, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 4px;
}

.award-item:hover::after {
    opacity: 1;
}

@media (max-width: 980px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .et_pb_code_inner iframe {
        height: 300px;
    }
    
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Footer Section */
.footer-section {
    padding: 0;
    background-color: #202020;
    color: #fff;
    margin-top: auto;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5.5%;
    padding: 60px 0 40px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8em;
    color: #fff;
}

.footer-col p i,
.footer-col p .icon-svg {
    color: #fff;
    fill: #fff;
    font-size: 14px;
    width: 16px;
    height: 16px;
    margin-right: 8px;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
}


.footer-col strong {
    font-weight: 700;
}

.footer-col a {
    color: #deb300;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #2EA3F2;
}

/* Responsive Design */
@media (max-width: 980px) {
    /* Hide vertical nav, show mobile header */
    #vertical-nav {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    #vertical-nav.active {
        transform: translateX(0);
    }

    #mobile-header {
        display: block;
    }

    #mobile-header::after {
        content: '';
        display: table;
        clear: both;
    }

    #page-container {
        margin-left: 0;
        padding-top: 80px;
    }

    .hero-section {
        height: calc(100vh - 80px);
    }

    .hero-logo img {
        max-width: 300px;
    }

    .offer-grid {
        flex-direction: column;
        gap: 40px;
    }

    .offer-card {
        width: 100%;
    }

    .footer-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 7.5%;
        padding: 40px 0 30px;
    }

    .section-title h1,
    .about-content h1 {
        font-size: 50px;
    }

    /* Parallax off on mobile */
    .offer-section {
        background-attachment: scroll;
    }
}

@media (max-width: 640px) {
    .hero-logo img {
        max-width: 250px;
    }

    .section-title h1,
    .about-content h1 {
        font-size: 40px;
    }

    .offer-card h4 {
        font-size: 32px;
    }

    .footer-row {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px 100px 20px;
    }
    
    .footer-col:last-child {
        margin-bottom: 20px;
    }

    .contact-section {
        min-height: calc(100vh + 60px);
        padding-bottom: 60px;
    }

    .offer-section,
    .about-section {
        padding: 50px 0;
    }

    #page-container {
        padding-top: 70px;
    }

    .mobile-logo img {
        height: 40px;
    }

    #mobile-header {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hero-logo img {
        max-width: 200px;
    }

    .section-title h1,
    .about-content h1 {
        font-size: 35px;
    }

    .vertical-nav-inner {
        padding: 30px 20px;
    }

    #logo {
        max-width: 150px;
    }
}

/* Desktop only enhancements */
@media (min-width: 981px) {
    body.vertical-nav {
        padding-left: 0;
    }

    #page-container {
        margin-left: 260px;
    }

    /* Smooth scrollbar for nav */
    #vertical-nav::-webkit-scrollbar {
        width: 6px;
    }

    #vertical-nav::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    #vertical-nav::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 3px;
    }

    #vertical-nav::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
}

/* Honey, Products, Queens Sections - Shared Styles */
.honey-section,
.products-section,
.queens-section {
    padding: 80px 0;
}

.honey-section {
    background-color: #fff;
}

.products-section {
    background-color: #f9f9f9;
}

.queens-section {
    background-color: #fff;
}

.honey-section .section-header,
.products-section .section-header,
.queens-section .section-header {
    text-align: left;
    margin-bottom: 60px;
}

.honey-section .section-header h2,
.products-section .section-header h2,
.queens-section .section-header h2 {
    font-family: 'Italianno', cursive;
    font-size: 48px;
    color: #333;
    font-weight: 400;
    margin: 0;
}

/* Universal Carousel Styles */
.honey-carousel,
.products-carousel {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    height: auto;
    background: #fff;
}

.honey-slide-content,
.product-slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
}

.honey-image,
.product-image {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 30px;
}

.honey-image img,
.product-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.honey-description,
.product-description {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.honey-description h3,
.product-description h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    color: #deb300;
    font-weight: 700;
    margin: 0 0 25px 0;
}

.honey-description p,
.product-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.honey-description ul,
.product-description ul {
    margin: 15px 0;
    padding-left: 20px;
}

.honey-description li,
.product-description li {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 8px;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.carousel-prev,
.carousel-next {
    background: #deb300;
    border: 3px solid #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: #fff;
    color: #deb300;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Queens Content */
.queens-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.queens-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.queens-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.queens-description {
    padding: 40px 0;
}

.queens-description h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    color: #deb300;
    font-weight: 700;
    margin: 0 0 25px 0;
}

.queens-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.queens-description ul {
    margin: 15px 0;
    padding-left: 20px;
}

.queens-description li {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 8px;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: #fff;
}

.gallery-section .section-header {
    text-align: left;
    margin-bottom: 60px;
}

.gallery-section .section-header h2 {
    font-family: 'Italianno', cursive;
    font-size: 48px;
    color: #333;
    font-weight: 400;
    margin: 0;
}

.gallery-content {
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-in-out;
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #deb300;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: #deb300;
    border: 3px solid #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #fff;
    color: #deb300;
    transform: scale(1.15);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.7);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive Design for Product Sections */
@media (max-width: 768px) {
    .honey-slide-content,
    .product-slide-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .honey-image,
    .product-image {
        padding: 20px;
    }
    
    .honey-image img,
    .product-image img {
        height: 300px;
    }
    
    .honey-description,
    .product-description,
    .queens-description {
        padding: 40px 30px;
    }
    
    .honey-description h3,
    .product-description h3,
    .queens-description h3 {
        font-size: 24px;
    }
    
    .queens-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .queens-image {
        padding: 20px;
    }
    
    .queens-image img {
        height: 300px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 45px;
        height: 45px;
        font-size: 22px;
        border-width: 2px;
    }
    
    .honey-section .section-header h2,
    .products-section .section-header h2,
    .queens-section .section-header h2,
    .gallery-section .section-header h2 {
        font-size: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .lightbox-content {
        width: 95%;
        height: 95%;
        padding: 10px;
    }
    
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 24px;
        border-width: 2px;
    }
    
    .lightbox-nav {
        padding: 0 10px;
    }
}
