.grecaptcha-badge { 
    visibility: hidden; 
}

.pswp__bg {
    background: #fff;
}

/* ------------------------------
   BRÄNDI VÄRVID
------------------------------ */
:root {
    --oog-green: #8bc400;
    --oog-green-dark: #6ea100;
    --oog-orange: #ff7a3c;
}

/* ------------------------------
   ÜLDINE WRAPPER
------------------------------ */
.oog-frontpage {
    font-family: inherit;
}

/* Sektsioonid */
.oog-section {
    padding: 60px 0;
}

.oog-section--muted {
    background: #f6f7f9;
}

.oog-section--light {
    background: #ffffff;
}

/* CTA sektsioon – taust võtab hiljem kaardi stiili */
.oog-section--cta {
    background: transparent;
    padding: 60px 0 80px;
}

/* Pealkirjad ja alampealkirjad */
.oog-section__title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1.2;
}

.oog-section__title--left {
    text-align: left;
}

.oog-section__subtitle {
    text-align: center;
    color: #666666;
    max-width: 640px;
    margin: 0 auto 32px;
}

.oog-section__subtitle--left {
    text-align: left;
    margin-left: 0;
}

/* ------------------------------
   HERO
------------------------------ */
.oog-hero {
    padding: 90px 0 80px;
    background: linear-gradient(135deg, #f6fff0 0%, #e8f7d5 100%);
    color: #222;
    position: relative !important;
    overflow: hidden !important;
}

.oog-hero__inner {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: space-between;
}

.oog-hero__content {
    flex: 1 1 55%;
}

.oog-hero__visual {
    flex: 1 1 45%;
    display: flex;
    justify-content: flex-end;
}

.oog-hero__title {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #222;
}

.oog-hero__accent {
    color: var(--oog-orange);
}

.oog-hero__text {
    font-size: 16px;
    color: #444444;
    max-width: 520px;
}

.oog-hero__actions {
    margin-top: 26px;
    display: flex;
    gap: 14px;
}

.oog-hero__stats {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.oog-hero-media {
    background: rgba(255,255,255,0.6);
    border-radius: 22px;
    padding: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    max-width: 420px;
}

.oog-hero-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
}

/* Hero label */
.oog-label {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(139, 196, 0, 0.15);
    color: var(--oog-green);
    font-size: 12px;
    margin-bottom: 12px;
}

/* Hero tausta muster (circuit board) */
.oog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='260'%20height='260'%20viewBox='0%200%20260%20260'%3E%3Cg%20fill='none'%20stroke='%238bc400'%20stroke-width='1'%20stroke-opacity='0.35'%3E%3Cpath%20d='M20%20260V160H80V80H150V20'%2F%3E%3Cpath%20d='M60%20260V190H120V120H190V60'%2F%3E%3Cpath%20d='M100%20260V200H170V140H230V80'%2F%3E%3Ccircle%20cx='80'%20cy='80'%20r='2'%2F%3E%3Ccircle%20cx='150'%20cy='20'%20r='2'%2F%3E%3Ccircle%20cx='120'%20cy='120'%20r='2'%2F%3E%3Ccircle%20cx='190'%20cy='60'%20r='2'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-size: 260px 260px;
    opacity: 0.9;
    animation: oog-hero-circuit 40s linear infinite;
}

.oog-hero > * {
    position: relative;
    z-index: 2;
}

@keyframes oog-hero-circuit {
    0% { background-position: 0 0; }
    100% { background-position: 260px 260px; }
}

/* ------------------------------
   NUPUD
------------------------------ */
.oog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    text-decoration: none;
    transition: all .2s ease;
    font-size: 14px;
    transform: translateY(0);
}

.oog-btn--primary {
    background: var(--oog-green);
    color: #ffffff;
    border-color: var(--oog-green);
}

