/*
Theme Name: HOLIEST
Theme URI: https://holiest.ee
Author: HOLIEST
Author URI: https://holiest.ee
Description: High-End medical spa / elustiili audit – HOLIEST WordPress teema.
Version: 1.0.0
Text Domain: holiest
*/

/* ----------------------------
   DESIGN TOKENS
   ---------------------------- */

:root {
    /* Taustad & tekst */
    --holiest-bg: #f5f1ea;
    --holiest-bg-dark: #15161a;
    --holiest-text: #232326;
    --holiest-muted: #7a7b80;
    --holiest-card-bg: #ffffff;
    --holiest-border-subtle: rgba(0, 0, 0, 0.06);

    --holiest-radius-soft: 18px;
    --holiest-radius-pill: 999px;
    --holiest-shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.06);

    /* Uus pronks-satiin palett */
    --bronze-dark:  #6B462E;
    --bronze-mid:   #AB876B;
    --bronze-warm:  #C79978;
    --bronze-light: #F9E7D2;

    /* Aktsendiks roheline ring valikutel */
    --holiest-green: #2e8b57;
}

/* ----------------------------
   GLOBAL RESET & BASE
   ---------------------------- */

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
}

*, *::before, *::after {
    box-sizing: inherit;
}

body {
    margin: 0;
    background-color: var(--holiest-bg);
    color: var(--holiest-text);
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
    text-decoration: none;
}

h1, h2, h3, h4 {
    font-family: "Playfair Display", "Times New Roman", serif;
    margin-top: 0;
}

/* Layout utilities */

.holiest-site {
    background-color: var(--holiest-bg);
}

.holiest-section {
    padding: 5rem 0;
}

.holiest-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ----------------------------
   BUTTONS – BRONZE SATIIN
   ---------------------------- */

/* baasnupp kõigi primaarsete nuppude jaoks */
.holiest-btn,
.bronze-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9em 2.6em;
    border-radius: var(--holiest-radius-pill);
    border: none;
    cursor: pointer;

    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;

    text-decoration: none;
    transition:
        transform 0.15s ease-out,
        box-shadow 0.15s ease-out,
        background-position 0.3s ease-out,
        color 0.15s ease-out,
        background-color 0.15s ease-out;
}

/* primaarne – pronks-satiin */
.holiest-btn--primary,
.bronze-button {
    color: #ffffff;
    background-image: linear-gradient(
        120deg,
        var(--bronze-light) 0%,
        var(--bronze-warm) 30%,
        var(--bronze-mid) 55%,
        var(--bronze-dark) 100%
    );
    background-size: 180% 180%;
    background-position: 0% 50%;
    box-shadow: 0 10px 28px rgba(107, 70, 46, 0.35);
}

/* läikekiht – satiiniefekt */
.holiest-btn--primary::before,
.bronze-button::before {
    content: "";
    position: absolute;
    inset: 2px 4px;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(
        120deg,
        rgba(255, 255, 255, 0.60),
        rgba(255, 255, 255, 0.05) 40%,
        rgba(0, 0, 0, 0) 100%
    );
    opacity: 0.9;
    mix-blend-mode: screen;
}

/* hover & active */
.holiest-btn--primary:hover,
.bronze-button:hover {
    transform: translateY(-1px);
    background-position: 100% 50%;
    box-shadow: 0 14px 34px rgba(107, 70, 46, 0.45);
}

.holiest-btn--primary:active,
.bronze-button:active {
    transform: translateY(1px);
    box-shadow: 0 6px 18px rgba(107, 70, 46, 0.45);
}

/* ghost / sekundaarne nupp */
.holiest-btn--ghost {
    background-color: #f5efe6;
    color: var(--holiest-text);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.holiest-btn--ghost:hover {
    background-color: #ebe0d3;
}

.holiest-btn--full {
    width: 100%;
}

/* ----------------------------
   HEADER
   ---------------------------- */

.holiest-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 1.2rem 0;
    background: linear-gradient(to bottom,
        rgba(245, 241, 234, 0.98),
        rgba(245, 241, 234, 0.90),
        rgba(245, 241, 234, 0.0)
    );
    backdrop-filter: blur(12px);
}

