/*
Theme Name: Lolliq
Description: A modern and responsive WordPress theme for Lolliq brand. Clean design with focus on user experience and performance.
Author: DigitalOctane
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lolliq
Domain Path: /languages
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
*/

/* CSS Variables */
:root {
	--salmon: #e38b85;
	--dark-salmon: #d8716e;
	--yellow: #f8db53;
	--teal: #88d6bb;
	--text: #0d583e;
	--white: #fff;
	--light-pink: #f5c7ce;
	--pink: #e4aeb0;
	--light-yellow: #fff8d6;
	--cream: #FFFAEF;
	--pale-yellow: #FFF6CC;
	--rose: #FFECEF;
	--blush: #FFF1F3;
    --mint: #E8FFF7;
    --vanilla: #FFF7D0;
    --lavender: #CDD4FF;
	--lavender-strong: #9daaff;
    --mint-green: #CBF2E5;
	--mint-green-strong: #8debca;
	--light-yellow-strong: #ffea87;
    --light-yellow: #FFF2B7;
    --light-salmon: #ee838038;
    --font-family: "Figtree", sans-serif;
	--second-family: "Krona One", sans-serif;
	--third-family: "Bricolage Grotesque", sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text);   
    background-color: var(--white);
    font-size: 20px;
}

/* Container System */
.container {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    z-index: 2;
    position: relative;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12 {
    padding: 0 15px;
    flex: 0 0 100%;
    max-width: 100%;
}

/* Mobile First - Base Sizes */
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Responsive Grid - moved to media queries section */

/* Grid Alignment Utilities */
.justify-content-start { justify-content: flex-start; }
.justify-content-center { justify-content: center; }
.justify-content-end { justify-content: flex-end; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }

.align-items-start { align-items: flex-start; }
.align-items-center { align-items: center; }
.align-items-end { align-items: flex-end; }
.align-items-stretch { align-items: stretch; }

/* Grid Spacing Utilities */
.no-gutters {
    margin: 0;
}

.no-gutters > [class*="col-"] {
    padding: 0;
}

/* Flex Utilities */
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

/* Order Utilities */
.order-1 { order: 1; }
.order-2 { order: 2; }
.order-3 { order: 3; }
.order-4 { order: 4; }
.order-5 { order: 5; }
.order-6 { order: 6; }
.order-7 { order: 7; }
.order-8 { order: 8; }
.order-9 { order: 9; }
.order-10 { order: 10; }
.order-11 { order: 11; }
.order-12 { order: 12; }

/* Order utilities - moved to media queries section */

/* Color Utilities */
.text-salmon { color: var(--salmon); }
.text-yellow { color: var(--yellow); }
.text-teal { color: var(--teal); }
.text-text { color: var(--text); }
.text-white { color: var(--white); }
.text-light-pink { color: var(--light-pink); }
.text-pink { color: var(--pink); }
.text-cream { color: var(--cream); }
.text-pale-yellow { color: var(--pale-yellow); }
.text-rose { color: var(--rose); }
.text-blush { color: var(--blush); }
.text-mint { color: var(--mint); }
.text-vanilla { color: var(--vanilla); }
.text-lavender { color: var(--lavender); }
.text-mint-green { color: var(--mint-green); }
.text-light-yellow { color: var(--light-yellow); }
.text-light-salmon { color: var(--light-salmon); }

/* SVG Color Utilities */
.text-salmon svg path,
.text-salmon svg circle,
.text-salmon svg rect,
.text-salmon svg polygon,
.text-salmon svg ellipse { fill: var(--salmon); }

.text-yellow svg path,
.text-yellow svg circle,
.text-yellow svg rect,
.text-yellow svg polygon,
.text-yellow svg ellipse { fill: var(--yellow); }

.text-teal svg path,
.text-teal svg circle,
.text-teal svg rect,
.text-teal svg polygon,
.text-teal svg ellipse { fill: var(--teal); }

.text-text svg path,
.text-text svg circle,
.text-text svg rect,
.text-text svg polygon,
.text-text svg ellipse { fill: var(--text); }

.text-white svg path,
.text-white svg circle,
.text-white svg rect,
.text-white svg polygon,
.text-white svg ellipse { fill: var(--white); }

.text-light-pink svg path,
.text-light-pink svg circle,
.text-light-pink svg rect,
.text-light-pink svg polygon,
.text-light-pink svg ellipse { fill: var(--light-pink); }

.text-pink svg path,
.text-pink svg circle,
.text-pink svg rect,
.text-pink svg polygon,
.text-pink svg ellipse { fill: var(--pink); }

.text-cream svg path,
.text-cream svg circle,
.text-cream svg rect,
.text-cream svg polygon,
.text-cream svg ellipse { fill: var(--cream); }

.text-pale-yellow svg path,
.text-pale-yellow svg circle,
.text-pale-yellow svg rect,
.text-pale-yellow svg polygon,
.text-pale-yellow svg ellipse { fill: var(--pale-yellow); }

.text-rose svg path,
.text-rose svg circle,
.text-rose svg rect,
.text-rose svg polygon,
.text-rose svg ellipse { fill: var(--rose); }

.text-blush svg path,
.text-blush svg circle,
.text-blush svg rect,
.text-blush svg polygon,
.text-blush svg ellipse { fill: var(--blush); }

.text-mint svg path,
.text-mint svg circle,
.text-mint svg rect,
.text-mint svg polygon,
.text-mint svg ellipse { fill: var(--mint); }

.text-vanilla svg path,
.text-vanilla svg circle,
.text-vanilla svg rect,
.text-vanilla svg polygon,
.text-vanilla svg ellipse { fill: var(--vanilla); }

.text-lavender svg path,
.text-lavender svg circle,
.text-lavender svg rect,
.text-lavender svg polygon,
.text-lavender svg ellipse { fill: var(--lavender); }

.text-mint-green svg path,
.text-mint-green svg circle,
.text-mint-green svg rect,
.text-mint-green svg polygon,
.text-mint-green svg ellipse { fill: var(--mint-green); }

.text-light-yellow svg path,
.text-light-yellow svg circle,
.text-light-yellow svg rect,
.text-light-yellow svg polygon,
.text-light-yellow svg ellipse { fill: var(--light-yellow); }

.text-light-salmon svg path,
.text-light-salmon svg circle,
.text-light-salmon svg rect,
.text-light-salmon svg polygon,
.text-light-salmon svg ellipse { fill: var(--light-salmon); }

/* Background Utilities */
.bg-salmon { background-color: var(--salmon); }
.bg-yellow { background-color: var(--yellow); }
.bg-teal { background-color: var(--teal); }
.bg-text { background-color: var(--text); }
.bg-white { background-color: var(--white); }
.bg-light-pink { background-color: var(--light-pink); }
.bg-pink { background-color: var(--pink); }
.bg-light-yellow { background-color: var(--light-yellow); }
.bg-cream { background-color: var(--cream); }
.bg-pale-yellow { background-color: var(--pale-yellow); }
.bg-rose { background-color: var(--rose); }
.bg-blush { background-color: var(--blush); }
.bg-mint { background-color: var(--mint); }
.bg-vanilla { background-color: var(--vanilla); }
.bg-lavender { background-color: var(--lavender); }
.bg-mint-green { background-color: var(--mint-green); }
.bg-light-yellow { background-color: var(--light-yellow); }
.bg-light-salmon { background-color: var(--light-salmon); }

/* Border Utilities */
.border-salmon { border-color: var(--salmon); }
.border-yellow { border-color: var(--yellow); }
.border-teal { border-color: var(--teal); }
.border-text { border-color: var(--text); }
.border-white { border-color: var(--white); }
.border-light-pink { border-color: var(--light-pink); }
.border-pink { border-color: var(--pink); }
.border-cream { border-color: var(--cream); }
.border-pale-yellow { border-color: var(--pale-yellow); }
.border-rose { border-color: var(--rose); }
.border-blush { border-color: var(--blush); }
.border-mint { border-color: var(--mint); }
.border-vanilla { border-color: var(--vanilla); }
.border-lavender { border-color: var(--lavender); }
.border-mint-green { border-color: var(--mint-green); }
.border-light-yellow { border-color: var(--light-yellow); }
.border-light-salmon { border-color: var(--light-salmon); }
 
/* Hover Color Utilities */
.hover-text-salmon:hover { color: var(--salmon); }
.hover-text-yellow:hover { color: var(--yellow); }
.hover-text-teal:hover { color: var(--teal); }
.hover-text-text:hover { color: var(--text); }
.hover-text-white:hover { color: var(--white); }
.hover-text-light-pink:hover { color: var(--light-pink); }
.hover-text-pink:hover { color: var(--pink); }
.hover-text-cream:hover { color: var(--cream); }
.hover-text-pale-yellow:hover { color: var(--pale-yellow); }
.hover-text-rose:hover { color: var(--rose); }
.hover-text-blush:hover { color: var(--blush); }
.hover-text-mint:hover { color: var(--mint); }
.hover-text-vanilla:hover { color: var(--vanilla); }
.hover-text-lavender:hover { color: var(--lavender); }
.hover-text-mint-green:hover { color: var(--mint-green); }
.hover-text-light-yellow:hover { color: var(--light-yellow); }
.hover-text-light-salmon:hover { color: var(--light-salmon); }

/* Hover SVG Color Utilities */
.hover-text-salmon:hover svg path,
.hover-text-salmon:hover svg circle,
.hover-text-salmon:hover svg rect,
.hover-text-salmon:hover svg polygon,
.hover-text-salmon:hover svg ellipse { fill: var(--salmon); }

/* Dynamic Background Images - handled by JavaScript */
[data-bg-image] {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Dynamic Animation Delays */
[data-animation-delay] {
    animation-delay: attr(data-animation-delay) s;
}

/* Dynamic Opacity */
[data-opacity] {
    opacity: attr(data-opacity);
}

/* Dynamic Background Colors */
[data-bg-color] {
    background-color: attr(data-bg-color);
}

/* Dynamic Text Colors */
[data-text-color] {
    color: attr(data-text-color);
}

/* Dynamic Padding */
[data-padding] {
    padding: attr(data-padding) px 0;
}

/* ========================================
   TESTIMONIALS SLIDER STYLES
======================================== */

/* Testimonials Slider Block Styles */
.testimonials-slider-block {
   overflow: hidden;
}


.testimonials-slider-container {
    position: relative;
    padding: 0;
}

.testimonials-swiper {
    overflow: visible;
    border-radius: 12px;
}

.quote-icon {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.quote-text { 
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0px;
    max-width: 1170px;
    margin: auto;
}

.testimonial-card .quote-text p {
    margin-bottom: 1rem;
    line-height: 35px;
    letter-spacing: 0.5px;
    margin: 0;

    font-family:var(--font-family);
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0px;
}

.author-name {
    font-family: var(--font-text);
    font-weight: 500;
    font-size: 14px;
    line-height: 16.2px;
    letter-spacing: -0.13px;
    vertical-align: middle;
}

.author-title {
    font-family: var(--font-text);
    font-weight: 500;
    font-size: 12px;
    line-height: 14.4px;
    letter-spacing: -0.11px;
    vertical-align: middle;
}
.testimonial-card{
    min-height: 370px;
    padding: 36px 39px;
}
.btn.testimonials-nav-next,
.btn.testimonials-nav-prev {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--salmon);
    background: transparent;
    color: var(--salmon);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    padding: 0;
}

.btn.testimonials-nav-next:hover,
.btn.testimonials-nav-prev:hover {
    background: var(--salmon);
    color: var(--white);
    transform: scale(1.1);
}

/* Responsive adjustments - moved to media queries section */

.hover-text-yellow:hover svg path,
.hover-text-yellow:hover svg circle,
.hover-text-yellow:hover svg rect,
.hover-text-yellow:hover svg polygon,
.hover-text-yellow:hover svg ellipse { fill: var(--yellow); }

.hover-text-teal:hover svg path,
.hover-text-teal:hover svg circle,
.hover-text-teal:hover svg rect,
.hover-text-teal:hover svg polygon,
.hover-text-teal:hover svg ellipse { fill: var(--teal); }

.hover-text-text:hover svg path,
.hover-text-text:hover svg circle,
.hover-text-text:hover svg rect,
.hover-text-text:hover svg polygon,
.hover-text-text:hover svg ellipse { fill: var(--text); }

.hover-text-white:hover svg path,
.hover-text-white:hover svg circle,
.hover-text-white:hover svg rect,
.hover-text-white:hover svg polygon,
.hover-text-white:hover svg ellipse { fill: var(--white); }

.hover-text-light-pink:hover svg path,
.hover-text-light-pink:hover svg circle,
.hover-text-light-pink:hover svg rect,
.hover-text-light-pink:hover svg polygon,
.hover-text-light-pink:hover svg ellipse { fill: var(--light-pink); }

.hover-text-pink:hover svg path,
.hover-text-pink:hover svg circle,
.hover-text-pink:hover svg rect,
.hover-text-pink:hover svg polygon,
.hover-text-pink:hover svg ellipse { fill: var(--pink); }

.hover-text-cream:hover svg path,
.hover-text-cream:hover svg circle,
.hover-text-cream:hover svg rect,
.hover-text-cream:hover svg polygon,
.hover-text-cream:hover svg ellipse { fill: var(--cream); }

.hover-text-pale-yellow:hover svg path,
.hover-text-pale-yellow:hover svg circle,
.hover-text-pale-yellow:hover svg rect,
.hover-text-pale-yellow:hover svg polygon,
.hover-text-pale-yellow:hover svg ellipse { fill: var(--pale-yellow); }

.hover-text-rose:hover svg path,
.hover-text-rose:hover svg circle,
.hover-text-rose:hover svg rect,
.hover-text-rose:hover svg polygon,
.hover-text-rose:hover svg ellipse { fill: var(--rose); }

.hover-text-blush:hover svg path,
.hover-text-blush:hover svg circle,
.hover-text-blush:hover svg rect,
.hover-text-blush:hover svg polygon,
.hover-text-blush:hover svg ellipse { fill: var(--blush); }

.hover-text-mint:hover svg path,
.hover-text-mint:hover svg circle,
.hover-text-mint:hover svg rect,
.hover-text-mint:hover svg polygon,
.hover-text-mint:hover svg ellipse { fill: var(--mint); }

.hover-text-vanilla:hover svg path,
.hover-text-vanilla:hover svg circle,
.hover-text-vanilla:hover svg rect,
.hover-text-vanilla:hover svg polygon,
.hover-text-vanilla:hover svg ellipse { fill: var(--vanilla); }

.hover-text-lavender:hover svg path,
.hover-text-lavender:hover svg circle,
.hover-text-lavender:hover svg rect,
.hover-text-lavender:hover svg polygon,
.hover-text-lavender:hover svg ellipse { fill: var(--lavender); }

.hover-text-mint-green:hover svg path,
.hover-text-mint-green:hover svg circle,
.hover-text-mint-green:hover svg rect,
.hover-text-mint-green:hover svg polygon,
.hover-text-mint-green:hover svg ellipse { fill: var(--mint-green); }

.hover-text-light-yellow:hover svg path,
.hover-text-light-yellow:hover svg circle,
.hover-text-light-yellow:hover svg rect,
.hover-text-light-yellow:hover svg polygon,
.hover-text-light-yellow:hover svg ellipse { fill: var(--light-yellow); }

.hover-text-light-salmon:hover svg path,
.hover-text-light-salmon:hover svg circle,
.hover-text-light-salmon:hover svg rect,
.hover-text-light-salmon:hover svg polygon,
.hover-text-light-salmon:hover svg ellipse { fill: var(--light-salmon); }

/* Hover Background Utilities */
.hover-bg-salmon:hover { background-color: var(--salmon); }
.hover-bg-yellow:hover { background-color: var(--yellow); }
.hover-bg-teal:hover { background-color: var(--teal); }
.hover-bg-text:hover { background-color: var(--text); }
.hover-bg-white:hover { background-color: var(--white); }
.hover-bg-light-pink:hover { background-color: var(--light-pink); }
.hover-bg-pink:hover { background-color: var(--pink); }
.hover-bg-cream:hover { background-color: var(--cream); }
.hover-bg-pale-yellow:hover { background-color: var(--pale-yellow); }
.hover-bg-rose:hover { background-color: var(--rose); }
.hover-bg-blush:hover { background-color: var(--blush); }
.hover-bg-mint:hover { background-color: var(--mint); }
.hover-bg-vanilla:hover { background-color: var(--vanilla); }
.hover-bg-lavender:hover { background-color: var(--lavender); }
.hover-bg-mint-green:hover { background-color: var(--mint-green); }
.hover-bg-light-yellow:hover { background-color: var(--light-yellow); }
.hover-bg-light-salmon:hover { background-color: var(--light-salmon); }

/* Hover Border Utilities */
.hover-border-salmon:hover { border-color: var(--salmon); }
.hover-border-yellow:hover { border-color: var(--yellow); }
.hover-border-teal:hover { border-color: var(--teal); }
.hover-border-text:hover { border-color: var(--text); }
.hover-border-white:hover { border-color: var(--white); }
.hover-border-light-pink:hover { border-color: var(--light-pink); }
.hover-border-pink:hover { border-color: var(--pink); }
.hover-border-cream:hover { border-color: var(--cream); }
.hover-border-pale-yellow:hover { border-color: var(--pale-yellow); }
.hover-border-rose:hover { border-color: var(--rose); }
.hover-border-blush:hover { border-color: var(--blush); }
.hover-border-mint:hover { border-color: var(--mint); }
.hover-border-vanilla:hover { border-color: var(--vanilla); }
.hover-border-lavender:hover { border-color: var(--lavender); }
.hover-border-mint-green:hover { border-color: var(--mint-green); }
.hover-border-light-yellow:hover { border-color: var(--light-yellow); }
.hover-border-light-salmon:hover { border-color: var(--light-salmon); }

/* Spacing Utilities */
.m-0 { margin: 0; }
.m-1 { margin: 10px; }
.m-2 { margin: 20px; }
.m-3 { margin: 30px; }
.m-4 { margin: 40px; }
.m-5 { margin: 50px; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.mb-80 { margin-bottom: 80px; }
.mb-100 { margin-bottom: 100px; }

.ml-0 { margin-left: 0; }
.ml-1 { margin-left: 10px; }
.ml-2 { margin-left: 20px; }
.ml-3 { margin-left: 30px; }
.ml-4 { margin-left: 40px; }
.ml-5 { margin-left: 50px; }

.mr-0 { margin-right: 0; }
.mr-1 { margin-right: 10px; }
.mr-2 { margin-right: 20px; }
.mr-3 { margin-right: 30px; }
.mr-4 { margin-right: 40px; }
.mr-5 { margin-right: 50px; }

.p-0 { padding: 0; }
.p-1 { padding: 10px; }
.p-2 { padding: 20px; }
.p-3 { padding: 30px; }
.p-4 { padding: 40px; }
.p-5 { padding: 50px; }
.p-100 { padding: 100px 0; }

.pt-0 { padding-top: 0; }
.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }
.pt-4 { padding-top: 40px; }
.pt-5 { padding-top: 50px; }

.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }
.pb-4 { padding-bottom: 40px; }
.pb-5 { padding-bottom: 50px; }

.pl-0 { padding-left: 0; }
.pl-1 { padding-left: 10px; }
.pl-2 { padding-left: 20px; }
.pl-3 { padding-left: 30px; }
.pl-4 { padding-left: 40px; }
.pl-5 { padding-left: 50px; }

.pr-0 { padding-right: 0; }
.pr-1 { padding-right: 10px; }
.pr-2 { padding-right: 20px; }
.pr-3 { padding-right: 30px; }
.pr-4 { padding-right: 40px; }
.pr-5 { padding-right: 50px; }

/* Text Utilities */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }

