/*
Theme Name: Pakkpuit Custom
Theme URI: https://pakkpuit.ee
Author: Pakkpuit OÜ
Description: Kohandatud WordPress teema Pakkpuit saunamaterjali ettevõttele.
Version: 2.0.0
License: GNU General Public License v2 or later
Text Domain: pakkpuit-custom
*/

/* ── RESET & BASE ────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --wood: #b8722a;
    --wood-dk: #8a5218;
    --forest: #2c2825;
    --cream: #faf6ef;
    --warm: #f2ead8;
    --text: #2c2c2c;
    --muted: #6b6b6b;
    --white: #ffffff;
    --radius: 12px;
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ── SCREEN READER / ACCESSIBILITY ──────────────────── */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* ── HEADER ─────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 40px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(28, 26, 24, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-logo a,
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon,
.site-logo img,
.custom-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.site-header .logo-icon,
.site-header img,
.site-header .custom-logo {
    filter: none;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.site-header .logo:hover .custom-logo,
.site-header .logo:hover .logo-icon,
.site-header a:hover img {
    filter: none;
    opacity: 1;
}

/* ── NAV ─────────────────────────────────────────────── */
#site-navigation {
    display: flex;
    align-items: center;
}

#primary-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    padding: 0;
}

#primary-menu li {
    position: relative;
}

#primary-menu li a {
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 8px 12px;
    display: block;
    transition: color 0.2s;
    white-space: nowrap;
}

/* Desktop Top Level Links */
#primary-menu>li>a {
    color: rgba(255, 255, 255, 0.9);
}

#primary-menu>li>a:hover,
#primary-menu>li.current-menu-item>a,
#primary-menu>li.current-page-ancestor>a {
    color: #ffffff;
}

/* CTA (Kontakt) link */
#primary-menu li.menu-item-has-class-nav-cta>a,
#primary-menu>li:last-child:not(.lang-switcher-item)>a,
#primary-menu>li:nth-last-child(2):has(+ .lang-switcher-item)>a {
    background: var(--wood);
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 6px;
    margin-left: 8px;
    transition: background 0.2s !important;
}

#primary-menu>li:last-child:not(.lang-switcher-item)>a:hover,
#primary-menu>li:nth-last-child(2):has(+ .lang-switcher-item)>a:hover {
    background: var(--wood-dk) !important;
}

/* Language Switcher Styling */
#primary-menu>li.lang-switcher-item {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-left: 18px !important;
    padding: 0 0 0 12px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-bottom: none !important;
}

#primary-menu>li.lang-switcher-item>.lang-sep {
    display: none !important;
}

#primary-menu>li.lang-switcher-item>a.lang-link {
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, 0.6) !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    background: transparent !important;
    line-height: 1.2 !important;
    display: inline-block !important;
    letter-spacing: 0.05em !important;
    margin: 0 !important;
}

#primary-menu>li.lang-switcher-item>a.lang-link:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

#primary-menu>li.lang-switcher-item>a.lang-link.active {
    color: #ffffff !important;
    background: var(--wood) !important;
    box-shadow: 0 2px 8px rgba(184, 114, 42, 0.4) !important;
}

/* Submenu Toggle Button for Mobile */
.dropdown-toggle-btn {
    display: none;
}

/* Dropdown */
#primary-menu li ul {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(44, 40, 37, 0.06);
    border-radius: 8px;
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    box-shadow: 0 8px 32px rgba(44, 40, 37, 0.08);
    backdrop-filter: blur(10px);
}

#primary-menu li:hover>ul,
#primary-menu li:focus-within>ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#primary-menu li ul li a {
    font-size: 13px;
    padding: 10px 20px;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text);
    border-bottom: none;
}

#primary-menu li ul li a:hover {
    color: var(--wood);
    background: rgba(44, 40, 37, 0.03);
}

/* Sub-sub menus */
#primary-menu li ul ul {
    top: 0;
    left: 100%;
    margin-top: -8px;
}

/* ── MOBILE MENU TOGGLE ──────────────────────────────── */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 1001;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

body.nav-open .mobile-menu-toggle span {
    background: var(--forest);
}

body.nav-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

body.nav-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

body.nav-open {
    overflow: hidden;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.22s;
    cursor: pointer;
    border: none;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--wood);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--wood-dk);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(184, 114, 42, 0.35);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--forest);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(34, 30, 28, 0.65) 30%, rgba(34, 30, 28, 0.15) 100%),
        url('../images/2025/02/suvi03-scaled.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.85;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    padding: 100px 40px 0;
    width: 100%;
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wood);
    margin-bottom: 24px;
}

.hero-eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--wood);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 6vw, 76px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    max-width: 660px;
    margin-bottom: 24px;
}

.hero h1 em {
    font-style: italic;
    color: var(--wood);
}

.hero-sub {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    max-width: 460px;
    margin-bottom: 44px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    position: absolute;
    bottom: 48px;
    right: 40px;
    z-index: 2;
    display: flex;
    gap: 32px;
}

.hero-stat {
    text-align: right;
}

.hero-stat .num {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.hero-stat .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

/* ── SECTION HEAD ────────────────────────────────────── */
.section-head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--wood);
    margin-bottom: 16px;
}

.section-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 700;
    color: var(--forest);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-head p {
    color: var(--muted);
    font-size: 16px;
}

/* ── SERVICES ────────────────────────────────────────── */
.services {
    background: var(--cream);
    padding: 100px 40px;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.28s, box-shadow 0.28s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.42s;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.service-card:hover .service-img img {
    transform: scale(1.07);
}

.service-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.service-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 10px;
}

.service-body p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--wood);
    text-decoration: none;
    letter-spacing: 0.04em;
}

.service-link::after {
    content: '→';
    transition: transform 0.2s;
}

.service-card:hover .service-link::after {
    transform: translateX(4px);
}

/* ── PROMISE BAND ────────────────────────────────────── */
.promise {
    position: relative;
    padding: 120px 40px;
    overflow: hidden;
    background: var(--forest);
}

.promise-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to bottom, rgba(34, 30, 28, 0.4), rgba(34, 30, 28, 0.55)),
        url('../images/2025/02/tahku-3-suur.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.promise-inner {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.promise-text {
    flex: 1;
}

.promise-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.promise-text h2 em {
    font-style: italic;
    color: var(--wood);
}

.promise-text p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.72);
    max-width: 440px;
    line-height: 1.75;
    margin-bottom: 36px;
}

.promise-features {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(6px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--wood);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    margin: 0;
}

/* ── CONTACT SECTION ─────────────────────────────────── */
.contact {
    background: var(--cream);
    padding: 100px 40px 0;
}

.contact-wrap {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    padding-bottom: 80px;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 8px;
}

.contact-info .sub {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 40px;
}

.info-block {
    margin-bottom: 28px;
}

.info-block .label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--wood);
    margin-bottom: 6px;
}

.info-block p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
}

.info-block a {
    color: var(--text);
}

.info-block a:hover {
    color: var(--wood);
}

.person-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    margin-top: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.person-avatar {
    width: 52px;
    height: 52px;
    background: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.person-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--forest);
}

.person-info span {
    font-size: 13px;
    color: var(--muted);
}

/* Contact Form Box */
.contact-form-box {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.contact-form-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 6px;
}

.contact-form-box .form-sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e5ddd0;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text);
    background: var(--cream);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--wood);
    box-shadow: 0 0 0 3px rgba(184, 114, 42, 0.12);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: var(--forest);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.22s, transform 0.22s;
    font-family: 'Inter', sans-serif;
    margin-top: 4px;
}

.form-submit:hover {
    background: var(--wood);
    transform: translateY(-1px);
}

/* Form notices */
.pp-form-notice {
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
}

.pp-form-notice.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.pp-form-notice.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.pp-form-notice.spam {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

/* Hidden honeypot */
.pp-website-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* ── MAP ─────────────────────────────────────────────── */
.map-wrap {
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(20%);
}

/* ── FOOTER ──────────────────────────────────────────── */
.site-footer {
    position: relative;
    overflow: hidden;
    background: var(--forest);
    color: rgba(255, 255, 255, 0.6);
    padding: 56px 40px 32px;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/2025/03/suvi18.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    pointer-events: none;
}

.footer-top {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 32px;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
    max-width: 280px;
    line-height: 1.65;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* ── INNER PAGE LAYOUT (sidebar + content) ───────────── */
.page-wrap {
    min-height: 100vh;
}

.page-hero {
    background: var(--forest);
    padding: 120px 40px 60px;
    /* 72px header + extra space */
}

.page-hero-inner {
    max-width: 1240px;
    margin: 0 auto;
}

.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 8px;
}

.page-hero .breadcrumb {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.page-hero .breadcrumb a:hover {
    color: var(--wood);
}

.page-hero .breadcrumb span {
    color: var(--wood);
}

/* Content + Sidebar wrapper */
.content-sidebar-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 40px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.site-main {
    flex: 1;
    min-width: 0;
}

.sidebar-area {
    flex: 0 0 300px;
    width: 300px;
    position: sticky;
    top: 92px;
    /* header + margin */
}

/* Sidebar photo-card styles */
.sidebar-photo-box {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    margin-bottom: 24px;
}

.sidebar-photo-head {
    padding: 18px 20px 14px;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--forest);
    border-bottom: 2px solid var(--wood);
    letter-spacing: 0.02em;
}

.sidebar-photo-head a {
    color: var(--forest);
    text-decoration: none;
    transition: color 0.2s;
}

.sidebar-photo-head a:hover {
    color: var(--wood);
}

.sidebar-photo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(0, 0, 0, 0.05);
}