.holiest-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.holiest-header-logo-text {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 1.4rem;
    letter-spacing: 0.25em;
}

.holiest-header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.holiest-header-menu {
    list-style: none;
    padding: 0.15rem;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    border-radius: var(--holiest-radius-pill);
    background-color: #ffffff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.holiest-header-menu li a {
    display: inline-block;
    padding: 0.55rem 1.1rem;
    border-radius: var(--holiest-radius-pill);
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--holiest-muted);
}

.holiest-header-menu li a:hover,
.holiest-header-menu li.current-menu-item a {
    color: var(--holiest-text);
    background-color: rgba(0, 0, 0, 0.03);
}

.holiest-header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.holiest-header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem 0.9rem;
    border-radius: var(--holiest-radius-pill);
    border: none;
    background-color: #ffffff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.holiest-header-cart-icon {
    font-size: 1.1rem;
}

.holiest-header-cart-count {
    margin-left: 0.4rem;
    min-width: 24px;
    height: 24px;
    padding: 0 0.4rem;
    border-radius: 999px;
    background-image: linear-gradient(120deg, var(--bronze-light), var(--bronze-dark));
    color: #fff;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ----------------------------
   FOOTER
   ---------------------------- */

.holiest-footer {
    background-color: #111015;
    color: #f3ede4;
    padding-top: 3.5rem;
    padding-bottom: 2rem;
    margin-top: 4rem;
}

.holiest-footer-top {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: flex-start;
}

.holiest-footer-logo {
    font-family: "Playfair Display", "Times New Roman", serif;
    letter-spacing: 0.25em;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.holiest-footer-tagline {
    font-size: 0.95rem;
    color: rgba(243, 237, 228, 0.8);
}

.holiest-footer-heading {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
}

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

.holiest-footer-list li {
    margin-bottom: 0.45rem;
    font-size: 0.9rem;
    color: rgba(243, 237, 228, 0.9);
}

.holiest-footer-list a:hover {
    text-decoration: underline;
}

.holiest-footer-bottom {
    margin-top: 2.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: rgba(243, 237, 228, 0.75);
}

/* ----------------------------
   HOMEPAGE – HERO
   ---------------------------- */

.holiest-hero {
    position: relative;
    min-height: 80vh;
    background-size: cover;
    background-position: center center;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.holiest-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.9), rgba(245, 241, 234, 0.95));
    backdrop-filter: blur(3px);
}

.holiest-hero-inner {
    position: relative;
    padding: 5rem 1.5rem 6rem;
    max-width: 860px;
}

.holiest-eyebrow,
.holiest-hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    color: var(--holiest-muted);
    margin-bottom: 1.25rem;
}

.holiest-hero-title {
    font-size: clamp(2.6rem, 4vw, 3.7rem);
    line-height: 1.1;
    margin: 0 0 1.5rem;
}

.holiest-hero-subtitle {
    max-width: 34rem;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--holiest-muted);
    margin-bottom: 2.4rem;
}

.holiest-hero-actions {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    flex-wrap: wrap;
}

.holiest-hero-secondary-link {
    font-size: 0.95rem;
    text-decoration: underline;
}

/* ----------------------------
   HOMEPAGE – BRIDGE STRIP
   ---------------------------- */

.holiest-strip,
.holiest-bridge {
    background-color: var(--holiest-bg-dark);
    color: #f6f4ef;
    padding: 1.1rem 0;
    border-radius: 36px;
    margin: 0 1.5rem 4rem;
    text-align: center;
}