.text-bold { font-weight: bold; }
.text-normal { font-weight: normal; }
.text-light { font-weight: 300; }

.text-small { font-size: 14px; }
.text-large { font-size: 20px; }
.text-xl { font-size: 24px; }
.text-2xl { 
    font-family: Krona One;
    font-weight: 400;
    font-style: Regular;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0px;
}
.text-3xl { font-size: 48px; }

/* Additional Font Size Utilities */
.fs-small { font-size: 14px; }
.fs-normal { font-size: 16px; }
.fs-large { font-size: 18px; }
.fs-xl { font-size: 20px; }
.fs-2xl { font-size: 24px; }
.fs-3xl { font-size: 32px; }
.fs-4xl { font-size: 40px; }
.fs-5xl { font-size: 48px; }

/* Display Utilities */
.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-table { display: table; }
.d-table-cell { display: table-cell; }

/* Position Utilities */
.position-static { position: static; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }
.position-sticky { position: sticky; }
.left-image-wrapper .position-absolute {
    position: absolute;
    bottom: 0;
    left: 0;
    right: -153px;
    margin: auto;
}
/* Border Utilities */
.border { border: 1px solid; }
.border-0 { border: 0; }
.border-top { border-top: 1px solid; }
.border-bottom { border-bottom: 1px solid; }
.border-left { border-left: 1px solid; }
.border-right { border-right: 1px solid; }

.rounded { border-radius: 4px; }
.rounded-sm { border-radius: 2px; }
.rounded-lg { border-radius: 40px; }
.rounded-xl { border-radius: 24px; }
.rounded-full { border-radius: 50%; }

/* Additional Border Radius Utilities */
.rounded-top { border-top-left-radius: 4px; border-top-right-radius: 4px; }
.rounded-bottom { border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; }
.rounded-left { border-top-left-radius: 4px; border-bottom-left-radius: 4px; }
.rounded-right { border-top-right-radius: 4px; border-bottom-right-radius: 4px; }

/* Shadow Utilities */
.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }
.shadow { box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06); }
.shadow-md { box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04); }
.shadow-none { box-shadow: none; }

/* Button Utilities */
.btn {
    display: inline-block;
    padding: 11px 35px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    line-height: 1;
    height: 47px;
}

.btn:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Button Sizes */
.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}
.height100{
    height: -webkit-fill-available;

}
.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-xl {
    padding: 20px 40px;
    font-size: 20px;
}

/* Button Variants */
.btn-primary {
    background-color: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--salmon);
    border-color: var(--salmon);
    color: var(--white);
}

.btn-secondary {
    background-color: var(--salmon);
    border-color: var(--salmon);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--pink);
    border-color: var(--pink);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--text);
}

/* Gap Utilities for Flexbox */
.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }
.gap-3 { gap: 30px; }
.gap-4 { gap: 40px; }
.gap-5 { gap: 50px; }

/* Badge Utilities */
.badge {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 10px;
    letter-spacing: 0;
    font-family:var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
}

.badge.bg-yellow {
    background-color: var(--yellow);
    color: var(--text);
}

.badge.bg-salmon {
    background-color: var(--salmon);
    color: var(--white);
}

.badge.bg-teal {
    background-color: var(--teal);
    color: var(--white);
}

.badge.bg-pink {
    background-color: var(--pink);
    color: var(--white);
}

.badge.bg-light-pink {
    background-color: var(--light-pink);
    color: var(--text);
}

.badge.bg-white {
    background-color: var(--white);
    color: var(--text);
    border: 1px solid var(--text);
}

/* Top Bar */
.top-bar {
    padding: 8px 0;
    text-align: center;
}

.top-bar-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-bar-text {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

/* Header Styles */
.site-header {
    position: absolute;
    top: 56px;
    z-index: 1000;
    transition: all 0.3s ease;
    background: none;
    width: 100%;
    height: 140px;
}

/* Top Bar */
.top-bar {
    position: relative;
    z-index: 1001;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    min-height: 40px;
}

.top-bar-info a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-info a:hover {
    color: var(--salmon);
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1002;
}

.menu-toggle-icon {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 18px;
    justify-content: space-between;
}

.menu-toggle-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--text);
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: var(--text);
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--salmon);
}