.oog-btn--primary:hover {
    background: var(--oog-green-dark);
    border-color: var(--oog-green-dark);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

.oog-btn--ghost {
    background: transparent;
    color: #8bc400;
    border-color: #8bc400;
}

.oog-btn--ghost:hover {
    background: rgba(139,196,0,0.08);
    color: #6ea100;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

.oog-btn--lg {
    padding: 12px 30px;
    font-size: 15px;
}

/* Hero stats */
.oog-stat__value {
    font-weight: 700;
    font-size: 18px;
}

.oog-stat__label {
    font-size: 13px;
    color: #777777;
}

/* ------------------------------
   NUMBRIRIBA
------------------------------ */
.oog-numbers {
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 32px;
    text-align: center;
}

.oog-number__value {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.oog-number__label {
    font-size: 13px;
    color: #777777;
}

/* ------------------------------
   ÜLDINE KESKJOONDUS
------------------------------ */
.oog-center {
    text-align: center;
}

.oog-center__actions {
    justify-content: center;
}

/* ------------------------------
   GRIDID JA KAARDID
------------------------------ */
.oog-grid {
    display: grid;
    gap: 24px;
}

.oog-grid--3 {
    grid-template-columns: repeat(3, minmax(0,1fr));
}

.oog-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: transform .2s ease, box-shadow .2s ease;
}

.oog-card__title {
    font-size: 18px;
    margin-bottom: 8px;
}

.oog-card__text {
    font-size: 14px;
    color: #555555;
}

.oog-card__link {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
    color: var(--oog-green);
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.oog-card__link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--oog-green);
    transition: width .25s ease;
}

.oog-card__link:hover::after {
    width: 100%;
}

.oog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

/* ------------------------------
   FEATURES BLOKK
------------------------------ */
.oog-features {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: center;
}

.oog-feature-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
    color: #444444;
    font-size: 14px;
}

.oog-feature-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
}

.oog-feature-list li::before {
    content: "•";
    position: absolute;
    left: 4px;
    top: 0;
    color: var(--oog-green);
}

.oog-features__media {
    display: grid;
    gap: 14px;
}

.oog-feature-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.22);
}

.oog-feature-image--small {
    max-width: 260px;
    margin-left: auto;
}

/* ------------------------------
   E-POOD SEKTSIOON
------------------------------ */
.oog-shop {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.oog-shop__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.oog-shop__header .oog-section__title,
.oog-shop__header .oog-section__subtitle {
    text-align: left;
    margin-left: 0;
}

.oog-shop__products .products {
    margin: 0;
}

.oog-shop__products ul.products li.product {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    padding: 16px;
    overflow: hidden;
}

/* ------------------------------
   KOMISJONIMÜÜK
------------------------------ */
.oog-commission {
    display: grid;
    grid-template-columns: minmax(0,1.4fr) minmax(0,1fr);
    gap: 32px;
    align-items: center;
}

.oog-commission__list {
    list-style: none;
    padding: 0;
    margin: 12px 0 20px;
    font-size: 14px;
    color: #444;
}

.oog-commission__list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
}

.oog-commission__list li::before {
    content: "";
    position: absolute;
    left: 5px;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #8bc400;
}

.oog-commission__card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.06);
}

/* ------------------------------
   KKK
------------------------------ */
.oog-faq {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 40px;
    align-items: flex-start;
}

.oog-faq__intro .oog-section__subtitle {
    margin-bottom: 20px;
}

.oog-faq-item {
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 8px;
    padding: 12px 16px;
    border: 1px solid #e0e3ea;
    cursor: pointer;
}

.oog-faq-item summary {
    list-style: none;
    font-weight: 600;
    font-size: 14px;
}

.oog-faq-item summary::-webkit-details-marker {
    display: none;
}

.oog-faq-item[open] {
    border-color: var(--oog-green);
}

.oog-faq-item p {
    font-size: 14px;
    color: #555555;
    margin-top: 8px;
}

/* ------------------------------
   CTA KAART (LÕPP-CTA)
------------------------------ */
.oog-cta {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 36px;
    border-radius: 28px;
    background: linear-gradient(135deg, #f6fff0 0%, #e8f7d5 100%);
    box-shadow: 0 16px 45px rgba(0,0,0,0.10);
    color: #222;
}

.oog-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(135deg, rgba(139,196,0,0.30) 1px, transparent 1px),
        linear-gradient(225deg, rgba(139,196,0,0.20) 1px, transparent 1px);
    background-size: 80px 80px;
    animation: oog-hero-circuit 40s linear infinite;
}

.oog-cta > * {
    position: relative;
    z-index: 1;
}

.oog-cta__title {
    font-size: 24px;
    margin-bottom: 6px;
    color: #222;
}

.oog-cta__text {
    font-size: 14px;
    color: #555;
}

.oog-cta .oog-btn--primary {
    background: #ffffff;
    color: var(--oog-green);
    border-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.oog-cta .oog-btn--primary:hover {
    background: #f6fff0;
    border-color: #f6fff0;
}

/* ------------------------------
   PARTNERID
------------------------------ */
.oog-partners {
    text-align: center;
}

.oog-partners .oog-section__title {
    font-size: 22px;
    margin-bottom: 26px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
}

.oog-partners__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.oog-partners__item {
    flex: 0 1 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oog-partners__logo {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.oog-partners__logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-2px);
}

/* ------------------------------
   INTERAKTIIVNE ENERGIAGRAAFIK
------------------------------ */
.oog-energy-card {
    margin-top: 22px;
    padding: 16px 18px;
    border-radius: 18px;
    background: #f6f7f9;
    display: flex;
    gap: 20px;
    align-items: flex-end;
    max-width: 520px;
}

.oog-energy-chart {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 14px;
    flex: 1;
    padding-bottom: 22px;
}

.oog-energy-chart::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #d0d4da;
}