/* Single-column if only 1 item */
.sidebar-photo-grid:has(.sidebar-photo-card:only-child) {
    grid-template-columns: 1fr;
}

.sidebar-photo-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--text);
    background: var(--white);
    transition: opacity 0.2s;
    overflow: hidden;
}

.sidebar-photo-card:hover {
    opacity: 0.88;
}

.sidebar-photo-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--cream);
    position: relative;
}

.sidebar-photo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.38s ease;
    display: block;
}

.sidebar-photo-card:hover .sidebar-photo-img img {
    transform: scale(1.07);
}

/* Placeholder when no featured image */
.sidebar-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--warm), var(--cream));
}

.sidebar-photo-placeholder span {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--wood);
    text-transform: uppercase;
}

.sidebar-photo-label {
    padding: 10px 12px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--forest);
    line-height: 1.3;
    background: var(--white);
    letter-spacing: 0.02em;
}

/* Active / current page highlight */
.sidebar-photo-card.is-current .sidebar-photo-label {
    color: var(--wood);
    background: var(--cream);
}

.sidebar-photo-card.is-current::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--wood);
}

/* Keep old .sidebar-nav-box styles for widget-area fallback */
.sidebar-nav-box {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-nav-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--wood);
}

.sidebar-nav-box ul {
    list-style: none;
}

.sidebar-nav-box ul li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.sidebar-nav-box ul li:last-child {
    border-bottom: none;
}

.sidebar-nav-box ul li a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}

.sidebar-nav-box ul li a:hover,
.sidebar-nav-box ul li.current-page-item>a,
.sidebar-nav-box ul li.current-menu-item>a {
    color: var(--wood);
    padding-left: 8px;
}

/* Page content styles */
.entry-content {
    color: var(--text);
    line-height: 1.75;
}

.entry-content h1,
.entry-content h2 {
    font-family: 'Playfair Display', serif;
    color: var(--forest);
    margin-bottom: 16px;
    margin-top: 32px;
    line-height: 1.2;
}

.entry-content h1 {
    font-size: clamp(28px, 4vw, 42px);
    margin-top: 0;
}

.entry-content h2 {
    font-size: clamp(22px, 3vw, 32px);
}

.entry-content h3 {
    font-size: 20px;
    color: var(--forest);
    margin: 24px 0 12px;
    font-weight: 600;
}

.entry-content p {
    margin-bottom: 16px;
    color: var(--muted);
}

.entry-content img {
    border-radius: 8px;
    margin: 24px 0;
    width: 100%;
    height: auto;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
}

.entry-content table th {
    background: var(--forest);
    color: var(--white);
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
}

.entry-content table td {
    padding: 10px 16px;
    border-bottom: 1px solid #e5ddd0;
}

.entry-content table tr:nth-child(even) td {
    background: var(--cream);
}

/* ── CONTACT PAGE LAYOUT ─────────────────────────────── */
.contact-page-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 40px;
}

/* ── FULL WIDTH PAGE (no sidebar) ────────────────────── */
.page-full-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

    .promise-inner {
        flex-direction: column;
        gap: 48px;
    }

    .promise-features {
        flex: none;
        width: 100%;
    }

    .content-sidebar-wrap {
        flex-direction: column;
    }

    .sidebar-area {
        flex: none;
        width: 100%;
        position: static;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    #site-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        max-width: 320px;
        background: rgba(250, 246, 239, 0.98);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 40px 40px;
        transition: right 0.3s ease;
        box-shadow: -10px 0 40px rgba(44, 40, 37, 0.08);
        overflow-y: auto;
        z-index: 999;
        backdrop-filter: blur(20px);
    }

    body.nav-open #site-navigation {
        right: 0;
    }

    #primary-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    #primary-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(44, 40, 37, 0.06);
    }

    #primary-menu li a {
        font-size: 16px;
        padding: 14px 0;
        text-transform: none;
        letter-spacing: 0;
        color: var(--text);
    }

    #primary-menu li a:hover,
    #primary-menu li.current-menu-item>a,
    #primary-menu li.current-page-ancestor>a {
        color: var(--wood);
    }

    #primary-menu li ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(44, 40, 37, 0.03);
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 0 16px;
        display: none;
    }

    #primary-menu li.menu-open>ul {
        display: block;
    }

    #primary-menu li.has-children {
        position: relative;
    }

    #primary-menu li.has-children > a {
        padding-right: 50px !important;
    }

    .dropdown-toggle-btn {
        display: flex !important;
        position: absolute;
        right: 0;
        top: 2px;
        width: 48px;
        height: 44px;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        color: var(--text);
        cursor: pointer;
        z-index: 2;
        padding: 0;
    }

    .dropdown-toggle-btn svg {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: var(--text);
        opacity: 0.7;
    }

    .dropdown-toggle-btn:hover svg {
        opacity: 1;
        color: var(--wood);
    }

    #primary-menu li.menu-open > .dropdown-toggle-btn svg {
        transform: rotate(180deg);
        color: var(--wood);
        opacity: 1;
    }

    #primary-menu>li:last-child:not(.lang-switcher-item)>a,
    #primary-menu>li:nth-last-child(2):has(+ .lang-switcher-item)>a {
        background: var(--wood);
        border-radius: 6px;
        padding: 12px 20px;
        margin: 8px 0;
        text-align: center;
        color: var(--white) !important;
    }

    #primary-menu>li.lang-switcher-item {
        width: auto !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        padding: 20px 0 10px 0 !important;
        border-bottom: none !important;
        border-left: none !important;
        margin-left: 0 !important;
    }

    #primary-menu>li.lang-switcher-item>.lang-sep {
        display: none !important;
    }

    #primary-menu>li.lang-switcher-item>a.lang-link {
        font-size: 13px !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        color: var(--text) !important;
        padding: 6px 16px !important;
        border-radius: 4px !important;
        border: 1px solid rgba(44, 40, 37, 0.12) !important;
        background: transparent !important;
        line-height: 1.2 !important;
        display: inline-block !important;
        letter-spacing: 0.05em !important;
        text-align: center !important;
        margin: 0 !important;
    }

    #primary-menu>li.lang-switcher-item>a.lang-link:hover {
        background: rgba(44, 40, 37, 0.05) !important;
        color: var(--text) !important;
    }

    #primary-menu>li.lang-switcher-item>a.lang-link.active {
        color: #ffffff !important;
        background: var(--wood) !important;
        border-color: var(--wood) !important;
        box-shadow: 0 2px 8px rgba(184, 114, 42, 0.25) !important;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 0 20px;
    }

    .hero-content {
        padding: 100px 20px 0;
    }

    .hero-stats {
        display: none;
    }

    .hero-scroll {
        left: 20px;
    }

    .services,
    .contact,
    .promise {
        padding-left: 20px;
        padding-right: 20px;
    }

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

    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .content-sidebar-wrap {
        padding: 40px 20px;
    }

    .page-hero {
        padding: 100px 20px 40px;
    }

    .page-full-content,
    .contact-page-wrap {
        padding: 40px 20px;
    }
}

/* ── EXISTING PRODUCT PAGE WIDGET CSS COMPATIBILITY ─── */
/* Support for old .pp-* widget classes in HTML block content */
.pp-saunatoodete-intro-widget,
.pp-saunamaterjal-widget,
.pp-aknad-widget,
.pp-eripakkumised-widget,
.pp-lavalauad-widget,
.pp-saunavoodri-widget,
.pp-liistud-widget,
.pp-lavamoodulid-widget,
.pp-seljatoed-widget,
.pp-peaalused-widget,
.pp-porandarestid-widget,
.pp-ratirest-widget,
.pp-kasipuud-widget,
.pp-lambikaitsed-widget,
.pp-pingid-widget,
.pp-riietusruum-widget,
.pp-lavaseelikud-widget,
.pp-ehitusmaterjal-widget,
.pp-ehituspuit-widget {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    max-width: 100%;
}




/* ── WIDGET & DYNAMIC STYLES (EXTRACTED) ───────────────── */
.pp-ergo-seljatoed-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-ergo-seljatoed-widget h1,
.pp-ergo-seljatoed-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    cursor: pointer;
    transition: 0.3s;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
}

.pp-images-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 3px 0 0 0 #81532f;
}

.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pp-saunatoodete-intro-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #54595F;
}

.pp-saunatoodete-intro-widget h1 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 20px;
}

.pp-saunatoodete-intro-widget p {
    margin-bottom: 20px;
    font-size: 16px;
}