.holiest-strip-text,
.holiest-bridge p {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

/* ----------------------------
   HOMEPAGE – PROBLEM GRID
   ---------------------------- */

.holiest-section-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.holiest-section-lead {
    font-size: 0.98rem;
    color: var(--holiest-muted);
    max-width: 34rem;
    margin-bottom: 2.5rem;
}

.holiest-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.holiest-card {
    background-color: var(--holiest-card-bg);
    border-radius: var(--holiest-radius-soft);
    padding: 1.9rem 1.7rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.holiest-card--problem:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
}

.holiest-card-icon {
    margin-bottom: 1.35rem;
}

.holiest-card-icon span {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background-image: linear-gradient(135deg, var(--bronze-light), var(--bronze-dark));
    opacity: 0.92;
}

.holiest-card-title {
    font-size: 1.2rem;
    margin: 0 0 0.6rem;
}

.holiest-card-text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--holiest-muted);
}

/* ----------------------------
   HOMEPAGE – SOLUTION
   ---------------------------- */

.holiest-solution-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.holiest-solution-figure {
    margin: 0;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--holiest-shadow-soft);
}

.holiest-solution-copy p {
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--holiest-muted);
    margin-bottom: 1rem;
}

.holiest-solution-highlight {
    margin-top: 1.4rem;
    font-weight: 600;
}

/* ----------------------------
   HOMEPAGE – PRICING
   ---------------------------- */

.holiest-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

.holiest-pricing-card {
    background-color: var(--holiest-card-bg);
    border-radius: 26px;
    padding: 2.1rem 1.9rem 2.2rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
    position: relative;
}

.holiest-pricing-card--featured {
    transform: translateY(-8px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.14);
}

.holiest-pricing-tag {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    background-color: rgba(0, 0, 0, 0.04);
    margin-bottom: 0.9rem;
}

.holiest-pricing-title {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.holiest-pricing-price {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.holiest-pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.6rem;
    font-size: 0.92rem;
    color: var(--holiest-muted);
}

.holiest-pricing-list li {
    margin-bottom: 0.4rem;
}

/* ----------------------------
   HOMEPAGE – FAQ
   ---------------------------- */

.holiest-faq {
    max-width: 760px;
    margin: 0 auto;
}

.holiest-faq-item {
    border-radius: 16px;
    background-color: #fff;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.04);
    padding: 1.1rem 1.3rem;
    margin-bottom: 0.9rem;
    cursor: pointer;
}

.holiest-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 600;
}

.holiest-faq-toggle {
    font-size: 1.3rem;
    line-height: 1;
}

.holiest-faq-answer {
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--holiest-muted);
    display: none;
}

.holiest-faq-item.is-open .holiest-faq-answer {
    display: block;
}

/* ----------------------------
   BOOKING MODAL – SHELL
   ---------------------------- */

.holiest-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}

.holiest-modal.is-open {
    display: block;
}

.holiest-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.holiest-modal-dialog {
    position: relative;
    margin: 4vh auto;
    max-width: 520px;
    background-color: #fdf7ee;
    border-radius: 32px;
    box-shadow: 0 38px 120px rgba(0, 0, 0, 0.45);
    padding: 2.2rem 2.4rem 2rem;
}

.holiest-modal-close {
    position: absolute;
    top: 1.1rem;
    right: 1.3rem;
    border: none;
    background: transparent;
    font-size: 1.4rem;
    cursor: pointer;
}

.holiest-modal-title {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.holiest-modal-text {
    font-size: 0.95rem;
    color: var(--holiest-muted);
    margin-bottom: 1.4rem;
}

/* sammud */
.holiest-modal-step {
    display: none;
}

.holiest-modal-step.is-active {
    display: block;
}

/* valiku kaardid */

.holiest-choice-group {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-bottom: 1.6rem;
}

.holiest-choice {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background-color: #ffffff;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    border: 1px solid transparent;
}

.holiest-choice-indicator {
    margin-top: 0.3rem;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    box-shadow: 0 0 0 2px rgba(46, 139, 87, 0.25);
    border: 2px solid transparent;
}

.holiest-choice.is-selected .holiest-choice-indicator {
    border-color: var(--holiest-green);
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.28);
}

