* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333333;
    padding: 20px 30px 60px 30px;
}

.product-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- BREADCRUMBS --- */
.breadcrumbs {
    font-size: 12px;
    color: #00843d;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumbs a {
    color: #00843d;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumbs span {
    color: #777;
}

/* --- PRODUCT GRID --- */
.product-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 50px;
    align-items: start;
}

/* --- LEFT: SLIDER / CAROUSEL --- */
.slider-wrapper {
    position: relative;
    background-color: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    width: 100%;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 10px 15px 10px;
}

.slider-viewport {
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

.slide-item {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-item img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    display: block;
    user-select: none;
    pointer-events: none;
}

/* Green Arrow Chevrons */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #00843d;
    font-size: 46px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    z-index: 20;
    padding: 10px 15px;
    user-select: none;
    transition: transform 0.15s;
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.15);
}

.slider-arrow.prev {
    left: 0;
}

.slider-arrow.next {
    right: 0;
}

/* Exact Dots (Green Outlined & Solid Green on Active) */
.slider-dots-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    list-style: none;
    z-index: 20;
    margin-top: 10px;
}

.slider-dots-nav li {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid #00843d;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-dots-nav li.active {
    background: #00843d;
}

/* --- RIGHT: PRODUCT DETAILS & BUY BOX --- */
.product-details-col {
    display: flex;
    flex-direction: column;
}

.product-main-title {
    font-size: 32px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}

.product-intro-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 18px;
}

.product-features-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.product-features-list li {
    font-size: 13.5px;
    line-height: 1.7;
    color: #333333;
}

.notice-paragraph {
    font-size: 13.5px;
    line-height: 1.6;
    color: #333333;
    margin-bottom: 14px;
}

.green-link-text {
    color: #00843d;
    font-weight: 700;
    text-decoration: none;
}

.green-link-text:hover {
    text-decoration: underline;
}

/* Gray Processing Fee Badge Box */
.fee-badge-box {
    background-color: #e5e5e5;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    padding: 8px 14px;
    font-size: 11.5px;
    color: #444444;
    display: inline-block;
    margin: 15px 0 25px 0;
    width: fit-content;
}

/* Price & Availability (Right Aligned) */
.price-availability-block {
    text-align: right;
    margin-bottom: 25px;
}

.main-price-value {
    font-size: 26px;
    font-weight: 700;
    color: #111111;
    line-height: 1.1;
}

.tax-subtext {
    font-size: 11.5px;
    color: #666666;
    margin-top: 3px;
}

.stock-status-row {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: #333333;
    margin-top: 4px;
}

.stock-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #00843d;
}

/* Bottom Row: Quantity & Buy Now Button */
.cart-action-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

/* Quantity Box */
.quantity-controller {
    display: flex;
    align-items: center;
    border: 1px solid #cfd7d4;
    border-radius: 4px;
    height: 46px;
    background: #fff;
}

.qty-btn {
    background: none;
    border: none;
    width: 38px;
    height: 100%;
    font-size: 16px;
    color: #555;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-input {
    width: 45px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    outline: none;
}

/* Buy Now Solid Green Button */
.buy-now-btn {
    background-color: #00843d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    height: 46px;
    padding: 0 55px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
}

.buy-now-btn:hover {
    background-color: #006e33;
}

/* Responsive */
@media (max-width: 860px) {
    .product-layout-grid {
        grid-template-columns: 1fr;
    }

    .slider-wrapper {
        height: 380px;
    }

    .cart-action-row {
        justify-content: space-between;
    }

    .buy-now-btn {
        flex: 1;
    }
}

/* * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
        } */

.product-description-section {
    max-width: 1100px;
    margin: 40px auto 80px auto;
    padding: 0 20px;
    color: #333333;
}

/* --- TOP ANCHOR LINKS --- */
.anchor-nav-row {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 30px;
}

.anchor-link-item {
    color: #00843d;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.2s;
}

.anchor-link-item:hover {
    text-decoration: underline;
}