.oog-energy-chart__bar {
    position: relative;
    flex: 1;
    height: 120px;
    border-radius: 12px 12px 4px 4px;
    overflow: hidden;
    background: #eceff5;
}

/* täitev osa – kõrgust kontrollib JS */
.oog-energy-chart__fill {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    border-radius: inherit;
    transition: height .6s ease;
    z-index: 1;
}

/* protsendinumber selgelt üleval */
.oog-energy-chart__value {
    position: absolute;
    z-index: 2;
    top: 8px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #222;
    text-shadow: none;
    background: rgba(255,255,255,0.9);
    border-radius: 999px;
    display: inline-block;
    padding: 2px 6px;
}

/* nimi all */
.oog-energy-chart__bar span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -18px;
    text-align: center;
    font-size: 12px;
    color: #555;
}

/* värvid */
.oog-energy-chart__bar--solar .oog-energy-chart__fill {
    background: linear-gradient(to top, #8bc400, #c6ff4d);
    height: 80%;
}
.oog-energy-chart__bar--home .oog-energy-chart__fill {
    background: linear-gradient(to top, #ffaa3c, #ffe29f);
    height: 100%;
}
.oog-energy-chart__bar--grid .oog-energy-chart__fill {
    background: linear-gradient(to top, #4e7cff, #9fd2ff);
    height: 20%;
}

/* legend */
.oog-energy-legend {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
}

.oog-energy-legend__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.oog-energy-legend__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 4px;
}

.oog-energy-legend__item--solar .oog-energy-legend__dot {
    background: #8bc400;
}
.oog-energy-legend__item--home .oog-energy-legend__dot {
    background: #ffaa3c;
}
.oog-energy-legend__item--grid .oog-energy-legend__dot {
    background: #4e7cff;
}

.oog-energy-legend__item strong {
    display: block;
    margin-bottom: 2px;
    font-size: 12px;
}

.oog-energy-legend__item p {
    margin: 0;
    color: #666;
}

/* slider ja note */
.oog-energy-controls {
    margin-top: 12px;
    max-width: 520px;
}

.oog-energy-controls label {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 4px;
}

.oog-energy-controls input[type="range"] {
    width: 100%;
}

.oog-energy-chart__note {
    font-size: 12px;
    color: #777;
    margin-top: 6px;
}


/* ------------------------------
   RESPONSIVE
------------------------------ */
@media (max-width: 991px) {
    .oog-hero__inner {
        flex-direction: column;
    }

    .oog-hero__visual {
        justify-content: flex-start;
    }

    .oog-numbers {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .oog-grid--3 {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .oog-features {
        grid-template-columns: 1fr;
    }

    .oog-faq {
        grid-template-columns: 1fr;
    }

    .oog-shop__header {
        align-items: flex-start;
    }

    .oog-banners {
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .oog-commission {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .oog-section {
        padding: 40px 0;
    }

    .oog-hero {
        padding: 70px 0 60px;
    }

    .oog-hero__title {
        font-size: 32px;
    }

    .oog-grid--3,
    .oog-numbers {
        grid-template-columns: 1fr;
    }

    .oog-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 22px 20px;
    }

    .oog-feature-image--small {
        max-width: 100%;
        margin-left: 0;
    }

    .oog-banners {
        grid-template-columns: 1fr;
    }

    .oog-energy-card {
        flex-direction: column;
        align-items: stretch;
    }

    .oog-energy-chart {
        max-width: 100%;
    }

    .oog-partners__list {
        gap: 24px;
    }

    .oog-partners__item {
        flex: 0 1 45%;
    }
}

/* ------------------------------
   AVALehe ülemine vahe
------------------------------ */

/* Esimene sektsioon (slaider) ilma ülemise paddinguta */
.oog-frontpage .oog-section:first-of-type {
    padding-top: 0;
}

/* Eemalda Woodmart'i ülemine padding avalehelt */
.home .main-page-wrapper,
.home .site-content,
.home .entry-content,
.home .page-title {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Eemaldame brauseri vaikimisi focus-raami noolte ja täppide ümbert */
.oog-offers-arrow,
.oog-offers-arrow:focus,
.oog-offers-arrow:active {
    outline: none !important;
}

.oog-offers-dot,
.oog-offers-dot:focus,
.oog-offers-dot:active {
    outline: none !important;
}