.holiest-choice-content {
    flex: 1;
}

.holiest-choice-title {
    display: block;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.holiest-choice-text {
    font-size: 0.9rem;
    color: var(--holiest-muted);
}

/* valiku lisasisu (perepakett, osamaksed jne) */
.holiest-choice-extra {
    margin-top: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px dashed rgba(0, 0, 0, 0.06);
    display: none;
}

.holiest-choice.is-selected .holiest-choice-extra {
    display: block;
}

.holiest-family-label {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.holiest-input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.65rem 0.75rem;
    font-size: 0.95rem;
    background-color: #fbf3e7;
}

.holiest-input:focus {
    outline: none;
    border-color: rgba(46, 139, 87, 0.55);
    box-shadow: 0 0 0 2px rgba(46, 139, 87, 0.2);
}

/* samm 4 grid */

.holiest-grid-two {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.holiest-field-group label,
.holiest-field-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.3rem;
    color: var(--holiest-muted);
}

/* kellaajad */

.holiest-time-slots {
    display: flex;
    gap: 0.5rem;
}

.holiest-time-slot {
    flex: 1;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #fff;
    padding: 0.45rem 0.5rem;
    font-size: 0.85rem;
    cursor: pointer;
}

.holiest-time-slot.is-active {
    border-color: var(--holiest-green);
    background-color: #e9f7ef;
}

/* samm 5 – osamaksed */

.holiest-installments {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.7rem;
}

.holiest-installment-option {
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.35rem 0.75rem;
    font-size: 0.87rem;
    text-align: center;
    background-color: #fff;
    cursor: pointer;
}

.holiest-installment-option.is-selected {
    border-color: var(--holiest-green);
    background-color: #e9f7ef;
}

/* checkbox */

.holiest-checkbox {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    margin-top: 0.5rem;
}

.holiest-installment-invoice-extra {
    margin-top: 0.7rem;
    display: none;
}

.holiest-installment-invoice-extra.is-visible {
    display: block;
}

/* kokkuvõte */

.holiest-summary {
    background-color: #fff;
    border-radius: 18px;
    padding: 1.1rem 1.2rem;
    margin-bottom: 1.4rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
}

.holiest-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.3rem;
}

.holiest-summary-row--total {
    margin-top: 0.6rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-weight: 600;
}

/* jalaosa nupud */

.holiest-modal-footer {
    margin-top: 1.8rem;
    display: flex;
    justify-content: space-between;
    gap: 0.9rem;
}

.holiest-modal-footer-row {
    display: flex;
    flex: 1;
    gap: 0.9rem;
}

/* ----------------------------
   SHOP (archive-product)
   ---------------------------- */

.holiest-shop-hero {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
}

.holiest-shop-title {
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.holiest-shop-lead {
    max-width: 32rem;
    font-size: 0.96rem;
    color: var(--holiest-muted);
}

.holiest-shop-layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 2.5rem;
}

.holiest-shop-filters {
    background-color: #fff;
    border-radius: 24px;
    padding: 1.6rem 1.4rem;
    box-shadow: var(--holiest-shadow-soft);
    font-size: 0.9rem;
}

.holiest-shop-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.holiest-product-card {
    background-color: #fff;
    border-radius: 24px;
    box-shadow: var(--holiest-shadow-soft);
    padding: 1.4rem 1.4rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.holiest-product-card-title {
    font-size: 1rem;
}

.holiest-product-card-price {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* ----------------------------
   SINGLE PRODUCT (platinum)
   ---------------------------- */

.holiest-product-page {
    padding-top: 4rem;
}

.holiest-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.holiest-product-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
    gap: 1rem;
}

.holiest-product-gallery-main {
    grid-column: 1 / -1;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--holiest-shadow-soft);
}