/* Flavors Grid Background Images */
.flavors-bg-left {

    left: 0;
    top: 8%;
    width: 291px;
    height: 389px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.flavors-bg-center {
    left: 45%;
    top: 19%;
    right: 45%;
    width: 160px;
    height: 135px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.flavors-bg-right {
    right: 0;
    top: 6%;
    width: 359px;
    height: 549px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.flavors-container {
    z-index: 2;
}

.flavors-item-animated {
    animation: fadeInUp 0.6s ease-out both;
    min-height: 300px;
}

.flavors-item-image { 
    height: auto;
    object-fit: cover;
    width: 100%;
}

/* Additional Flavors Grid Styles */
.flavors-grid-block {
    min-height: 600px;
	overflow: hidden;
}

.flavor-item--lighten::after {
  content: "";
  position: absolute;
  inset: 0;
/*   background: rgba(255,255,255,0.7); */
/*   pointer-events: none; */
	border-radius: 40px;
}

.flavor-item--lighten img.flavors-item-image {
/* 	mix-blend-mode: screen; */
/* 	filter: brightness(0.7); */
	filter: brightness(120%);
}

.flavor-item {
	transition: .4s
}

.flavors-grid-block .embla__container {
/* 	justify-content: initial */
		justify-content: center
}

.flavor-image-container {
    transition: all 0.3s ease;
}

.flavor-name {
    font-family: Krona One;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    margin-top: 1rem;
	line-height: 25px;
}

.flavor-coming-soon {
	text-align: center;
    font-family: 'Krona One';
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
	margin-top: auto;
}

.flavor-label {
    top: 30px;
    position: absolute;
    left: 30px;
}

.buttons-section {
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

/* Background Images Overlay */
.background-image-left,
.background-image-center,
.background-image-right {
    transition: opacity 0.3s ease;
}


/* Responsive adjustments for Flavors Grid - moved to media queries section */



/* Moved to media queries section */

/* Hover effects for different background colors */
.flavor-item.bg-salmon:hover {
    background-color: var(--pink) !important;
}

.flavor-item.bg-yellow:hover {
    background-color: var(--salmon) !important;
}

.flavor-item.bg-teal:hover {
    background-color: var(--salmon) !important;
}

.flavor-item.bg-light-pink:hover {
    background-color: var(--pink) !important;
}

.flavor-item.bg-pink:hover {
    background-color: var(--salmon) !important;
}

.flavor-item.bg-white:hover {
    background-color: var(--light-pink) !important;
}

.flavor-item.bg-mint-green:hover {
    background-color: var(--mint-green-strong) !important;
}

.flavor-item.bg-lavender:hover {
    background-color: var(--lavender-strong) !important;
}

.flavor-item.bg-light-yellow:hover {
    background-color: var(--light-yellow-strong) !important;
}

.flavors-grid-bg-image svg path {
	transition: .4s ease-in-out
}


/* Hero Block Styles */
.hero-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.hero-overlay-bg {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-container {
    z-index: 2;
}

/* Join LolliQts Block Styles */
.join-decoration-top {
    top: 0;
    left: 0%;
    z-index: 0;
    pointer-events: none;
    width: 100%;
}

.join-decoration-bottom {
    bottom: 0;
    left: 0%;
    z-index: 0;
    pointer-events: none;
    width: 100%;
}

.join-intro-margin {
    margin-top: 10px;
}

.join-title-margin {
    margin-bottom: 24px;
}

.join-step-animated {
    animation: fadeInUp 0.6s ease-out both;
}

.join-step-icon {
    width: 48px;
    height: 48px;
}



.join-right-image {
    border-radius: 12px;
}

/* Testimonials Slider Styles */
.testimonials-nav-btn {
    width: 40px;
    height: 40px;
}

.testimonials-card-animated {
    animation: fadeInUp 0.6s ease-out both;
    min-height: 300px;
}

.testimonials-author-title {
    font-size: 0.9rem;
}

/* Icon Container Styles */
.icon-item-animated {
    animation: fadeInUp 0.6s ease-out both;
}

/* Button Color Hover Effects */
.btn.bg-salmon:hover {
    background-color: var(--pink) !important;
}

.btn.bg-yellow:hover {
    background-color: var(--salmon) !important;
}

.btn.bg-teal:hover {
    background-color: var(--salmon) !important;
}

.btn.bg-light-pink:hover {
    background-color: var(--pink) !important;
}

.btn.bg-pink:hover {
    background-color: var(--salmon) !important;
}

.btn.bg-white:hover {
    background-color: var(--light-pink) !important;
}

.btn.bg-cream:hover {
    background-color: var(--salmon) !important;
}

.btn.bg-pale-yellow:hover {
    background-color: var(--yellow) !important;
}

.btn.bg-rose:hover {
    background-color: var(--pink) !important;
}

.btn.bg-blush:hover {
    background-color: var(--rose) !important;
}

.btn.bg-mint:hover {
    background-color: var(--teal) !important;
}

.btn.bg-vanilla:hover {
    background-color: var(--pale-yellow) !important;
}

.btn.bg-lavender:hover {
    background-color: var(--salmon) !important;
}

/* Special Button Styles */
.btn.bg-salmon {
    background-color: var(--salmon) !important;
    color: var(--white) !important;
    border: 2px solid var(--salmon) !important;
}

.btn.bg-light-salmon {
    background-color: var(--light-salmon) !important;
    color: var(--salmon) !important;
    border: 2px solid var(--salmon) !important;
}

.btn.bg-white {
    background-color: var(--white) !important;
    color: var(--salmon) !important;
}

.btn.bg-white-transparent {
    background-color: transparent !important;
    color: var(--salmon) !important;
    border: 2px solid var(--salmon) !important;
}

.btn.bg-mint-green:hover {
    background-color: var(--salmon) !important;
}

.btn.bg-light-yellow:hover {
    background-color: var(--salmon) !important;
}

.btn.bg-light-salmon:hover {
    background-color: var(--salmon) !important;
}

/* Meet the Mom Block Styles */
.meet-mom-block {
    /* Animation handled by AOS */
}

.meet-mom-left-container {
    position: relative;
    height: 100%;
}

.left-image-wrapper {
    transition: all 0.3s ease;
    border-radius: 40px;
    height: 100%;
}
.benefit-icon-wrapper{
    width: 72px;
    height: 72px;
}

.meet-mom-right-content {
    /* Animation handled by AOS */
}


.benefit-item {
    transition: all 0.3s ease;
    gap: 1rem;
}

.content-text p {
    margin-bottom: 2rem;
    font-family: Figtree;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 28px;
    letter-spacing: 0.5px;
}

.benefit-title {
    font-size: 20px;
    line-height: 1.3;
    font-weight: 600;
}

.benefit-description {
    font-size: 18px;
    line-height: 1.4;
}

.content-text {
    font-size: 20px;
    line-height: 1.4;
}

/* Responsive adjustments - moved to media queries section */

/* Moved to media queries section */

/* Moved to media queries section */



/* Mobile Menu - moved to media queries section */

/* Desktop Menu - moved to media queries section */

/* Footer Styles */
.site-footer {
    background: var(--yellow);
    color: var(--text);
    padding: 40px 0 40px;
}

.footer-logo-img {
    max-height: 60px;
    width: auto;
}

.footer-title {
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
}

.footer-description p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-address p,
.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.footer-address p:last-child,
.footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-contact a,
.footer-address a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover,
.footer-address a:hover {
    color: var(--salmon);
}

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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s ease;
}



.legal-link,
.footer-copyright p {
    margin: 0;
    color: var(--text);
    font-size: 14px;
    font-family: var(--font-family);;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 22.1px;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
}

/* Footer Responsive - moved to media queries section */

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    min-height: 70px;
    position: relative;
}

/* Logo Styles */
.site-logo {
    flex-shrink: 0;
}

.site-logo a {
    display: block;
    text-decoration: none;
}

.logo {
    height: auto;
    width: 330px;
    transition: opacity 0.3s ease;
    position: absolute;
    top: 15px;
}

.logo-light {
    display: block;
}

.logo-dark {
    display: none;
}

.header-solid .logo-light {
    display: none;
}

.header-solid .logo-dark {
    display: block;
}

/* Navigation Styles */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.menu-left {
    justify-content: flex-start;
}

.menu-center {
    justify-content: center;
}

.menu-right {
    justify-content: flex-end;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.header-transparent .nav-menu a {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.nav-menu a:hover {
    color: var(--teal);
}

.header-transparent .nav-menu a:hover {
    color: #fff;
    opacity: 0.8;
}

/* Cart Icon */
.header-cart {
    flex-shrink: 0;
}

.cart-right {
    margin-left: auto;
}

.cart-left {
    margin-right: auto;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.header-transparent .cart-link {
    color: #fff;
}

.cart-link:hover {
    color: var(--teal);
}

.header-transparent .cart-link:hover {
    color: #fff;
    opacity: 0.8;
}

.cart-icon {
    font-size: 19px;
}

.cart-count {
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    min-width: 20px;
}

.header-transparent .cart-count {
    background: #fff;
    color: #333;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #333;
    font-size: 16px;
}

.header-transparent .menu-toggle {
    color: #fff;
}

.menu-toggle-text {
    margin-left: 8px;
}

/* Main Content */
.site-main {
    min-height: 60vh;
}
.flavor-item{
    position: relative;
	color: var(--text);
	text-decoration: none;
}
/* ACF Blocks */
.hero-block {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 1.2;
}
.hero-headline{    
    font-family: Krona One;
    font-weight: 400;
    font-size: 68px;
    line-height: 100%;
    letter-spacing: 0px;
}
.hero-subheadline{
    max-width: 730px;
    font-family: var(--font-family);;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 1px;
}
.hero-subtitle {
    font-size: 19px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-button {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.hero-button:hover {
    background: #2980b9;
}

.content-block {
    padding: 64px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-text {
    font-size: 18px;
    line-height: 1.8;
}

.gallery-block {
    padding: 64px 0;
}

.gallery-title {
    text-align: center;
    margin-bottom: 48px;
    font-size: 40px;
    color: #2c3e50;
}

/* Gallery Grid */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

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

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 16px;
    font-size: 14px;
}

/* SEO Content Block */
.seo-content-block {
    padding: 64px 0;
}

.seo-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.seo-content-title {
    font-size: 40px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.seo-content-text {
    font-size: 18px;
    line-height: 1.8;
}

.seo-content-text h1,
.seo-content-text h2,
.seo-content-text h3,
.seo-content-text h4,
.seo-content-text h5,
.seo-content-text h6 {
    margin: 32px 0 16px;
    color: #2c3e50;
}

.seo-content-text p {
    margin-bottom: 24px;
}

/* CTA Block */
.cta-block {
    padding: 64px 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: bold;
}

.cta-subtitle {
    font-size: 19px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-primary {
    background: #fff;
    color: #3498db;
    border: 2px solid #fff;
}

.cta-button-primary:hover {
    background: transparent;
    color: #fff;
}

.cta-button-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-button-secondary:hover {
    background: #fff;
    color: #3498db;
}

/* Features Block */
.features-block {
    padding: 64px 0;
}

.features-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.features-subtitle {
    text-align: center;
    font-size: 19px;
    margin-bottom: 48px;
    opacity: 0.8;
}

/* Features Grid */
.feature-item {
    text-align: center;
    padding: 32px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 24px;
}

.feature-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.feature-description {
    color: #7f8c8d;
    line-height: 1.6;
}

/* Post styles */
.post-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 32px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.post-thumbnail {
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.post-content {
    padding: 24px;
}

.entry-title {
    margin-bottom: 8px;
}

.entry-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.entry-title a:hover {
    color: #3498db;
}

.entry-meta {
    color: #7f8c8d;
    font-size: 14px;
    margin-bottom: 16px;
}

.entry-meta span {
    margin-right: 16px;
}

.read-more {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.read-more:hover {
    background: #2980b9;
}

/* Single post styles */
.single-post {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 32px;
    margin-bottom: 32px;
}

.entry-content {
    margin: 24px 0;
    line-height: 1.8;
}

.entry-content p {
    margin-bottom: 16px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin: 32px 0 16px;
    color: #2c3e50;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Navigation */
.post-navigation {
    margin: 32px 0;
}

.post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
}

.post-navigation a {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 4px;
    text-decoration: none;
    color: #2c3e50;
    transition: background 0.3s ease;
}

.post-navigation a:hover {
    background: #e9ecef;
}

/* Comments */
.comments-area {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 32px;
    margin-top: 32px;
}

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

.comment {
    border-bottom: 1px solid #eee;
    padding: 16px 0;
}

.comment:last-child {
    border-bottom: none;
}

/* Widgets */
.widget {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 24px;
    margin-bottom: 32px;
}

.widget-title {
    color: var(--text);
    margin-bottom: 16px;
    font-family: Krona One;
    font-weight: 400;
    font-size: 16px;
    line-height: 22.1px;
    letter-spacing: 0px;

}


.footer-main {
    padding:0 0  48px 0;
}

/* Footer Grid */
.footer-column {
    display: flex;
    flex-direction: column;
    padding: 70px 50px 0 50px  ;
}
.footer-column.footer-newsletter-column{
    
    padding: 70px 00px 0 50px  ;
}
.footer-logo-column {
    align-items: flex-start;
    padding: 0;
}

.footer-logo a {
    text-decoration: none;
    color: var(--text);
}

.footer-logo img {
    max-width:540px;
    width: 100%;
    height: auto;
}

.footer-logo h3 {
    color: var(--text);
    font-size: 24px;
    margin: 0;
}

.footer-title {
    color: var(--text);
    font-family: Krona One;
    font-weight: 400;
    font-size: 16px;
    line-height: 22.1px;
    letter-spacing: 0px;
}

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

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu li a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: var(--font-family);;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 24.48px;
    letter-spacing: 1px;

}

.footer-menu a:hover {
    color: var(--teal);
}

/* Newsletter */
.newsletter-description {
    color: var(--light-pink);
    margin-bottom: 24px;
    line-height: 1.6;
}

.newsletter-form {
    margin-bottom: 32px;
}

.newsletter-input-group {
    position: relative;
    display: flex;
    background: white;
    border-radius: 50px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 50px;
    background: transparent;
    color: var(--text);
    font-size: 16px;
    outline: none;
    font-family: var(--font-family);
}

.newsletter-form input[type="email"]::placeholder {
    color: #999;
    font-family: var(--font-family);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
}
.block-item {
    transition: all 0.3s ease;
    min-height: 400px;
    border-radius: 40px;
}


.block-title {
    font-size: 24px;
    line-height: 1.3;
}

.block-description {
    font-size: 20px;
    line-height: 1.6;
}
.join-left-title{
    margin-bottom: 40px;
    font-family: Krona One;
    font-weight: 400;
    font-style: Regular;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 28px;
    letter-spacing: 0.5px;
    text-align: center;

}
.join-step-description{

}
/* Responsive adjustments - moved to media queries section */

.newsletter-button {
    position: absolute;
    right: 4px;
    top: 0px;
    bottom: 0px;
    width: 42px;
    background: none;
    height: 42px;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 18px;
}

.newsletter-button:hover {
    background: var(--pink);
    transform: scale(1.05);
}

.newsletter-button:active {
    transform: scale(0.95);
}

/* Social Media */
.footer-social {
    display: flex;
    gap: 16px;
}


.join-steps{
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.icom_image{
    width: 80px;
    height: 80px;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    border-radius: 16px;
}
.join-steps .join-step{
    width: calc(50% - 10px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}


/* Footer Bottom */
.footer-bottom {
    padding: 24px 0 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-payment {
    flex: 1;
}

.payment-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.payment-icon {
    display: inline-block;
    font-size: 24px;
    padding: 4px;
    background: #34495e;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.payment-icon:hover {
    transform: scale(1.1);
}

.footer-copyright {
    flex: 1;
    text-align: center;
}


.hero-content.text-center .hero-subheadline{
    margin-left: auto;
    margin-right: auto;
}

.hero-content.text-center .d-flex {
    display: flex;
    justify-content: center;
}

.footer-legal {
    flex: 1;
    text-align: right;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}



/* Responsive styles moved to media queries section */

/* Icon Container Block Styles */
.icon-container-block {
    /* Animation handled by AOS */
}


.icon-item-wrapper {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}


.icon-image-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    padding: 30px;
    transition: all 0.3s ease;
}


.icon-image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.icon-label-semicircle {
    display: block;
    overflow: visible;
    width: 140px;
    font-size: 15px;
    fill: #E4AEB0;
}
.icon-label-semicircle path {
    fill: none;
}

/* Responsive adjustments - moved to media queries section */

/* Hover effects for different background colors */
.icon-image-container.bg-salmon:hover {
    background-color: var(--pink) !important;
}

.icon-image-container.bg-yellow:hover {
    background-color: var(--salmon) !important;
}

.icon-image-container.bg-teal:hover {
    background-color: var(--salmon) !important;
}

.icon-image-container.bg-light-pink:hover {
    background-color: var(--pink) !important;
}

.icon-image-container.bg-pink:hover {
    background-color: var(--salmon) !important;
}

.icon-image-container.bg-white:hover {
    background-color: var(--light-pink) !important;
}

/* ========================================
   WOOCOMMERCE PRODUCT CARDS
======================================== */

/* Product Card Container */
.woocommerce-product-card {
    border-radius: 40px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}



/* Product Image */
.woocommerce-product-card .product-image {
    position: relative;
    width: 100%;
    height: 440px;
    overflow: hidden;
    cursor: pointer;
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 40px;
}

.woocommerce-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
}


/* Product Info */
.woocommerce-product-card .product-info {
    padding: 20px 0;
}

.woocommerce-product-card .product-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.woocommerce-product-card .product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.woocommerce-product-card .product-title a:hover {
    color: var(--salmon);
}

.woocommerce-product-card .product-price {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--salmon);
    margin-bottom: 15px;
}

/* Color Variations */
.woocommerce-product-card .color-variations {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.woocommerce-product-card .color-variation {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.woocommerce-product-card .color-variation:hover {
    transform: scale(1.1);
    border-color: var(--salmon);
}

.woocommerce-product-card .color-variation.active {
    border-color: var(--salmon);
    border-width: 3px;
}

.woocommerce-product-card .color-variation.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

/* Shop Now Button */
.woocommerce-product-card .shop-now-btn {
    width: 100%;
    background: var(--salmon);
    color: white;
    border: none;
    padding: 11px 35px;
    border-radius: 40px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    text-align: center;
    height: 47px;
	align-items: center;
	justify-content: center;
}

.woocommerce-product-card .shop-now-btn:hover {
    background: var(--dark-salmon);
    transform: translateY(-2px);
/*     box-shadow: 0 4px 12px rgba(238, 131, 128, 0.3); */
    color: white;
    text-decoration: none;
}

/* Product Grid */
.woocommerce-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin: 20px 0;
}

/* Responsive Design - moved to media queries section */

/* WooCommerce Integration */
.woocommerce .woocommerce-product-card {
    margin-bottom: 20px;
}

.woocommerce-page .woocommerce-product-card {
    margin-bottom: 20px;
}

/* ========================================
   RESPONSIVE MEDIA QUERIES
======================================== */

/* Mobile First - 768px and below */
@media (max-width: 768px) {
    /* Grid System */
    .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
    
    /* Order utilities */
    .order-md-1 { order: 1; }
    .order-md-2 { order: 2; }
    .order-md-3 { order: 3; }
    .order-md-4 { order: 4; }
    .order-md-5 { order: 5; }
    .order-md-6 { order: 6; }
    .order-md-7 { order: 7; }
    .order-md-8 { order: 8; }
    .order-md-9 { order: 9; }
    .order-md-10 { order: 10; }
    .order-md-11 { order: 11; }
    .order-md-12 { order: 12; }
    
    /* Testimonials Slider */
    .testimonials-slider-block {
        padding: 2rem 1rem;
    }
    
    .testimonials-slider-container {
        padding: 0 40px;
    }
    
    .testimonial-card {
        min-height: 250px !important;
    }
    
    .testimonials-nav-next,
    .testimonials-nav-prev {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .testimonials-nav-next {
        right: 5px;
    }
    
    .testimonials-nav-prev {
        left: 5px;
    }
    
    /* Flavors Grid */
    .flavors-grid-block {
        padding: 2rem 1rem;
        min-height: 400px;
    }
    
    .flavor-item {
        min-height: 300px;
        margin-bottom: 2rem;
    }
    
    .flavor-image {
        height: 200px;
    }
    
    .buttons-section .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    /* Meet Mom Block */
    .meet-mom-block {
        padding: 2rem 1rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin-bottom: 1rem;
    }
    
    /* Why Different Block */
    .why-different-block {
        padding: 2rem 1rem;
    }
    
    .block-item {
        margin-bottom: 2rem;
    }
    
    .block-image-container {
        margin-bottom: 1rem;
    }
	

	
	
    
    /* Header Mobile */
    .header-content {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .header-logo {
        flex: 1;
        min-width: 0;
    }
    
    .header-nav {
        flex: 1;
        min-width: 0;
    }
    
    .header-actions {
        flex: 1;
        min-width: 0;
        justify-content: flex-end;
    }
    
    /* Icon Container */
    .icon-image-container {
        width: 60px;
        height: 60px;
        padding: 15px;
    }
    
    .icon-image-container img {
        width: 30px;
        height: 30px;
    }
    
    .icon-label-semicircle {
        font-size: 12px;
        padding: 6px 12px 10px 12px;
        min-width: 50px;
        max-width: 80px;
    }
    
    /* WooCommerce Products */
}

/* Tablet - 768px to 991px */
@media (min-width: 768px) and (max-width: 991px) {
    .testimonial-card {
        min-height: 280px;
    }
    
    .flavor-item {
        min-height: 350px;
    }
    
    .icon-label-semicircle {
        font-size: 13px;
        padding: 8px 14px 12px 14px;
        min-width: 60px;
        max-width: 90px;
    }
}
.block-image-container{
        width: 100%;
}
.quote-icon-left{
    left:15px;
    top:-50px;
}
.quote-icon-right{
    right:15px;
    bottom:-50px;
}

/* Join the LolliQts Block Styles */
.join-lolliqts-block {
    position: relative;
    overflow: hidden;
    background: #C7FEEB;
}

.join-intro-text {
    margin: 0 auto;
}

.join-step {

}



.join-right-image {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    object-fit: cover;
    width: 100%;
}




.join-footer-text {
    margin: 0 auto;
    max-width: 1100px;
    margin: auto;
    margin-bottom: 40px;
}

.join-social-links {
    gap: 1rem;
}

.join-social-link {
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.join-social-link:hover {
    text-decoration: underline;
}

.join-social-link:focus {
    outline: 2px solid var(--salmon);
    outline-offset: 2px;
    border-radius: 4px;
}


/* Responsive Design */
@media (max-width: 767px) {
    .join-step {
        flex-direction: column;
        text-align: center;
    }
    
    .join-step .col {
        margin-left: 0 !important;
        margin-top: 1rem;
    }
    
    .join-step img {
        margin: 0 auto;
    }
    
    .join-social-links {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}


/* Focus states for accessibility */
.join-social-link:focus {
    outline: 2px solid var(--salmon);
    outline-offset: 2px;
}

/* Loading state */
.join-step.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Error state */
.join-step.error {
    border: 2px solid #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
}

/* Success state */
.join-step.success {
    border: 2px solid #28a745;
    background-color: rgba(40, 167, 69, 0.1);
}









/* Desktop - 992px and above */
@media (min-width: 992px) {
    /* Grid System */
    .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
    
    /* Order utilities */
    .order-lg-1 { order: 1; }
    .order-lg-2 { order: 2; }
    .order-lg-3 { order: 3; }
    .order-lg-4 { order: 4; }
    .order-lg-5 { order: 5; }
    .order-lg-6 { order: 6; }
    .order-lg-7 { order: 7; }
    .order-lg-8 { order: 8; }
    .order-lg-9 { order: 9; }
    .order-lg-10 { order: 10; }
    .order-lg-11 { order: 11; }
    .order-lg-12 { order: 12; }
    
    /* Flavors Grid */
    .flavor-item {
        min-height: 440px;
        justify-content: center;
    }
    
    /* Meet Mom Block */
    .meet-mom-block {
        padding: 4rem 2rem;
    }
    
    /* Why Different Block */
    .block-image-container img { 
        height: 382px;
        object-fit: cover;
        width: 100%;
    }
    
    /* Desktop Menu */
    .menu-toggle {
        display: none;
    }
    
    .main-menu {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
    
    .main-menu li {
        position: relative;
    }
    
    .main-menu a {
        color: var(--text);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }
    
    .main-menu a:hover {
        color: var(--salmon);
    } 
    
    .icon-label-semicircle {
        font-size: 14px;
        padding: 10px 16px 14px 16px;
        min-width: 70px;
        max-width: 100px;
    }
}

/* Large Desktop - 1200px and above */
@media (min-width: 1200px) {
    /* Grid System */
    .col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
    .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
    .col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-xl-9 { flex: 0 0 75%; max-width: 75%; }
    .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
    
    /* Order utilities */
    .order-xl-1 { order: 1; }
    .order-xl-2 { order: 2; }
    .order-xl-3 { order: 3; }
    .order-xl-4 { order: 4; }
    .order-xl-5 { order: 5; }
    .order-xl-6 { order: 6; }
    .order-xl-7 { order: 7; }
    .order-xl-8 { order: 8; }
    .order-xl-9 { order: 9; }
    .order-xl-10 { order: 10; }
    .order-xl-11 { order: 11; }
    .order-xl-12 { order: 12; }
}

/* Mobile Menu - 991px and below */
@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }
    
    .main-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .main-menu.active {
        display: block;
    }
    
    .main-menu li {
        border-bottom: 1px solid #eee;
    }
    
    .main-menu a {
        display: block;
        padding: 1rem;
        color: var(--text);
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    
    .main-menu a:hover {
        background-color: #f8f9fa;
    }
}

/* Footer Responsive - 767px and below */
@media (max-width: 767px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .newsletter-button {
        width: 100%;
    }
}

/* Meet Mom Block - Two Images Layout */
.meet-mom-images-container {
    position: relative;
    height: 100%;
}

.two-images-layout {
    display: flex;
    gap: 10px;
    height: 100%;
    position: relative;
}

.main-image-container {
    width: 70%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-right: 0;
    margin-left: auto;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.additional-image-container {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-48%) translateX(-21%) rotate(349deg);
    width: 321px;
    height: 394px;
    z-index: 2;
}

.additional-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
    opacity: 1;
}

/* Single Image Layout (fallback) */
.single-image-layout {
    height: 100%;
}

/* Meet Mom Block - Additional Image Styles (old) */
.meet-mom-left-container .additional-image {
    top: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    z-index: 2;
}

/* Custom Block Styles */
.custom-block {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-block-content {
    text-align: center;
    padding: 2rem;
}

.custom-block-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.custom-block-text {
    font-family: var(--font-family);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text);
    margin: 0;
}

/* Responsive height classes */
@media (max-width: 767px) {
    .custom-block.h-25 { height: 25vh !important; }
    .custom-block.h-50 { height: 50vh !important; }
    .custom-block.h-75 { height: 75vh !important; }
    .custom-block.h-100 { height: 100vh !important; }
    .custom-block.h-auto { height: auto !important; }
    .custom-block.min-h-100 { min-height: 100vh !important; }
    .custom-block.min-h-75 { min-height: 75vh !important; }
    .custom-block.min-h-50 { min-height: 50vh !important; }
}

/* Desktop height classes */
@media (min-width: 768px) {
    .custom-block.h-25 { height: 25vh; }
    .custom-block.h-50 { height: 50vh; }
    .custom-block.h-75 { height: 75vh; }
    .custom-block.h-100 { height: 100vh; }
    .custom-block.h-auto { height: auto; }
    .custom-block.min-h-100 { min-height: 100vh; }
    .custom-block.min-h-75 { min-height: 75vh; }
    .custom-block.min-h-50 { min-height: 50vh; }
}

/* Shop Archive Styles */
.shop-archive-section {
    padding: 60px 0;
    min-height: 100vh;
}

.shop-sidebar {
    position: sticky;
    top: 20px;
    padding: 20px 0;
}

.shop-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.categories-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.category-item {
    margin-bottom: 0.5rem;
}

.category-link {
    display: block;
    padding: 8px 0;
    font-family: var(--font-family);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.category-link:hover {
    color: var(--salmon) !important;
}

.category-count {
    color: #999;
    font-size: 0.9rem;
    margin-left: 5px;
}

.shop-content {
    padding-left: 20px;
}

.shop-page-title,
.category-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.products-grid {
    margin-bottom: 2rem;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    text-align: center;
    overflow: hidden;
    border-radius: 8px;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.product-title a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--salmon);
}

.product-price {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.product-actions .btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.shop-pagination .page-numbers {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    background: var(--white);
    color: var(--text);
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.shop-pagination .page-numbers:hover,
.shop-pagination .page-numbers.current {
    background: var(--salmon);
    color: var(--white);
    border-color: var(--salmon);
}

.no-products {
    padding: 60px 20px;
}

.no-products h3 {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.no-products p {
    font-family: var(--font-family);
    font-size: 1rem;
    color: #666;
}

/* Responsive Design for Shop Archive */
@media (max-width: 991px) {
    .shop-sidebar {
        position: static;
        margin-bottom: 2rem;
    }
    
    .shop-content {
        padding-left: 0;
    }
    
    .products-grid .col-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .shop-archive-section {
        padding: 40px 0;
    }
    
    .shop-title {
        font-size: 2rem;
    }
    
    .products-grid .col-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .product-image img {
        height: 250px;
    }
}

/* Our Famous Frozen Pops Block Styles */
.frozen-pops-block {
    position: relative;
    overflow: hidden;
}

.frozen-pops-title {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 3rem;
}

.event-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.event-image {
    text-align: center;
    overflow: hidden;
    border-radius: 8px;
	margin-bottom: 1rem;
}

.event-image-img {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.event-image__text {
    margin-top: .5rem;
    font-size: 18px;
    font-weight: 500;
	text-align: left;
}

.event-name {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.3rem;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.event-details {
    margin-bottom: 1.5rem;
}

.event-label {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    min-width: 60px;
}

.event-value {
    font-family: var(--font-family);
    font-size: 0.9rem;
    margin-left: 8px;
}

.event-link .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Design for Frozen Pops */
@media (max-width: 991px) {
    .frozen-pops-title {
        font-size: 2rem;
    }
    
    .event-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .frozen-pops-block {
        padding: 60px 0;
    }
    
    .frozen-pops-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .event-image-img {
        height: 180px;
    }
    
    .event-name {
        font-size: 1.1rem;
    }
}

/* Content Image Block Styles */
.content-image-block {
    position: relative;
    overflow: hidden;
}

.content-wrapper {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-title {
    font-family: Krona One;
    font-weight: 400;
    font-style: Regular;
    font-size: 48px;
    leading-trim: NONE;
/*     line-height: 100%; */
	    line-height: 120%;
    letter-spacing: 0px;

}

.content-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

/* Responsive Design for Content Image Block */
@media (max-width: 767px) {
    .content-image-block .row {
        flex-direction: column-reverse;
    }
    
    .content-wrapper {
        min-height: auto;
        margin-top: 2rem;
    }
    
    .content-title {
        font-size: 1.5rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
}

/* Icon Colors for Testimonials */
.icon-bg-white svg path {
    fill: #ffffff;
}

.icon-bg-salmon svg path {
    fill: #ff6b6b;
}

.icon-bg-yellow svg path {
    fill: #f8db53;
}

.icon-bg-teal svg path {
    fill: #20b2aa;
}

.icon-bg-light-pink svg path {
    fill: #ffb6c1;
}

.icon-bg-pink svg path {
    fill: #ff69b4;
}

.icon-bg-light-yellow svg path {
    fill: #ffffe0;
}

.icon-bg-cream svg path {
    fill: #f5f5dc;
}

.icon-bg-pale-yellow svg path {
    fill: #f0f8ff;
}

.icon-bg-rose svg path {
    fill: #ffc0cb;
}

.icon-bg-blush svg path {
    fill: #f0a0a0;
}

.icon-bg-mint svg path {
    fill: #98fb98;
}

.icon-bg-vanilla svg path {
    fill: #f3e5ab;
}

.icon-bg-lavender svg path {
    fill: #e6e6fa;
}

.icon-bg-mint-green svg path {
    fill: #a8e6cf;
}

.icon-bg-light-salmon svg path {
    fill: #ffa07a;
}

.icon-bg-blue svg path {
    fill: #4169e1;
}

.icon-bg-green svg path {
    fill: #32cd32;
}

.icon-bg-purple svg path {
    fill: #9370db;
}

/* fixes */

@media (max-width: 1366px) {
	section .container h2 {
		font-size: 36px;
		line-height: 140%;
	}
}

@media (max-width: 768px) {
	.container {
		padding: 0 24px;
	}
}



/* why different */
.why-different__item {
	padding: 0;
}

.why-different__item.item--left {
	padding: 0 20px;
}
.why-different__item.item--right {
	padding: 0 20px;
}

.why-different-block .quote-margin {
	margin-top: 60px;
}

@media (max-width: 992px) {
	.why-different__item.item--left,
	.why-different__item.item--right {
		padding-left: 0;
		padding-right: 0;
	}
	
	.why-different-block .quote {
		padding: 0;
	}
	
	.why-different-block .quote-container {
		padding-left: 24px;
		padding-right: 24px;
	}
	
	.why-different-block .quote-text > * {
		font-size: 20px;
		line-height: 28px;
	}
	
	.why-different-block > .container {
		max-width: 800px;
	}
	
	.why-different__items {
		flex-direction: column;
	}

	.why-different__item {
		max-width: 100%;
	}

	.why-different__item .block-image-container img {
		width: 100%
	}
	
	.why-different-block .quote-icon-left,
	.why-different-block .quote-icon-right {
		scale: .7
	}
	
	.why-different-block .quote-icon-left {
		left: -5%;
	}
	
	.why-different-block .quote-icon-right {
		right: -3%;
		bottom: -40%;
	}
	
	
}

/* content-image block */

.content-image-block {
	padding: 160px 0;
}

.content-image-block .content-image__mobile {
	display: none;
}

.content-image-block .content--left {
	padding-right: 30px;
}

.content-image-block .content--right {
	padding-left: 30px;
}

@media (max-width: 1024px) {
	.content-image-block {
		padding: 60px 0;
	}

	
	.content-image-block .container__inner {
		flex-direction: column;
	}
	
	.content-image-block .container__inner > * {
		max-width: 100%;
		width: 100%;
	}
	
	.content-image-block .content-image__desktop {
		display: none;
	}
	
	.content-image-block .content-image__mobile {
		display: block;
		width: 100%;
		max-width: 100%;
	}
	
	.content-image-block .content-wrapper {
		gap: 30px;
	}
	
	.content-image-block h2 {
		margin-bottom: 0;
	}
	
	.content-image-block .content-text p {
		margin-bottom: 0;
	}
	
	.content-image-block .content-text {
		display: flex;
		flex-direction: column;
		gap: 48px;
	}
	
	.content-image-block .button-section {
		text-align: center
	}
}

@media (max-width: 767px) {
	.content-image-block .content-wrapper {
		margin-top: 0;
	}
}

/* join lolliqs block */
.join-lolliqts-block .join-top-decoration img,
.join-lolliqts-block .join-bottom-decoration img {
	width: 100%;
}

@media (max-width: 1024px) {
	.join-lolliqts-block .join-lolliqs-main {
		flex-direction: column
	}
	
	.join-lolliqts-block .join-lolliqs-main > * {
		max-width: 100%;
		width: 100%;
	}
	
	.join-lolliqts-block .join-step {
		text-align: left!important;
		margin-bottom: 0;
	}
	.join-lolliqts-block .join-step-block {
		padding: 24px;
	}
}

@media (max-width: 540px) {
	.join-lolliqts-block .join-steps {
		flex-direction: column;
	}
	
	.join-lolliqts-block .join-steps .join-step {
		width: unset;
	}
	
	.join-lolliqts-block .join-step-description {
		font-size: 16px;
		line-height: 28px;
		letter-spacing: 0.5px;
	}
	
}

/* header */
#site-navigation {
	height: 140px;
}

.header-content {
	padding: 40px 0;
}

#primary-menu {
	/* 	from 1029 to 992 margin 220px to 0, 1rem = 16px */
	margin-right: clamp(0rem, -14.698rem + 23.707vi, 13.75rem);
}

.header-cart {
	height: 140px;
}

.cart-link {
	padding: 8px 0;
}

.logo {
	position: static;
	width: 100%;
	height: auto;
}

.logo-mobile {
	display: none;
}

.menu-toggle-icon span {
	background-color: white
}
.menu-toggle-icon span:nth-child(2) {
	width: 66%
}

header .site-logo {
	/* 1920 to 992 */
	width: clamp(12.5rem, 3.815rem + 14.009vi, 20.625rem);
}

@media (max-width: 992px) {
	#primary-menu {
		display: none;
	}
	.site-branding {
		display: none;
	}
	#site-navigation {
		flex: unset;
		height: unset;
	}
	.site-logo {
		display: none;
	}
	.logo-mobile {
		display: block;
	}
	header .site-logo {
		/* 992 to 375 */
		width: clamp(6.875rem, 3.456rem + 14.587vi, 12.5rem)
	}
	.header-content {
		padding-top: 26px;
		padding-bottom: 26px;
	}
	.header-cart {
		height: unset;
	}
	
	.header--container {
		padding: 0;
	}
	
	.header--row {
		padding: 0;
		margin: 0;
	}
	
	.menu-toggle-icon {
		height: unset;
		gap: 8px;
	}
	
	.logo-mobile-container {
		position: relative;
		top: .75rem;
	}
	
	.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(1) {
		transform: rotate(45deg) translate(6px, 6px);
	}
	.menu-toggle[aria-expanded="true"] .menu-toggle-icon span:nth-child(3) {
		transform: rotate(-45deg) translate(8px, -8px);
	}
}

/* cart link */
.cart-link {
	position: relative;
}
.cart-count {
    position: absolute;
    bottom: 15%;
    right: -75%;
}

/* hero */

/* hardcode for home page */
@media (min-width: 768px) {
	body.home .hero-container > .row {
		max-width: 50%;
	}

}

.hero-block {
    position: relative;
    min-height: unset;
/*     display: unset; */
    align-items: unset;
    background-size: unset;
    background-position: unset;
    background-repeat: unset;
}

.hero-block-img {
	width: 100%;
}

.hero-block-img img {
    max-height: 860px;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 2.232558139534884;
}



.hero-container {
    position: absolute;
    left: 0;
    right: 0;
/*     top: clamp(10rem, -4.794rem + 17.329vi, 16rem) 1920 to 1366 from 256px to 160px */
	top: 16rem;
}

@media (max-width: 1366px) {
	.hero-headline {
		font-size: 48px;
	}
	
	.hero-block-img img {
		max-height: unset;
		height: 758px;
	}
}

@media (max-width: 992px) {
	.hero-container .mobile-width {
		flex: unset;
		max-width: 100%;
		width: 100%;
	}
}

@media (max-width: 768px) {
	.hero-block-img img {
		max-height: unset;
		height: 758px;
	}
}

@media (max-width: 550px) {
	.hero-headline {
		font-size: 32px;
		line-height: 40px;
	}
	.hero-container {
		top: 9rem;
	}
	.hero-subheadline {
		font-size: 18px;
	}
	
}




/* circles features */

.icon-container-block ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}


.icon-container-block .feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 180px;
}


/* Контейнер круга — занимают фиксированную ширину в пределах доступного пространства */
.icon-container-block .feature__img-bg {
/*   width: clamp(96px, 22vw, 160px); */
	width: clamp(4.375rem, 3.01rem + 5.825vi, 10rem);
  /* адаптивный размер круга */
  aspect-ratio: 1/1;
  display: block;
  position: relative;
}


/* Сама svg займет 100% контейнера */
.icon-container-block .feature__svg {
  width: 100%;
  height: 100%;
  display: block;
	overflow: visible
}


/* Иконка внутри круга — положим поверх круга */
.icon-container-block .feature__svg img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 48%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

/* Сброс для svg текста (будет управляться JS) */
.icon-container-block svg text {
  font-family: 'Krona One';
  font-weight: 500;
	fill: var(--pink);
	letter-spacing: 1px;
}

@media (max-width: 768px) {
	.icon-container-block ul.icon-container-block__list {
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 40px;
		column-gap: 58px;
	}
	
	.icon-container-block__list li.icon-container-block__item {
		flex: 0 1 calc(33.333% - 58px);
	}
}
@media (max-width: 550px) {
	.icon-container-block {
		padding: 40px 0;
	}
}

/* WooCommerce header fix */ 
body.woocommerce-page header.site-header {
	height: unset;
	position: unset;
	background-color: #fffaef;
}

body.woocommerce-page #content {
	background-color: #fffaef;
}

body.woocommerce-page header.site-header .cart-icon svg path {
	stroke: var(--text);
}

body.woocommerce-page #site-navigation .menu-item a {
	color: var(--text);
}

body.woocommerce-page .menu-toggle-icon span {
	background-color: var(--text);
}

/* contact us header fix */
body.page-id-13 header.site-header,
body.page-id-140 header.site-header,
body.page-id-406 header.site-header,
body.error404 header.site-header {
	height: unset;
	position: unset;
	background-color: #fffaef;
}

body.page-id-140 header.site-header {
	background-color: #fff6cc;
}

body.page-id-13 #content,
body.error404 #content{
	background-color: #fffaef;
}

body.page-id-13 header.site-header .cart-icon svg path,
body.page-id-140 header.site-header .cart-icon svg path,
body.page-id-406 header.site-header .cart-icon svg path,
body.error404 header.site-header .cart-icon svg path {
	stroke: var(--text);
}

body.page-id-13 #site-navigation .menu-item a,
body.page-id-140 #site-navigation .menu-item a,
body.page-id-406 #site-navigation .menu-item a,
body.error404 #site-navigation .menu-item a {
	color: var(--text);
}

body.page-id-13 .menu-toggle-icon span,
body.page-id-140 .menu-toggle-icon span,
body.page-id-406 .menu-toggle-icon span,
body.error404 .menu-toggle-icon span {
	background-color: var(--text);
}

/* woocommerce pages design */
body.woocommerce-page .wc-block-cart-items__row .wc-block-cart-item__image {
	padding-left: 0;
}

body.woocommerce-page .wc-block-cart-items__header .wc-block-cart-items__header-image {
	text-align: left;
}

body.woocommerce-page .wc-block-cart-items__header .wc-block-cart-items__header-total {
	padding-right: 0!important;
}

body.woocommerce-page .wc-block-cart-items__row .wc-block-cart-item__total {
	padding-right: 0!important;
}

body.woocommerce-page input,
body.woocommerce-page select,
body.woocommerce-page textarea {
	background-color: var(--cream)!important;
}

body.woocommerce-page .wc-block-checkout__actions.wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row button.wc-block-components-button {
    border-radius: 50px;
    font-size: 16px;
    font-family: 'Figtree';
    border: 2px solid var(--salmon);
    background-color: var(--salmon);
    color: white;
    padding: 11px 35px;
    font-weight: 700;
}

body.woocommerce-page .wc-block-components-quantity-selector > * {
	background-color: transparent !important;
}

body.woocommerce-page .wc-block-components-product-name {
	color: var(--text);
    font-weight: bold;
}


	body.woocommerce-page .wc-block-cart .wc-block-cart__submit-container--sticky:before {
		background-color: var(--text);

	}

	body.woocommerce-page .wc-block-cart__submit .wc-block-cart__submit-container {
		background-color: var(--text);
	}

	body.woocommerce-page .wc-block-cart__submit-container .wc-block-components-button {
		color: white;
		text-decoration: none;
	}


/* product page */
#main > .product {
	max-width: 1520px;
	    padding: 0 20px;
	margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 58%) 1fr;
	    gap: 30px;
        padding-bottom: 120px;
}

#main > .product .product_meta,
#main > .product .woocommerce-tabs {
	display: none;
}

#main .woocommerce-product-gallery {
	display: flex;
	flex-direction: row-reverse;
	gap: 12px;
}

#main .woocommerce-product-gallery .woocommerce-product-gallery__image a img {
	width: 100%;
	height: auto;
	object-fit: cover;
}



#main > .product .quantity {
  display: inline-flex;
  /* align-items: center; */
  gap: 6px;
}

/* Общий стиль кнопок */
#main > .product .qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  /* width: 34px; */
/*   height: 34px; */
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  user-select: none;
    padding: 15px;
    border: 1px solid #e5e5e5;
    background-color: transparent;
}


#main > .product .quantity input.qty {
  width: 56px;
/*   height: 34px; */
  text-align: center;
  padding: 0 6px;
  border: 1px solid #ddd;
  -moz-appearance: textfield; 
    background-color: transparent !important;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    font-family: 'Figtree';
    font-size: 16px;
    color: var(--text);
    font-weight: 500;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    font-family: 'Figtree';
    font-size: 16px;
    color: var(--text);
    font-weight: 500;
    border-right: 0;
    border-left: 0;
}


#main > .product .quantity input.qty::-webkit-outer-spin-button,
#main > .product .quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.product-content .woocommerce-Price-amount {
    font-size: 28px;
    font-weight: 500;
    line-height: 138%;
}

.flex-control-nav {
	list-style: none;
}



.flex-control-nav li img {
	border-radius: 8px;
}

.woocommerce-product-gallery__image img {
	border-radius: 40px;
}

.woo-variation-items-wrapper ul {
	gap: 6px;
}

.product_title.entry-title {
	font-family: 'Krona One'
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item) {
	box-shadow: none;
}

.woo-variation-items-wrapper .variable-items-wrapper li.variable-item {
	background: transparent!important;
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item):hover {
	box-shadow: var(--wvs-hover-item-box-shadow, 0 0 0 3px var(--text));
}

.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item).button-variable-item.selected:not(.no-stock) {
	box-shadow: var(--wvs-hover-item-box-shadow, 0 0 0 3px var(--text));
}

ul[data-attribute_name="attribute_pa_size"] span {
	font-weight: bold;
}

ul[data-attribute_name="attribute_pa_size"] li {
	box-shadow: var(--wvs-hover-item-box-shadow, 0 0 0 2px var(--text))!important;
}

.woo-variation-swatches ul[data-attribute_name="attribute_pa_size"] li:hover,
.woo-variation-swatches ul[data-attribute_name="attribute_pa_size"] li.selected {
	background-color: var(--text)!important;
}
ul[data-attribute_name="attribute_pa_size"] li:hover span,
ul[data-attribute_name="attribute_pa_size"] li.selected span {
	color: white;
}


.product-additional-info .product-shipping {
    font-size: 14px;
    line-height: 22px;
}


.this-product-features__item {
    display: flex;
    gap: 8px;
}

.this-product-features_wrapper {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    flex-wrap: wrap;
    font-weight: bold;
    margin-top: 16px;
    margin-bottom: 24px;
}

.this-product-features__text {
    font-size: 16px;
}

.this-product-features__img {
    display: flex;
    align-items: center;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 14px;
}

.stock-status .circle {
    width: 12px;
    height: 12px;
    background-color: #0d8756;
    border-radius: 50%;
}

.stock-status__msg {
    font-size: 14px;
    color: #0D8756;
}

.woocommerce-product-details__short-description {
	margin-top: 24px;
    margin-bottom: 24px;
}

.product-content .woocommerce-variation-add-to-cart {
    display: flex;
    justify-content: space-between;
	gap: 12px;
}

.product-content .quantity-wrapper {
	display: flex;
}

.product-content .single_add_to_cart_button {
	width: 100%;
    line-height: 30px;
    border: none;
    font-size: 20px;
    padding: 8px 0;
    font-family: 'Figtree';
    font-weight: bold;
    color: var(--salmon);
    background-color: #fde9de;
    border-radius: 30px;
    cursor: pointer;
}




.nav-megamenu .mega-tabs a.shop-all-item {
	font-weight: 500;
}


/* contact us page */
.contact {
    display: flex;
    justify-content: space-between;
    gap: 80px;
}

.contact input:not([type="submit"]) {
    width: 100%;
    padding: 24px;
    border-radius: 40px;
    border: none;
    font-size: 20px;
    /* line-height: 24px; */
    font-family: 'Figtree';
}

.contact .contact__right {
	min-width: 50%;
}

.contact .contact__left {
	display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact .contact__right img {
	display: block;
	width: 100%;
	height: auto;
}

.contact .contact-us-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact .contact-us-form__contacts {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.contact .contact__title {
    font-family: 'Krona One';
    font-size: 68px;
	line-height: 135%;
    font-weight: 500
}

.contact .contact__subtitle {
	/* letter-spacing: 0.5px; */
    font-size: 20px;
}

.contact input[type="submit"] {
	padding: 12px 40px;
    border-radius: 40px;
    border: none;
    font-size: 20px;
    font-family: 'Figtree';
    width: fit-content;
    font-weight: bold;
    color: white;
    background-color: var(--salmon);
	cursor: pointer;
	transition: .3s ease;
}
.contact input[type="submit"]:hover {
	background-color: #e17370;
}


.contact-us-page {
    gap: 60px;
    display: flex;
    flex-direction: column;
    padding: 120px 0;
}

.contact-us-page .contacts-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contact-us-page .contacts-items__item {
    padding: 32px 40px;
    gap: 24px;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
}

.contact-us-page .contacts-items__item {
    border-radius: 16px;
}

.contact-us-page .contacts-items__item.email {
    background-color: #FFF1F3;
}

.contact-us-page .contacts-items__item.phone {
    background-color: #E8FFF7;
}

.contact-us-page .contacts-items__item.socials {
    background-color: #fff7d0;
}



.contacts-items__item.socials .contact-items__content {
    display: flex;
    gap: 16px;
}

.contacts-items .contact-items__title {
    font-size: 18px;
}


.contacts-items .contact-items__content a {
    font-size: 24px;
    text-decoration: none;
    color: var(--text);
}

.contact-items__content svg {
    width: 33px;
    height: auto;
    aspect-ratio: 1;
}

.contact-us-form input::placeholder {
    color: var(--text)
}

@media (max-width: 1024px) {
    .contact {
        gap: 24px;
    }
    
    .contact .contact__left {
        gap: 24px;
    }
    .contact-us-page {
        padding: 24px 0;
    }
    .contact-us-page .contact {
        flex-direction: column-reverse;
    }

    .contact-us-page .contacts-items {
        grid-template-rows: repeat(3, 1fr);
        grid-template-columns: none;
        gap: 24px;
    }

    .contact .contact__title {
        font-size: 40px;
    }

    .contact .contact-us-form__contacts {
        flex-direction: column; 
    }

    .contact .contact__subtitle {
        letter-spacing: 0.5px;
        font-size: 18px;
    }

    .contact-us-page .contacts-items__item {
        padding: 24px 32px;
        gap: 16px;
    }

    .contact-us-form input::placeholder  {
        font-size: 18px;
    }

    .contacts-items .contact-items__content a {
        font-size: 20px;
    }

    .contacts-items .contact-items__title {
        font-size: 16px;
    }

    .contact-items__content svg {
        width: 20px;
    }

    .contacts-items__item.socials .contact-items__content {
        gap: 18px;
    }

    .contact input[type="submit"] {
        font-size: 18px;
    }
}

#main > .product .qty-btn.qty-decrease {
    border-top-left-radius: 32px;
    border-bottom-left-radius: 32px;
    border: 1px solid #e5e5e5;
    border-right: 0;
}

#main > .product .qty-btn.qty-increase {
    border-top-right-radius: 32px;
    border-bottom-right-radius: 32px;
    border: 1px solid #e5e5e5;
    border-left: 0;
}

.product .related.products .products {
    display: flex;
    gap: 8px;
}

.product .related.products .products .woocommerce-product-card .product-image {
        height: 265px;
}
.product .related.products h2 {
    margin-bottom: 15px;
}

table.variations {
    width: 100%;
}
table.variations span.woo-selected-variation-item-name {
    font-weight: 400!important;
    color: #427E69;
}


th[data-size-row] .size-chart-trigger {
    text-underline-offset: 4px;
}




button.buy-now-button {
    margin: 0!important;
    width: 100%;
    width: 100%;
    line-height: 30px;
    border: none;
    font-size: 20px;
    padding: 8px 0;
    font-family: 'Figtree';
    font-weight: bold;
    color: white;
    background-color: var(--salmon);
    border-radius: 30px;
    cursor: pointer;
}

.single_variation_wrap {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#sidebar {
    display: none;
}

.pop-pride {
    position: relative;
}
.pop-pride-bg img {
    width: 100%;
    height: auto;
    display: block;
}
.pop-pride__content {
    margin: 0 auto;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 768px;
    text-align: center;
}

.pop-pride__title {
    font-family: 'Krona One';
    font-size: 48px;
    color: white;
    font-weight: 400;
    line-height: 160%;
}
.pop-pride__text {
    font-family: 'Figtree';
    font-size: 20px;
    letter-spacing: 0.5px;
    line-height: 28px;
    color: white;
}

.refund-text {
    margin-top: 6px;
    margin-bottom: 24px;
}

.refund-text__item {
    display: flex;
}

.refund-text__item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.refund-text__icon {
    display: block;
}

.refund-text__text {
    font-size: 16px;
    font-weight: 500;
}


/* reviews */
.reviews {
    background-color: #88d6bb;
    padding-top: 60px;
    padding-bottom: 80px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reviews__heading {
    display: flex;
    justify-content: space-between;
}

.reviews__title {
    font-size: 48px;
    font-family: 'Krona One';
}

.reviews-slide {
    padding: 20px 16px;
    background-color: #fffaef;
    border-radius: 24px;
}

.reviews-slide__title {
    display: flex;
    gap: 8px;
    align-items: center;
}

.reviews-slide__title-name {
    font-size: 18px;
    font-weight: bold;
}

.reviews-slide__rating {
    display: flex;
    gap: 2px;
}

.reviews-slide__content {
    display: flex;
    justify-content: space-between;
}

.reviews-slide__title-status {
    font-size: 13.5px;
    font-weight: 500;
}
.reviews-slide__product {
    display: flex;
    align-items: center;
    padding-top: 13px;
    gap: 12px;
}
.revirews-slide__product-image img {
    display: block;
    width: 100%;
    height: auto;
}



.embla__container {
    display: flex;
    gap: 16px; 
}

.embla__slide {
    flex: 0 0 auto; 
    width: calc(100%/3);
}

@media (max-width: 768px) {
    .embla__slide {
        width: calc(100% - 8px); 
    }
}

.embla__pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 16px;
}

.embla__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
}

.embla__dot.is-selected {
    background-color: #ff7f50;
}

.embla__viewport {
    overflow: unset;
    width: 100%
}

.testimonials-navigation button {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
}

.testimonials-navigation button .reviews-controls-img img {
    display: block;
    width: 100%;
    height: auto;
}

.reviews__heading.container,
.reviews__body .container {
    max-width: 1620px
}

.reviews-slide__text {
    font-size: 16px;
    font-weight: 500;
}
.reviews-slide__content {
    gap: 12px;
}
.reviews-slide__left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.reviews-embla-pagination--mobile.testimonials-navigation {
    display: none;
}

.reviews-embla-pagination--mobile.testimonials-navigation {
    /* display: flex; */
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    gap: 12px;
}

.reviews-embla-pagination--mobile.testimonials-navigation .embla__pagination {
    margin-top: 0;
    gap: 12px;
}

.reviews-embla-pagination--mobile.testimonials-navigation .embla__pagination .embla__dot {
    width: 16px;
    height: 16px;
}


.reviews-embla-pagination--mobile .embla__dot {
    background-color: rgba(255, 255, 255, 0.75)
}
.reviews-embla-pagination--mobile .embla__dot.is-selected {
    background-color: white;
}

@media (max-width: 992px) {
    .reviews .slider-controls {
        display: none;
    }

    .reviews-embla-pagination--mobile.testimonials-navigation {
        display: flex;
    }
}

@media (max-width: 768px) {
    .reviews__heading {
        text-align: center;
    }
}

.woocommerce-product-card .shop-now-btn {
    width: fit-content
}

.products .color-variations {
    display: none
}
.products .product-title {
    font-size: 16px;
    font-weight: bold;
}
.woocommerce-product-card .product-price {
    color: var(--text);
    margin: 0;
}
.woocommerce-product-card .product-price span bdi {
    font-size: 16px;
    font-weight: bold
}

.woocommerce-product-card .product-info {
    padding: 12px 0;
}
.woocommerce-product-card .product-title {
    margin: 0;
}

.single-product #wc-square-digital-wallet {
    display: none!important
}




