/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { background: #f9f8f8; font-size: 62.5%; scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; color: #142947; background: none; margin: 0; font-size: 1.6rem; line-height: 1.5; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; margin: 0; padding: 0; }
p { margin: 0; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; font-weight: 800; color: #142947; margin: 0; line-height: 1.2; }
h1 { font-size: clamp(4rem, 2.894rem + 5.529vw, 7.2rem); text-transform: uppercase; }
h2 { font-size: 3.2rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.6rem; }

/* ── Layout helpers ───────────────────────────────────────────────────────── */
.rc-container { max-width: 1246px; width: 100%; margin: 0 auto; padding: 0 2rem; }
.rc-section { padding-left: 2rem; padding-right: 2rem; }
.bg-white { background-color: #fff; }
.bg-light { background-color: #eef1f2; }
.bg-dark { background-color: #142947; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.text-white h1, .text-white h2, .text-white h3, .text-white h4 { color: #fff; }

/* Full-height absolute link overlay */
.absolute-link {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn-primary {
    display: inline-block;
    padding: 1.6rem 4.4rem;
    border-radius: 0 99rem 99rem 99rem;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    background-color: #142947;
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: background 0.2s;
}
.btn-primary:hover { background-color: #1e2233; color: #fff; }

.btn-secondary {
    display: inline-block;
    padding: 1.6rem 4.4rem;
    border-radius: 0 99rem 99rem 99rem;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    background: none;
    border: 0.2rem solid #eef1f2;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: background 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* WooCommerce button override */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .single_add_to_cart_button {
    display: inline-block;
    padding: 1.6rem 4.4rem;
    border-radius: 0 99rem 99rem 99rem;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff !important;
    background-color: #142947 !important;
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: background 0.2s;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce .single_add_to_cart_button:hover { background-color: #1e2233 !important; }

/* ── Header ───────────────────────────────────────────────────────────────── */
#site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1246px;
    margin: 0 auto;
    padding: 1.6rem 2rem;
    gap: 2rem;
}
.header-logo img { height: 40px; width: auto; }

/* Nav */
.header-nav { display: flex; align-items: center; }
.header-nav .nav-list { display: flex; gap: 3.2rem; align-items: center; }
.header-nav .nav-list a {
    font-size: 1.4rem;
    font-weight: 700;
    color: #142947;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}
.header-nav .nav-list a:hover { color: #00a8e2; }

/* Cart */
.header-cart a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #142947;
}
.header-cart .cart-count {
    background: #142947;
    color: #fff;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #142947;
    transition: all 0.3s;
}

/* ── Hero Section ─────────────────────────────────────────────────────────── */
.hero-section { overflow: hidden; padding-bottom: 0; }
.hero-inner {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 14rem;
}
.hero-top {
    display: flex;
    gap: 8rem;
    margin-bottom: 3.2rem;
    align-items: flex-start;
}
.hero-text {
    padding-top: 13.2rem;
    max-width: 424px;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}
.hero-text h1 { margin-bottom: 0; }
.hero-text p { color: #142947; font-size: 1.6rem; }
.hero-image { flex-shrink: 0; }
.hero-image img { min-width: 475px; }

.hero-bottom {
    display: flex;
    gap: 8rem;
    align-items: flex-start;
}
.hero-quote {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 500px;
}
.hero-quote img { width: 40px; flex-shrink: 0; margin-top: 4px; }
.hero-quote-text { display: flex; flex-direction: column; gap: 1.6rem; }
.hero-quote-text h3 { margin-bottom: 0; }
.hero-quote-text p { color: #142947; }

/* Hero – services grid */
.hero-services { display: flex; flex-direction: column; gap: 2.4rem; flex-shrink: 0; }
.hero-services h2 { text-align: center; }
.hero-services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
}

/* Service intro wrapper – white card with shadow */
.service-intro-wrapper {
    display: flex;
    flex-direction: column;
    row-gap: 1.6rem;
    padding: 3.2rem 1.6rem;
    background-color: #fff;
    border-radius: 0 3rem 3rem 3rem;
    box-shadow: 0 20px 38px 0 rgba(55, 76, 133, 0.1);
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: 0;
    align-items: center;
    justify-content: center;
    min-width: 19rem;
    position: relative;
}
.service-intro-wrapper img { width: 85px; height: 85px; object-fit: contain; }
.service-intro-name { font-size: 1.4rem; font-weight: 800; color: #142947; margin-top: auto; text-align: center; }

/* Hero decorative doodles */
.hero-doodle { position: absolute; z-index: -1; pointer-events: none; }
.hero-doodle--blue        { top: -12rem; left: -16rem; }
.hero-doodle--green       { right: 48rem; top: -15rem; }
.hero-doodle--lime        { right: -32rem; }
.hero-doodle--purple      { right: -8rem; bottom: 24rem; }
.hero-doodle--photo-left  { left: -50rem; top: 22rem; min-width: 64rem; mix-blend-mode: multiply; }
.hero-doodle--photo-right { top: -8rem; right: -116rem; min-width: 54.9rem; mix-blend-mode: multiply; z-index: 1; }

/* ── Popular Products Section ─────────────────────────────────────────────── */
.popular-section { overflow: hidden; padding-top: 8.8rem; padding-bottom: 8.8rem; }
.popular-inner { display: flex; flex-direction: column; align-items: center; }
.popular-inner h2 { margin-bottom: 2.4rem; }
.popular-desc { max-width: 716px; margin-bottom: 5.6rem; text-align: center; color: #142947; font-size: 1.6rem; }

/* Home product cards (bottle style) */
.popular-products-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5.8rem 9.5rem;
    margin-bottom: 5.6rem;
    width: 100%;
}
.iv-product-card {
    width: 24rem;
    min-width: 24rem;
    max-width: 24rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.iv-product-card__image-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.iv-product-card__image-wrap img,
.iv-product-card .iv-product-image {
    max-width: 13.2rem;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}
.iv-product-card:hover .iv-product-image { transform: translateY(-0.8rem); }
.iv-product-card__name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #142947;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    margin-bottom: 0.4rem;
}
.iv-product-card__volume {
    font-size: 1.4rem;
    font-weight: 700;
    color: #142947;
    text-align: center;
    margin-bottom: 0.8rem;
}
.iv-product-card__desc {
    font-size: 1.4rem;
    color: #142947;
    text-align: center;
    height: 5rem;
    min-height: 5rem;
    overflow: hidden;
    line-height: 1.6;
    margin-bottom: 1.6rem;
}
.iv-product-card__price {
    font-size: 2rem;
    font-weight: 800;
    color: #142947;
    text-align: center;
}
.iv-product-card__price del { font-size: 1.6rem; font-weight: 400; color: #c4c4c4; margin-right: 0.4rem; }

/* Archive product card */
.rc-product-card {
    background: #fff;
    border-radius: 1.2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
}
.rc-product-card:hover { box-shadow: 0 8px 32px rgba(20,41,71,0.12); }
.rc-product-card__image {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #f9f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.rc-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.rc-product-card__body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}
.rc-product-card__name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #142947;
}
.rc-product-card__volume {
    font-size: 1.3rem;
    font-weight: 600;
    color: #374c85;
}
.rc-product-card__desc {
    font-size: 1.4rem;
    color: #142947;
    line-height: 1.6;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.rc-product-card__footer {
    padding: 0 2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.rc-product-card__price {
    font-size: 2rem;
    font-weight: 800;
    color: #142947;
}
.rc-product-card__price del {
    font-size: 1.4rem;
    font-weight: 400;
    color: #c4c4c4;
    margin-right: 0.6rem;
}

/* ── How It Works Section ─────────────────────────────────────────────────── */
.how-section { padding-top: 8.8rem; padding-bottom: 8.8rem; }
.how-inner { display: flex; flex-direction: column; align-items: center; }
.how-inner h2 { margin-bottom: 5.6rem; text-align: center; }
.how-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1140px;
    gap: 2.4rem;
    flex-wrap: wrap;
    align-self: center;
}
.how-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    flex-basis: 20%;
    min-width: 200px;
    text-align: center;
    position: relative;
}
.how-step__icon {
    width: 107px;
    height: auto;
    margin-bottom: 0.8rem;
}
.how-step__number {
    font-size: 3.2rem;
    font-weight: 800;
    color: #142947;
    line-height: 1;
}
.how-step__label {
    font-size: 1.4rem;
    font-weight: 800;
    color: #142947;
}
a.how-step__label { color: #142947; }
a.how-step__label:hover { color: #00a8e2; }

/* ── Self-Care Lounge Section ─────────────────────────────────────────────── */
.selfcare-section {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 10rem;
    overflow: hidden;
}
.selfcare-inner { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }
.selfcare-inner h2 { margin-bottom: 5.6rem; text-align: center; }
.selfcare-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5.6rem 2.4rem;
    max-width: 1032px;
    margin-bottom: 5.6rem;
}
.selfcare-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    min-width: 155px;
    text-align: center;
}
.selfcare-item img { width: 72px; height: 72px; object-fit: contain; }
.selfcare-item span { font-size: 1.4rem; font-weight: 700; color: #142947; }
.selfcare-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.selfcare-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: grayscale(100%);
}

/* ── Extra Services Section ───────────────────────────────────────────────── */
.extra-section {
    background-size: cover;
    background-position: center;
    padding-top: 13.2rem;
    padding-bottom: 14.8rem;
    position: relative;
    overflow: hidden;
}
.extra-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(20, 41, 71, 0.88);
    z-index: 0;
}
.extra-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 5.6rem;
}
.extra-inner h2 { color: #fff; text-align: center; }
.extra-cards {
    display: flex;
    gap: 2.4rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}
.extra-card {
    border-top: 0.3rem solid #3cb8e2;
    border-right: 0.3rem solid #3cb8e2;
    border-left: 0.3rem solid #3cb8e2;
    border-top-right-radius: 10rem;
    max-width: 450px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 4.4rem 8rem 5.6rem;
    gap: 0;
}
.extra-card__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}
.extra-card__header img { width: 72px; height: 72px; object-fit: contain; }
.extra-card__header h3 { color: #fff; }
.extra-card__text { color: #fff; font-size: 1.4rem; line-height: 1.7; margin-bottom: 8rem; flex: 1; }
.extra-card__btn { margin-top: auto; }

/* ── Employees CTA Section ────────────────────────────────────────────────── */
.cta-section { position: relative; overflow: hidden; padding-top: 12.2rem; padding-bottom: 9.6rem; }
.cta-inner {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    position: relative;
    z-index: 2;
}
.cta-text { display: flex; flex-direction: column; gap: 3.2rem; max-width: 504px; }
.cta-text h2 { margin-bottom: 0; }
.cta-text h3 { font-size: 2.4rem; }
.cta-text p { font-size: 1.6rem; line-height: 1.7; color: #142947; }
.cta-bg-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    z-index: 0;
}
.cta-bg-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
#site-footer { background: #eef1f2; }
.footer-inner {
    max-width: 1246px;
    margin: 0 auto;
    padding: 11.2rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.footer-contact h2 { margin-bottom: 3.2rem; }
.footer-contact-intro { margin-bottom: 2.4rem; font-size: 1.6rem; }
.footer-contact-details { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2.4rem; }
.footer-contact-details a { font-size: 2rem; font-weight: 500; color: #142947; }
.footer-contact-details a:hover { color: #00a8e2; }
.footer-legal { display: flex; flex-direction: column; gap: 0.4rem; font-size: 1.4rem; }
.footer-legal a { text-decoration: underline; color: #142947; }

.footer-locations { display: flex; gap: 4rem; }
.footer-location h3 { margin-bottom: 1.6rem; }
.footer-location a { font-size: 1.4rem; line-height: 1.7; color: #142947; text-decoration: underline; }

.footer-form { display: flex; flex-direction: column; gap: 2.4rem; }
.footer-logo { margin-bottom: 1.6rem; }
.footer-logo img { height: 40px; width: auto; }
.footer-form h3 { margin-bottom: 0; }
.footer-form-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.footer-form-fields .full-width { grid-column: 1 / -1; }
.rc-input {
    width: 100%;
    padding: 1.2rem 1.6rem;
    border: 1.5px solid #cfd1dd;
    border-radius: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: #142947;
    background: #fff;
    outline: none;
    transition: border 0.2s;
}
.rc-input:focus { border-color: #142947; }
.rc-textarea { resize: vertical; min-height: 100px; }
.rc-checkbox { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 1.3rem; cursor: pointer; }
.rc-checkbox input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; }
.rc-checkbox a { text-decoration: underline; color: #142947; }
.form-notice { font-size: 1.3rem; padding: 1rem 1.4rem; border-radius: 0.6rem; }
.form-notice.success { background: #e6f4d7; color: #3c6c0a; }
.form-notice.error { background: #fde8e4; color: #9c2a13; }

/* ── Contact Form 7 ───────────────────────────────────────────────────────── */
.footer-form .wpcf7 { width: 100%; }
.footer-form .wpcf7 form { display: flex; flex-direction: column; gap: 1.2rem; }

/* Grid wrapper pre 2-stĺpcový layout */
.footer-form .cf7-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}
.footer-form .cf7-full { grid-column: 1 / -1; }


/* CF7 generuje <p> okolo každého pola – zrušíme margin */
.footer-form .wpcf7 p { margin: 0; }

/* Wrap controls sú block */
.footer-form .wpcf7 .wpcf7-form-control-wrap { display: block; width: 100%; }
.footer-form .wpcf7 label { display: flex; }

/* Submit wrapper (CF7 ho tiež obaľuje do <p>) */
.footer-form .wpcf7 form > p:last-of-type { margin-top: 0.4rem; }

/* Input / textarea */
.footer-form .wpcf7 input[type="text"],
.footer-form .wpcf7 input[type="email"],
.footer-form .wpcf7 input[type="tel"],
.footer-form .wpcf7 textarea {
    width: 100%;
    padding: 1.2rem 1.6rem;
    border: 1.5px solid #cfd1dd;
    border-radius: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: #142947;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.footer-form .wpcf7 input[type="text"]:focus,
.footer-form .wpcf7 input[type="email"]:focus,
.footer-form .wpcf7 input[type="tel"]:focus,
.footer-form .wpcf7 textarea:focus { border-color: #142947; }
.footer-form .wpcf7 textarea { resize: vertical; min-height: 10rem; }

/* Checkbox / acceptance */
.footer-form .wpcf7 .wpcf7-acceptance {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 1.3rem;
    cursor: pointer;
}
.footer-form .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin: 0;
}
.footer-form .wpcf7 .wpcf7-acceptance input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 1.6rem;
    height: 1.6rem;
    cursor: pointer;
    accent-color: #142947;
}
.footer-form .wpcf7 .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 1.3rem;
    color: #142947;
    line-height: 1.5;
}
.footer-form .wpcf7 .wpcf7-acceptance a { text-decoration: underline; color: #142947; }

/* Submit button */
.footer-form .wpcf7 input[type="submit"],
.footer-form .wpcf7 .wpcf7-submit {
    display: inline-block;
    padding: 1.6rem 4.4rem;
    border-radius: 0 99rem 99rem 99rem;
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    background-color: #142947;
    border: none;
    cursor: pointer;
    letter-spacing: 0.05em;
    transition: background 0.2s;
    align-self: flex-start;
}
.footer-form .wpcf7 input[type="submit"]:hover,
.footer-form .wpcf7 .wpcf7-submit:hover { background-color: #1e2233; }

/* Spinner */
.footer-form .wpcf7 .wpcf7-spinner {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    vertical-align: middle;
    margin-left: 1rem;
}

/* Response messages */
.footer-form .wpcf7 .wpcf7-response-output {
    margin: 0.8rem 0 0;
    padding: 1rem 1.4rem;
    border-radius: 0.6rem;
    font-size: 1.3rem;
    border: none !important;
}
.footer-form .wpcf7 form.sent .wpcf7-response-output {
    background: #e6f4d7;
    color: #3c6c0a;
}
.footer-form .wpcf7 form.failed .wpcf7-response-output,
.footer-form .wpcf7 form.invalid .wpcf7-response-output,
.footer-form .wpcf7 form.spam .wpcf7-response-output {
    background: #fde8e4;
    color: #9c2a13;
}

/* Validation errors */
.footer-form .wpcf7 .wpcf7-not-valid-tip {
    font-size: 1.2rem;
    color: #9c2a13;
    margin-top: 0.4rem;
    display: block;
}
.footer-form .wpcf7 input.wpcf7-not-valid,
.footer-form .wpcf7 textarea.wpcf7-not-valid { border-color: #9c2a13 !important; }

/* ── Shop / Archive ───────────────────────────────────────────────────────── */
.archive-header { padding-top: 6rem; padding-bottom: 4rem; }
.archive-header h1 { margin-bottom: 1.6rem; }
.woocommerce-products-header__title { display: none; }
.rc-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3.2rem;
    padding: 1.6rem 0;
    border-bottom: 1.5px solid #eef1f2;
}
.woocommerce-result-count { font-size: 1.4rem; color: #374c85; }
.woocommerce-ordering select {
    padding: 0.8rem 1.2rem;
    border: 1.5px solid #cfd1dd;
    border-radius: 0.6rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #142947;
    background: #fff;
    cursor: pointer;
}
.rc-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
    margin-bottom: 4.8rem;
}
.woocommerce nav.woocommerce-pagination {
    text-align: center;
    margin: 2.4rem 0;
}
.woocommerce nav.woocommerce-pagination ul {
    display: inline-flex;
    gap: 0.4rem;
    list-style: none;
    padding: 0;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    display: block;
    padding: 0.8rem 1.4rem;
    border: 1.5px solid #cfd1dd;
    border-radius: 0.6rem;
    font-size: 1.4rem;
    color: #142947;
    font-family: 'Montserrat', sans-serif;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
    background: #142947;
    color: #fff;
    border-color: #142947;
}

/* ── Single Product ───────────────────────────────────────────────────────── */
.single-product-section { padding-top: 8.8rem; padding-bottom: 8.8rem; }
.product-layout {
    display: flex;
    gap: 8rem;
    align-items: flex-start;
    margin-bottom: 7.2rem;
}
.product-image-col {
    flex: 0 0 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-image-col img {
    max-width: 280px;
    height: auto;
    display: block;
    margin: 0 auto;
}
.product-info-col { flex: 1; }
.product-info-col .product-title {
    font-size: 4rem;
    font-weight: 800;
    color: #142947;
    margin-bottom: 0.4rem;
}
.product-volume { font-size: 1.4rem; font-weight: 700; color: #374c85; margin-bottom: 0.4rem; }
.product-cat-tag { font-size: 1.4rem; font-weight: 700; color: #4f4bad; text-transform: uppercase; margin-bottom: 2.4rem; }
.product-cat-tag a { color: #4f4bad; }
.woocommerce .price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #142947;
    display: block;
    margin-bottom: 2.4rem;
}
.woocommerce del .amount { font-size: 1.8rem; color: #c4c4c4; font-weight: 400; }
.woocommerce ins { text-decoration: none; }

/* Ingredient icons (quick view in product column) */
.ingredients-quick { margin-top: 3.2rem; padding-top: 3.2rem; border-top: 1.5px solid #eef1f2; }
.ingredients-quick-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.4rem;
}
.ingredients-quick-heading h3 { font-size: 2rem; }
.btn-link { font-size: 1.3rem; font-weight: 600; color: #142947; text-decoration: underline; }
.ingredients-icons-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2.4rem;
}
.ingredient-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    min-width: 90px;
    max-width: 90px;
    text-align: center;
}
.ingredient-icon-item img {
    width: 60px;
    height: 45px;
    object-fit: contain;
}
.ingredient-icon-item span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #142947;
    line-height: 1.3;
}

/* Ingredient descriptions (#zlozenie) */
.zlozenie-section { padding-top: 0; padding-bottom: 16rem; }
.zlozenie-inner { display: flex; flex-direction: column; gap: 5.6rem; }
.zlozenie-inner h2 { margin-bottom: 0; }
.zlozenie-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}
.zlozenie-item { display: flex; gap: 2rem; align-items: flex-start; }
.zlozenie-item__icon { flex-shrink: 0; }
.zlozenie-item__icon img { width: 80px; height: 60px; object-fit: contain; }
.zlozenie-item__body { display: flex; flex-direction: column; gap: 1.6rem; }
.zlozenie-item__body h3 { font-size: 2rem; }
.zlozenie-item__body p { font-size: 1.5rem; line-height: 1.7; color: #142947; }

/* Reservation CTA on product page */
.product-reservation-cta {
    position: relative;
    padding: 6rem 4rem;
    border-radius: 1.6rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.4rem;
    margin-top: 4rem;
    background: #142947;
    color: #fff;
}
.product-reservation-cta h2 { color: #fff; }
.product-reservation-cta__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.product-reservation-cta__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.2; }
.product-reservation-cta__content { position: relative; z-index: 1; }

/* ── WooCommerce quantity field ───────────────────────────────────────────── */
.woocommerce .quantity input {
    width: 64px;
    padding: 1.2rem;
    border: 1.5px solid #cfd1dd;
    border-radius: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    color: #142947;
    text-align: center;
}

/* ── Category filter tabs ─────────────────────────────────────────────────── */
.category-filter { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.2rem; }
.category-filter a {
    padding: 0.8rem 2rem;
    border: 1.5px solid #cfd1dd;
    border-radius: 99rem;
    font-size: 1.3rem;
    font-weight: 600;
    color: #142947;
    transition: all 0.2s;
}
.category-filter a:hover,
.category-filter a.active {
    background: #142947;
    color: #fff;
    border-color: #142947;
}

/* ── Breadcrumbs ──────────────────────────────────────────────────────────── */
.woocommerce-breadcrumb {
    font-size: 1.3rem;
    color: #374c85;
}
.woocommerce-breadcrumb a { color: #374c85; }
.woocommerce-breadcrumb a:hover { color: #142947; }

/* ── Generic page ─────────────────────────────────────────────────────────── */
.page-content { padding-top: 6rem; padding-bottom: 8rem; }
.page-content h1 { margin-bottom: 3.2rem; }
.entry-content { font-size: 1.6rem; line-height: 1.8; }
.entry-content p { margin-bottom: 1.6rem; }
.entry-content h2 { margin-top: 3.2rem; margin-bottom: 1.6rem; }
.entry-content h3 { margin-top: 2.4rem; margin-bottom: 1.2rem; }

.brxe-container { max-width: 100% !important; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-top { gap: 4rem; }
    .hero-image img { min-width: 360px; }
    .rc-products-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .extra-card { padding: 4.4rem 4rem 5.6rem; }
}

@media (max-width: 768px) {
    html { font-size: 55%; }
    .header-nav .nav-list { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 2rem; gap: 1.6rem; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
    .header-nav .nav-list.open { display: flex; }
    .nav-toggle { display: flex; }
    .hero-top { flex-direction: column-reverse; align-items: center; }
    .hero-text { padding-top: 4rem; }
    .hero-image img { min-width: unset; max-width: 300px; margin: 0 auto; }
    .hero-bottom { flex-direction: column; }
    .hero-doodle { display: none; }
    .rc-products-grid { grid-template-columns: repeat(2, 1fr); }
    .how-steps { justify-content: center; }
    .product-layout { flex-direction: column; gap: 4rem; }
    .product-image-col { flex-basis: auto; max-width: 280px; margin: 0 auto; }
    .zlozenie-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-form-fields { grid-template-columns: 1fr; }
    .extra-cards { flex-direction: column; align-items: stretch; }
    .extra-card { padding: 4.4rem 3.2rem 5.6rem; }
}

@media (max-width: 650px) {
    .popular-products-grid { gap: 4rem; }
}

@media (max-width: 560px) {
    .iv-product-card { max-width: 15.5rem; min-width: 15.5rem; width: 15.5rem; }
    .iv-product-card__name { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .rc-products-grid { grid-template-columns: 1fr; }
    .selfcare-grid { gap: 3.2rem 1.6rem; }
}

@media (max-width: 991px) {
    #brxe-elrtdm { display: none !important; }
}

ins { color: #dc2626; }
del { font-size: 18px; }
.woocommerce del .amount { color: #000000 !important; }

/* Trustindex – fix pre blokovane ti-controls */
.hp-reviews-wrap { position: relative; z-index: 1000; }
.ti-widget-container { position: relative; z-index: 1000; }
.ti-widget * { pointer-events: auto; }
[class*="ti-controls"], [class*="ti-navigation"], [class*="ti-left"], [class*="ti-right"],
[class*="ti-prev"], [class*="ti-next"] { pointer-events: auto !important; cursor: pointer !important; }

.single-product .hp-reviews-wrap { padding-top: 0; }

