/* Full screen hero */
body, html {
    background-color: #fffaf3 !important;
}
.hero-section {
	width: 100%;
	height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fffaf3;
	overflow: hidden;
	position: relative;
	padding: 0 50px;
	box-sizing: border-box;
}

/* Tablet devices (768px – 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-section {
        height: 130vh;
        padding: 0px 20px;
    }
}

@media (min-width: 1024px) {
    .hero-section {
        height: 75vh !important; 
    }
}

/* Flex content */
.hero-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	max-width: 1600px;
}

/* Text column */
.hero-text {
	flex: 1;
	max-width: 50%;
}

.hero-text h1 {
	/* font-size: 6vw; */
	font-weight: 700;
	color: #131313;
	margin: 10px 0;
}

.hero-text .subtitle {
	font-size: 1.5vw;
	font-weight: 700;
	letter-spacing: 3px;
	color: #555;
	margin-bottom: 10px;
}

.hero-text .description {
	font-size: 1.2vw;
	color: #383838;
	line-height: 1.6;
	margin: 20px 0;
}

.hero-text .btn {
	display: inline-block;
	padding: 12px 30px;
	background: #91582d;
	color: #fff !important;
	font-weight: bold;
	text-decoration: none;
	border-radius: 5px;
	transition: 0.3s;
}

.hero-text .btn:hover {
	background: #91582d;
}

/* Image column */
.hero-image {
	flex: 1;
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.hero-image .main-honey {
	max-width: 700px;
	width: 100%;
	height: auto;
}

.hero-image .pure-honey {
	position: absolute;
	bottom: 20px;
	right: -70px;
	width: 200px;
	height: auto;
}

/* Responsive */
@media (max-width: 1200px) {
	.hero-text h1 {
		font-size: 7vw;
	}

	.hero-text .subtitle {
		font-size: 2vw;
	}

	.hero-text .description {
		font-size: 1.5vw;
	}

	.hero-image .pure-honey {
		width: 150px;
		right: -50px;
	}
}

@media (max-width: 992px) {
	.hero-content {
		flex-direction: column;
		text-align: center;
	}

	.hero-text,
	.hero-image {
		max-width: 100%;
	}

	.hero-image .pure-honey {
		position: relative;
		right: 0;
		bottom: 0;
		margin-top: 20px;
		width: 120px;
	}
}

@media (max-width: 576px) {
	.hero-text h1 {
		font-size: 12vw;
	}

	.hero-text .subtitle {
		font-size: 6vw;
	}

	.hero-text .description {
		font-size: 4vw;
	}

	.hero-image .main-honey {
		max-width: 300px;
        position: relative;
        margin: 60px 0px;
        bottom: 35px;
	}

    .pure-honey{
        display: none;
    }

	.hero-image .pure-honey {
		width: 100px;
	}
}


.why-b-honey {
	padding: 20px 20px;
}

.why-container {
	max-width: 1200px;
	margin: auto;
}

.why-grid {
	display: flex;
	align-items: center;
	gap: 80px;
}

/* Image */
.why-image {
	flex: 1;
}

.why-image img {
	width: 100%;
	max-width: 600px;
	display: block;
}

/* Content */
.why-content {
	flex: 1;
}

.why-content h2 {
	font-size: 56px;
	font-weight: 700;
	color: #131313;
	margin-bottom: 15px;
}

.why-subtitle {
	font-size: 18px;
	color: #777;
	margin-bottom: 35px;
}

.why-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.why-list li {
	font-size: 16px;
	color: #383838;
	line-height: 1.8;
	margin-bottom: 18px;
	padding-left: 28px;
	position: relative;
}

/* Custom bullet (bee-style dot) */
.why-list li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #91582d;
	font-size: 27px;
	line-height: 1;
}

/* Responsive */
@media (max-width: 992px) {
	.why-grid {
		flex-direction: column;
		text-align: center;
	}

	.why-image img {
		margin: auto;
	}

	.why-list li {
		padding-left: 0;
	}

	.why-list li::before {
		display: none;
	}
}

.seasonal-honey-container {
	padding: 0px 0px 100px;
}

.beekeeper-story {
	padding: 80px 20px;
	background-color: #fff8ec;
}

.beekeeper-story .container {
	max-width: 1200px;
	margin: auto;
}

.story-header {
	text-align: center;
	margin-bottom: 50px;
}

.story-header h2 {
	font-size: 36px;
	color: #4a2f00;
	margin-bottom: 10px;
}

.story-header p {
	color: #7a5a2b;
	font-size: 16px;
}

.story-content {
	display: flex;
	align-items: center;
	gap: 50px;
}

.story-image img {
	width: 100%;
	max-width: 480px;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.story-text {
	flex: 1;
	font-size: 17px;
	color: #4a3a20;
	line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
	.story-content {
		flex-direction: column;
		text-align: center;
	}

	.story-image img {
		max-width: 100%;
	}
}


.image-story {
	height: 300px !important;
}


.shop-map-section .container {
	max-width: 1200px;
	margin: auto;
}

.shop-map-section {
    padding: 70px 20px 0px;
	background-color: #fffdf8;
}

.shop-map-header {
	text-align: center;
	margin-bottom: 30px;
}

.shop-map-header h2 {
	color: #4a2f00;
}

.shop-map-header p {
	color: #7a5a2b;
	font-size: 16px;
}

#bhoney-map {
	width: 100%;
	height: 650px;
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#qodef-page-header{
	background-color: #fffaf3;
}

.qodef-header-navigation>ul>li>a{
    color: #91582d !important;
}

.why-b-honey{
	background-color: #fffaf3;
}

.why-b-honey * {
    color: #e5d2bc !important;
}

.shop-map-section{
	background-color: #fffaf3;
}
.shop-map-section *{
    color: #91582d !important;
}


.qodef-drop-down-second {
    display: none;
}

.qodef-menu-item.is-open > .qodef-drop-down-second {
    display: block;
}



/* NAV BASE */
.nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-item {
    position: relative;
}

/* MAIN LINK */
.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
    color: #222;
    text-decoration: none;
    font-weight: 500;
}

/* ARROW */
.nav-arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* SUBMENU */
.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);

    /* hidden */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 1000;
}

/* SUB LINKS */
.nav-sublink {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.nav-sublink:hover {
    color: #91582d;
}

/* HOVER ACTION */
.nav-dropdown:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown:hover .nav-arrow {
    transform: rotate(180deg);
}

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

.mt-2{
	padding-top: 60px;
}


.cert-cards {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	margin-bottom: 50px;
}
.cert-card {
	background: #fffaf3;
	padding: 20px 25px;
	border-radius: 12px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	font-size: 18px;
	color: #91582d;
	max-width: 220px;
	text-align: center;
}

.cert-cards .cert-card h5{
	color: #91582d
}

.certifications {
	padding: 60px 0;
	background-color: #fffaf3; /* optional background */
	text-align: center;
}
.certifications .section-title {
	font-size: 32px;
	margin-bottom: 30px;
}
.cert-item {
	background: #fffaf3;
	padding: 30px 20px;
	border-radius: 10px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
	font-size: 18px;
	color: #fffaf3;
}
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
	background: #ffd54f;
	padding: 5px 15px;
	border-radius: 5px;
	position: absolute;
	top: 35%;
}
.owl-nav button.owl-prev { left: -40px; }
.owl-nav button.owl-next { right: -40px; }
.owl-nav button span {
	font-size: 20px;
}

.icon-size {
	font-size: 26px !important;
	margin-top: 10px;
}

.icon-size-lang{
	font-size: 26px !important;
}

/* Honey Types */
.types-of-honey {
    padding: 60px 20px;
    background-color: #91582d;
}

.types-container {
    max-width: 1200px;
    margin: 0 auto;
}

.types-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.types-image {
    flex: 1 1 45%;
    min-width: 280px;
}

.types-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.types-content {
    flex: 1 1 50%;
    min-width: 280px;
}

.types-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #fffaf3;
}

.types-content p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #fffaf3;
}

.types-content * {
    color: #e5d2bc !important
}

.types-list {
    list-style: none;
    padding: 0;
}

.types-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #444;
    background: #fff3e0;
    padding: 10px 15px;
}

ul.types-list li{
    background-color: #91582d !important;
    color: #91582d !important;
    box-shadow: none;
}

.types-list li .icon {
    font-size: 20px;
}

/* Historical Honey process */
/* Section Styling */
.how-honey-made {
    padding: 100px 20px;
    background: #fffaf3;
    font-family: 'Poppins', sans-serif;
}

.how-honey-made .section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #fffaf3;
    background-color: #fffaf3;
    letter-spacing: 1px;
    font-weight: 700;
}

.how-honey-made * {
    color: #91582d !important;
}

/* Timeline Container */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}


i.fas.fa-seedling,
i.fas.fa-flask,
i.fas.fa-fire,
i.fas.fa-cubes,
i.fas.fa-star{
    color: #e5d2bc !important;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 6px;
    background-color: #91582d;
    transform: translateX(-50%);
    border-radius: 3px;
}

/* Timeline Items */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s forwards;
    transition: transform 0.3s ease;
}

.timeline-item:hover {
    transform: scale(1.03);
}

.timeline-item.left {
    left: 0;
    justify-content: flex-end;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    justify-content: flex-start;
    text-align: left;
}