/* Базовая обёртка */
.product-gallery-accordions {
  margin-top: 40px;
}

/* Каждый аккордеон */
.pg-acc {
  border-bottom: 1px solid #d9e1d4;
  padding: 16px 0;
}

/* Заголовок аккордеона */
.pg-acc__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
    font-weight: bold;
    font-size: 24px;
  list-style: none;
  position: relative;
}

/* Скрываем стандартный маркер <summary> */
.pg-acc__title::-webkit-details-marker {
  display: none;
}

/* Иконка через ::after */
.pg-acc__title::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: url("/wp-content/uploads/2025/10/SVG-1.svg") no-repeat center/contain;
  transition: transform 0.2s ease, background-image 0.2s ease;
}

/* Когда аккордеон открыт — заменяем иконку */
.pg-acc[open] > .pg-acc__title::after {
  background-image: url("/wp-content/uploads/2025/10/SVG-2.svg");
  transform: rotate(180deg);
}

/* Контент аккордеона */
.pg-acc__body {
  padding-top: 12px;
  font-size: 16px;
  color: #444;

  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
}

.pg-acc__body > * {
  min-height: 0;
}

.pg-acc[open] .pg-acc__body {
  grid-template-rows: 1fr;
  opacity: 1;
}

.pg-acc__body.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}