/* ----------------------------
   MANIFEST PAGE
   ---------------------------- */

.holiest-manifest-hero {
    position: relative;
    padding: 4.5rem 0 4rem;
    background-size: cover;
    background-position: center;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
}

.holiest-manifest-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 0%, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.6));
}

.holiest-manifest-hero-inner {
    position: relative;
    color: #fff;
}

.holiest-manifest-hero-title {
    font-size: 2.6rem;
    max-width: 22rem;
    margin-bottom: 1.1rem;
}

.holiest-manifest-hero-subtitle {
    max-width: 30rem;
    font-size: 0.98rem;
}

.holiest-manifest-block {
    padding: 4rem 0;
}

.holiest-manifest-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.holiest-manifest-media {
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--holiest-shadow-soft);
}

.holiest-manifest-copy p {
    font-size: 0.96rem;
    color: var(--holiest-muted);
    margin-bottom: 0.9rem;
}

.holiest-manifest-block--reverse .holiest-manifest-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

/* ----------------------------
   NÄIDISRAPORT PAGE
   ---------------------------- */

.holiest-report-page {
    background-color: var(--holiest-bg);
}

.holiest-report-hero {
    padding-top: 4.2rem;
    padding-bottom: 3.8rem;
}

.holiest-report-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.holiest-report-hero-media {
    position: relative;
    margin: 0;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.18);
}

.holiest-report-device-tag {
    position: absolute;
    top: 1.1rem;
    right: 1.2rem;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background-color: rgba(245, 241, 234, 0.94);
    color: var(--holiest-muted);
}

/* ----------------------------
   KONTAKT PAGE
   ---------------------------- */

.holiest-contact-shell {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.holiest-contact-card {
    background-color: #fff;
    border-radius: 32px;
    box-shadow: var(--holiest-shadow-soft);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.3fr);
    overflow: hidden;
}

.holiest-contact-left {
    padding: 2.8rem 2.6rem;
}

.holiest-contact-right {
    background-size: cover;
    background-position: center;
    position: relative;
}