/* Icon Styling */
.timeline-icon {
    width: 60px;
    height: 60px;
    background: #91582d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

/* Card Content Styling */
.timeline-content {
    background: #91582d;
    padding: 20px 25px;
    border-radius: 0;
    max-width: 400px;
    font-size: 18px;
}
.timeline-content p {
    color: #FFF !important;
}

/* Connecting Dots */
.timeline-item.left::after,
.timeline-item.right::after {
    content: '';
    position: absolute;
    top: 28px;
    width: 16px;
    height: 16px;
    background: #91582d;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.left::after {
    right: -8px;
}

.timeline-item.right::after {
    left: -8px;
}

/* Fade-in Animation */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .timeline-item, .timeline-item.left, .timeline-item.right {
        width: 100%;
        left: 0;
        justify-content: flex-start;
        text-align: left;
        padding-left: 80px;
        padding-right: 20px;
    }

    .timeline-item.left::after,
    .timeline-item.right::after {
        left: 12px;
    }

    .timeline::before {
        left: 40px;
    }
}

/* Raw Vs Process Honey */
.honey-compare {
    padding: 100px 20px;
    background: #fffaf3;
}

.compare-container {
    max-width: 1100px;
    margin: auto;
}

.compare-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 60px;
}

/* GRID */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

/* BOXES */
.compare-box {
    padding: 40px 35px;
    border-radius: 0px;
    background: #fff;
}

.compare-box h3 {
    font-size: 24px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* LIST */
.compare-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compare-box ul li {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid #91582d;
}

/* RAW (GREEN) */
.compare-box.raw {
    border-left: 6px solid #91582d;
    background-color: #f5dac1;
}

.compare-box.raw h3,
.compare-box.raw i {
    color: #91582d;
}

/* PROCESSED (RED) */
.compare-box.processed {
    border-left: 6px solid #91582d;
    background-color: #f5dac1;
}

.compare-box.processed h3,
.compare-box.processed i {
    color: #91582d;
}

.compare-box.processed * ,
.compare-box.raw * {
    color: #91582d !important;
}

/* VS */
.compare-vs {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #ddd;
    box-shadow:
        0 15px 40px rgba(0,0,0,0.15),
        inset 0 0 0 4px rgba(255,255,255,0.6);
}

.compare-vs.dual {
    width: 90px;
    height: 90px;
    border-radius: 50%;

    /* LEFT green | RIGHT red */
    background-color: #91582d; 
    color: #fffaf3;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    border : 1px solid #fffaf3;
    box-shadow:
        0 12px 30px rgba(0,0,0,0.25);
}


/* RESPONSIVE */
@media (max-width: 900px) {
    .compare-grid {
        grid-template-columns: 1fr;
    }

    .compare-vs {
        margin: 30px auto;
    }
}

/* why local honey */
/* SECTION */
.local-honey {
    padding: 90px 20px;
    background: #fafafa;
}

.local-container {
    max-width: 1200px;
    margin: auto;
}

.local-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    font-weight: 700;
}

/* FIRST ROW (3 cards) */
.local-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

/* SECOND ROW (2 centered cards) */
.local-grid-2 {
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* CARD */
.local-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 0px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.35s ease;
    max-width: 360px;
}

.local-card i {
    font-size: 36px;
    margin-bottom: 20px;
    color: #d3a863;
}

.local-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.local-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* HOVER */
.local-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.15);
}

/* =========================
   TABLET (≤1024px)
   ========================= */
@media (max-width: 1024px) {
    .local-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .local-grid-2 {
        flex-wrap: wrap;
    }
}

/* =========================
   MOBILE (≤768px)
   ========================= */
@media (max-width: 768px) {
    .hero-text .subtitle{
        position: relative;
        top: -200px;
        color: #ffffff !important;
    }
    .hero-text p.description{
        position: relative;
        top: -230px;
        color: #ffffff !important;
        font-size: 11px;
    }
    #qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure a, #qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure img {
        margin-top: 50px;
    }

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

    .local-grid-2 {
        flex-direction: column;
        align-items: center;
    }

    .local-card {
        max-width: 100%;
    }

    .local-title {
        font-size: 28px;
    }

	.local-card p {
		font-size: 18px;
		color: #666;
		line-height: 1.6;
	}

}


.honey-regions {
    /* padding: 180px 20px; */
    background: #91582d;
}

.regions-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #91582d !important
}

.regions-subtitle {
    text-align: center;
    font-size: 16px;
    color: #91582d !important;
    margin-bottom: 70px;
}

/* REGION CARD */
.region-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.region-card.reverse {
    direction: rtl;
}

.region-card.reverse .region-content {
    direction: ltr;
}

/* IMAGE */
.region-image img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
}

/* CONTENT */
.region-content {
    padding: 20px;
}

.region-label {
    display: inline-block;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #91582d !important;
	font-weight: 600;
	font-size: 34px;
}

.region-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.region-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #91582d !important;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .region-card {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .region-card.reverse {
        direction: ltr;
    }

    .regions-title {
        font-size: 30px;
    }
}


/* Products List */
.honey-regions {
    /* padding: 180px 20px; */
    background: #fffaf3;
}

.regions-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
}

.regions-subtitle {
    text-align: center;
    font-size: 16px;
    color: #777;
    margin-bottom: 70px;
}

/* REGION CARD */
.region-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.region-card.reverse {
    direction: rtl;
}

.region-card.reverse .region-content {
    direction: ltr;
}

/* IMAGE */
.region-image img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
}

/* CONTENT */
.region-content {
    padding: 20px;
}

/* .region-label {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #c49b2c;
} */

.region-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.region-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .region-card {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .region-card.reverse {
        direction: ltr;
    }

    .regions-title {
        font-size: 30px;
    }
}