/* famous frozen pops */
.event-card {
    background-color: unset;
    border: unset;
    box-shadow: unset;
    padding: unset;
}

.event-card:hover {
    transform: none;
    box-shadow: none;
}

.event-card .event-image-img {
    width: 100%;
    display: block;
    height: auto
}

.event-card:hover .event-image-img {
    transform: none;
}

.events-grid {
    justify-content: space-between
}

.events-grid .event-name {
    font-family: 'Krona One';
    font-size: 20px;
    font-weight: 500
}

.event-details__row {
    display: flex;
    justify-content: start;
    gap: 24px;
}

.event-details__row .event-label {
    min-width: unset;
}

.event-details__row > * {
    display: flex;
/*     align-items: center; */
    gap: 12px
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.event-details .event-value {
    font-family: var(--font-family);
    font-size: 18px;
    margin-left: 0;
    letter-spacing: 0.5px;
}

.frozen-pops-heading {
    max-width: 900px;
    margin: 0 auto;
}

.frozen-pops-heading .col-12 {
    text-align: center;
    margin-bottom: 80px;
}

.frozen-pops-heading h2 {
    margin-bottom: 12px;
    font-family: 'Krona One';
    font-size: 48px;
    font-weight: 400;
}




/* Основная обёртка */
.frozen-pops-embla {
  position: relative;
  margin-top: 40px;
}

/* Viewport */
.frozen-pops-embla .embla__viewport {
  overflow: hidden;
}

/* Контейнер слайдов */
.frozen-pops-embla .embla__container {
  display: flex;
  gap: 24px;
}

/* Каждый слайд */
.frozen-pops-embla .embla__slide {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 0;
}

@media (max-width: 768px) {
  .frozen-pops-embla .embla__slide {
           flex: 0 0 calc(100% - 8px);
  }
}

/* Контролы */
.frozen-pops-embla .embla__button {
  position: absolute;
top: 35%;
transform: translateY(-35%);
  width: 44px;
  height: 44px;
  border: 1px solid var(--salmon, #ff7f73);
  background-color: #ffe6e5;
  color: var(--salmon, #ff7f73);
  border-radius: 50%;
  font-size: 32px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s ease;
}

.frozen-pops-embla .embla__button:hover {
  background: var(--salmon, #ff7f73);
}

.frozen-pops-embla .embla__button:hover svg path {
    stroke: white
}

.frozen-pops-embla .embla__button--prev { left: -20px; }
.frozen-pops-embla .embla__button--next { right: -20px; }

@media (max-width: 1024px) {
  .frozen-pops-embla .embla__button--prev { left: 10px; }
  .frozen-pops-embla .embla__button--next { right: 10px; }
}

/* Скрытие неактивных кнопок */
.frozen-pops-embla .embla__button.is-disabled {
  opacity: 0;
  pointer-events: none;
}

.frozen-pops-controls-img img {
    display: block;
    width: 100%;
    height: auto;
}



.product .reset_variations {
    display: none!important;
}

.product .woocommerce-variation-add-to-cart {
    margin-top: 16px;
}

    #product-accordions--mobile {
        display: none
    }

    @media (max-width: 1366px) {
        .reviews__body .embla__slide {
            width: 60%;
        }
    }

@media (max-width: 992px) {
    #main > .product {
        grid-template-columns: minmax(320px, 49%) 1fr;
    }

    #main > .product .flex-control-nav.flex-control-thumbs img {
        width: 100px;
        height: 100px;
    }

    .product_title.entry-title {
        font-size: 24px;
    }

    .product .price bdi {
        font-size: 28px;
    }

    .this-product-features_wrapper {
        justify-content: unset;
        row-gap: 0;
    }

    .this-product-features__text {
        font-size: 16px;
    }

    table.variations label {
        font-size: 15px;
    }

    .woocommerce-product-details__short-description {
        font-size: 16px;
    }

    .pg-acc__title {
        font-size: 16px;
    }

    #main > .product {
        padding-top: 60px;
        padding-bottom: 60px;

        display: flex;
        flex-direction: column;
    }

    #product-accordions--desktop {
        display: none;
    }
    #product-accordions--mobile {
        display: block
    }




    .reviews__title {
        font-size: 32px;
        font-family: 'Krona One';
    }

    .reviews__body .embla__slide {
        width: 60%
    }


    .pop-pride-bg img {
        height: 653px;
        object-fit: cover;
    }

    .pop-pride__title {
        font-size: 32px;
    }


}