.pp-intro-box {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-left: 4px solid #2A2A2A;
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.pp-intro-box p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #2A2A2A;
}

.pp-intro-box p:last-child {
    margin-bottom: 0;
}

.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .pp-saunatoodete-intro-widget h1 {
        font-size: 30px;
    }

    .pp-intro-box {
        padding: 20px;
    }
}

.pp-saunapingid-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-saunapingid-widget h1,
.pp-saunapingid-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    cursor: pointer;
    transition: 0.3s;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
}

.pp-images-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pp-img-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 3px 0 0 0 #81532f;
}

.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pp-peaalused-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-peaalused-widget h1,
.pp-peaalused-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    cursor: pointer;
    transition: 0.3s;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
}

.pp-images-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 3px 0 0 0 #81532f;
}

.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pp-aknad-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-aknad-widget h1,
.pp-aknad-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-info-box {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-left: 4px solid #2A2A2A;
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.pp-images-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid #eaeaea;
}

.pp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pp-liistud-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-liistud-widget h1,
.pp-liistud-widget h2,
.pp-liistud-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    margin-top: 0;
}

.pp-liistud-widget h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pp-liistud-widget h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-liistud-widget h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.pp-liistud-widget p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #54595F;
}

.pp-liistud-widget ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
    color: #54595F;
}

.pp-liistud-widget li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* KVALITEEDIKLASSIDE GRID */
.pp-quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 40px;
}

.pp-quality-card {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 25px 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pp-quality-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.pp-quality-card h4 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

.pp-quality-card p {
    font-size: 14px;
    color: #54595F;
    margin-bottom: 0;
    line-height: 1.6;
}

/* FILTRID */
.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    align-items: center;
}

.pp-filter-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #2A2A2A;
    margin-right: 5px;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #54595F !important;
    box-shadow: none !important;
    outline: none !important;
}

.pp-filter-btn:hover {
    border-color: #2A2A2A !important;
    color: #2A2A2A !important;
    background-color: #f5f5f5 !important;
}

.pp-filter-btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
    border-color: #2A2A2A !important;
}

/* PILDID */
.pp-images-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pp-img-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.pp-img-wrap:hover img {
    transform: scale(1.05);
}

.pp-img-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
}

/* TABELID */
.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    background: #fff;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
    font-size: 15px;
    color: #54595F;
}

.pp-dim-table th {
    background-color: #fcfcfc;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 14px;
    text-transform: uppercase;
}

.pp-dim-table tr:last-child td {
    border-bottom: none;
}

.pp-dim-table tr:hover td {
    background-color: #fafafa;
}

.pp-mat-lepp td:first-child {
    border-left: 3px solid #eaddc5;
}

.pp-mat-termolepp td:first-child {
    border-left: 3px solid #81532f;
}

.pp-material-name {
    font-weight: 600;
    color: #2A2A2A;
    font-family: 'Montserrat', sans-serif;
}

/* PIKKUSTE SILDID */
.pp-lengths-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pp-length-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #f5f5f5;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: #54595F;
    border: 1px solid #eaeaea;
}

.pp-length-tag.soodne {
    background: #fff;
    color: #d9534f;
    border-color: #d9534f;
    position: relative;
}

.pp-length-tag.soodne::after {
    content: 'Soodne!';
    position: absolute;
    top: -12px;
    right: -8px;
    background: #d9534f;
    color: white;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    padding: 2px 6px;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: bold;
}

/* SCROLL ANIMATSIOONID */
.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .pp-liistud-widget h2 {
        font-size: 24px;
    }

    .pp-images-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .pp-dim-table th,
    .pp-dim-table td {
        padding: 12px;
        font-size: 14px;
    }

    .pp-quality-grid {
        grid-template-columns: 1fr;
    }
}

.pp-lavaseelik-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-lavaseelik-widget h1,
.pp-lavaseelik-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    cursor: pointer;
    transition: 0.3s;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
}

.pp-images-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-mat-lepp td:first-child {
    border-left: 3px solid #eaddc5;
}

.pp-mat-termolepp td:first-child {
    border-left: 3px solid #81532f;
}

.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pp-saunapingid-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-saunapingid-widget h1,
.pp-saunapingid-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    cursor: pointer;
    transition: 0.3s;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
}

.pp-images-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-mat-lepp td:first-child {
    border-left: 3px solid #eaddc5;
}

.pp-mat-termolepp td:first-child {
    border-left: 3px solid #81532f;
}

.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pp-seljatoed-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-seljatoed-widget h1,
.pp-seljatoed-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    cursor: pointer;
    transition: 0.3s;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
}

.pp-images-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 3px 0 0 0 #81532f;
}

.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pp-eripakkumised-widget {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #54595F;
}

.pp-eripakkumised-widget h1,
.pp-eripakkumised-widget h2,
.pp-eripakkumised-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    margin-top: 0;
}

.pp-eripakkumised-widget h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pp-eripakkumised-widget h2 {
    font-size: 30px;
    margin-top: 60px;
    margin-bottom: 20px;
    scroll-margin-top: 100px;
}

.pp-eripakkumised-widget p {
    margin-bottom: 20px;
    font-size: 16px;
}

.pp-promo-box {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-top: 4px solid #d9534f;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.pp-promo-box h3 {
    color: #d9534f;
    font-size: 22px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pp-promo-box p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #2A2A2A;
}

.pp-promo-note {
    font-size: 14px !important;
    color: #7a7a7a !important;
    font-style: italic;
    margin-top: 15px !important;
}

.pp-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.pp-category-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.pp-category-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.pp-category-img-wrap {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.pp-category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pp-category-card:hover .pp-category-img-wrap img {
    transform: scale(1.08);
}

.pp-category-content {
    padding: 15px;
    text-align: center;
}

.pp-category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2A2A2A;
    margin: 0;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #eaeaea;
    font-size: 15px;
    color: #54595F;
    vertical-align: middle;
}

.pp-dim-table th {
    background-color: #fcfcfc;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 13px;
    text-transform: uppercase;
}

.pp-dim-table tr:hover td {
    background-color: #fafafa;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 4px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 4px 0 0 0 #81532f;
}

.pp-mat-kuusk td:first-child {
    box-shadow: inset 4px 0 0 0 #d8d2c1;
}

.pp-material-name {
    font-weight: 600;
    color: #2A2A2A;
    font-family: 'Montserrat', sans-serif;
}

.pp-price {
    font-weight: 700;
    color: #d9534f;
    white-space: nowrap;
}

.pp-price-m2 {
    font-size: 13px;
    color: #888;
    font-weight: normal;
    margin-left: 5px;
}

.pp-note-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    font-weight: normal;
    vertical-align: middle;
}

.pp-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 15px;
    scroll-margin-top: 100px;
}

.pp-section-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eaeaea;
}

.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .pp-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pp-categories-grid {
        grid-template-columns: 1fr;
    }

    .pp-dim-table th,
    .pp-dim-table td {
        padding: 10px;
        font-size: 13px;
    }

    .pp-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.pp-firewood-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #54595F;
}

.pp-firewood-widget h1,
.pp-firewood-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    margin-top: 0;
}

.pp-firewood-widget h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.pp-promo-card {
    display: flex;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pp-promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.pp-promo-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.pp-promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.pp-promo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #d9534f;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 3px;
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(217, 83, 79, 0.3);
}

.pp-promo-content {
    flex: 0 0 55%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pp-promo-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.pp-promo-material {
    font-size: 16px;
    color: #7A7A7A;
    margin-bottom: 25px;
    font-style: italic;
}

.pp-promo-price-box {
    background: #fdfdfd;
    border-left: 4px solid #d9534f;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.pp-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: #d9534f;
    line-height: 1;
}

.pp-unit {
    font-size: 18px;
    color: #54595F;
    font-weight: 600;
}

.pp-promo-terms {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pp-promo-terms li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #54595F;
}

.pp-promo-terms li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #2e7d32;
    font-weight: bold;
}

.pp-promo-terms li strong {
    color: #2A2A2A;
}

.pp-promo-terms li.pp-warning-term::before {
    content: '!';
    color: #d9534f;
}

.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .pp-promo-content {
        padding: 30px;
    }

    .pp-promo-content h2 {
        font-size: 24px;
    }

    .pp-price {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .pp-promo-card {
        flex-direction: column;
    }

    .pp-promo-image {
        min-height: 250px;
    }

    .pp-promo-content {
        padding: 25px 20px;
    }

    .pp-firewood-widget h1 {
        font-size: 30px;
    }
}

.pp-valmissaunad-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #54595F;
}

.pp-valmissaunad-widget h1,
.pp-valmissaunad-widget h2,
.pp-valmissaunad-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    margin-top: 0;
}

.pp-valmissaunad-widget h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pp-valmissaunad-widget p {
    margin-bottom: 20px;
    font-size: 16px;
}

.pp-info-box {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-left: 4px solid #2A2A2A;
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.pp-info-box p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #2A2A2A;
}

.pp-info-box p:last-child {
    margin-bottom: 0;
}