/* Product Details */
/*! CSS Used from: https://mellifera.qodeinteractive.com/wp-content/plugins/mellifera-core/inc/icons/elegant-icons/assets/css/elegant-icons.min.css?ver=6.0.11 ; media=all */
@media all{
.icon_star_alt,.icon_star{font-family:'ElegantIcons';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;}
.icon_star_alt:before{content:"\e031";}
.icon_star:before{content:"\e033";color: rgb(255, 255, 0);}
}
/*! CSS Used from: https://mellifera.qodeinteractive.com/wp-content/plugins/mellifera-core/inc/icons/font-awesome/assets/css/all.min.css?ver=6.0.11 ; media=all */
@media all{
.fab{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-style:normal;font-variant:normal;text-rendering:auto;line-height:1;}
.fa-facebook-f:before{content:"\f39e";}
.fa-linkedin:before{content:"\f08c";}
.fa-twitter:before{content:"\f099";}
.fab{font-family:"Font Awesome 5 Brands";}
}
/*! CSS Used from: https://mellifera.qodeinteractive.com/wp-content/plugins/mellifera-core/inc/icons/fontkiko/assets/css/fontkiko.min.css?ver=6.0.11 ; media=all */
@media all{
.kiko-triangular-arrow-left:before{content:"\f101";}
.kiko-triangular-arrow-right:before{content:"\f102";}
.kiko-email:before{content:"\f140";}
.kiko-user:before{content:"\f190";}
.kikol{font-weight:300;}
.kikol{font-family:Kiko;}
}
/*! CSS Used from: https://mellifera.qodeinteractive.com/wp-includes/css/dist/block-library/style.min.css?ver=6.0.11 ; media=all */
@media all{
ol,ul{box-sizing:border-box;}
.screen-reader-text{border:0;clip:rect(1px,1px,1px,1px);-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important;}
.screen-reader-text:focus{background-color:#ddd;clip:auto!important;-webkit-clip-path:none;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000;}
}
/*! CSS Used from: https://mellifera.qodeinteractive.com/wp-content/plugins/woocommerce/packages/woocommerce-blocks/build/wc-blocks-style.css?ver=8.5.1 ; media=all */
@media all{
.screen-reader-text{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;-webkit-clip-path:inset(50%);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;overflow-wrap:normal!important;padding:0;position:absolute!important;width:1px;}
.screen-reader-text:focus{clip:auto!important;background-color:#fff;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);-webkit-clip-path:none;clip-path:none;color:#2b2d2f;display:block;font-size:.875rem;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000;}
}
/*! CSS Used from: https://mellifera.qodeinteractive.com/wp-content/plugins/qi-addons-for-elementor/assets/css/helper-parts.min.css?ver=6.0.11 ; media=all */
@media all{
.qodef-category-separator:after{content:',';margin-right:5px;}
}
/*! CSS Used from: https://mellifera.qodeinteractive.com/wp-content/themes/mellifera/assets/css/main.min.css?ver=6.0.11 ; media=all */
@media all{
a,div,form,h2,h4,label,li,ol,p,small,span,strong,table,tbody,td,th,tr,ul{vertical-align:baseline;margin:0;padding:0;background:0 0;border:0;outline:0;}
*{-webkit-box-sizing:border-box;box-sizing:border-box;}
figure,main,section{display:block;}
table{width:100%;vertical-align:middle;border:medium none;border-collapse:collapse;border-spacing:0;}
table tr{border:1px solid #545050;}
table th{padding:5px 7px;text-align:left;border-right:1px solid #545050;}
table td{padding:5px 10px;text-align:left;border:0;border-right:1px solid #545050;}
ol,ul{list-style-position:inside;margin-bottom:1.5em;padding:0;}
ol:not(.wp-block),ul:not(.wp-block){margin:0 0 1.5em;}
a img{border:none;}
img{height:auto;max-width:100%;}
img{vertical-align:middle;border-style:none;}
figure{margin:0;}
label{display:block;margin-bottom:.5em;}
strong{font-weight:bolder;}
small{font-size:80%;}
::selection{color:#fff;background:#fffaf3;}
.screen-reader-text{position:absolute!important;width:1px;height:0;line-height:1;clip:rect(1px,1px,1px,1px);word-wrap:normal!important;overflow:hidden;}
.screen-reader-text:focus{top:5px;left:5px;display:block;width:auto;height:auto;padding:15px 23px 14px;font-size:15px;font-weight:700;line-height:normal;text-decoration:none;color:#21759b;background-color:#f1f1f1;border-radius:3px;-webkit-box-shadow:0 0 2px 2px rgba(0,0,0,.6);box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;z-index:100000;}
.clear:after,.clear:before{content:'';display:table;table-layout:fixed;}
.clear:after{clear:both;}
h2{font-family:"Open Sans Condensed",sans-serif;font-weight:700;text-transform:uppercase;color:#131313;font-size:48px;line-height:1.146em;letter-spacing:0;margin:25px 0;-ms-word-wrap:break-word;word-wrap:break-word;}
@media only screen and (max-width:680px){
h2{font-size:40px;}
}
h4{font-family:"Open Sans Condensed",sans-serif;font-weight:700;text-transform:uppercase;color:#131313;font-size:26px;line-height:1.231em;letter-spacing:0;margin:25px 0;-ms-word-wrap:break-word;word-wrap:break-word;}
h4 a{font-family:inherit;font-size:inherit;font-weight:inherit;font-style:inherit;line-height:inherit;letter-spacing:inherit;text-transform:inherit;color:inherit;}
h4 a:hover{color:#fffaf3;}
a,p a{color:#131313;text-decoration:none;-webkit-transition:color .25s ease-out;-o-transition:color .25s ease-out;transition:color .25s ease-out;cursor:pointer;}
a:hover,p a:hover{color:#fffaf3;}
p{margin:10px 0;line-height:1.667em;}
input[type=text],textarea{position:relative;display:inline-block;width:100%;vertical-align:top;margin:0 0 1px;padding:14px 20px;font-family:inherit;font-size:15px;line-height:20px;font-weight:inherit;color:#383838;background-color:transparent;border:1px solid #545050;border-radius:0;outline:0;cursor:pointer;-webkit-appearance:none;-webkit-transition:color .25s ease-out,background-color .25s ease-out,border-color .25s ease-out;-o-transition:color .25s ease-out,background-color .25s ease-out,border-color .25s ease-out;transition:color .25s ease-out,background-color .25s ease-out,border-color .25s ease-out;}
input[type=text]:focus,textarea:focus{color:#131313;background-color:transparent;border-color:#545050;}
input[type=text]::placeholder,textarea::placeholder{color:inherit;opacity:1;}
button[type=submit]{position:relative;display:inline-block;vertical-align:middle;width:auto;margin:0;font-family:"Open Sans Condensed",sans-serif;line-height:28px;letter-spacing:.15em;font-weight:700;text-decoration:none;text-transform:uppercase;border-radius:0;outline:0;-webkit-transition:color .25s ease-out,background-color .25s ease-out,border-color .25s ease-out;-o-transition:color .25s ease-out,background-color .25s ease-out,border-color .25s ease-out;transition:color .25s ease-out,background-color .25s ease-out,border-color .25s ease-out;padding:15px 37px;font-size:16px;color:#fff;background-color:#fffaf3;border:1px solid transparent;cursor:pointer;}
button[type=submit]:hover{color:#fff;background-color:#b73604;}
button[type=submit] span{display:block;line-height:inherit;}
button[type=submit] span:before{display:block;line-height:inherit;}
select{position:relative;display:block;height:48px;padding:14px 20px;margin:0;font-family:inherit;font-size:15px;line-height:20px;font-weight:400;color:#383838;background-color:transparent;border:1px solid #545050;border-radius:0;outline:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;}
select:disabled{color:inherit;border-color:inherit;background-color:#fafafa;-webkit-box-shadow:none;box-shadow:none;text-shadow:none;}
.qodef-content-grid{width:1100px;margin:0 auto;}
@media only screen and (min-width:1441px){
.qodef-content-grid-1300 .qodef-content-grid{width:1300px;}
}
.qodef-grid{position:relative;display:inline-block;width:100%;vertical-align:top;}
.qodef-grid>.qodef-grid-inner{margin:0 -15px;}
.qodef-grid>.qodef-grid-inner>.qodef-grid-item{padding:0 15px;}
.qodef-grid .qodef-grid-item{position:relative;display:inline-block;width:100%;vertical-align:top;min-height:1px;float:left;}
.qodef-grid.qodef-layout--columns.qodef-col-num--1>.qodef-grid-inner>.qodef-grid-item{width:100%;}
#qodef-page-inner{position:relative;padding:97px 0 152px;}
#qodef-woo-page .qodef-woo-product-title{margin:0;}
#qodef-woo-page .qodef-woo-ratings{position:relative;display:inline-block;width:100%;vertical-align:baseline;line-height:1;}
#qodef-woo-page .qodef-woo-ratings .qodef-m-inner{position:relative;display:inline-block;vertical-align:top;}
#qodef-woo-page .qodef-woo-ratings .qodef-m-star{font-size:14px;letter-spacing:.1em;color:#131313;}
#qodef-woo-page .qodef-woo-ratings .qodef-m-star.qodef--active{position:absolute;top:0;left:0;overflow:hidden;white-space:nowrap;}
#qodef-woo-page .price{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;font-size:22px;font-weight:700;margin:4px 0 5px;color:#fffaf3;line-height:30px;letter-spacing:0;font-family:"Open Sans Condensed",sans-serif;display:block;text-align:center;}
#qodef-woo-page .button{position:relative;display:inline-block;vertical-align:middle;width:auto;margin:0;font-family:"Open Sans Condensed",sans-serif;line-height:28px;letter-spacing:.15em;font-weight:700;text-decoration:none;text-transform:uppercase;border-radius:0;outline:0;-webkit-transition:color .25s ease-out,background-color .25s ease-out,border-color .25s ease-out;-o-transition:color .25s ease-out,background-color .25s ease-out,border-color .25s ease-out;transition:color .25s ease-out,background-color .25s ease-out,border-color .25s ease-out;padding:10px 37px;font-size:14px;cursor:pointer;z-index:3;color:#fff;background-color:#fffaf3;border:1px solid transparent;}
#qodef-woo-page .button:hover{background:#b73604;color:#fff;}
#qodef-woo-page .add_to_cart_button{background:0 0;color:#131313;font-size:13px;padding:0;margin-left:7px;}
#qodef-woo-page .add_to_cart_button:hover{background:0 0;color:#131313;}
#qodef-woo-page .add_to_cart_button:before{content:"\f210";font-family:Kiko;font-weight:400;font-size:14px;position:relative;top:2px;right:7px;display:inline-block;-webkit-transition:-webkit-transform .2s ease-out;transition:-webkit-transform .2s ease-out;-o-transition:transform .2s ease-out;transition:transform .2s ease-out;transition:transform .2s ease-out,-webkit-transform .2s ease-out;-webkit-transform:translateX(0) translateZ(0);transform:translateX(0) translateZ(0);will-change:transform;}
#qodef-woo-page .add_to_cart_button:hover:before{-webkit-transform:translateX(2px);-ms-transform:translateX(2px);transform:translateX(2px);}
#qodef-woo-page .quantity{white-space:nowrap;}
.qodef-woo-product-list{position:relative;display:inline-block;width:100%;vertical-align:top;}
.qodef-woo-product-list ul.products{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;padding:0;margin:0 -15px;list-style:none;clear:both;}
.qodef-woo-product-list ul.products>.product{padding:0 15px;margin:0 0 30px;}
.qodef-woo-product-list ul.products.columns-4>.product{width:25%;}
.qodef-woo-product-list .qodef-woo-product-title{-webkit-transition:.25s ease-out;-o-transition:.25s ease-out;transition:.25s ease-out;}
.qodef-woo-product-list .qodef-woo-product-inner{position:relative;display:inline-block;vertical-align:top;width:100%;text-align:center;}
.qodef-woo-product-list .qodef-woo-product-inner .qodef-woo-product-content{margin-bottom:2px;}
.qodef-woo-product-list .qodef-woo-product-inner img{-webkit-transform:scale(1.1) translateY(4px);-ms-transform:scale(1.1) translateY(4px);transform:scale(1.1) translateY(4px);-webkit-transition:.35s cubic-bezier(.25,.46,.45,.94);-o-transition:.35s cubic-bezier(.25,.46,.45,.94);transition:.35s cubic-bezier(.25,.46,.45,.94);}
.qodef-woo-product-list .qodef-woo-product-inner:hover .qodef-woo-product-image img{-webkit-transform:scale(1.1) translateY(-4px);-ms-transform:scale(1.1) translateY(-4px);transform:scale(1.1) translateY(-4px);}
.qodef-woo-product-list .qodef-woo-product-inner:hover .qodef-woo-product-title{color:#fffaf3;}
.qodef-woo-product-list .qodef-woo-product-image{position:relative;display:block;vertical-align:top;max-width:100%;overflow:hidden;}
.qodef-woo-product-list .qodef-woo-product-image img{display:block;width:100%;-webkit-transform:scale(1.1) translateY(4px);-ms-transform:scale(1.1) translateY(4px);transform:scale(1.1) translateY(4px);-webkit-transition:.37s cubic-bezier(.25,.46,.45,.94);-o-transition:.37s cubic-bezier(.25,.46,.45,.94);transition:.37s cubic-bezier(.25,.46,.45,.94);}
.qodef-woo-product-list .qodef-woo-product-image-inner{position:absolute;top:0;left:0;width:100%;height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding:10px;text-align:center;background-color:rgba(255,255,255,.4);opacity:0;-webkit-transition:opacity .25s ease-out;-o-transition:opacity .25s ease-out;transition:opacity .25s ease-out;}
.qodef-woo-product-list .qodef-woo-product-content{position:relative;display:inline-block;width:100%;vertical-align:top;margin:13px 0 30px;text-align:center;}
.qodef-woo-product-list .qodef-woo-product-categories{position:relative;display:inline-block;width:100%;vertical-align:top;margin-bottom:1px;display:none;}
.qodef-woo-product-list .qodef-woo-product-categories a{position:relative;display:inline-block;vertical-align:top;font-size:11px;color:#383838;z-index:3;}
.qodef-woo-product-list .qodef-woo-product-categories a:hover{color:#131313;}
.qodef-woo-product-list .qodef-woo-product-categories .qodef-category-separator{position:relative;display:inline-block;vertical-align:top;margin:0 2px;font-size:12px;}
.qodef-woo-product-list .qodef-woo-product-categories .qodef-category-separator:after{content:'/';}
.qodef-woo-product-list .woocommerce-LoopProduct-link{position:absolute;top:0;left:0;width:100%;height:100%;}
#qodef-woo-page .qodef-quantity-buttons{position:relative;display:inline-block;vertical-align:middle;border:1px solid #545050;height:62px;line-height:62px;padding:0 13px 0 30px;width:49.2%;}
@media only screen and (max-width:1024px){
#qodef-woo-page .qodef-quantity-buttons{width:38%;}
}
@media only screen and (max-width:768px){
#qodef-woo-page .qodef-quantity-buttons{padding:0 13px 0 13px;}
}
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-buttons-holder{display:inline;float:right;position:relative;}
#qodef-woo-page .qodef-quantity-buttons .screen-reader-text{position:relative!important;width:auto;height:auto;top:0;line-height:62px;display:inline-block;-webkit-clip-path:none!important;clip-path:none!important;}
#qodef-woo-page .qodef-quantity-buttons .qodef-icon-fontkiko,#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-input{display:inline-block;color:#383838;background-color:transparent;border:1px solid #545050;text-align:center;-webkit-user-select:none;-webkit-box-sizing:border-box;box-sizing:border-box;}
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-input{font-size:18px;position:relative;height:62px;width:25px;padding:0;margin:0;font-family:inherit;line-height:60px;outline:0;border:none;font-weight:400;vertical-align:middle;top:-2px;}
#qodef-woo-page .qodef-quantity-buttons .qodef-icon-fontkiko{font-size:15px;position:relative;right:0;width:22px;border:0;cursor:pointer;-webkit-transition:color .15s ease-in-out;-o-transition:color .15s ease-in-out;transition:color .15s ease-in-out;}
#qodef-woo-page .qodef-quantity-buttons .qodef-icon-fontkiko:hover{color:#fffaf3;}
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-plus{top:0;border-bottom:0;}
#qodef-woo-page .qodef-quantity-buttons .qodef-quantity-minus{bottom:0;}
#qodef-woo-page .qodef-woo-single-inner .entry-summary .cart .qodef-quantity-buttons{margin-right:10px!important;}
@media only screen and (max-width:680px){
#qodef-woo-page .qodef-quantity-buttons{width:100%;display:block;}
}
#qodef-woo-page.qodef--single .qodef-woo-product-title{line-height:1;margin-top:-8px;}
#qodef-woo-page.qodef--single>.product{position:relative;display:inline-block;width:100%;vertical-align:top;}
#qodef-woo-page.qodef--single .qodef-woo-single-inner{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;margin:0 -30px;}
#qodef-woo-page.qodef--single .qodef-woo-single-inner>*{padding:0 30px;}
#qodef-woo-page.qodef--single .qodef-woo-single-image{position:relative;display:inline-block;width:100%;vertical-align:top;}
#qodef-woo-page.qodef--single .woocommerce-product-gallery{position:relative;display:inline-block;width:100%;vertical-align:top;}
#qodef-woo-page.qodef--single .woocommerce-product-gallery figure{position:relative;margin:0 -11px;}
#qodef-woo-page.qodef--single .woocommerce-product-gallery figure a,#qodef-woo-page.qodef--single .woocommerce-product-gallery figure img{display:block;width:100%;}
#qodef-woo-page.qodef--single .woocommerce-product-gallery figure>.woocommerce-product-gallery__image{position:relative;width:calc(100% - 22px)!important;margin:0 11px;overflow:hidden;}
#qodef-woo-page.qodef--single .woocommerce-product-gallery figure>.qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image{position:relative;padding:0 11px;margin-top:22px;}
#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .woocommerce-product-gallery__image{width:20%;}
#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse;}
#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure a,#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure img{height:100%;-o-object-fit:cover;object-fit:cover;}
#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure>.woocommerce-product-gallery__image{width:calc(100% - 21%)!important;}
#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure>.qodef-woo-thumbnails-wrapper{width:21%;}
@media screen and (min-width:681px){
#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure>.qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image{width:100%;}
}
#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure>.qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image:first-child{margin-top:0;}
#qodef-woo-page.qodef--single .entry-summary{position:relative;display:inline-block;width:100%;vertical-align:top;width:94%;}
#qodef-woo-page.qodef--single .entry-summary .price{margin-top:23px;text-align:left;font-size:36px;}
#qodef-woo-page.qodef--single .entry-summary .single_add_to_cart_button{padding:15px 50px 15px 51px;}
#qodef-woo-page.qodef--single .entry-summary .single_add_to_cart_button:before{content:"\f210";font-family:Kiko;font-weight:400;font-size:14px;position:relative;top:2px;right:7px;display:inline-block;}
#qodef-woo-page.qodef--single .entry-summary .qodef-social-share .qodef-social-title{font-size:15px;text-transform:none;font-weight:400;font-family:"Open Sans",sans-serif;letter-spacing:0;line-height:32px;color:#5b5858;}
#qodef-woo-page.qodef--single .entry-summary .qodef-social-share li a{color:#fff;font-size:16px;width:32px;height:32px;background:#fffaf3;display:block;border-radius:50%;line-height:32px;text-align:center;-webkit-transition:.25s ease-out;-o-transition:.25s ease-out;transition:.25s ease-out;}
#qodef-woo-page.qodef--single .entry-summary .qodef-social-share li a:hover{background:#b73604;}
#qodef-woo-page.qodef--single .woocommerce-product-rating{position:relative;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin-top:12px;display:none;}
#qodef-woo-page.qodef--single .woocommerce-product-rating .qodef-woo-ratings{-ms-flex-negative:0;flex-shrink:0;width:auto;margin-right:20px;}
#qodef-woo-page.qodef--single .woocommerce-product-rating .woocommerce-review-link{color:#383838;}
#qodef-woo-page.qodef--single .woocommerce-product-rating .woocommerce-review-link:hover{color:#131313;}
#qodef-woo-page.qodef--single .woocommerce-product-details__short-description{margin-top:32px;}
#qodef-woo-page.qodef--single .woocommerce-product-details__short-description p{margin-top:0;}
#qodef-woo-page.qodef--single .woocommerce-product-details__short-description p:last-child{margin-bottom:0;}
#qodef-woo-page.qodef--single form.cart{position:relative;display:inline-block;width:100%;vertical-align:top;margin-top:48px;}
#qodef-woo-page.qodef--single form.cart:not(.variations_form){display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;}
@media only screen and (max-width:480px){
#qodef-woo-page.qodef--single form.cart:not(.variations_form){display:block;}
}
#qodef-woo-page.qodef--single form.cart:not(.variations_form) .quantity{margin-right:20px;}
@media only screen and (max-width:680px){
#qodef-woo-page.qodef--single form.cart{display:block!important;}
#qodef-woo-page.qodef--single form.cart .single_add_to_cart_button{width:100%;}
}
#qodef-woo-page.qodef--single .product_meta{position:relative;display:inline-block;width:100%;vertical-align:top;margin-top:43px;}
#qodef-woo-page.qodef--single .product_meta>*{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;margin-bottom:0;}
#qodef-woo-page.qodef--single .product_meta>:last-child{margin-bottom:0;}
#qodef-woo-page.qodef--single .product_meta .qodef-woo-meta-label,#qodef-woo-page.qodef--single .product_meta .qodef-woo-meta-value{-ms-flex-negative:0;flex-shrink:0;font-size:15px;margin-right:8px;text-transform:none;font-weight:400;font-family:"Open Sans",sans-serif;letter-spacing:0;line-height:30px;color:#5b5858;}
#qodef-woo-page.qodef--single .product_meta .qodef-woo-meta-value a{color:#5b5858;}
#qodef-woo-page.qodef--single .qodef-social-share{margin-top:43px;}
#qodef-woo-page.qodef--single .woocommerce-tabs{position:relative;display:inline-block;width:100%;vertical-align:top;margin-top:140px;}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;margin:0;padding:0;list-style:none;border-bottom:2px dashed #e9e6e4;}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li{margin:0 26px 0 0;padding:0;}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li a{display:block;padding:0 12px 14px;-webkit-transition:color .25s ease-out,background-color .25s ease-out;-o-transition:color .25s ease-out,background-color .25s ease-out;transition:color .25s ease-out,background-color .25s ease-out;font-size:15px;font-family:"Open Sans Condensed",sans-serif;font-weight:700;line-height:25px;letter-spacing:.15em;text-transform:uppercase;color:#3c3c3c;}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li:first-child a{padding-left:0;}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li:last-child{margin-right:0;}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li a:hover,#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li.active a{color:#fffaf3;}
@media only screen and (max-width:680px){
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs{-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li{margin:0;}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li:last-child{margin-bottom:0;}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tabs li a{padding:0 0 14px;}
}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab{position:relative;display:inline-block;width:100%;vertical-align:top;margin-top:49px;}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab.woocommerce-Tabs-panel--additional_information{margin-top:45px;}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab.woocommerce-Tabs-panel--reviews{margin-top:53px;}
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab>h2{display:none;}
#qodef-woo-page.qodef--single .shop_attributes td,#qodef-woo-page.qodef--single .shop_attributes th{padding:5px;vertical-align:middle;text-align:left;}
#qodef-woo-page.qodef--single .shop_attributes th{font-family:"Open Sans Condensed",sans-serif;font-weight:700;text-transform:uppercase;color:#131313;font-size:22px;line-height:1.364em;letter-spacing:0;}
#qodef-woo-page.qodef--single .shop_attributes .woocommerce-product-attributes-item{border:0;}
#qodef-woo-page.qodef--single .shop_attributes .woocommerce-product-attributes-item th{border:0;margin-right:0!important;}
#qodef-woo-page.qodef--single .shop_attributes .woocommerce-product-attributes-item th:after{content:':';display:inline;}
#qodef-woo-page.qodef--single .shop_attributes .woocommerce-product-attributes-item td{padding-left:0;}
#qodef-woo-page.qodef--single .shop_attributes .woocommerce-product-attributes-item td,#qodef-woo-page.qodef--single .shop_attributes .woocommerce-product-attributes-item th{display:inline;font-size:15px;margin-right:8px;text-transform:none;font-weight:400;font-family:"Open Sans",sans-serif;letter-spacing:0;line-height:30px;color:#5b5858;border:0;}
#qodef-woo-page.qodef--single .woocommerce-Reviews .woocommerce-Reviews-title{font-size:22px;line-height:1.364em;letter-spacing:0;margin:0;}
#qodef-woo-page.qodef--single .woocommerce-Reviews .commentlist{position:relative;display:inline-block;width:100%;vertical-align:top;margin:22px 0 0;padding:0;list-style:none;}
#qodef-woo-page.qodef--single .woocommerce-Reviews .commentlist>*{margin:0 0 30px;padding:0;}
#qodef-woo-page.qodef--single .woocommerce-Reviews .commentlist>:last-child{margin-bottom:0;}
#qodef-woo-page.qodef--single .woocommerce-Reviews .comment_container{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;}
#qodef-woo-page.qodef--single .woocommerce-Reviews .comment_container>img{-ms-flex-negative:0;flex-shrink:0;width:80px;margin:.5rem 20px .5rem 0;}
#qodef-woo-page.qodef--single .woocommerce-Reviews .comment-text{position:relative;display:inline-block;width:100%;vertical-align:top;}
#qodef-woo-page.qodef--single .woocommerce-Reviews .meta{padding-top:2px;}
#qodef-woo-page.qodef--single .woocommerce-Reviews .woocommerce-review__author{font-family:"Open Sans Condensed",sans-serif;font-weight:700;text-transform:uppercase;color:#131313;font-size:22px;line-height:1.364em;letter-spacing:0;}
#qodef-woo-page.qodef--single #review_form{position:relative;display:inline-block;width:100%;vertical-align:top;margin-top:32px;}
#qodef-woo-page.qodef--single #review_form .comment-reply-title{display:block;margin-bottom:14px;font-family:"Open Sans Condensed",sans-serif;font-weight:700;text-transform:uppercase;color:#131313;font-size:22px;line-height:1.364em;letter-spacing:0;}
#qodef-woo-page.qodef--single #review_form .form-submit{margin-top:12px;}
#qodef-woo-page.qodef--single #review_form .comment-respond .qodef-icon{position:absolute;right:15px;top:10px;z-index:10;padding:17px 20px 17px 20px;font-size:16px;line-height:1;color:#262626;}
#qodef-woo-page.qodef--single #review_form .comment-form-rating label{margin-bottom:5px;}
#qodef-woo-page.qodef--single #review_form .comment-form-rating .stars{line-height:1;}
#qodef-woo-page.qodef--single #review_form .comment-form-rating .stars>span{display:-webkit-box;display:-ms-flexbox;display:flex;overflow:hidden;}
#qodef-woo-page.qodef--single #review_form .comment-form-rating .stars *{line-height:inherit;}
#qodef-woo-page.qodef--single #review_form .comment-form-rating a{position:relative;display:inline-block;vertical-align:top;margin:0;font-size:0;color:transparent;}
#qodef-woo-page.qodef--single #review_form .comment-form-rating a:before{position:relative;display:inline-block;vertical-align:top;overflow:hidden;z-index:-1;content:"\e031";font-size:14px;letter-spacing:.1em;color:#131313;font-family:ElegantIcons;line-height:1;white-space:nowrap;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}
#qodef-woo-page.qodef--single #review_form .comment-form-comment{margin-top:17px;}
#qodef-woo-page.qodef--single #review_form .comment-form-cookies-consent{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;margin-top:1px;}
#qodef-woo-page.qodef--single #review_form .comment-form-cookies-consent label{display:inline-block;margin-bottom:4px;}
#qodef-woo-page.qodef--single #review_form .comment-form-cookies-consent input[type=checkbox]{-ms-flex-negative:0;flex-shrink:0;display:inline-block;position:relative;top:6px;margin:3px 3px 3px 4px;}
/* #qodef-woo-page.qodef--single .related{margin:0px;background:#f7f3f0;margin-bottom:0;width:100vw;position:relative;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);padding-bottom:108px;}
html[dir="rtl"] #qodef-woo-page.qodef--single .related{margin:0px;background:#f7f3f0;margin-bottom:0;width:100vw;position:relative;left:75%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);padding-bottom:108px;} */
@media only screen and (max-width:1024px){
#qodef-woo-page.qodef--single .related{padding-bottom:123px;}
}
#qodef-woo-page.qodef--single .related h2{margin:0 0 14px;text-align:center;padding-top:118px;}
#qodef-woo-page.qodef--single .related .qodef-related-products-subtitle{display:block;width:100%;text-align:center;margin-bottom:56px;}
#qodef-woo-page.qodef--single .related .product .qodef-woo-product-inner .qodef-woo-product-content .price{margin:4px 0 6px;}
body.single-product #qodef-page-inner{padding-bottom:0;}
@media only screen and (max-width:1200px){
.qodef-content-grid{width:960px;}
}
@media only screen and (max-width:1024px){
.qodef-content-grid{width:768px;}
}
@media only screen and (max-width:800px){
.qodef-content-grid{width:86%;}
}
@media only screen and (max-width:480px){
.qodef-content-grid{width:82%;}
}
@media only screen and (max-width:1024px){
.qodef-woo-product-list ul.products.columns-4>.product{width:33.33333%;}
}
@media only screen and (max-width:768px){
.qodef-woo-product-list ul.products.columns-4>.product{width:50%;}
}
@media only screen and (max-width:680px){
.qodef-woo-product-list ul.products.columns-4>.product{width:100%;}
}
@media only screen and (max-width:1024px){
#qodef-woo-page.qodef--single .qodef-woo-single-inner{-ms-flex-wrap:wrap;flex-wrap:wrap;}
#qodef-woo-page.qodef--single .entry-summary{margin-top:60px;}
}
@media only screen and (max-width:768px){
#qodef-woo-page.qodef--single .woocommerce-tabs .wc-tab section>.elementor-container{margin:0;}
}
@media only screen and (max-width:680px){
#qodef-woo-page.qodef--single .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 figure>.qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image{width:50%!important;}
#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure{-ms-flex-wrap:wrap;flex-wrap:wrap;}
#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure>.woocommerce-product-gallery__image{width:100%!important;}
#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure>.qodef-woo-thumbnails-wrapper{width:100%!important;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;}
#qodef-woo-page.qodef--single .woocommerce-product-gallery.qodef-position--left figure>.qodef-woo-thumbnails-wrapper .woocommerce-product-gallery__image:first-child{margin-top:22px!important;}
#qodef-woo-page.qodef--single .product_meta>*{margin-bottom:5px;}
#qodef-woo-page.qodef--single .product_meta .qodef-woo-meta-label,#qodef-woo-page.qodef--single .product_meta .qodef-woo-meta-value{line-height:25px;}
#qodef-woo-page.qodef--single .product_meta .qodef-woo-meta-value{max-width:70%;}
}
}
/*! CSS Used from: https://mellifera.qodeinteractive.com/wp-content/plugins/mellifera-core/assets/css/mellifera-core.min.css?ver=6.0.11 ; media=all */
@media all{
.qodef-icon-fontkiko{font-family:Kiko;font-weight:300;}
.qodef-social-share{position:relative;display:inline-block;vertical-align:top;}
.qodef-social-share .qodef-social-title{position:relative;display:inline-block;vertical-align:top;margin:0 5px 0 0;font-family:"Open Sans Condensed",sans-serif;font-weight:700;text-transform:uppercase;color:#131313;font-size:22px;line-height:1.364em;letter-spacing:0;}
.qodef-social-share ul{position:relative;display:inline-block;vertical-align:top;list-style:none;padding:0;margin:0;}
.qodef-social-share li{position:relative;display:inline-block;vertical-align:top;line-height:1;padding:0;margin:0;}
.qodef-social-share li a{font-size:20px;}
.qodef-social-share li a:hover{background-color:#b73604;}
.qodef-social-share.qodef-layout--list li{margin-right:15px;}
.qodef-social-share.qodef-layout--list li:last-child{margin-right:0;}
}
/*! CSS Used from: Embedded */
#qodef-page-inner{padding:100px 0 188px 0;}
@media only screen and (max-width: 1024px){
#qodef-page-inner{padding:108px 0 98px 0;}
}
@media only screen and (max-width: 680px){
h2{font-size:40px;}
}
/*! CSS Used from: https://mellifera.qodeinteractive.com/wp-content/plugins/mellifera-core/inc/plugins/elementor/assets/css/elementor.min.css?ver=6.0.11 ; media=all */
@media all{
section.qodef-elementor-content-grid>.elementor-container{width:1100px;margin:0 auto;}
@media only screen and (min-width:1441px){
.qodef-content-grid-1300 section.qodef-elementor-content-grid>.elementor-container{width:1300px;max-width:1300px;}
}
@media only screen and (max-width:1200px){
section.qodef-elementor-content-grid>.elementor-container{width:960px;}
}
@media only screen and (max-width:1024px){
section.qodef-elementor-content-grid>.elementor-container{width:768px;}
}
@media only screen and (max-width:800px){
section.qodef-elementor-content-grid>.elementor-container{width:86%;}
}
@media only screen and (max-width:480px){
section.qodef-elementor-content-grid>.elementor-container{width:82%;}
}
}
/*! CSS Used from: https://mellifera.qodeinteractive.com/wp-content/plugins/elementor/assets/css/frontend-legacy.min.css?ver=3.7.8 ; media=all */
@media all{
.elementor-column-gap-default>.elementor-row>.elementor-column>.elementor-element-populated>.elementor-widget-wrap{padding:10px;}
@media (max-width:767px){
.elementor-column{width:100%;}
}
}
/*! CSS Used from: https://mellifera.qodeinteractive.com/wp-content/plugins/elementor/assets/css/frontend.min.css?ver=3.7.8 ; media=all */
@media all{
.screen-reader-text{position:absolute;top:-10000em;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0;}
.elementor-clearfix:after{content:"";display:block;clear:both;width:0;height:0;}
.elementor{-webkit-hyphens:manual;-ms-hyphens:manual;hyphens:manual;}
.elementor *,.elementor :after,.elementor :before{-webkit-box-sizing:border-box;box-sizing:border-box;}
.elementor-element{--flex-direction:initial;--flex-wrap:initial;--justify-content:initial;--align-items:initial;--align-content:initial;--gap:initial;--flex-basis:initial;--flex-grow:initial;--flex-shrink:initial;--order:initial;--align-self:initial;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:var(--flex-direction);flex-direction:var(--flex-direction);-ms-flex-wrap:var(--flex-wrap);flex-wrap:var(--flex-wrap);-webkit-box-pack:var(--justify-content);-ms-flex-pack:var(--justify-content);justify-content:var(--justify-content);-webkit-box-align:var(--align-items);-ms-flex-align:var(--align-items);align-items:var(--align-items);-ms-flex-line-pack:var(--align-content);align-content:var(--align-content);gap:var(--gap);-ms-flex-preferred-size:var(--flex-basis);flex-basis:var(--flex-basis);-webkit-box-flex:var(--flex-grow);-ms-flex-positive:var(--flex-grow);flex-grow:var(--flex-grow);-ms-flex-negative:var(--flex-shrink);flex-shrink:var(--flex-shrink);-webkit-box-ordinal-group:var(--order);-ms-flex-order:var(--order);order:var(--order);-ms-flex-item-align:var(--align-self);align-self:var(--align-self);}
.elementor-section{position:relative;}
.elementor-section .elementor-container{display:-webkit-box;display:-ms-flexbox;display:flex;margin-right:auto;margin-left:auto;position:relative;}
@media (max-width:1024px){
.elementor-section .elementor-container{-ms-flex-wrap:wrap;flex-wrap:wrap;}
}
.elementor-section.elementor-section-boxed>.elementor-container{max-width:1140px;}
.elementor-row{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;}
@media (max-width:1024px){
.elementor-row{-ms-flex-wrap:wrap;flex-wrap:wrap;}
}
.elementor-widget-wrap{position:relative;width:100%;-ms-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-line-pack:start;align-content:flex-start;}
.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap{display:-webkit-box;display:-ms-flexbox;display:flex;}
.elementor-widget-wrap>.elementor-element{width:100%;}
.elementor-widget{position:relative;}
.elementor-column{min-height:1px;}
.elementor-column,.elementor-column-wrap{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;}
.elementor-column-wrap{width:100%;}
@media (min-width:768px){
.elementor-column.elementor-col-100{width:100%;}
}
@media (max-width:767px){
.elementor-column{width:100%;}
}
.elementor-element .elementor-widget-container{-webkit-transition:background .3s,border .3s,border-radius .3s,-webkit-box-shadow .3s;transition:background .3s,border .3s,border-radius .3s,-webkit-box-shadow .3s;-o-transition:background .3s,border .3s,border-radius .3s,box-shadow .3s;transition:background .3s,border .3s,border-radius .3s,box-shadow .3s;transition:background .3s,border .3s,border-radius .3s,box-shadow .3s,-webkit-box-shadow .3s;}
}
/*! CSS Used from: https://mellifera.qodeinteractive.com/wp-content/uploads/elementor/css/post-17.css?ver=1656936813 ; media=all */
@media all{
.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}
@media (max-width:1024px){
.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}
}
@media (max-width:767px){
.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}
}
}
/*! CSS Used from: https://mellifera.qodeinteractive.com/wp-content/uploads/elementor/css/global.css?ver=1656936813 ; media=all */
@media all{
.elementor-widget-text-editor{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}
}
/*! CSS Used from: https://mellifera.qodeinteractive.com/wp-content/uploads/elementor/css/post-348.css?ver=1656951240 ; media=all */
@media all{
.elementor-348 .elementor-element.elementor-element-097823e{margin-top:-10px;margin-bottom:0px;padding:0px 0px 0px 0px;}
.elementor-348 .elementor-element.elementor-element-bc48f96 > .elementor-element-populated{margin:0px 0px 0px 0px;--e-column-margin-right:0px;--e-column-margin-left:0px;}
.elementor-348 .elementor-element.elementor-element-bc48f96 > .elementor-element-populated > .elementor-widget-wrap{padding:0px 0px 0px 0px;}
}

.qodef-product-sizes {
    margin-bottom: 20px;
}

.qodef-size-options {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.qodef-size-item {
    cursor: pointer;
}

.qodef-size-item input {
    display: none;
}

.qodef-size-item span {
    padding: 8px 14px;
    border: 1px solid #d6b35e;
    border-radius: 30px;
    font-size: 14px;
    transition: all .3s ease;
}

.qodef-size-item input:checked + span {
    background: #d6b35e;
    color: #fff;
}


/* product details */
.woocommerce-product-gallery__image img {
    transition: opacity 0.3s ease;
}
.qodef-image-loader {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.qodef-image-loader.active {
    opacity: 1;
}

.qodef-spinner {
    width: 42px;
    height: 42px;
    border: 3px solid #e6e6e6;
    border-top-color: #d4a017; /* honey gold */
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.woocommerce-product-gallery__image {
    position: relative;
}

.woocommerce-product-gallery__image img {
    transition: opacity 0.3s ease;
}


/* Video Our Story */
.our-story-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.qodef-hero-video {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.qodef-hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay for text readability */
.qodef-hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.65)
    ); */
    z-index: 2;
}

/* Content above video */
.our-story-hero .qodef-m-inner {
    position: relative;
    z-index: 99999;
    top: 500px;
}

.our-story-hero .qodef-m-title {
    color: #fff;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.true-icon {
    display: none;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .our-story-hero {
        height: 60vh;
    }
    .why-image{
        position: relative;
        top: 35px;
    }
    .why-content {
        color: #fff;
        padding: 0px !important;
    }
    .true-icon {
        display: inline-flex !important;
        color: #e5d2bc;
        font-weight: bold;
    }
    .our-short-story-image img{
        max-width: 285px !important;
        object-fit: cover;
    }
    .product-section {
        margin-top: 0px !important;
        padding: 0px 20px;
    }
}


.timeline-content p {
    text-align: left;
}



/* SECTION Support BEES */
.bees-support {
    padding: 100px 20px;
}

.bees-wrapper {
    max-width: 1400px;
    margin: auto;
}

/* HEADER */
.bees-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 70px;
}

.bees-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 183, 0, 0.15);
    color: #c28a00;
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 12px;
}

.bees-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.bees-header p {
    color: #6b6b6b;
    font-size: 16px;
}

/* GRID */
.bees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px;
    justify-content: center;
}

.bees-card{
    border: 1px solid #ffcb2b !important;
}

/* CENTER SECOND ROW */
.bees-card:nth-child(4) {
    justify-self: end;
}

.bees-card:nth-child(5) {
    justify-self: start;
}

/* CARD */
.bees-card {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 22px;
    padding: 32px 26px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.35s ease;
}

.bees-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.bees-icon {
    font-size: 34px;
    color: #f0a500;
    margin-bottom: 18px;
    display: block;
    text-align: center;
}

.bees-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #2c2c2c;
    text-align: center;
}

.bees-card p,
.bees-card li {
    font-size: 14px;
    color: #5f5f5f;
    margin-bottom: 8px;
}

.bees-card ul {
    padding-left: 18px;
    margin: 10px 0;
}

/* LABELS */
.bee-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.bee-label {
    padding: 6px 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    background: linear-gradient(135deg, #fffaf3, #fffaf3);
    color: #91582d !important;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.25);
}

.label-note {
    margin-top: 12px;
    font-size: 14px;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .bees-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bees-card:nth-child(4),
    .bees-card:nth-child(5) {
        justify-self: stretch;
    }
}

@media (max-width: 600px) {
    .bees-grid {
        grid-template-columns: 1fr;
    }

    .bees-header h2 {
        font-size: 32px;
    }
}
/* ALTERNATE GRID LAYOUT */
.bees-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 36px;
}

/* First row: 3 cards */
.bees-card:nth-child(1),
.bees-card:nth-child(2),
.bees-card:nth-child(3) {
    grid-column: span 2;
}

/* Second row: center 2 cards */
.bees-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.bees-card:nth-child(5) {
    grid-column: 4 / span 2;
}

/* Tablet */
@media (max-width: 992px) {
    .bees-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bees-card {
        grid-column: auto !important;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .region-card {
        position: relative;
        padding: 60px !important;
    }

    .regions-subtitle{
        position: relative;
        top: 75px !important; 
    }
    .full-bg-mountain{
        padding: 0;
    }
    .bees-grid {
        grid-template-columns: 1fr;
    }
    .region-card.reverse.royal-honey-card{
        position: relative;
        top: 60px !important;
    }
    .full-bg-mountain{
        padding: 0 !important;
    }
    .regions-title {
        position: relative;
        top: 60px !important;
    }
    html[dir="rtl"] .region-card.reverse{
        background-color: #e5d2bc;
    }
}


/* ===== ROYAL HONEY SECTION ===== */
.royal-honey {
    padding: 120px 20px;
}

.royal-honey-inner {
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: center;
}

/* ===== ROYAL CARD ===== */
.royal-card {
    position: relative;
    background: #fffaf3;
    border-radius: 4px;
    padding: 55px 50px 65px;
    box-shadow: 0 50px 120px rgba(0,0,0,0.18);
    text-align: center;
    max-width: 620px;
    width: 100%;
    transition: transform .4s ease, box-shadow .4s ease;
}

.royal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 70px 150px rgba(0,0,0,0.25);
}

/* Crown badge */
.royal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    border-radius: 4px;
    background-color: #ffd700;
    color: #fffaf3;
    font-weight: 700;
    font-size: 30px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.royal-badge i {
    font-size: 30px;
}

/* Title */
.royal-card h2 {
    font-size: 40px;
    font-weight: 800;
    color: #3a2e1c;
    margin-bottom: 18px;
}

/* Description */
.royal-card p {
    font-size: 16px;
    color: #6f6044;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ===== IMAGE ===== */
.royal-image {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 35px 80px rgba(0,0,0,0.25);
    margin-bottom: 36px;
}

.royal-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

/* CTA */
.royal-cta {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 4px;
    background: linear-gradient(135deg, #f4c430, #e0a800);
    color: #3a2a00;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all .3s ease;
}

.royal-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(224,168,0,0.45);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .royal-card {
        padding: 45px 26px 55px;
    }

    .royal-card h2 {
        font-size: 32px;
    }

    .royal-image img {
        height: 260px;
    }
}


/* ===== SECTION Area Honey ===== */
.honey-row {
    padding: 100px 20px;
    /* background: linear-gradient(180deg, #fbfaf7, #f2efe8); */
    font-family: "Poppins", sans-serif;
}

.honey-row-inner {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Responsive */
@media (max-width: 992px) {
    .honey-row-inner {
        grid-template-columns: 1fr;
    }
}

/* ===== AREA COLUMN ===== */
.honey-column {
    background: #fffaf3;
    border-radius: 4px;
    padding: 40px 30px 45px;
    box-shadow: 0 35px 70px rgba(0,0,0,0.08);
    transition: transform .35s ease, box-shadow .35s ease;
}

.honey-column-header h3{
    color: #fffaf3 !important;
}

.honey-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 45px 90px rgba(0,0,0,0.12);
}

/* ===== AREA TITLE ===== */
.honey-column-header {
    text-align: center;
    margin-bottom: 30px;
}

.honey-column-header span {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 4px;
    background: rgba(241,196,15,.15);
    color: #b08a00;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.honey-column-header h3 {
    font-size: 30px;
    font-weight: 700;
    color: #3a2e1c;
}

/* ===== PRODUCT CARD ===== */
.single-product {
    background: #fff;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    transition: transform .35s ease, box-shadow .35s ease;
}

.single-product:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.single-product img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.single-product-content {
    padding: 22px 20px 28px;
    text-align: center;
    background-color: #fffaf3;
}

.single-product-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fffaf3;
    margin-bottom: 8px;
}

.single-product-content p {
    font-size: 14px;
    color: #7a6a4f;
    line-height: 1.6;
}


.royal-single-product-content {
    padding: 22px 20px 28px;
    text-align: center;
    background-color: #fffaf3;
}

.royal-single-product-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #fffaf3;
    margin-bottom: 8px;
}

.royal-single-product-content p {
    font-size: 14px;
    color: #fffaf3;
    line-height: 1.6;
}


/* Full clickable card */
.single-product a {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.elementor-23 .elementor-element.elementor-element-d66a9bb:not(.elementor-motion-effects-element-type-background), .elementor-23 .elementor-element.elementor-element-d66a9bb > .elementor-motion-effects-container > .elementor-motion-effects-layer {
    background-color: #fffaf3 !important;
}

.elementor-widget:not(:last-child) {
    margin-bottom: 60px 0px !important;
}

.elementor-23 .elementor-element.elementor-element-6c596f9 > .elementor-widget-container {
    padding: 70px 0px 0px 0px;
}

.Short-Story-of-Our-Beekeepers *{
    color: #91582d !important;
}

#qodef-page-footer{
    background-color: #91582d !important;
}

#qodef-page-footer *{
    color: #fffaf3 !important;
}


/* ===============================
   MOBILE + TABLET NAVBAR
   (0px → 1024px)
================================ */

@media (max-width: 767px) {
    .shop-map-section{
        padding: 70px 20px 100px !important;
    }

    .hero-section {
        height: 90vh !important;
        margin-top: 120px;
        padding: 0;
        position: relative;
    }
}

.royal-honey{
    background-color: #fffaf3;
}


.qodef-m-content.qodef-content-grid h1.qodef-m-title.entry-title{
    color: #fff !important;
    width: 400px !important;
    text-align: center;
}

.qodef-page-title{
    height: 800px !important;
}


.hr-container {
    max-width: 3200px;
    margin: 60px auto;
    padding: 0 20px;
}

.modern-hr {
    border: none;
    height: 2px;
    width: 100%;
    background: linear-gradient(
        to right,
        transparent,
        #91582d,
        transparent
    );
    opacity: 0.7;
}

hr:not(.is-style-wide):not(.is-style-dots){
    max-width: 2500px;
}


.hero-section {
    padding: 80px 20px;
    text-align: center;
}

/* Layout */
.hero-content {
    display: flex;
    align-items: center;
    max-width: 1300px;
    margin: auto;
    gap: 40px;
}

/* Text side */
.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
}

.hero-text .subtitle,
.hero-text p.description {
    margin: 15px auto;
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-text .description {
    margin-bottom: 25px;
    color: #5f4a36;
}

/* Image side */
.hero-image {
    flex: 1.4; /* 🔥 make image column bigger */
    position: relative;
}

html[dir="rtl"] .hero-image {
    flex: 1; /* 🔥 make image column bigger */
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 600px; /* desktop size */
    height: auto;
    display: block;
    margin-left: auto;
}

/* Tablet */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 44px;
    }

    .hero-image img {
        max-width: 600px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .elementor-23 .elementor-element.elementor-element-d66a9bb:not(.elementor-motion-effects-element-type-background), .elementor-23 .elementor-element.elementor-element-d66a9bb > .elementor-motion-effects-container > .elementor-motion-effects-layer {
        background-color: #fffaf3 !important;
    }

    html[dir="rtl"] .timeline .timeline-item.right
    {
        right: 0px !important;
        direction: ltr !important;
    }

    html[dir="rtl"] .timeline-item.left::after {
        right: 91% !important;
    }

    html[dir="rtl"] .timeline-item.right::after {
        left: 54% !important;
    }

    .hero-image {
        width: 100%;
    }

    .hero-image img {
        max-width: 90%;
        margin: 20px auto 0;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-image .main-honey{
        margin: auto;
        position: relative;
        top: 50px;
    }

    .hero-section{
        margin: 0px !important;
        padding: 0px 20px;
        height: 100vh !important;
    }

    .cert-cards{
        display: grid;
    }
    .cert-card{
        max-width: 340px;
        border : 2px solid #91582d !important;
    }

    .how-honey-made .timeline .timeline-item span{
        display: none;
    }
}


/* For modern browsers */
::selection {
    background-color: #91582d !important;
    color: #ffffff !important; /* text color while selected */
}

/* For Firefox */
::-moz-selection {
    background-color: #91582d !important;
    color: #ffffff !important;
}

.qodef-shortcode.qodef-m.qodef-info-box.qodef-layout--top.qodef--has-custom-appear.qodef-alignment--center.qodef--appeared{
    background-color: #fffaf3;
    border: 2px solid #91582d;
    border-radius: 5px;
}

.qodef-m-image{
    margin: 20px;
}

.hero-section * {
    color: #91582d !important;
}

.certifications-container h3.section-title{
    color: #91582d !important;

}

#map-custom{
    margin-bottom: 100px !important;
}

.types-content ul.types-list li{
    background-color: #91582d;
    color: #e5d2bc !important;
}

.types-content ul.types-list li span i {
    color: #e5d2bc !important;
}

.local-honey{
    background-color: #fffaf3;
}

.local-grid .local-card,
.local-grid-2 .local-card{
    background-color: #91582d !important;
}

.local-grid .local-card *,
.local-grid-2 .local-card *{
    color: #fffaf3 !important;
}

.local-title,
.bees-badge{
    color: #91582d !important;
    background: #f0dac7 !important;
}

.bees-support .bees-grid *{
    color: #fffaf3 !important;
}

article.bees-card{
    background-color: #91582d !important;
}

.bee-label.custom-label-option{
    color: #91582d !important;
}

.bees-header h2,
.bees-header p{
    color: #91582d !important;
}

.cert-card{
    border: 2px solid #91582d !important;
}

#qodef-woo-page.qodef--single .related{
    background-color: #fffaf3;
}

.region-label {
    list-style-type: disc;   /* circle | square | none */
    margin-left: 20px;
    font-weight: 600;
    font-size: 16px
}
.region-content h3,
.region-content p{
    font-size: 14px !important;
    margin-left: 20px;
}

a:hover, p a:hover{
    color: #91582d !important;
}

.nav-link{
    color: #91582d;
}

.flag-aline{
    margin-right: 10px;
}

html[dir="rtl"] .flag-aline{
    margin-left: 10px;
}

html[dir="rtl"] .why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #91582d;
    font-size: 35px;
    line-height: 1;
    right: -20px;
}

html[dir="rtl"] .region-card.reverse{
    direction: ltr;
}

html[dir="rtl"] .region-card.reverse .region-content {
    direction: rtl;
}

html[dir="rtl"] .timeline .timeline-item.right{
    right: 50% !important;
    direction: ltr;
}

html[dir="rtl"] .timeline-item.right::after {
    left: 98%;
}

html[dir="rtl"] .timeline-item.left::after{
    right: 98%;
}
 
html[dir="rtl"] .compare-box.raw,
html[dir="rtl"] .compare-box.processed{
    border-right: 6px solid rgb(145, 88, 45);
    border-left: 0;
}

/* html[dir="rtl"] .related.products{
    left: 125% !important;
} */

/* .wp-post-image{
    margin-top: 50px
} */


@media (max-width: 768px) {
    html[dir="rtl"] .timeline .timeline-item.right
    {
        right: 0px !important;
        direction: ltr !important;
    }

    html[dir="rtl"] .timeline-item.right::after {
        left: 4% !important;
    }
}

.nav-subitem:hover {
    background-color: #91582d;
}

.nav-subitem:hover a {
    color: #fff !important;
}


.nav-subitem,
.nav-subitem a {
    transition: background-color 0.3s ease, color 0.3s ease;
}
.qodef-page-title{
    background-color: #000;
}

.region-label{
    font-size: 24px !important;
}

.region-content h3{
    font-size: 20px !important;
}

.region-content p{
    font-size: 16px !important;
 }


 /* ===============================
   WHY B-HONEY – FAST ANIMATION
================================ */

/* Base hidden state */
.why-b-honey {
    opacity: 1;
    transform: translateY(24px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    will-change: opacity, transform;
}

/* Image */
.why-image {
    opacity: 1;
    transform: translateX(-32px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

/* Content */
.why-content {
    opacity: 1;
    transform: translateX(32px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, transform;
}

/* Show state */
.why-b-honey.show {
    opacity: 1;
    transform: translateY(0);
}

.why-b-honey.show .why-image,
.why-b-honey.show .why-content {
    opacity: 1;
    transform: translateX(0);
}

/* Slight stagger (no delay waiting for image) */
.why-b-honey.show .why-image {
    transition-delay: 0.1s;
}

.why-b-honey.show .why-content {
    transition-delay: 0s;
}

.top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 20px;
    background: #91582d;
    color: #fff;
}

.top-left {
    width: 100px; /* just for balance */
}

.top-center {
    flex: 1;
    text-align: center;
}

.logo {
    height: 40px;
}

.top-right {
    width: 100px;
    text-align: right;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    color: #91582d; 
    background-color: #e5d2bc;
    margin: 0px 0px 0px -5px;
    border-radius: 0px; 
    transition: background-color 0.3s ease;
}


.top-right {
    display: flex;
    align-items: center;
    gap: 15px; /* space between Contact + Language */
}

/* Contact button */
.contact-link {
    text-decoration: none;
    padding: 6px 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* .contact-link:hover {
    background: #cb9744;
    color: #fff;
} */

/* Language icon */
.nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Dropdown */
.nav-submenu {
    display: none;
    position: absolute;
    right: 0;
    margin-top: 8px;
    border-radius: 6px;
    overflow: hidden;
    min-width: 140px;
    z-index: 999;
}

.nav-dropdown:hover .nav-submenu {
    display: block;
}

.nav-subitem {
    padding: 8px 12px;
    cursor: pointer;
}


.nav-sublink {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag-aline {
    width: 18px;
    height: auto;
}



.top-bar {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 20px;
}

.top-left {
    width: 150px;
}

.top-center {
    flex: 1;
    text-align: center;
}

.logo {
    height: 40px;
}

/* RIGHT SIDE */
.top-right {
    width: 150px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

/* Contact button */
.contact-link {
    text-decoration: none;
    font-weight: 500;
    min-width: 150px;
    text-align: center;
}

/* Language */
.nav {
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-submenu {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    /* background: #111; */
    border-radius: 6px;
    min-width: 130px;
    z-index: 999;
}

.nav-dropdown:hover .nav-submenu {
    display: block;
}

.nav-subitem {
    padding: 8px 12px;
}
/* 
.nav-subitem:hover {
    background: #222;
} */

.nav-sublink {
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.flag-aline {
    width: 18px;
}

.global-lang-dropdown:hover,
.fas.fa-globe-americas.icon-size-lang:hover {
    color: #fffaf3 !important;
}

.nav-submenu{
    padding: 0 !important;
}

.nav-subitem{
    background-color: #91582d !important;
}
.nav-subitem:hover{
    background-color: #e5d2bc !important;
}

.nav-submenu.langs-dropdown{
    margin-left: -35px;
}

.nav-subitem:hover a{
    color: #91582d !important;
}

.nav-subitem{
    padding: 0;
}

@media (max-width: 1024px) {
    .top-bar {
        display: none;
    }
}

a:hover, p a:hover{
    color: #e5d2bc !important;
}

.mobile-navbar .dropdown.open .submenu{
    background-color: #e5d2bc !important;
}

.mobile-navbar .has-submenu{
    color: #91582d !important;
}

.mobile-navbar .nav-link.hello{
    color: #4f2605 !important;
}

.contact-link:hover {
    color: #91582d !important;
}

.nav-sublink.mobile-side {
    text-decoration: none;
    color: #4f2605;
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #e5d2bc;
}

.nav-link.is-active, .nav-sublink.is-active, .menu-item > a.is-active{
    color: #91582d !important;
}
.nav-link.is-active, .nav-sublink.is-active, .menu-item > a.is-active{
    color: #91582d !important;
}

/* @media (min-width: 1024px) {
    #qodef-page-header{
        position: fixed;
        background-color: #e5d2bc;
        width: 100%;
        text-align: center;
        top: 0;
        z-index: 999999;
    }
} */


@media (min-width: 1024px) {

    /* Top bar */
    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        z-index: 10000;
    }

    /* Main header */
    #qodef-page-header {
        position: fixed;
        top: 60px; /* height of top-bar */
        left: 0;
        width: 100%;
        z-index: 9999;
        transition: background-color 0.3s ease;
        background-color: #e5d2bc;
    }

    /* Push page content down */
    body {
        padding-top: 200px; /* 60 + approx nav height */
    }
    .hero-section{
        top: 152px;
    }

    .nav-submenu{
        position: absolute;
        top: 55px;
    }

    .nav-subitem:hover{
        background-color: #91582d !important;
    }

    .nav-subitem:hover a {
        color: #e5d2bc !important;
    }

    .nav-subitem.is-active a {
        color: #e5d2bc !important;
        font-weight: 700;
    }

    .nav-subitem .nav-sublink{
        padding: 10px;
    }
    .nav-submenu.langs-dropdown{
        top: 45px;
        border-radius: 0;
        left: -20px;
    }

    .global-lang-dropdown:hover, .fas.fa-globe-americas.icon-size-lang{
        color: #e5d2bc !important;
    }

    .nav-subitem a{
        color: #e5d2bc !important;
    }

    .nav-link.is-active, .nav-sublink.is-active, .menu-item > a.is-active{
        color: #91582d !important;
    }
}

.nav-link.is-active, .nav-sublink.is-active, .menu-item > a.is-active {
    color: #91582d !important;
}

@media (min-width: 1024px) {
    .nav-subitem:hover {
        background-color: #e5d2bc !important;
    }
    .nav-subitem:hover a{
        color: #91582d !important;
    }
}

.nav-submenu{
    border-radius: 0 !important;
}

img{
    border-radius: 0px !important;
}

@media (max-width: 576px) {
    .trusted-logos img {
        height: 170px !important;
        width: auto;
    }
    .trusted-banner{
        height: 950px !important;
    }
    .trusted-overlay h3{
        font-size: 48px !important;
    }
}

h2.subtitle,
.hero-text p.description{
    color: #fff !important;
    width: 400px !important;
    text-align: center;
    padding: 12px;
}

@media (min-width: 767px) and (max-width: 1024px) {
    main{
        top: -87px;
    }
}
@media (width: 1024px) {
    main{
        top: -239px;
    }
}

.local-title-bg{
    background-color: #fffaf3 !important;
}

.read-more-btn{
    display: inline-block;
    padding: 5px 10px;
    background: #91582d;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 20px;
}

.controls input[type="text"] {
    color: #91582d !important;
}

.shop-name{
    color: #91582d !important;
}


@media (min-width: 1400px) {
    h2.subtitle, .hero-text p.description{
        width: 600px !important;
    }

    .hero-text {
        max-width: 600px !important;
    }
}


.trusted-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;       /* true center */
}

.logo-item img {
    display: block;
}

.logo-item span {
    text-align: center;
    position: relative;
    top: -60px;
    color: #91582d;
    font-weight: 700;
}

.cls-1, .cls-2 {
    fill: #91582d !important;
}

.dir-strong-text{
    text-align: left;
}

.bees-card{
    padding: 25px 40px;
}

.three-regions-cards{
    background-color: #e5d2bc;
}

@media (max-width: 600px) {
    .region-card {
        padding: 20px !important
    }
}

@media (max-width: 992px) {
    .why-grid {
        flex-direction: column;
        text-align: left;
    }
    .qodef-m-content.qodef-content-grid h1.qodef-m-title.entry-title
    {
        text-align: left !important;
    }
}