@media (max-width: 768px) {
    /* #main .woocommerce-product-gallery {
        flex-direction: column;
    } */

    #main > .product .flex-control-nav.flex-control-thumbs {
        /* display: flex; */
        gap: 8px;
    }

    #main > .product .flex-control-nav.flex-control-thumbs img {
        width: 75px;
        height: 75px;
    }

    .product .related.products h2 {
        font-size: 16px;
        line-height: 32px;
    }

    .reviews__body .embla__slide {
        width: 100%
    }


}

ul.products {
    overflow-x: auto;
}

.woocommerce-page .woocommerce-product-card {
    min-width: 200px;
}

@media (max-width: 500px) {
    #main .woocommerce-product-gallery {
        flex-direction: column;
    }

    #main > .product .flex-control-nav.flex-control-thumbs {
        display: flex;
        flex-wrap: wrap;
    }

    #main > .product {
        gap: 0;
    }

    .reviews-slide__content {
        flex-direction: column-reverse;
    }

    .reviews-slide__img img {
        width: 100%;
        height: auto;
        display: block
    }

    .reviews__body .embla__slide {
        width: 80%
    }
}

/* Klavyio override css */
/* footer .klaviyo-form > div.needsclick {
	position: relative!important;
} */

form.klaviyo-form > div:first-child > div > div:nth-child(2) {
	position: absolute!important;
	right: 16px;
}