.pp-images-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.pp-img-box {
    display: flex;
    flex-direction: column;
}

.pp-img-wrap {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid #eaeaea;
}

.pp-img-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.6s ease;
    object-fit: cover;
}

.pp-img-wrap:hover img {
    transform: scale(1.05);
}

.pp-img-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
}

.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .pp-img-wrap {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .pp-valmissaunad-widget h1 {
        font-size: 30px;
    }

    .pp-images-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pp-img-wrap {
        height: 320px;
    }

    .pp-info-box {
        padding: 20px;
    }
}

.pp-porandarest-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-porandarest-widget h1,
.pp-porandarest-widget h2,
.pp-porandarest-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    margin-top: 0;
}

.pp-porandarest-widget h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pp-porandarest-widget h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.pp-porandarest-widget h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.pp-porandarest-widget p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #54595F;
}

.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    align-items: center;
}

.pp-filter-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #2A2A2A;
    margin-right: 5px;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #54595F !important;
}

.pp-filter-btn:hover {
    border-color: #2A2A2A !important;
    color: #2A2A2A !important;
    background-color: #f5f5f5 !important;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
    border-color: #2A2A2A !important;
}

.pp-images-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-box {
    display: flex;
    flex-direction: column;
}

.pp-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid #eaeaea;
}

.pp-img-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.pp-img-wrap:hover img {
    transform: scale(1.05);
}

.pp-img-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    background: #fff;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
    font-size: 15px;
    color: #54595F;
}

.pp-dim-table th {
    background-color: #fcfcfc;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 14px;
    text-transform: uppercase;
}

.pp-dim-table tr:hover td {
    background-color: #fafafa;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 3px 0 0 0 #81532f;
}

.pp-mat-must td:first-child {
    box-shadow: inset 3px 0 0 0 #2a2a2a;
}

.pp-mat-tumehall td:first-child {
    box-shadow: inset 3px 0 0 0 #666666;
}

.pp-material-name {
    font-weight: 600;
    color: #2A2A2A;
    font-family: 'Montserrat', sans-serif;
}

.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .pp-images-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pp-porandarest-widget h2 {
        font-size: 24px;
    }

    .pp-images-wrapper {
        grid-template-columns: 1fr;
    }

    .pp-dim-table th,
    .pp-dim-table td {
        padding: 12px;
        font-size: 14px;
    }
}

.pp-ehituspuit-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-ehituspuit-widget h1,
.pp-ehituspuit-widget h2,
.pp-ehituspuit-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    margin-top: 0;
}

.pp-ehituspuit-widget h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pp-ehituspuit-widget h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.pp-ehituspuit-widget p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #54595F;
}

.pp-info-box {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-left: 4px solid #2A2A2A;
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 4px;
    font-size: 16px;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
    font-size: 15px;
    color: #54595F;
}

.pp-dim-table th {
    background-color: #fcfcfc;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 14px;
    text-transform: uppercase;
}

.pp-dim-table tr:hover td {
    background-color: #fafafa;
}

.pp-mat-pruun td:first-child {
    box-shadow: inset 4px 0 0 0 #8b5a2b;
}

.pp-mat-kuusk td:first-child {
    box-shadow: inset 4px 0 0 0 #eaddc5;
}

.pp-material-name {
    font-weight: 600;
    color: #2A2A2A;
    font-family: 'Montserrat', sans-serif;
}

.pp-price {
    font-weight: 600;
    color: #2A2A2A;
}

.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s, transform 0.7s;
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 576px) {
    .pp-ehituspuit-widget h2 {
        font-size: 24px;
    }

    .pp-dim-table th,
    .pp-dim-table td {
        padding: 12px;
        font-size: 14px;
    }
}

.pp-lavamoodulid-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-lavamoodulid-widget h1,
.pp-lavamoodulid-widget h2,
.pp-lavamoodulid-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    align-items: center;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
    border-color: #2A2A2A !important;
}

.pp-images-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid #eaeaea;
}

.pp-img-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    background: #fff;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
    font-size: 15px;
    color: #54595F;
}

.pp-dim-table th {
    background-color: #fcfcfc;
}

.pp-tag-soodne {
    display: inline-block;
    background: #d9534f;
    color: white;
    font-size: 10px;
    padding: 3px 7px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: bold;
    margin-left: 10px;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 3px 0 0 0 #81532f;
}

.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s;
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 576px) {
    .pp-images-wrapper {
        grid-template-columns: 1fr;
    }
}

.pp-kasipuu-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-kasipuu-widget h1,
.pp-kasipuu-widget h2,
.pp-kasipuu-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-images-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid #eaeaea;
}

.pp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pp-img-caption {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    color: #2A2A2A;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
    color: #54595F;
}

.pp-dim-table th {
    background-color: #fcfcfc;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s;
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pp-valgustikatted-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-valgustikatted-widget h1,
.pp-valgustikatted-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    cursor: pointer;
    transition: 0.3s;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
}

.pp-images-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 3px 0 0 0 #81532f;
}

.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pp-ratirest-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-ratirest-widget h1,
.pp-ratirest-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-info-box {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-left: 4px solid #2A2A2A;
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.pp-images-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid #eaeaea;
}

.pp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pp-img-caption {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    color: #2A2A2A;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    border: 1px solid #eaeaea;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s;
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pp-lavalaud-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-lavalaud-widget h2,
.pp-lavalaud-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    margin-top: 0;
}

.pp-lavalaud-widget h1 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 20px;
}

.pp-lavalaud-widget h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-lavalaud-widget h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.pp-lavalaud-widget p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #54595F;
}

.pp-lavalaud-widget ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
    color: #54595F;
}

.pp-lavalaud-widget li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* KVALITEEDIKLASSIDE GRID */
.pp-quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 40px;
}

.pp-quality-card {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 25px 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pp-quality-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.pp-quality-card h4 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

.pp-quality-card p {
    font-size: 14px;
    color: #54595F;
    margin-bottom: 0;
    line-height: 1.6;
}

.pp-quality-card a {
    color: #d9534f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.pp-quality-card a:hover {
    text-decoration: underline;
    color: #b53d39;
}

/* FILTRID */
.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    align-items: center;
}

.pp-filter-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #2A2A2A;
    margin-right: 5px;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #54595F !important;
}

.pp-filter-btn:hover {
    border-color: #2A2A2A !important;
    color: #2A2A2A !important;
    background-color: #f5f5f5 !important;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
    border-color: #2A2A2A !important;
}

/* PILDID */
.pp-images-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pp-img-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.pp-img-wrap:hover img {
    transform: scale(1.05);
}

.pp-img-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
}

/* TABELID */
.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    background: #fff;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
    font-size: 15px;
    color: #54595F;
}

.pp-dim-table th {
    background-color: #fcfcfc;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 14px;
    text-transform: uppercase;
}

.pp-dim-table tr:hover td {
    background-color: #fafafa;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 3px 0 0 0 #81532f;
}

.pp-material-name {
    font-weight: 600;
    color: #2A2A2A;
    font-family: 'Montserrat', sans-serif;
}

/* PIKKUSTE SILDID */
.pp-lengths-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pp-length-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #f5f5f5;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: #54595F;
    border: 1px solid #eaeaea;
}

.pp-length-tag.soodne {
    background: #fff;
    color: #d9534f;
    border-color: #d9534f;
    position: relative;
}

.pp-length-tag.soodne::after {
    content: 'Soodne!';
    position: absolute;
    top: -12px;
    right: -8px;
    background: #d9534f;
    color: white;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    padding: 2px 6px;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: bold;
}

/* SCROLL ANIMATSIOONID */
.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .pp-lavalaud-widget h2 {
        font-size: 24px;
    }

    .pp-images-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .pp-dim-table th,
    .pp-dim-table td {
        padding: 12px;
        font-size: 14px;
    }

    .pp-quality-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.pp-voodrilaud-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-voodrilaud-widget h2,
.pp-voodrilaud-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    margin-top: 0;
}

.pp-voodrilaud-widget h1 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 20px;
}

.pp-voodrilaud-widget h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-voodrilaud-widget h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.pp-voodrilaud-widget p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #54595F;
}

.pp-voodrilaud-widget ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
    color: #54595F;
}

.pp-voodrilaud-widget li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* KVALITEEDIKLASSIDE GRID */
.pp-quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 40px;
}

.pp-quality-card {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 25px 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pp-quality-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.pp-quality-card h4 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

.pp-quality-card p {
    font-size: 14px;
    color: #54595F;
    margin-bottom: 0;
    line-height: 1.6;
}

.pp-quality-card a {
    color: #d9534f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.pp-quality-card a:hover {
    text-decoration: underline;
    color: #b53d39;
}

/* FILTRID */
.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    align-items: center;
}

.pp-filter-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #2A2A2A;
    margin-right: 5px;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #54595F !important;
}

.pp-filter-btn:hover {
    border-color: #2A2A2A !important;
    color: #2A2A2A !important;
    background-color: #f5f5f5 !important;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
    border-color: #2A2A2A !important;
}