.anchor-link-item::after {
    content: '›';
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

/* --- SECTION HEADING --- */
.section-main-tag {
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 25px;
    letter-spacing: -0.2px;
}

/* --- MAIN SERIF HEADLINE --- */
.feature-headline {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 32px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

/* --- BODY TEXT & PARAGRAPHS --- */
.desc-p {
    font-size: 13.5px;
    line-height: 1.65;
    color: #444444;
    margin-bottom: 24px;
    max-width: 960px;
}

/* Sub-headings */
.desc-subheading {
    font-size: 13.5px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 10px;
}

/* Lists */
.desc-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 24px;
}

.desc-list li {
    font-size: 13.5px;
    line-height: 1.75;
    color: #444444;
}

/* Green Highlighted Text */
.green-brand-text {
    color: #00843d;
    font-weight: 700;
    text-decoration: none;
}

/* Bottom CTA Link */
.cta-buying-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #00843d;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 15px;
}

.cta-buying-link:hover {
    text-decoration: underline;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.delivery-scope-section {
    max-width: 1100px;
    margin: 40px auto 80px auto;
    padding: 0 20px;
    color: #333333;
}

/* Section Title */
.scope-main-title {
    font-size: 22px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 35px;
    letter-spacing: -0.2px;
}

/* 2-Column Grid Layout */
.scope-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: start;
}

/* Left Column: Image */
.scope-image-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scope-image-wrap img {
    width: 100%;
    max-width: 320px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Right Column: Content */
.scope-content-wrap {
    display: flex;
    flex-direction: column;
}

/* Serif Headlines */
.scope-heading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    color: #333333;
    margin-bottom: 16px;
}

.scope-subheading {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: #333333;
    margin-top: 15px;
    margin-bottom: 14px;
}

/* Bullet Lists */
.scope-list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 22px;
}

.scope-list li {
    font-size: 13.5px;
    line-height: 1.8;
    color: #444444;
}

/* Green Text Highlights */
.green-highlight {
    color: #00843d;
    font-weight: 600;
    text-decoration: none;
}

.green-highlight:hover {
    text-decoration: underline;
}

/* Disclaimer Paragraph */
.cookidoo-note {
    font-size: 12.5px;
    line-height: 1.6;
    color: #555555;
    margin-top: 10px;
    max-width: 500px;
}

/* Responsive for Tablets and Mobile */
@media (max-width: 768px) {
    .scope-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .scope-image-wrap {
        max-width: 280px;
        margin: 0 auto;
    }
}







.review-section {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
    font-family: inherit;
}

.review-card {
    border-top: 1px solid #e2e2e2;
    border-bottom: 1px solid #e2e2e2;
    padding: 30px 0 20px 0;
    display: flex;
    gap: 30px;
}

/* Left Side: Reviewer Info */
.review-author-col {
    flex: 0 0 160px;
    font-size: 14px;
    color: #222;
    font-weight: 500;
}

.review-author-col .country-tag {
    font-size: 11px;
    color: #666;
    margin-left: 4px;
    text-transform: uppercase;
}

/* Right Side: Review Content */
.review-content-col {
    flex: 1;
}

/* Top Line: Stars, Title & Date */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-rating-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-stars {
    color: #00843d;
    /* Vorwerk Green */
    font-size: 18px;
    letter-spacing: 2px;
    display: inline-flex;
}

.review-title {
    font-weight: 700;
    font-size: 14px;
    color: #111;
    letter-spacing: 0.3px;
}

.review-date {
    font-size: 13px;
    color: #222;
}

/* Review Body Text */
.review-body {
    font-size: 14px;
    line-height: 1.65;
    color: #2b2b2b;
    margin: 0 0 25px 0;
    text-align: justify;
}

/* Bottom: Helpful Feedback */
.review-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #444;
}

.helpful-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #222;
    padding: 0;
    transition: transform 0.15s ease;
}

.helpful-btn:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .review-card {
        flex-direction: column;
        gap: 12px;
    }

    .review-author-col {
        flex: none;
    }
}