form.klaviyo-form > div > div > div:nth-child(2) > button[type="button"] {
	background-color: transparent!important;
}

form.klaviyo-form input[type="email"]::placeholder {
    font-family: 'Figtree' !important;
	letter-spacing: 0.54px !important;
	font-weight: 500!important
}

#pop-loop-modal form.klaviyo-form input[type="email"] {
	height: 61px !important;
	padding-left: 24px!important
}

#pop-loop-modal form.klaviyo-form > div > div > div:nth-child(2) {
	padding: 18px 6px !important
}

@media (max-width: 600px) {
	form.klaviyo-form > div {
		min-height: 60px!important;
	}
	form.klaviyo-form > div > div:nth-child(2) {
		position: absolute!important;
		right: 16px;
/* 		top: -3px; */
	}
	form.klaviyo-form > div > div:nth-child(2) > div > button {
		background-color: transparent!important;
	}
	
}

/* #pop-loop-modal form.klaviyo-form input[type="email"]::-webkit-input-placeholder {
    font-family: 'Figtree' !important;
    letter-spacing: 0.54px !important;
    font-weight: 500 !important;
}

#pop-loop-modal form.klaviyo-form input[type="email"]:-ms-input-placeholder {
    font-family: 'Figtree' !important;
    letter-spacing: 0.54px !important;
    font-weight: 500 !important;
}

#pop-loop-modal form.klaviyo-form input[type="email"]::placeholder {
    font-family: 'Figtree' !important;
    letter-spacing: 0.54px !important;
    font-weight: 500 !important;
}


#pop-loop-modal form.klaviyo-form > div > div > div:nth-child(2) {
    position: absolute !important;
    right: 16px !important;
    padding: 18px 6px !important;
}

#pop-loop-modal form.klaviyo-form > div > div > div:nth-child(2) > button {
    background-color: transparent !important;
} */

/* smash balloon override css */



/* .smash-balloon-section {
	padding-top: 80px;
	padding-bottom: 80px;
}

#sb_instagram {
	max-width: 384px!important;
	position: relative!important;
	padding-bottom: 60px!important;
	
	    box-shadow: 0px 2px 20px 0px #00000025 !important;
	border-radius: 20px !important
}

.sb_instagram_header {
    position: absolute !important;
    bottom: 10px !important;
    padding: 0 !important;
	left: 16px !important;
}

#sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img, #sb_instagram .sb_instagram_header.sbi_medium .sbi_header_img img, .sb_instagram_header.sbi_medium .sbi_header_img, .sb_instagram_header.sbi_medium .sbi_header_img img {
        width: 40px !important;
        height: 40px !important;
}

#sb_instagram .sbi_follow_btn .fa, #sb_instagram .sbi_follow_btn svg {
	margin-right: 0 !important
}

#sb_instagram #sbi_load .sbi_follow_btn {
	margin-left: 0 !important
}

#sb_instagram .sbi_follow_btn a {
	margin-top: 0!important;
	padding: 0 !important;
}

#sb_instagram #sbi_load {
	position: absolute!important;
	right: 16px!important;
	bottom: 10px !important;
	width: fit-content!important
}

#sb_instagram .sb_instagram_header h3, .sb_instagram_header h3 {
	font-size: 16px !important;
	font-family: 'Figtree'!important;
	font-weight: 500 !important;
	color: var(--text) !important
}

#sb_instagram .sb_instagram_header .sbi_header_text, .sb_instagram_header .sbi_header_text {
	gap: 8px !important;
	
}

#sb_instagram .sbi_follow_btn a {
	background: transparent !important
}
#sb_instagram .sbi_follow_btn a svg path {
	fill: var(--text)!important
}
#sb_instagram svg:not(:root).svg-inline--fa {
	height: 24px !important
}

#sb_instagram #sbi_images {
	padding: 0 !important;
}

#sb_instagram #sbi_images .sbi_item {
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}
 */

#sb_instagram #sbi_images img {
	border-radius: 40px !important;
}

#sb_instagram .sbi_photo_wrap {
	border-radius: 40px!important;
}

#sb_instagram #sbi_images {
	gap: 30px !important;
	align-items: start !important;
}

#sb_instagram #sbi_load {
	display: none !important
}

#sb_instagram .sb_instagram_header {
	display: none !important
}

/* #sb_instagram, 
#sb_instagram #sbi_images, 
#sb_instagram .sbi_wrap, 
#sb_instagram .sbi_items, 
#sb_instagram .sbi_item {
  min-height: 0 !important;
  min-width: 0 !important;
  height: auto !important;
  max-height: none !important;
  -webkit-overflow-scrolling: auto !important;
  overflow: visible !important;
}

#sb_instagram #sbi_images img,
#sb_instagram .sbi_item img,
#sb_instagram .sbi_photo img {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: cover !important;
} */

#sb_instagram .sbi_photo_wrap:hover {
	border-radius: 40px!important;
}

#sb_instagram #sbi_images.sbi_carousel {
	padding: 0!important
}
#sb_instagram .sbi-owl-dots {
	padding: 0!important;
}

body.sbi_no_scroll {
    overflow: hidden;
}

body.sbi_no_scroll #sbi_lightbox {
    overflow-y: auto;
    min-height: 100vh;
}

@media (max-width: 1024px) {
	.wereongram {
		padding: 40px 0;
		gap: 8px;
	}
	#sb_instagram {
		padding-bottom: 0 !important;
	}
	
	#sb_instagram #sbi_images img {
		border-radius: 20px !important;
	}

	#sb_instagram .sbi_photo_wrap {
		border-radius: 20px!important;
	}
	#sb_instagram .sbi_photo_wrap:hover {
		border-radius: 20px!important;
	}

	
}

@supports (-webkit-overflow-scrolling: touch) {
  #sb_instagram #sbi_images {
    -webkit-transform: none !important;
    transform: none !important;
    -webkit-overflow-scrolling: auto !important;
  }
}



/* fixes */
@media (min-width: 992px) {
	.nav-megamenu.is-open #primary-menu {
		display: none;
	}
}

.woocommerce-notices-wrapper {
	display: none
}


.join-social-links a.btn {
	display: flex;
	align-items: center;
	gap: 10px;
}

.wp-block-separator.has-alpha-channel-opacity.is-style-dots {
	display: none;
}

.sb-instagram {
	max-width: 100%;
}

.wereongram {
	display: flex;
    flex-direction: column;
    gap: 20px;
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: #fffaef;
}

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

.wereongram .author {
    font-size: 20px;
    font-weight: bold;
}


.wear-movement-block .woocommerce-product-card {
	width: 100%;
}
.wear-movement-block .shop-now-btn {
	width: 100%;
	    
}

	.wereongram .author--mobile {
		display: none;
	}

@media (max-width: 800px) {
	.wereongram {
		padding-top: 40px;
		padding-bottom: 40px;
	}
	.wereongram .author {
		display: none;
	}
	
	.wereongram .wog-container {
		justify-content: center;
	}
	
	.wereongram .author--mobile {
		display: block;
	}
}

.wear-movement-block .woocommerce-product-card .shop-now-btn:hover {
	transform: none;
}



/* Скрываем блоки product-new, когда на странице корзины есть .cart-empty */
.woocommerce-cart:has(.cart-empty) .wp-block-woocommerce-product-new,
.woocommerce-cart:has(.cart-empty) [data-type="woocommerce/product-new"],
.woocommerce-cart:has(.cart-empty) .wp-block-woocommerce\\-product\\-new {
    display: none !important;
}

/* Если блок обёрнут иначе — можно скрыть по классу контейнера (вариант) */
.woocommerce-cart:has(.cart-empty) .lolliq-product-new,
.woocommerce-cart:has(.cart-empty) .product-new-block {
    display: none !important;
}





@media (max-width: 500px) {
	.hero-buttons {
		flex-wrap: nowrap;
		gap: 12px;
	}
	.hero-buttons a.btn {
		font-size: 18px;
		width: 100%;
		padding: 12px 28px;
	}
	
	.flavors-grid-block .flavor-btns {
		max-width: 100%;
		width: 100%;
		flex-basis: 100%;
	}
	
	.join-social-links a.btn {
		width: 100%;
		justify-content: center;
	}
	
	.content-image-block .button-section a.btn {
		width: 100%;
	}
}

.flavors-container .embla__container {
	flex-wrap: nowrap;
	gap: 0;
}

.wear-movement-block {
	overflow: hidden;
}
.wear-movement-block-embla-pagination--mobile {
	display: none;
}

.wear-movement-block__pagination .wear-movement-nav-btn {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
	background-color: #fad6d9;
	border: 1px solid #e38b85
}
.wear-movement-block__pagination .wear-movement-nav-btn:disabled {

	border: 1px solid #eca9aa;
	background-color: #ffe6e5;
}