/* PILDID */
.pp-images-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pp-img-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.pp-img-wrap:hover img {
    transform: scale(1.05);
}

.pp-img-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
}

/* TABELID */
.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    background: #fff;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
    font-size: 15px;
    color: #54595F;
}

.pp-dim-table th {
    background-color: #fcfcfc;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 14px;
    text-transform: uppercase;
}

.pp-dim-table tr:hover td {
    background-color: #fafafa;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 3px 0 0 0 #81532f;
}

.pp-material-name {
    font-weight: 600;
    color: #2A2A2A;
    font-family: 'Montserrat', sans-serif;
}

/* PIKKUSTE SILDID */
.pp-lengths-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pp-length-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #f5f5f5;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: #54595F;
    border: 1px solid #eaeaea;
}

.pp-length-tag.soodne {
    background: #fff;
    color: #d9534f;
    border-color: #d9534f;
    position: relative;
}

.pp-length-tag.soodne::after {
    content: 'Soodne!';
    position: absolute;
    top: -12px;
    right: -8px;
    background: #d9534f;
    color: white;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    padding: 2px 6px;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: bold;
}

/* SCROLL ANIMATSIOONID */
.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .pp-voodrilaud-widget h2 {
        font-size: 24px;
    }

    .pp-images-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .pp-dim-table th,
    .pp-dim-table td {
        padding: 12px;
        font-size: 14px;
    }

    .pp-quality-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.pp-saunamaterjal-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #54595F;
}

.pp-saunamaterjal-widget h1,
.pp-saunamaterjal-widget h2,
.pp-saunamaterjal-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    margin-top: 0;
}

.pp-saunamaterjal-widget h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pp-saunamaterjal-widget h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.pp-saunamaterjal-widget p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* SISSEJUHATUS (INFO CAST) */
.pp-intro-box {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-left: 4px solid #2A2A2A;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.pp-intro-box ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.pp-intro-box li {
    margin-bottom: 15px;
    font-size: 15px;
}

.pp-intro-box li:last-child {
    margin-bottom: 0;
}

/* KATEGOORIATE GRID (Hub) */
.pp-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.pp-category-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pp-category-card:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.pp-category-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.pp-category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pp-category-card:hover .pp-category-img-wrap img {
    transform: scale(1.08);
}

.pp-category-content {
    padding: 25px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pp-category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #2A2A2A;
    margin: 0;
    position: relative;
    padding-bottom: 15px;
}

.pp-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #d9534f;
    transition: width 0.3s ease;
}

.pp-category-card:hover .pp-category-title::after {
    width: 60px;
}

/* SCROLL ANIMATSIOONID */
.pp-reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.pp-is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .pp-saunamaterjal-widget h2 {
        font-size: 24px;
    }

    .pp-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.pp-ehituspuit-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-ehituspuit-widget h1,
.pp-ehituspuit-widget h2,
.pp-ehituspuit-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    margin-top: 0;
}

.pp-ehituspuit-widget h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pp-ehituspuit-widget h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.pp-ehituspuit-widget p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #54595F;
}

.pp-info-box {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-left: 4px solid #2A2A2A;
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 4px;
    font-size: 16px;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
    font-size: 15px;
    color: #54595F;
}

.pp-dim-table th {
    background-color: #fcfcfc;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 14px;
    text-transform: uppercase;
}

.pp-dim-table tr:hover td {
    background-color: #fafafa;
}

.pp-mat-pruun td:first-child {
    box-shadow: inset 4px 0 0 0 #8b5a2b;
}

.pp-mat-kuusk td:first-child {
    box-shadow: inset 4px 0 0 0 #eaddc5;
}

.pp-material-name {
    font-weight: 600;
    color: #2A2A2A;
    font-family: 'Montserrat', sans-serif;
}

.pp-price {
    font-weight: 600;
    color: #2A2A2A;
}

@media (max-width: 576px) {
    .pp-ehituspuit-widget h2 {
        font-size: 24px;
    }

    .pp-dim-table th,
    .pp-dim-table td {
        padding: 12px;
        font-size: 14px;
    }
}

.pp-ergo-seljatoed-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-ergo-seljatoed-widget h1,
.pp-ergo-seljatoed-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    cursor: pointer;
    transition: 0.3s;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
}

.pp-images-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 3px 0 0 0 #81532f;
}

.pp-firewood-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #54595F;
}

.pp-firewood-widget h1,
.pp-firewood-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    margin-top: 0;
}

.pp-firewood-widget h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

/* KAMPAANIA KAART */
.pp-promo-card {
    display: flex;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pp-promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* PILDI OSA */
.pp-promo-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.pp-promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

/* "ERIPAKKUMINE" SILT */
.pp-promo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #d9534f;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 3px;
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(217, 83, 79, 0.3);
}

/* SISU OSA */
.pp-promo-content {
    flex: 0 0 55%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pp-promo-content h2 {
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.pp-promo-material {
    font-size: 16px;
    color: #7A7A7A;
    margin-bottom: 25px;
    font-style: italic;
}

/* HINNA KAST */
.pp-promo-price-box {
    background: #fdfdfd;
    border-left: 4px solid #d9534f;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.pp-price {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 42px;
    color: #d9534f;
    line-height: 1;
}

.pp-unit {
    font-size: 18px;
    color: #54595F;
    font-weight: 600;
}

/* TINGIMUSED */
.pp-promo-terms {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pp-promo-terms li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
    color: #54595F;
}

.pp-promo-terms li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #2e7d32;
    font-weight: bold;
}

.pp-promo-terms li strong {
    color: #2A2A2A;
}

.pp-promo-terms li.pp-warning-term::before {
    content: '!';
    color: #d9534f;
}

/* SCROLL ANIMATSIOONID */

/* MOBIILIVAADE */
@media (max-width: 992px) {
    .pp-promo-content {
        padding: 30px;
    }

    .pp-promo-content h2 {
        font-size: 24px;
    }

    .pp-price {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .pp-promo-card {
        flex-direction: column;
    }

    .pp-promo-image {
        min-height: 250px;
    }

    .pp-promo-content {
        padding: 25px 20px;
    }

    .pp-firewood-widget h1 {
        font-size: 30px;
    }
}

.pp-eripakkumised-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #54595F;
}

.pp-eripakkumised-widget h1,
.pp-eripakkumised-widget h2,
.pp-eripakkumised-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    margin-top: 0;
}

.pp-eripakkumised-widget h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pp-eripakkumised-widget h2 {
    font-size: 30px;
    margin-top: 60px;
    margin-bottom: 20px;
    scroll-margin-top: 100px;
    /* Et menüü ei kataks pealkirja */
}

.pp-eripakkumised-widget p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* ESITLETUD INFO (Kampaania kast) */
.pp-promo-box {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-top: 4px solid #d9534f;
    /* Punane kampaania joon */
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.pp-promo-box h3 {
    color: #d9534f;
    font-size: 22px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pp-promo-box p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #2A2A2A;
}

.pp-promo-box p:last-child {
    margin-bottom: 0;
}

.pp-promo-note {
    font-size: 14px !important;
    color: #7a7a7a !important;
    font-style: italic;
    margin-top: 15px !important;
}

/* KATEGOORIATE GRID (Kiirviited) */
.pp-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.pp-category-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.pp-category-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.pp-category-img-wrap {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.pp-category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pp-category-card:hover .pp-category-img-wrap img {
    transform: scale(1.08);
}

.pp-category-content {
    padding: 15px;
    text-align: center;
}

.pp-category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #2A2A2A;
    margin: 0;
}

/* TABELID */
.pp-table-container {
    overflow-x: auto;
    margin-bottom: 40px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 14px 18px;
    border-bottom: 1px solid #eaeaea;
    font-size: 15px;
    color: #54595F;
    vertical-align: middle;
}

.pp-dim-table th {
    background-color: #fcfcfc;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 13px;
    text-transform: uppercase;
}

.pp-dim-table tr:last-child td {
    border-bottom: none;
}

.pp-dim-table tr:hover td {
    background-color: #fafafa;
}

/* Värvijooned materjali eristamiseks */
.pp-mat-lepp td:first-child {
    box-shadow: inset 4px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 4px 0 0 0 #81532f;
}

.pp-mat-kuusk td:first-child {
    box-shadow: inset 4px 0 0 0 #d8d2c1;
}

.pp-material-name {
    font-weight: 600;
    color: #2A2A2A;
    font-family: 'Montserrat', sans-serif;
}

.pp-price {
    font-weight: 700;
    color: #d9534f;
    /* Punane erihind */
    white-space: nowrap;
}

.pp-price-m2 {
    font-size: 13px;
    color: #888;
    font-weight: normal;
    margin-left: 5px;
}

.pp-note-tag {
    display: inline-block;
    background: #f0f0f0;
    color: #666;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 3px;
    margin-left: 8px;
    font-weight: normal;
    vertical-align: middle;
}

/* SEKTSIOONI PÄIS PILDIGA */
.pp-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 15px;
    scroll-margin-top: 100px;
}