.holiest-contact-overlay-card {
    position: absolute;
    inset: 1.8rem;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 26px;
    padding: 2rem 2rem 1.6rem;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.holiest-contact-confidential {
    margin-top: 1.4rem;
    font-size: 0.85rem;
    text-align: center;
}

/* ----------------------------
   LEGAL PAGES
   ---------------------------- */

.holiest-legal-page {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.holiest-legal-inner {
    max-width: 780px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 26px;
    padding: 2.4rem 2.6rem;
    box-shadow: var(--holiest-shadow-soft);
    font-size: 0.96rem;
    color: var(--holiest-text);
}

.holiest-legal-inner h2 {
    margin-top: 2rem;
    margin-bottom: 0.6rem;
}

/* ----------------------------
   CHECKOUT SHELL
   ---------------------------- */

.holiest-checkout-page {
    background-color: var(--holiest-bg);
}

.holiest-checkout-shell {
    max-width: 1000px;
    margin: 3rem auto;
    background-color: #fdf5e8;
    border-radius: 32px;
    padding: 2.4rem 2.6rem;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.holiest-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2.2rem;
}

.holiest-checkout-summary {
    background-color: #fff7eb;
    border-radius: 26px;
    padding: 1.8rem 1.6rem;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

/* ----------------------------
   CART DRAWER (mini-cart)
   ---------------------------- */

.holiest-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 900;
    display: none;
}

.holiest-cart-overlay.is-open {
    display: block;
}

.holiest-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100%;
    height: 100%;
    padding: 1.8rem 1.7rem;
    background-color: #fdf5eb;
    box-shadow: -26px 0 80px rgba(0, 0, 0, 0.6);
    z-index: 901;
    transform: translateX(100%);
    transition: transform 0.28s ease-out;
}

.holiest-cart-drawer.is-open {
    transform: translateX(0);
}

/* ----------------------------
   RESPONSIVE
   ---------------------------- */

@media (max-width: 900px) {
    .holiest-header-inner {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .holiest-header-nav {
        order: 3;
        justify-content: center;
    }

    .holiest-section {
        padding: 3.5rem 0;
    }

    .holiest-grid,
    .holiest-pricing-grid,
    .holiest-shop-grid,
    .holiest-product-hero,
    .holiest-solution-grid,
    .holiest-manifest-grid,
    .holiest-checkout-grid,
    .holiest-contact-card {
        grid-template-columns: 1fr;
    }

    .holiest-strip,
    .holiest-bridge {
        margin-inline: 1rem;
    }

    .holiest-modal-dialog {
        margin: 4vh 1rem;
        padding: 2rem 1.6rem 1.8rem;
    }

    .holiest-footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 2rem;
    }
}

@media (max-width: 640px) {
    .holiest-header-menu {
        gap: 0.4rem;
        padding-inline: 0.5rem;
    }

    .holiest-header-menu li a {
        padding-inline: 0.7rem;
    }

    .holiest-grid-two {
        grid-template-columns: 1fr;
    }

    .holiest-footer-top {
        grid-template-columns: 1fr;
    }

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

/* Osamaksete valikud üksteise all */
.holiest-installments {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.holiest-installment-option {
  width: 100%;
}

:root {
  --bronze-dark:  #6B462E;
  --bronze-mid:   #AB876B;
  --bronze-warm:  #C79978;
  --bronze-light: #F9E7D2;
}

/* Baasnupp */
.holiest-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9em 2.6em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform 0.15s ease-out,
    box-shadow 0.15s ease-out,
    background-position 0.3s ease-out;
}

/* Pronks-satiin primaarne nupp */
.holiest-btn--primary {
  color: #ffffff;
  background-color: transparent !important;
  background-image: linear-gradient(
    120deg,
    var(--bronze-light) 0%,
    var(--bronze-warm) 30%,
    var(--bronze-mid) 55%,
    var(--bronze-dark) 100%
  ) !important;
  background-size: 180% 180%;
  background-position: 0% 50%;
  box-shadow: 0 10px 28px rgba(107, 70, 46, 0.35);
}

.holiest-btn--primary::before {
  content: "";
  position: absolute;
  inset: 2px 4px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.60),
    rgba(255, 255, 255, 0.05) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0.9;
  mix-blend-mode: screen;
}

/* Hover / active efekt */
.holiest-btn--primary:hover {
  transform: translateY(-1px);
  background-position: 100% 50%;
  box-shadow: 0 14px 34px rgba(107, 70, 46, 0.45);
}

.holiest-btn--primary:active {
  transform: translateY(1px);
  box-shadow: 0 6px 18px rgba(107, 70, 46, 0.45);
}

/* --- Osamaksete paigutus: 2/3/6 kuud üksteise all --- */
.holiest-choice-extra .holiest-installments {
  display: block !important;
}

.holiest-installment-option {
  display: block !important;
  width: 100% !important;
  text-align: left;
  margin-bottom: 0.35rem;
}

/* --- Viimane sõna: pronks-satiin kõigile primaarsetele nuppudele --- */
.holiest-btn--primary,
.bronze-button {
  background: linear-gradient(
    120deg,
    var(--bronze-light) 0%,
    var(--bronze-warm) 30%,
    var(--bronze-mid) 55%,
    var(--bronze-dark) 100%
  ) !important;
  background-size: 180% 180% !important;
  background-position: 0% 50% !important;
  color: #ffffff !important;
  box-shadow: 0 10px 28px rgba(107, 70, 46, 0.35) !important;
}

/* Kohustuslik väli täitmata – punane glow */
.holiest-field-group.is-error .holiest-input {
  border-color: #cc3b3b;
  box-shadow: 0 0 0 2px rgba(204, 59, 59, 0.25);
}