@media (max-width: 1024px) {
	.flavors-container {
		overflow: hidden;
	}
	
	.flavors-container .embla__container {
		justify-content: initial;
		
	}
	
	.flavors-container .embla__slide {
		max-width: initial;
		flex-basis: initial;
		margin-bottom: 0;
	}
	
	.flavors-grid-block {
		padding-right: 0;
		padding-left: 0;
	}
	
	.flavors-container .flavor-item {
		justify-content: center;
	}
	
	.flavors-grid-block .embla__pagination {
		gap: 12px;
        margin-bottom: 40px;
        margin-top: 20px;
	}
	
	.flavors-grid-block .embla__pagination .embla__dot {
		width: 16px;
		height: 16px;
		background-color: #ffe6e4
	}
	
	.flavors-grid-block .embla__pagination .embla__dot.is-selected {
		background-color: #e38b85
	}
	
	.wear-movement-block .woocommerce-product-card {
		flex: 0 0 300px;
		-webkit-flex: 0 0 300px;
		min-width: 300px;
		box-sizing: border-box
	}
	
	.wear-movement-block-embla-pagination--mobile {
		display: flex;
	}
	
	.wear-movement-block-navigation {
		align-items: center;
		justify-content: center;
		margin-top: 24px;
		gap: 12px;
	}
	
	.wear-movement-block .embla__pagination .embla__dot {
		width: 16px;
		height: 16px;
		background-color: #ffe6e4
	}
	.wear-movement-block .embla__pagination .embla__dot.is-selected {
		background-color: #e38b85;
	}
	
	.wear-movement-block .embla__pagination img {
		display: block;
	}

	.wear-movement-block .embla__pagination {
		margin-top: 0;
		gap: 12px;
		
	}
	
	.wear-movement-block-navigation > button {
	    width: 44px;
		height: 44px;
		border: 1px solid var(--salmon, #ff7f73);
		background-color: #ffe6e5;
		color: var(--salmon, #ff7f73);
		border-radius: 50%;
		font-size: 32px;
		font-weight: bold;
		cursor: pointer;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	
	.wear-movement-block-navigation > button img {
		display: block;
	}
	
/* 	.embla__viewport {
		min-width: 0;
	} */

	
}

@media (max-width: 768px) {
	.flavors-container .embla__slide {
		width: 40%;
	}
	

	
	    .flavor-item {
        min-height: 383px;
	}
}

@media (max-width: 600px) {
	.flavors-container .embla__slide {
		width: 90%;
        padding-right: 8px;
/*         padding-left: 8px; */
	}
	
	.flavors-container .embla__container {
		gap: 0;
	}
	
    .wear-movement-block .woocommerce-product-card {
        width: 90%;
    }
	
	.wear-movement-block__pagination .wear-movement-nav-btn {
		width: 35px;
		height: 35px;
		
	}
}

.meet-mom-block .tatiana {
	height: clamp(45.375rem, 75.476rem + -25.97vi, 44.313rem);
}

.meet-mom-block .left-image-wrapper .position-absolute {
	right: calc(-1*clamp(7.313rem, 4.907rem + 3.879vi, 9.563rem));
  margin: auto;
  width: clamp(34.938rem, 27.188rem + 12.5vi, 42.188rem);
}


/* thankyou page woocommerce */
.woocommerce-order {
	padding-top: 40px;
	padding-bottom: 40px;
}
.woocommerce-order-received .woocommerce-order-overview.woocommerce-thankyou-order-details.order_details {
	list-style: none;
}
.woocommerce-table {
	width: 50%;
}
.woocommerce-order-received table.woocommerce-table--order-details,
.woocommerce-order-received .woocommerce-table--order-details th,
.woocommerce-order-received .woocommerce-table--order-details td {
    border: 2px solid;
    border-collapse: collapse;
	padding: 8px;
	text-align: left;
}

.woocommerce-thankyou-grid__top-left {
	display: none;
}

.woocommerce-customer-details {
	display: none;
}

.woocommerce-order {
display: flex
;
    flex-direction: column;
    gap: 32px;
}

.woocommerce-addresses-bottom {
	grid-template-columns: initial!important;
	width: 50%;
}

.woocommerce-table__product-name.product-name a {
	color: var(--text)
}

	.woocommerce-order-overview-card,
	.woocommerce-address-box {
		padding-left: 0!important;
		padding-right: 0!important;
	}

@media (max-width: 992px) {
	.woocommerce-thankyou-grid {
		    grid-template-columns: 1fr!important;
	}
	
	.woocommerce-addresses-bottom {
		width: 100%;
	}
	
	.woocommerce-table {
		width: 100%;
		font-size: 18px;
	}
	

}

.testimonials-slider-block {
	    background-color: #f5c7ce;
}

.testimonials-slider-block .quote-icon {
	margin: 0;
}

.testimonials-slider-block .quote-text {
	margin: 0;
}

.testimonials-slider-block .testimonial-card {
	gap: 10px;
	    padding: 24px 39px;
	line-height: 36px;
}

.testimonials-slider-block .author-info {
    margin-top: auto;
}

@media (max-width: 992px) {
    .testimonials-slider-block .testimonials-slider-container {
       	padding: 0;
    }
	
	.testimonial-card .quote-text p {
		font-size: 20px;
		line-height: 30px;
	}
	
	.testimonials-slider-block .testimonial-card {
		padding: 24px 29px;
		
	}
}


.testimonials-slider-block-embla-pagination--mobile {
    display: none;
}

.testimonials-slider-block__pagination .testimonials-slider-block-nav-btn {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    background-color: #fad6d9;
    border: 1px solid #e38b85;
}
.testimonials-slider-block__pagination .testimonials-slider-block-nav-btn .reviews-controls-img {
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonials-slider-block__pagination .testimonials-slider-block-nav-btn:disabled {
    border: 1px solid #eca9aa;
    background-color: #ffe6e5;
}

	.frozen-pops-subtitle,
.wear-movement-description {
	line-height: 28px;
	letter-spacing: 0.5px;
}

/* Стили для max-width 1024px */
@media (max-width: 1024px) {
    .testimonials-slider-block .woocommerce-product-card {
        flex: 0 0 300px;
        -webkit-flex: 0 0 300px;
        min-width: 300px;
        box-sizing: border-box;
    }

    .testimonials-slider-block-embla-pagination--mobile {
        display: flex;
    }

    .testimonials-slider-block-navigation {
        align-items: center;
        justify-content: center;
        margin-top: 24px;
        gap: 12px;
    }

    .testimonials-slider-block .embla__pagination .embla__dot {
        width: 16px;
        height: 16px;
        background-color: #ffe6e4;
    }

    .testimonials-slider-block .embla__pagination .embla__dot.is-selected {
        background-color: #e38b85;
    }

    .testimonials-slider-block .embla__pagination img {
        display: block;
    }

    .testimonials-slider-block .embla__pagination {
        margin-top: 0;
        gap: 12px;
    }

    .testimonials-slider-block-navigation > button {
        width: 44px;
        height: 44px;
        border: 1px solid var(--salmon, #ff7f73);
        background-color: #ffe6e5;
        color: var(--salmon, #ff7f73);
        border-radius: 50%;
/*         font-size: 32px; */
        font-weight: bold;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .testimonials-slider-block-navigation > button img {
        display: block;
    }
	
	.testimonials-slider-block--desktop-nav {
		display: none;
	}
	
	.testimonials-slider-block .heading {
		flex: 1;
		max-width: 100%;
	}
	
	.testimonials-title {
		text-align: center;
	}
}


@media (max-width: 600px) {
    .testimonials-slider-block__pagination .testimonials-slider-block-nav-btn {
        width: 35px;
        height: 35px;
    }
	
	.testimonials-slider-block .antipadding {
		padding: 0;
	}
}

/*  */
@media (max-width: 1366px) {
	.frozen-pops-block .event-details {
		gap: 8px;
	}
	
	.frozen-pops-block .event-details__row {
		flex-direction: column;
		gap: 8px;
	}
	
	.frozen-pops-block .event-details.event-value {
		font-size: 16px;
	}
}

@media (max-width: 1024px) {
	.frozen-pops-block .frozen-pops-desktop-controls {
		display: none;
	}
	
	.frozen-pops-block .embla__pagination {
        align-items: center;
        justify-content: center;
		margin-top: 0;
        gap: 12px;
	}
	.frozen-pops-block .embla__pagination .embla__dot {
        width: 16px;
        height: 16px;
		background-color: #ffe6e4;
	}
	.frozen-pops-block .embla__pagination .embla__dot.is-selected {
		background-color: #e38b85;
	}
	
	.frozen-pops-block .event-card {
		margin-bottom: 0;
	}
	
	.frozen-pops-embla .embla__container {
		display: flex;
		gap: 16px;
	}
	
	.frozen-pops-block > .container {
		padding: 0;
	}
	
	.frozen-pops-block .frozen-pops-heading {
		padding: 0 24px;
	}
	
	.frozen-pops-block .embla__viewport {
		padding: 0 24px;
	}
	
}

@media (max-width: 500px) {
	.frozen-pops-subtitle,
	.wear-movement-description {
		font-size: 16px;
	}
}

/* settings for our famous flavors background hover leafes colors */
.background-image-left,
.background-image-center,
.background-image-right {
	background-color: transparent!important
}

.bg-pink svg path {
	fill: var(--pink)
}
.bg-mint-green-darker svg path {
	fill: var(--mint-green-strong)
}
.bg-lavender-darker svg path {
	fill: var(--lavender-strong)
}
.bg-yellow-darker svg path {
	fill: var(--light-yellow-strong);
}


.background-image-left svg {
	width: clamp(10.286rem, 7.737rem + 9.515vi, 20.786rem);
	height: clamp(9.071rem, 4.529rem + 16.958vi, 27.786rem);
}

.flavors-bg-left {
    left: calc(-1 * clamp(3.214rem, 3.994rem + -2.913vi, 0rem));
}

.background-image-right svg {
	width: clamp(19.643rem, 18.187rem + 5.437vi, 25.643rem);
	height: clamp(16.429rem, 10.898rem + 20.647vi, 39.214rem)
}

@media (max-width: 1024px) {
	.flavors-bg-right {
		top: 700px;
		right: -152px;
	}
	
	.flavors-bg-center {
		display: none;
	}
	
	.flavors-grid-block__title-container {
		margin-bottom: 40px;
	}
	
	section .container h2 {
		font-size: 32px;
	}
	
	.flavors-container .flavor-name {
		margin-bottom: 0;
	}
}

.hero-buttons a.btn:hover {
    background-color: var(--salmon)!important;
    color: white !important;
    border-color: transparent!important;
}

.bg-lighter-pink {
    background-color: #fde9de;
	color: var(--salmon);
	border-color: var(--salmon);
}

.bg-lighter-pink:hover {
	color: white;
}

#meet_mom.meet-mom-block .button-section a.btn:hover {
	background-color: #e17370!important;
	border-color: #e17370!important;
}

.content-image-block .button-section a.btn:hover {
	background-color: #e17370!important;
	border-color: #e17370!important;
}


.join-lolliqts-block {
	padding: 180px 0;
}
.join-lolliqts-block .join-headline {
	font-size: 48px;
	line-height: 60px;
	font-family: 'Krona One'
}

@media (max-width: 1024px) {
	.join-lolliqts-block {
		padding: 80px 0;
	}
	.join-lolliqts-block .join-headline {
		font-size: 32px;
		line-height: 100%;
	}
	.join-intro-text {
		font-size: 18px;
	}
}

.single_add_to_cart_button,
.buy-now-button {
	transition: .5s ease;
}

.single_add_to_cart_button:hover,
.buy-now-button:hover {
	background-color: #e17370;
	border-color: #e17370;
	color: white;
}


.button-variable-item[title]:hover::after {
    display: none !important;
}

/* about us */
.about-us-page.meet-mom-block {
	padding-top: 80px;
	padding-bottom: 120px;
}

.about-us-page .meet-mom-block__container .tatiana {
	height: initial;
	margin-bottom: 0;
}

.about-us-page .meet-mom-block__container {
    align-items: initial;
}

.about-us-page .content-text {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.about-us-page .content-text p {
	margin-bottom: 0;
}

.about-us-page .meet-mom-block__container .main-image-container img {
	max-height: 550px;
}

.about-us-page .additional-image-container {
/* 	left: clamp(5.5rem, 11.524rem + -9.604vi, 0rem); */
		left: clamp(3.5rem, 11.524rem + -9.604vi, 0rem);
}

@media (max-width: 1440px) {
	.about-us-page .meet-mom-block__container .main-image-container img {
		max-height: 633px;
	}
}
@media (max-width: 1366px) {
	.about-us-page .additional-image-container {
		top: 80%;
	}
}
@media (max-width: 1024px) {
	.about-us-page .meet-mom-block__container .main-image-container img {
		max-height: 773px;
	}
}

.mobile-first-paragraph { display: none; }

@media (max-width: 992px) {
	.meet-mom-block__container {
		flex-direction: column;
		gap: 40px;
	}
	.meet-mom-block__container > div {
		max-width: 100%;
		width: 100%;
		padding: 0 15px;
	}
	
	.mobile-first-paragraph { display: block; }
	.meet-mom-right-content .right-content-block .content-text *:first-child {
		display: none;
	}
	
	.about-us-page .meet-mom-block__container .main-image-container img {
		max-height: clamp(24rem, 5.029rem + 70.827vi, 55.214rem)
	}
	
}



@media (max-width: 992px) {
    .about-us-page .additional-image-container {
        top: 50%;
    }
	.meet-mom-block.other-page {
		overflow: hidden;
	}
	.meet-mom-block.other-page .tatiana {
		height: initial
	}
	.meet-mom-block.other-page .left-image-wrapper {
		aspect-ratio: 1;
		max-width: 100%;
		max-height: 100%;
	}
	.meet-mom-block.other-page .left-image-wrapper img {
	    width: 90%;
/*     	right: -13%; */
		right: -21%;
	}
	.meet-mom-block.other-page .single-image-layout {
		height: initial;
		aspect-ratio: 1;
		max-width: 100%;
	}

}       

@media (max-width: 768px) {
	.meet-mom-block__container > div {
		padding: 0;
	}
    .about-us-page .additional-image-container {
 			top: 63%;
        margin-left: 40px;
        width: clamp(10.625rem, -2.495rem + 55.98vi, 24.375rem);
        height: clamp(13.125rem, -1.069rem + 60.56vi, 28rem);
    }
	
	.meet-mom-block .benefit-item {
        flex-direction: row;
        text-align: left;
	}
}

@media (max-width: 550px) {
	.about-us-page .additional-image-container {
		margin-left: 0;
	}
	
	.benefits-section > .row {
		flex-direction: column;
	}
	
	.benefits-section > .row > .col-6.mb-3 {
		max-width: 100%;
		width: 100%;
	}
	.meet-mom-block .row.mb-80 > .col-12 {
		padding: 0;
	}
	.meet-mom-block .meet-mom-headline {
		text-align: left;
		font-size: 32px;
	}
	
	.meet-mom-block .row.mb-80 {
		margin-bottom: 40px;
	}
	
	.meet-mom-right-content .content-text p,
	.mobile-first-paragraph p {
		font-size: 18px;
		letter-spacing: 0.5px;
		line-height: 28px;
	}
	
	.about-us-page.meet-mom-block {
		padding-top: 24px;
		padding-bottom: 60px;
	}
	
	.other-page.meet-mom-block {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	
	.other-page .tatiana {
		margin: 0;
	}
}
@media (max-width: 430px) {
	.about-us-page .additional-image-container {
        top: 75%;
		left: 40px;
	}
	
	.about-us-page .main-image-container {
		width: 90%;
	}
}

.about-us-page .additional-image-container {
    background: #90bcb0;
    border-radius: 32px;
}

/* OVERHEAD DUE TO CLIENT'S REQUEST. TEMPORARY HIDDEN */
body.single-product .reviews {
	display: none;
}

body.single-product .flavors-grid-block {
	display: none;
}

/* Override current css on main page */
.meet-mom-block .left-image-wrapper .position-absolute {
    width: 100%;
    margin: 0;
    object-fit: cover;
    height: 100%;
    border-radius: 40px;
}
@media (max-width: 992px) {
	.meet-mom-block.other-page .left-image-wrapper img {
	    width: 100%;
		right: initial;
	}
}

/* override on about us for additional image */
.additional-image {
    width: 70%;
    height: 75%;
    object-position: top;
}
.about-us-page .additional-image-container {
	background-color: transparent;
}
@media (min-width: 768px) and (max-width: 992px) {
	.additional-image {
		width: 100%;
		height: 100%;
	}
	.about-us-page .additional-image-container {
		left: clamp(5.5rem, 11.524rem + -9.604vi, 0rem);
	}
	
}

/* Fix utilitarity madness at join lolliqts */
.join-lolliqs-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 0 20px;
}
.join-step-block {
	height: 100%;
	border-radius: 40px;
}
.join-lolliqs-col {
	width: 100%;
	max-width: 100%;
	margin-bottom: 0;
}
.join-step {
	margin-bottom: 0;
}
.join-right-image {
	height: 100%;
}
.join-footer-text p {
	font-size: 20px;
	letter-spacing: 0.5px;
}

.join-footer-text p:not(:first-child) {
	margin-top: 24px;
}

@media (max-width: 992px) {
	.join-lolliqs-main {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.join-lolliqs-col {
		padding: 0;
	}
	.join-lolliqts-footer {
		margin-top: 24px;
	}
	.join-footer-text p {
		font-size: 17.5px;
	}

}