.pp-section-header h2 {
    margin: 0;
    border: none;
    padding: 0;
}

.pp-section-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eaeaea;
}

/* SCROLL ANIMATSIOONID */

@media (max-width: 992px) {
    .pp-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pp-categories-grid {
        grid-template-columns: 1fr;
    }

    .pp-dim-table th,
    .pp-dim-table td {
        padding: 10px;
        font-size: 13px;
    }

    .pp-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

.pp-saunapingid-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-saunapingid-widget h1,
.pp-saunapingid-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    cursor: pointer;
    transition: 0.3s;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
}

.pp-images-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-mat-lepp td:first-child {
    border-left: 3px solid #eaddc5;
}

.pp-mat-termolepp td:first-child {
    border-left: 3px solid #81532f;
}

.pp-saunatoodete-intro-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #54595F;
}

.pp-saunatoodete-intro-widget h1 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 20px;
}

.pp-saunatoodete-intro-widget p {
    margin-bottom: 20px;
    font-size: 16px;
}

.pp-intro-box {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-left: 4px solid #2A2A2A;
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.pp-intro-box p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #2A2A2A;
}

.pp-intro-box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .pp-saunatoodete-intro-widget h1 {
        font-size: 30px;
    }

    .pp-intro-box {
        padding: 20px;
    }
}

.pp-valgustikatted-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-valgustikatted-widget h1,
.pp-valgustikatted-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    cursor: pointer;
    transition: 0.3s;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
}

.pp-images-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 3px 0 0 0 #81532f;
}

.pp-lavamoodulid-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-lavamoodulid-widget h1,
.pp-lavamoodulid-widget h2,
.pp-lavamoodulid-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    align-items: center;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
    border-color: #2A2A2A !important;
}

.pp-images-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid #eaeaea;
}

.pp-img-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    background: #fff;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
    font-size: 15px;
    color: #54595F;
}

.pp-dim-table th {
    background-color: #fcfcfc;
}

.pp-tag-soodne {
    display: inline-block;
    background: #d9534f;
    color: white;
    font-size: 10px;
    padding: 3px 7px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: bold;
    margin-left: 10px;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 3px 0 0 0 #81532f;
}

@media (max-width: 576px) {
    .pp-images-wrapper {
        grid-template-columns: 1fr;
    }
}

.pp-lavaseelik-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-lavaseelik-widget h1,
.pp-lavaseelik-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    cursor: pointer;
    transition: 0.3s;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
}

.pp-images-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-mat-lepp td:first-child {
    border-left: 3px solid #eaddc5;
}

.pp-mat-termolepp td:first-child {
    border-left: 3px solid #81532f;
}

.pp-peaalused-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-peaalused-widget h1,
.pp-peaalused-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    cursor: pointer;
    transition: 0.3s;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
}

.pp-images-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 3px 0 0 0 #81532f;
}

.pp-kasipuu-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-kasipuu-widget h1,
.pp-kasipuu-widget h2,
.pp-kasipuu-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-images-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid #eaeaea;
}

.pp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pp-img-caption {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    color: #2A2A2A;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
    color: #54595F;
}

.pp-dim-table th {
    background-color: #fcfcfc;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-porandarest-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-porandarest-widget h1,
.pp-porandarest-widget h2,
.pp-porandarest-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    margin-top: 0;
}

.pp-porandarest-widget h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pp-porandarest-widget h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.pp-porandarest-widget h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.pp-porandarest-widget p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #54595F;
}

.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    align-items: center;
}

.pp-filter-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #2A2A2A;
    margin-right: 5px;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #54595F !important;
}

.pp-filter-btn:hover {
    border-color: #2A2A2A !important;
    color: #2A2A2A !important;
    background-color: #f5f5f5 !important;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
    border-color: #2A2A2A !important;
}

.pp-images-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-box {
    display: flex;
    flex-direction: column;
}

.pp-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid #eaeaea;
}

.pp-img-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.pp-img-wrap:hover img {
    transform: scale(1.05);
}

.pp-img-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    background: #fff;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
    font-size: 15px;
    color: #54595F;
}

.pp-dim-table th {
    background-color: #fcfcfc;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 14px;
    text-transform: uppercase;
}

.pp-dim-table tr:hover td {
    background-color: #fafafa;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 3px 0 0 0 #81532f;
}

.pp-mat-must td:first-child {
    box-shadow: inset 3px 0 0 0 #2a2a2a;
}

.pp-mat-tumehall td:first-child {
    box-shadow: inset 3px 0 0 0 #666666;
}

.pp-material-name {
    font-weight: 600;
    color: #2A2A2A;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 992px) {
    .pp-images-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pp-porandarest-widget h2 {
        font-size: 24px;
    }

    .pp-images-wrapper {
        grid-template-columns: 1fr;
    }

    .pp-dim-table th,
    .pp-dim-table td {
        padding: 12px;
        font-size: 14px;
    }
}

.pp-ratirest-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-ratirest-widget h1,
.pp-ratirest-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-info-box {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-left: 4px solid #2A2A2A;
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.pp-images-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid #eaeaea;
}

.pp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pp-img-caption {
    text-align: center;
    margin-top: 15px;
    font-weight: 600;
    color: #2A2A2A;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    border: 1px solid #eaeaea;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-aknad-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-aknad-widget h1,
.pp-aknad-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-info-box {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-left: 4px solid #2A2A2A;
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.pp-images-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid #eaeaea;
}

.pp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-saunapingid-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-saunapingid-widget h1,
.pp-saunapingid-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    cursor: pointer;
    transition: 0.3s;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
}

.pp-images-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pp-img-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 3px 0 0 0 #81532f;
}

.pp-seljatoed-widget {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-seljatoed-widget h1,
.pp-seljatoed-widget h2 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
}

.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    cursor: pointer;
    transition: 0.3s;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
}

.pp-images-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 3px 0 0 0 #81532f;
}

.pp-saunamaterjal-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #54595F;
}

.pp-saunamaterjal-widget h1,
.pp-saunamaterjal-widget h2,
.pp-saunamaterjal-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    margin-top: 0;
}

.pp-saunamaterjal-widget h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pp-saunamaterjal-widget h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.pp-saunamaterjal-widget p {
    margin-bottom: 20px;
    font-size: 16px;
}

/* SISSEJUHATUS (INFO CAST) */
.pp-intro-box {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-left: 4px solid #2A2A2A;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.pp-intro-box ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.pp-intro-box li {
    margin-bottom: 15px;
    font-size: 15px;
}

.pp-intro-box li:last-child {
    margin-bottom: 0;
}

/* KATEGOORIATE GRID (Hub) */
.pp-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.pp-category-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pp-category-card:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.pp-category-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.pp-category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pp-category-card:hover .pp-category-img-wrap img {
    transform: scale(1.08);
}

.pp-category-content {
    padding: 25px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pp-category-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #2A2A2A;
    margin: 0;
    position: relative;
    padding-bottom: 15px;
}

.pp-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #d9534f;
    transition: width 0.3s ease;
}

.pp-category-card:hover .pp-category-title::after {
    width: 60px;
}

/* SCROLL ANIMATSIOONID */

@media (max-width: 768px) {
    .pp-saunamaterjal-widget h2 {
        font-size: 24px;
    }

    .pp-categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.pp-lavalaud-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-lavalaud-widget h2,
.pp-lavalaud-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    margin-top: 0;
}

.pp-lavalaud-widget h1 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 20px;
}

.pp-lavalaud-widget h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-lavalaud-widget h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.pp-lavalaud-widget p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #54595F;
}

.pp-lavalaud-widget ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
    color: #54595F;
}

.pp-lavalaud-widget li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* KVALITEEDIKLASSIDE GRID */
.pp-quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 40px;
}

.pp-quality-card {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 25px 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pp-quality-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.pp-quality-card h4 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

.pp-quality-card p {
    font-size: 14px;
    color: #54595F;
    margin-bottom: 0;
    line-height: 1.6;
}

.pp-quality-card a {
    color: #d9534f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.pp-quality-card a:hover {
    text-decoration: underline;
    color: #b53d39;
}

/* FILTRID */
.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    align-items: center;
}

.pp-filter-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #2A2A2A;
    margin-right: 5px;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #54595F !important;
}

.pp-filter-btn:hover {
    border-color: #2A2A2A !important;
    color: #2A2A2A !important;
    background-color: #f5f5f5 !important;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
    border-color: #2A2A2A !important;
}

/* PILDID */
.pp-images-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pp-img-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.pp-img-wrap:hover img {
    transform: scale(1.05);
}

.pp-img-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
}

/* TABELID */
.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    background: #fff;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
    font-size: 15px;
    color: #54595F;
}

.pp-dim-table th {
    background-color: #fcfcfc;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 14px;
    text-transform: uppercase;
}

.pp-dim-table tr:hover td {
    background-color: #fafafa;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 3px 0 0 0 #81532f;
}

.pp-material-name {
    font-weight: 600;
    color: #2A2A2A;
    font-family: 'Montserrat', sans-serif;
}

/* PIKKUSTE SILDID */
.pp-lengths-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pp-length-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #f5f5f5;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: #54595F;
    border: 1px solid #eaeaea;
}

.pp-length-tag.soodne {
    background: #fff;
    color: #d9534f;
    border-color: #d9534f;
    position: relative;
}

.pp-length-tag.soodne::after {
    content: 'Soodne!';
    position: absolute;
    top: -12px;
    right: -8px;
    background: #d9534f;
    color: white;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    padding: 2px 6px;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: bold;
}

/* SCROLL ANIMATSIOONID */

@media (max-width: 768px) {
    .pp-lavalaud-widget h2 {
        font-size: 24px;
    }

    .pp-images-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .pp-dim-table th,
    .pp-dim-table td {
        padding: 12px;
        font-size: 14px;
    }

    .pp-quality-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.pp-liistud-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-liistud-widget h1,
.pp-liistud-widget h2,
.pp-liistud-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    margin-top: 0;
}

.pp-liistud-widget h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pp-liistud-widget h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-liistud-widget h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.pp-liistud-widget p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #54595F;
}

.pp-liistud-widget ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
    color: #54595F;
}

.pp-liistud-widget li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* KVALITEEDIKLASSIDE GRID */
.pp-quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 40px;
}

.pp-quality-card {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 25px 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pp-quality-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.pp-quality-card h4 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

.pp-quality-card p {
    font-size: 14px;
    color: #54595F;
    margin-bottom: 0;
    line-height: 1.6;
}

/* FILTRID */
.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    align-items: center;
}

.pp-filter-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #2A2A2A;
    margin-right: 5px;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #54595F !important;
    box-shadow: none !important;
    outline: none !important;
}

.pp-filter-btn:hover {
    border-color: #2A2A2A !important;
    color: #2A2A2A !important;
    background-color: #f5f5f5 !important;
}

.pp-filter-btn:focus {
    outline: none !important;
    box-shadow: none !important;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
    border-color: #2A2A2A !important;
}

/* PILDID */
.pp-images-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pp-img-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.pp-img-wrap:hover img {
    transform: scale(1.05);
}

.pp-img-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
}

/* TABELID */
.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    background: #fff;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
    font-size: 15px;
    color: #54595F;
}

.pp-dim-table th {
    background-color: #fcfcfc;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 14px;
    text-transform: uppercase;
}

.pp-dim-table tr:last-child td {
    border-bottom: none;
}

.pp-dim-table tr:hover td {
    background-color: #fafafa;
}

.pp-mat-lepp td:first-child {
    border-left: 3px solid #eaddc5;
}

.pp-mat-termolepp td:first-child {
    border-left: 3px solid #81532f;
}

.pp-material-name {
    font-weight: 600;
    color: #2A2A2A;
    font-family: 'Montserrat', sans-serif;
}

/* PIKKUSTE SILDID */
.pp-lengths-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pp-length-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #f5f5f5;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: #54595F;
    border: 1px solid #eaeaea;
}

.pp-length-tag.soodne {
    background: #fff;
    color: #d9534f;
    border-color: #d9534f;
    position: relative;
}

.pp-length-tag.soodne::after {
    content: 'Soodne!';
    position: absolute;
    top: -12px;
    right: -8px;
    background: #d9534f;
    color: white;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    padding: 2px 6px;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: bold;
}

/* SCROLL ANIMATSIOONID */

@media (max-width: 768px) {
    .pp-liistud-widget h2 {
        font-size: 24px;
    }

    .pp-images-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .pp-dim-table th,
    .pp-dim-table td {
        padding: 12px;
        font-size: 14px;
    }

    .pp-quality-grid {
        grid-template-columns: 1fr;
    }
}

.pp-voodrilaud-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #7A7A7A;
}

.pp-voodrilaud-widget h2,
.pp-voodrilaud-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    margin-top: 0;
}

.pp-voodrilaud-widget h1 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 20px;
}

.pp-voodrilaud-widget h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pp-voodrilaud-widget h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.pp-voodrilaud-widget p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #54595F;
}

.pp-voodrilaud-widget ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
    color: #54595F;
}

.pp-voodrilaud-widget li {
    margin-bottom: 8px;
    font-size: 16px;
}

/* KVALITEEDIKLASSIDE GRID */
.pp-quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 40px;
}

.pp-quality-card {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-radius: 4px;
    padding: 25px 20px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.pp-quality-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

.pp-quality-card h4 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 700;
}

.pp-quality-card p {
    font-size: 14px;
    color: #54595F;
    margin-bottom: 0;
    line-height: 1.6;
}

.pp-quality-card a {
    color: #d9534f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.pp-quality-card a:hover {
    text-decoration: underline;
    color: #b53d39;
}

/* FILTRID */
.pp-filter-bar {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    align-items: center;
}

.pp-filter-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: #2A2A2A;
    margin-right: 5px;
}

.pp-filter-btn {
    padding: 10px 24px;
    border: 1px solid #ddd !important;
    background-color: #fff !important;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #54595F !important;
}

.pp-filter-btn:hover {
    border-color: #2A2A2A !important;
    color: #2A2A2A !important;
    background-color: #f5f5f5 !important;
}

.pp-filter-btn.active {
    background-color: #2A2A2A !important;
    color: #fff !important;
    border-color: #2A2A2A !important;
}

/* PILDID */
.pp-images-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.pp-img-box {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pp-img-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 3px;
}

.pp-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    object-fit: cover;
}

.pp-img-wrap:hover img {
    transform: scale(1.05);
}

.pp-img-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
}

/* TABELID */
.pp-table-container {
    overflow-x: auto;
    margin-bottom: 50px;
    background: #fff;
    border: 1px solid #eaeaea;
}

.pp-dim-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pp-dim-table th,
.pp-dim-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eaeaea;
    font-size: 15px;
    color: #54595F;
}

.pp-dim-table th {
    background-color: #fcfcfc;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
    font-size: 14px;
    text-transform: uppercase;
}

.pp-dim-table tr:hover td {
    background-color: #fafafa;
}

.pp-mat-lepp td:first-child {
    box-shadow: inset 3px 0 0 0 #eaddc5;
}

.pp-mat-termolepp td:first-child {
    box-shadow: inset 3px 0 0 0 #81532f;
}

.pp-material-name {
    font-weight: 600;
    color: #2A2A2A;
    font-family: 'Montserrat', sans-serif;
}

/* PIKKUSTE SILDID */
.pp-lengths-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pp-length-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #f5f5f5;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    color: #54595F;
    border: 1px solid #eaeaea;
}

.pp-length-tag.soodne {
    background: #fff;
    color: #d9534f;
    border-color: #d9534f;
    position: relative;
}

.pp-length-tag.soodne::after {
    content: 'Soodne!';
    position: absolute;
    top: -12px;
    right: -8px;
    background: #d9534f;
    color: white;
    font-size: 10px;
    font-family: 'Montserrat', sans-serif;
    padding: 2px 6px;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: bold;
}

/* SCROLL ANIMATSIOONID */

@media (max-width: 768px) {
    .pp-voodrilaud-widget h2 {
        font-size: 24px;
    }

    .pp-images-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .pp-dim-table th,
    .pp-dim-table td {
        padding: 12px;
        font-size: 14px;
    }

    .pp-quality-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

.pp-valmissaunad-widget {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #54595F;
}

.pp-valmissaunad-widget h1,
.pp-valmissaunad-widget h2,
.pp-valmissaunad-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2A2A2A;
    font-weight: 600;
    margin-top: 0;
}

.pp-valmissaunad-widget h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pp-valmissaunad-widget p {
    margin-bottom: 20px;
    font-size: 16px;
}

.pp-info-box {
    background: #fdfdfd;
    border: 1px solid #eaeaea;
    border-left: 4px solid #2A2A2A;
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.pp-info-box p {
    margin-bottom: 15px;
    font-size: 16px;
    color: #2A2A2A;
}

.pp-info-box p:last-child {
    margin-bottom: 0;
}

.pp-images-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.pp-img-box {
    display: flex;
    flex-direction: column;
}

.pp-img-wrap {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid #eaeaea;
}

.pp-img-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.6s ease;
    object-fit: cover;
}

.pp-img-wrap:hover img {
    transform: scale(1.05);
}

.pp-img-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #2A2A2A;
}

@media (max-width: 992px) {
    .pp-img-wrap {
        height: 280px;
    }
}

@media (max-width: 768px) {
    .pp-valmissaunad-widget h1 {
        font-size: 30px;
    }

    .pp-images-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pp-img-wrap {
        height: 320px;
    }

    .pp-info-box {
        padding: 20px;
    }
}

/* MOBIILI KOHANDUSED ERIPAKKUMISTE JA TABELITE JAOKS */
.pp-table-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    display: block !important;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box !important;
}

/* Tagame, et tabelite sees olevad hinnad (.pp-price) ei päriks suurt kampaaniakaardi kirjafonti */
.pp-dim-table .pp-price {
    font-size: inherit !important;
    font-family: inherit !important;
    line-height: inherit !important;
    font-weight: 700 !important;
}

/* Lisame mobiilis tabelitele nähtava ja viisaka kerimisriba */
.pp-table-container::-webkit-scrollbar {
    height: 6px !important;
}

.pp-table-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.03) !important;
    border-radius: 3px !important;
}

.pp-table-container::-webkit-scrollbar-thumb {
    background: rgba(184, 114, 42, 0.4) !important;
    /* --wood värv poolläbipaistvalt */
    border-radius: 3px !important;
}

.pp-table-container::-webkit-scrollbar-thumb:hover {
    background: rgba(184, 114, 42, 0.7) !important;
}

@media (max-width: 768px) {

    /* Muudame flexi blockiks mobiilis, et flex-venitus ei takistaks tabeli kerimist */
    .content-sidebar-wrap {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 30px 16px !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .site-main,
    .site-content,
    .pp-firewood-widget,
    .pp-eripakkumised-widget {
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .sidebar-area {
        display: block !important;
        width: 100% !important;
        margin-top: 40px !important;
        box-sizing: border-box !important;
    }

    /* Tabeli veergude automaatne laiendamine kerimiseks vastavalt veergude arvule */
    .pp-dim-table {
        width: 100% !important;
        table-layout: auto !important;
    }

    /* 3 veeruga tabel (nt Saunapingid) */
    .pp-dim-table:has(th:nth-child(3)) {
        min-width: 500px !important;
    }

    /* 4 veeruga tabel (nt Voodrilaudade erihinnad) */
    .pp-dim-table:has(th:nth-child(4)) {
        min-width: 650px !important;
    }

    /* 5 veeruga tabel (nt Saunalavad) - tagame, et Termo-veergude hinnad ei oleks peidus */
    .pp-dim-table:has(th:nth-child(5)) {
        min-width: 800px !important;
    }

    /* Kampaania kaardid (Kütteklotsid jne) */
    .pp-promo-card {
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .pp-promo-image,
    .pp-promo-content {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .pp-promo-image {
        min-height: 200px !important;
        height: 200px !important;
    }

    .pp-promo-content {
        padding: 20px 15px !important;
    }

    /* Pealkirjad peavad dünaamiliselt skaleeruma ja vajadusel poolituma */
    .pp-promo-content h2 {
        font-size: clamp(18px, 5.5vw, 22px) !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    .pp-promo-material {
        font-size: 14px !important;
        margin-bottom: 15px !important;
    }

    .pp-promo-price-box {
        padding: 12px 15px !important;
        margin-bottom: 15px !important;
        gap: 6px !important;
    }

    .pp-promo-price-box .pp-price {
        font-size: clamp(26px, 7.5vw, 32px) !important;
    }

    .pp-unit {
        font-size: 15px !important;
    }

    .pp-promo-terms li {
        font-size: 13.5px !important;
        line-height: 1.4 !important;
        padding-left: 20px !important;
        margin-bottom: 8px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-word !important;
    }

    /* Kampaania kast (Kuu pakkumise kast) */
    .pp-promo-box {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 15px !important;
        margin-bottom: 30px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .pp-promo-box h3 {
        font-size: clamp(16px, 5vw, 19px) !important;
        margin-bottom: 10px !important;
        letter-spacing: 0.5px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .pp-promo-box p {
        font-size: 14px !important;
        margin-bottom: 8px !important;
        line-height: 1.4 !important;
    }

    .pp-promo-note {
        font-size: 12px !important;
        margin-top: 10px !important;
    }

    /* Kategooriate võrgustik */
    .pp-categories-grid {
        gap: 12px !important;
        margin-bottom: 35px !important;
    }

    .pp-category-title {
        font-size: 14px !important;
    }
}

/* Kohandused eriti väikestele ekraanidele (< 480px) */
@media (max-width: 480px) {
    .content-sidebar-wrap {
        padding: 20px 10px !important;
    }

    .pp-promo-image {
        min-height: 180px !important;
        height: 180px !important;
    }

    .pp-promo-content {
        padding: 15px 12px !important;
    }

    .pp-promo-box {
        padding: 15px 12px !important;
    }

    .pp-promo-price-box .pp-price {
        font-size: 26px !important;
    }
}




/* Peida keelevalik FTP versioonis */
/* .lang-switcher-item {
    display: none !important;
} */

/* ── SEO & USER FLOW OPTIMIZATION ───────────────────── */

/* Eripakkumised Menu Highlight (Desktop) */
@media (min-width: 1025px) {
    #primary-menu li.menu-eripakkumised > a {
        border: 1.5px solid rgba(184, 114, 42, 0.5);
        color: #f7e6d0 !important;
        border-radius: 6px;
        padding: 7px 16px;
        margin-right: 8px;
        transition: all 0.22s ease !important;
    }
    #primary-menu li.menu-eripakkumised > a:hover {
        background: var(--wood);
        color: var(--white) !important;
        border-color: var(--wood);
        box-shadow: 0 4px 12px rgba(184, 114, 42, 0.3);
    }
}

/* Eripakkumised Menu Highlight (Mobile) */
@media (max-width: 1024px) {
    #primary-menu li.menu-eripakkumised > a {
        color: var(--wood) !important;
        font-weight: 600;
    }
}

/* Featured Service Card for Eripakkumised */
.service-card-featured {
    border: 2.5px solid rgba(184, 114, 42, 0.5) !important;
    box-shadow: 0 4px 24px rgba(184, 114, 42, 0.08);
}
.service-card-featured:hover {
    border-color: var(--wood) !important;
    box-shadow: 0 8px 30px rgba(184, 114, 42, 0.18) !important;
}

.service-card-featured .service-link {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    background: var(--wood);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 14px;
    transition: background 0.2s, transform 0.2s;
    text-align: center;
}
.service-card-featured .service-link::after {
    display: none !important; /* Remove the arrow */
}
.service-card-featured .service-link:hover {
    background: var(--wood-dk);
    transform: translateY(-1px);
}

.card-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #c93b2b; /* Bright red-orange accent badge */
    color: var(--white);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.05em;
    pointer-events: none;
}

/* ── NEW PROMO BANNER SECTION ───────────────────────── */
.promo-banner {
    position: relative;
    padding: 120px 40px;
    overflow: hidden;
    background: #1c1a18;
}

.promo-banner-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(28, 26, 24, 0.9) 30%, rgba(28, 26, 24, 0.4) 100%),
        url('../images/2025/02/suvi14.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    will-change: transform;
}

.promo-banner-inner {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

.promo-banner-content {
    max-width: 620px;
}

.promo-banner-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 4.5vw, 48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.promo-banner-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 32px;
}

.promo-actions {
    display: flex;
    gap: 16px;
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 80px 24px;
    }
    .promo-banner-bg {
        background-image:
            linear-gradient(to bottom, rgba(28, 26, 24, 0.85) 60%, rgba(28, 26, 24, 0.6) 100%),
            url('../images/2025/02/suvi14.jpg');
    }
    .promo-banner-content {
        text-align: center;
    }
    .promo-actions {
        justify-content: center;
    }
}

/* ── JAANIPÄEVA KAMPAANIA ESILLETÕSTMINE ──────────────── */
.pp-campaign-header {
    color: #c93b2b !important;
    font-weight: 700 !important;
}

.pp-price-campaign {
    color: #999 !important; /* Hall kriips ja vaikimisi tekst */
}

.pp-price-campaign strong {
    color: #c93b2b !important; /* Kampaaniatoote punane hind */
}

.btn-campaign {
    background: #c93b2b !important;
    color: var(--white) !important;
}

.btn-campaign:hover {
    background: #b23122 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 59, 43, 0.35) !important;
    color: var(--white) !important;
}

/* Uus puhas kampaaniabänner ilma taustapildita */
.promo-banner-clean {
    position: relative;
    padding: 80px 40px;
    background: var(--warm); /* Mõnus soe kreem/puidutoon */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.promo-banner-clean-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.promo-banner-clean h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--text);
    line-height: 1.25;
    margin-bottom: 18px;
}

.promo-banner-clean p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}

/* Override 'Soodne!' to 'Edullinen!' on Finnish pages */
html[lang="fi"] .pp-length-tag.soodne::after {
    content: 'Edullinen!' !important;
}

/* ── FAQ SECTION & TRUST HIGHLIGHT ────────────────────────────────── */
.pp-faq-section {
    padding: 80px 40px;
    background: var(--white, #ffffff);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.pp-faq-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.pp-faq-item {
    background: var(--warm, #FAF6F0);
    border-radius: var(--radius, 12px);
    padding: 28px 30px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.pp-faq-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--forest, #1C2B22);
    margin-bottom: 12px;
    line-height: 1.35;
}

.pp-faq-item p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--muted, #555555);
    margin: 0;
}

@media (max-width: 768px) {
    .pp-faq-section {
        padding: 50px 20px;
    }
    .pp-faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .pp-faq-item {
        padding: 20px 22px;
    }
}



