/* ====================================
   FONTS
   ==================================== */
@font-face {
    font-family: 'Aeonik Pro';
    src: url('AeonikPro-Regular.woff2?v=20260314-1') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Aeonik Pro';
    src: url('AeonikPro-Bold.woff2?v=20260314-1') format('woff2');
    font-weight: 700;
    font-style: normal;
}

/* ====================================
   GLOBAL RESET
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

:root {
    --lime-green: #DEF299;
    --dark-green: #174538;
    --deep-green: #174538;
    --text-dark: #174538;
    --cream: #fbf8f4;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--lime-green);
    color: var(--text-dark);
}

/* ====================================
   NAVIGATION
   ==================================== */
nav {
    padding: 1.5rem 2rem;
    position: relative;
    z-index: 200;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem 0.75rem;
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2316443a' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.logo-container {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo-name {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--deep-green);
    letter-spacing: -0.5px;
    font-family: 'Aeonik Pro', sans-serif;
}

.logo-brand {
    display: block;
    width: clamp(120px, 20vw, 180px);
    height: auto;
}

.nav-links {
    display: flex;
    gap: 1.25rem;
    list-style: none;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0;
}

@media (max-width: 991px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--lime-green);
        z-index: 999;
        padding: 1rem 1.5rem 1.5rem;
        text-align: left;
    }

    .contact-btn {
        display: inline-block;
        margin: 0.75rem 0 0;
    }
}

@media (min-width: 992px) {
    .contact-btn {
        margin-left: 1rem; /* odsadenie na desktop */
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--deep-green);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Aeonik Pro', sans-serif;
    white-space: nowrap;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--dark-green);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--dark-green);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.contact-btn {
    background: var(--dark-green);
    color: var(--lime-green);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(26, 77, 46, 0.2);
}

.contact-btn:hover {
    background: var(--deep-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 77, 46, 0.3);
}

.contact-btn::after {
    display: none;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.navbar-actions .contact-btn {
    margin: 0;
}

.language-switcher-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: 52px;
    height: 48px;
    padding: 0.4rem 0.25rem;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--deep-green);
    box-shadow: none;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.language-switcher-toggle:hover,
.language-switcher-toggle:focus-visible {
    background: transparent;
    box-shadow: none;
    opacity: 0.78;
    transform: translateY(-1px);
    outline: none;
}

.language-flag {
    display: block;
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex: 0 0 auto;
}

.language-chevron {
    width: 11px;
    height: 11px;
    transition: transform 0.2s ease;
}

.language-switcher-toggle[aria-expanded="true"] .language-chevron {
    transform: rotate(180deg);
}

.language-menu {
    min-width: 164px;
    margin-top: 0.55rem !important;
    padding: 0.4rem;
    border: 1px solid rgba(23, 69, 56, 0.12);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(23, 69, 56, 0.16);
}

.language-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.62rem 0.75rem;
    border-radius: 10px;
    color: var(--deep-green);
    font-family: 'Aeonik Pro', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
}

.language-menu .language-flag {
    width: 27px;
    height: 27px;
}

.language-menu .dropdown-item:hover,
.language-menu .dropdown-item:focus {
    color: var(--deep-green);
    background: rgba(222, 242, 153, 0.55);
}

@media (max-width: 991px) {
    .navbar-actions {
        justify-content: center;
        margin-top: 0.75rem;
    }

    .language-menu {
        inset: calc(100% + 0.1rem) auto auto 0 !important;
        transform: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .contact-btn {
        padding-inline: 1.45rem;
    }
}

.quotes-contact-btn {
    color: #fff;
}

.quotes-contact-btn:hover,
.quotes-contact-btn:focus {
    color: #fff;
}

.quotes-page {
    min-height: 100vh;
    background: #fff;
}

.quotes-hero {
    padding: 0 0 clamp(1.5rem, 3vw, 2.75rem);
    margin-top: -1rem;
}

.quotes-hero .container {
    max-width: 1180px;
}

.quotes-hero-image {
    display: block;
    width: min(100%, 980px);
    height: auto;
    margin: 0 auto;
}

.quotes-list-section {
    background: #fff;
    padding: 0 0 clamp(4rem, 7vw, 6rem);
}

.quotes-list-section .container {
    max-width: none;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 992px) {
    .quotes-list-section .container {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

.quotes-list {
    display: grid;
    gap: 0;
    background: #fff;
    border-top: 1px solid rgba(23, 69, 56, 0.14);
}

.quote-audio-card {
    position: relative;
    display: grid;
    grid-template-columns: 88px minmax(260px, 1.15fr) minmax(280px, 1fr) minmax(92px, auto) auto;
    gap: 1.35rem;
    align-items: center;
    min-height: 96px;
    padding: 1.15rem 1.5rem;
    border-bottom: 1px solid rgba(23, 69, 56, 0.12);
    background: #fff;
    transition: background 0.2s ease;
}

.quote-audio-card:hover {
    background: #fbfcf6;
}

.quote-cover-play {
    position: relative;
    width: 72px;
    height: 72px;
    border: 0;
    padding: 0;
    background:
        url("images/ekonomyslienky.svg?v=20260722-1") center / 82% auto no-repeat,
        #dfe2c8;
    grid-column: 1;
    cursor: pointer;
}

.quote-cover-play::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 2.15rem;
    height: 2.15rem;
    border-radius: 999px;
    background: rgba(23, 69, 56, 0.86);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.quote-cover-play .quote-cover-play-icon {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 1rem;
    height: 1rem;
    color: #fff;
    background: currentColor;
    mask: url("images/play.svg?v=20260314-1") center / contain no-repeat;
    -webkit-mask: url("images/play.svg?v=20260314-1") center / contain no-repeat;
    opacity: 0;
    transform: translateX(1px) scale(0.9);
    transition: opacity 0.18s ease, transform 0.18s ease;
    z-index: 1;
}

.quote-cover-play .quote-cover-play-icon::before,
.quote-cover-play .quote-cover-play-icon::after {
    content: none;
}

.quote-audio-card.is-playing .quote-cover-play .quote-cover-play-icon {
    width: 1.25rem;
    height: 1.25rem;
    background: currentColor;
    mask: url("images/pause.svg?v=20260314-1") center / contain no-repeat;
    -webkit-mask: url("images/pause.svg?v=20260314-1") center / contain no-repeat;
    transform: scale(1);
}

.quote-cover-play::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(23, 69, 56, 0.12);
    opacity: 0;
    transition: opacity 0.18s ease;
}

.quote-cover-play:hover::before,
.quote-cover-play:focus-visible::before,
.quote-cover-play:hover::after,
.quote-cover-play:focus-visible::after,
.quote-audio-card.is-playing .quote-cover-play::after {
    opacity: 1;
    transform: scale(1);
}

.quote-cover-play:hover .quote-cover-play-icon,
.quote-cover-play:focus-visible .quote-cover-play-icon,
.quote-audio-card.is-playing .quote-cover-play-icon {
    opacity: 1;
    transform: translateX(1px) scale(1);
}

.quote-audio-title {
    color: var(--dark-green);
    font-family: 'Aeonik Pro', sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.45;
    margin: 0;
}

.quote-audio-player {
    display: contents;
}

.quote-audio-player audio {
    display: none;
}

.quote-audio-content {
    display: contents;
}

.quote-waveform {
    display: flex;
    align-items: center;
    gap: 2px;
    width: 100%;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.quote-waveform span {
    display: block;
    width: 3px;
    min-height: 12px;
    border-radius: 999px;
    background: rgba(23, 69, 56, 0.18);
    transition: background 0.18s ease, transform 0.18s ease;
}

.quote-waveform:hover span {
    background: rgba(23, 69, 56, 0.3);
}

.quote-waveform span.is-progress {
    background: rgba(91, 101, 96, 0.72);
}

.quote-audio-duration {
    color: rgba(23, 69, 56, 0.72);
    font-weight: 700;
    min-width: 5.8rem;
    text-align: left;
    white-space: nowrap;
}

.quote-audio-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.quote-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--dark-green);
    font-size: 0;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.quote-action-wrap {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.quote-action-count {
    color: rgba(23, 69, 56, 0.62);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
    min-height: 0.75rem;
}

.quote-action-btn::before {
    content: "";
    display: block;
    width: 1.55rem;
    height: 1.55rem;
    background: currentColor;
    mask: center / contain no-repeat;
    -webkit-mask: center / contain no-repeat;
}

.quote-like-btn::before {
    mask-image: url("images/icons/heart.svg?v=20260722-1");
    -webkit-mask-image: url("images/icons/heart.svg?v=20260722-1");
}

.quote-download-btn::before {
    mask-image: url("images/icons/download.svg?v=20260722-1");
    -webkit-mask-image: url("images/icons/download.svg?v=20260722-1");
}

.quote-share-btn::before {
    mask-image: url("images/icons/share-2.svg?v=20260722-1");
    -webkit-mask-image: url("images/icons/share-2.svg?v=20260722-1");
}

.quote-action-btn:hover,
.quote-action-btn:focus {
    color: #0d2f26;
    transform: translateY(-1px);
}

.quote-like-btn.is-liked {
    color: #c94a64;
}

.quote-share-btn.is-copied {
    color: #2d7d52;
}

.quote-more-btn {
    display: none;
}

.quote-more-btn::before {
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 999px;
    background: currentColor;
    box-shadow: 0 -0.48rem 0 currentColor, 0 0.48rem 0 currentColor;
    mask: none;
    -webkit-mask: none;
}

.quote-secondary-actions {
    display: contents;
}

@media (max-width: 980px) {
    .quote-audio-card {
        grid-template-columns: 72px minmax(0, 1fr) auto;
        gap: 0.95rem;
    }

    .quote-cover-play {
        width: 58px;
        height: 58px;
    }

    .quote-audio-title {
        grid-column: 2 / 4;
    }

    .quote-waveform {
        grid-column: 2 / 4;
    }

    .quote-audio-duration {
        grid-column: 2;
    }

    .quote-audio-actions {
        grid-column: 3;
        gap: 0.45rem;
    }
}

@media (max-width: 640px) {
    .quotes-list-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .quote-audio-card {
        grid-template-columns: 64px minmax(0, 1fr) auto auto;
        gap: 0.85rem;
        min-height: 88px;
        padding: 0.9rem 0;
    }

    .quote-cover-play {
        width: 60px;
        height: 60px;
        grid-column: 1;
    }

    .quote-audio-title {
        grid-column: 2;
        font-size: 0.98rem;
        line-height: 1.3;
    }

    .quote-waveform,
    .quote-audio-duration {
        display: none;
    }

    .quote-audio-actions {
        display: contents;
    }

    .quote-like-btn {
        grid-column: 3;
        width: 2.1rem;
        height: 2.1rem;
    }

    .quote-like-wrap {
        grid-column: 3;
    }

    .quote-more-btn {
        display: inline-flex;
        grid-column: 4;
    }

    .quote-secondary-actions {
        position: absolute;
        right: 0;
        top: calc(100% + 0.4rem);
        z-index: 10;
        display: none;
        gap: 0.35rem;
        padding: 0.45rem;
        border: 1px solid rgba(23, 69, 56, 0.12);
        border-radius: 999px;
        background: #fff;
        box-shadow: 0 16px 36px rgba(23, 69, 56, 0.14);
    }

    .quote-secondary-actions .quote-action-wrap {
        gap: 0.1rem;
    }

    .quote-audio-card.is-menu-open .quote-secondary-actions {
        display: flex;
    }
}

/* ====================================
   HERO SECTION - OPRAVENÉ
   ==================================== */
.hero {
    background: var(--lime-green);
    position: relative;
    overflow: visible;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--deep-green);
}

@media (min-width: 1200px) {
    .hero-title {
        padding-top: 3rem;
        padding-bottom: 1rem;
    }
}

.underline-word {
    position: relative;
    display: inline-block;
}

.underline-img {
    position: absolute;
    bottom: -0.625rem;
    left: 0;
    width: 100%;
    height: auto;
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: clamp(0.75rem, 1.5vw, 1rem);
    line-height: 1.4;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    max-width: 500px;
}

@media (min-width: 1200px) {
    .hero-subtitle {
        padding-bottom: 1rem;
    }
}

.books-btn {
    display: inline-block;
    background: var(--dark-green);
    color: var(--lime-green);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(26, 77, 46, 0.25);
}

.books-btn:hover {
    background: var(--deep-green);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 77, 46, 0.35);
}

/* Telefón */
.phone-mockup {
    width: 100%;
    max-width: 350px; /* zväčšené z 250px na mobile */
    height: auto;
    border-radius: 40px;
    display: block;
    position: relative;
    z-index: 60;
}

@media (min-width: 768px) {
    .phone-mockup {
        max-width: 350px;
    }
}

@media (min-width: 1200px) {
    .phone-mockup {
        max-width: 495px;
    }
}

.phone-container {
    position: relative;
    display: flex;
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 0;
}

.icon-character {
    width: 80px;
    height: auto;
    position: absolute;
    left: 43%;
    transform: translateX(-50%);
    bottom: -2rem;
    z-index: 70;
    display: none; /* skryté na mobile */
}

@media (min-width: 768px) {
    .icon-character {
        display: block; /* zobrazené od tabletu */
        width: 100px;
    }
}

@media (min-width: 1200px) {
    .icon-character {
        width: 120px;
    }
}

/* AUTORKA (pit1.webp) + DECORATIVE LINES - SPRÁVNE SPOLU */
.author-image-container {
    position: absolute;
    right: 11rem;
    bottom: -9.375rem;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.15);
    z-index: 50;
}

@media (min-width: 768px) {
    .author-image-container {
        width: 320px;
        height: 320px;
        right: 11rem;
        bottom: -11.25rem;
    }
}

@media (min-width: 1200px) {
    .author-image-container {
        width: 380px;
        height: 380px;
        right: 7rem;
        bottom: -13.75rem;
    }
}

.author-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Decorative lines - VEDĽA autorky */
.decorative-lines {
    position: absolute;
    right: 0.5rem;
    bottom: 10px;
    width: 50px;
    height: auto;
    z-index: 60;
}

@media (min-width: 768px) {
    .decorative-lines {
        width: 60px;
        right: 2rem;
        bottom: 20px;
    }
}

@media (min-width: 1200px) {
    .decorative-lines {
        width: 70px;
        right: 3rem;
        bottom: 0;
    }
}

/* ====================================
   ABOUT SECTION
   ==================================== */
.about {
    background: #fbf8f4;
    padding: 8rem 2rem 1rem;
    margin-top: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .about {
        padding: 10rem 3rem 1rem;
    }
}

@media (min-width: 1200px) {
    .about {
        padding: 12rem 4rem 1rem;
    }
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--deep-green);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.decorative-icon {
    width: 2.5rem;
    height: 2.5rem;
}

.about-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 800px;
}

/* ====================================
   MEDIA CAROUSEL
   ==================================== */
.carousel-section {
    padding: 0 8rem;
    background: #fbf8f4;
    overflow: visible;
}

.carousel-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: visible;
}

.media-carousel-wrapper {
    position: relative;
    overflow: visible;
}

.media-carousel-slides-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.media-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
    overflow: visible;
    position: relative;
    padding: 1rem 0rem;
}

.media-carousel-slide {
    flex: 0 0 calc((100% - 4rem) / 3);
    min-width: calc((100% - 4rem) / 3);
    max-width: calc((100% - 4rem) / 3);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

@media (max-width: 992px) {
    .media-carousel-track {
        gap: 1.5rem;
    }

    .media-carousel-slide {
        flex: 0 0 calc((100% - 1.5rem) / 2);
        min-width: calc((100% - 1.5rem) / 2);
        max-width: calc((100% - 1.5rem) / 2);
    }
}

@media (max-width: 768px) {
    .media-carousel-track {
        gap: 0;
    }

    .media-carousel-slide {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
    }
}

.carousel-card {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    position: relative;
    transition: transform 0.3s ease;
    width: 100%;
}

.carousel-card:hover {
    transform: translateY(-5px);
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #111111;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.14);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.75) 100%);
    padding: 2rem;
    color: white;
    
    /* Pridaj flexbox */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.5rem; /* medzera medzi title a text */
}

.carousel-card:hover .carousel-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.85) 100%);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--lime-green);
    color: var(--dark-green);
    border: none;
    padding: 0.75rem 2.5rem;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 2;
}

.carousel-btn:hover {
    background: #c9e87a;
}

.carousel-title {
    /* Odstráň position: absolute a bottom/left/right */
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
}

.carousel-text {
    /* Odstráň position: absolute a bottom/left/right */
    font-size: 0.85rem;
    color: white;
    margin: 0;
    line-height: 1.4;
}

.media-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: var(--lime-green);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.media-carousel-btn img {
    width: 24px;
    height: 24px;
}

.media-prev-btn {
    left: -30px;
}

.media-prev-btn img {
    transform: scaleX(-1);
}

.media-next-btn {
    right: -30px;
}

.media-carousel-btn:disabled {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 768px) {
    .media-carousel-btn {
        width: 50px;
        height: 50px;
    }

    .media-carousel-btn img {
        width: 20px;
        height: 20px;
    }

    .media-prev-btn {
        left: -25px;
    }

    .media-next-btn {
        right: -25px;
    }

    .carousel-title {
        font-size: 0.9rem;
        bottom: 4rem;
    }

    .carousel-text {
        font-size: 0.75rem;
        bottom: 1rem;
    }

    .podcast-badge {
        top: 0.85rem;
        left: 0.85rem;
        font-size: 0.72rem;
        padding: 0.4rem 0.7rem;
    }
}

.media-carousel-indicators {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 100;
}

.indicator-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(22, 68, 58, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    padding: 0;
}

.indicator-dot:hover {
    background-color: rgba(22, 68, 58, 0.7);
    transform: scale(1.2);
}

.indicator-dot.active {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    width: 16px;
    height: 16px;
}

/* ====================================
   VIDEO SECTION
   ==================================== */
.video-section {
    background: var(--cream);
    padding: 4rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.video-section .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
    width: 100%;
}

.video-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--deep-green);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (min-width: 768px) {
    .video-title { font-size: 2.5rem; }
}

.video-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto 4rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.video-display-container {
    width: 130vw;
    max-width: 130vw;
    margin-left: -15vw;
    margin-right: -15vw;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.video-thumbnails-left,
.video-thumbnails-right {
    display: flex;
    gap: 1.5rem;
    flex-direction: row;
}

.video-thumbnail {
    width: 280px;
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    flex-shrink: 0;
    position: relative;
    aspect-ratio: 9/16;
    background: #111;
    /* Plynulý transition namiesto keyframe animácií */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.3s ease,
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

@media (min-width: 768px) {
    .video-thumbnail { width: 300px; }
}

.video-thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Slide animácie — transition-based, žiadne keyframes = žiadne preblikávanie */
.video-thumbnail.is-exiting {
    opacity: 0;
    pointer-events: none;
}
.video-thumbnail.is-exiting-left  { transform: translateX(-80px); }
.video-thumbnail.is-exiting-right { transform: translateX(80px); }

.video-thumbnail.is-entering {
    transition: none;   /* okamžite preskoč na štartovaciu pozíciu */
    opacity: 0;
}
.video-thumbnail.is-entering-left  { transform: translateX(80px); }
.video-thumbnail.is-entering-right { transform: translateX(-80px); }

.video-thumbnail.is-visible {
    opacity: 1;
    transform: translateX(0) scale(1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.thumb-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    pointer-events: none;
}

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    border-radius: 20px;
    transition: background 0.3s ease;
    pointer-events: none;
}
.video-thumbnail:hover .thumb-overlay {
    background: rgba(0,0,0,0.05);
}

/* ---- Mobil ---- */
.mobile-video-container {
    position: relative;
    width: 100%;
    max-width: 280px;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .mobile-video-container { max-width: 320px; }
}

.mobile-frame {
    position: relative;
    width: 100%;
    padding: 10px;
    background: #1a1a1a;
    border-radius: 42px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.mobile-notch {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 27px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.mobile-screen {
    width: 100%;
    aspect-ratio: 9/19.5;
    background: #000;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.mobile-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease;
    will-change: opacity;
}

.mobile-video.is-switching {
    opacity: 0;
}

.mobile-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 50px 12px 16px;
    pointer-events: none;
    z-index: 5;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        transparent 30%,
        transparent 60%,
        rgba(0,0,0,0.5) 100%
    );
}

.mobile-video-header {
    display: flex;
    justify-content: space-between;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
}

.mobile-video-footer {
    color: white;
    text-align: left;
}

.mobile-video-title {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.mobile-video-desc {
    font-size: 0.7rem;
    opacity: 0.85;
}

/* Play / Pause tlačidlo */
.mobile-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--lime-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.25s ease;
    pointer-events: auto;
    z-index: 20;
}

.mobile-play-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: #c9e87a;
}

/* Pause stav — zobraz pause ikonu */
.mobile-play-icon.is-playing img {
    content: url('../images/pause.svg?v=20260314-1');
    width: 52px;
}


/* ====================================
   GREEN INFO SECTION
   ==================================== */
.green-info {
    background: var(--dark-green);
    padding: 5rem 2rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.green-info-content {
    max-width: 1200px;
    margin: 0 auto;
}

.green-info-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.3;
    max-width: 700px;
}

@media (min-width: 768px) {
    .green-info-title {
        font-size: 2.2rem;
    }
}

.green-info-text {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 650px;
}

.green-info-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 15px;
}

.decorative-arrow {
    position: absolute;
    bottom: -1rem;
    right: 38%;
    width: 200px;
    height: auto;
}

/* ====================================
   BOOKS SECTION
   ==================================== */
.books-section {
    background: var(--cream);
    padding: 5rem 2rem;
}

.books-container {
    max-width: 1200px;
    margin: 0 auto;
}

.book-card {
    background: transparent;
    padding: 0;
    position: relative;
}

.book-card .row {
    align-items: center;
}

.book-image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-cover {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 5px;
    display: block;
    position: relative;
    z-index: 2;
}

@media (min-width: 768px) {
    .book-cover {
        max-width: 500px;
    }
}

.decorative-lines-book {
    position: absolute;
    width: 70px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

.book-card:first-child .decorative-lines-book {
    top: 10px;
    left: -25px;
}

.book-card:nth-child(2) .decorative-lines-book {
    bottom: 10px;
    right: -25px;
}

@media (min-width: 768px) {
    .decorative-lines-book {
        width: 90px;
    }

    .book-card:first-child .decorative-lines-book {
        top: 20px;
        left: -35px;
    }

    .book-card:nth-child(2) .decorative-lines-book {
        bottom: 20px;
        right: -35px;
    }
}

.book-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--deep-green);
    margin-top: -100px;
}

@media (min-width: 768px) {
    .book-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .book-title {
        margin-top: 0;
    }
}

.book-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.book-stores {
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
    align-items: center;
}

.book-opinions-btn {
    display: inline-block;
    background: var(--dark-green);
    color: white;
    padding: 0.9rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-top: 1.25rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-opinions-btn:hover {
    background: var(--deep-green);
    color: white;
    transform: translateY(-2px);
}

.store-logo {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease;
}

@media (max-width: 767px) {
    .store-logo {
        height: 22px;
    }

    .book-opinions-btn {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
    
    .book-stores {
        gap: 1.5rem !important;
        margin-bottom: 2rem;
        justify-content: center;
    }
    
    /* Zmena poradia na mobile - PRE OBE KNIHY */
    .book-card .row {
        display: flex;
        flex-direction: column;
    }
    
    .book-card .col-md-7,
    .book-card .order-2 {
        order: 1 !important; /* Text obsah prvý */
    }
    
    .book-card .col-md-5,
    .book-card .order-1 {
        order: 2 !important; /* Obrázok knihy posledný */
    }
}

.store-logo:hover {
    transform: scale(1.1);
}

.all-books-btn {
    display: inline-block;
    background: var(--dark-green);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.all-books-btn:hover {
    background: var(--deep-green);
    transform: translateY(-3px);
    color: white;
}

/* ====================================
   SCIENTIFIC ARTICLES
   ==================================== */
.scientific-articles {
    background: var(--dark-green);
    padding: 5rem 2rem;
    color: white;
}

.articles-content {
    max-width: 1200px;
    margin: 0 auto;
}

.articles-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

@media (min-width: 768px) {
    .articles-title {
        font-size: 2.5rem;
    }
}

.articles-title-underline {
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--lime-green);
    border-radius: 2px;
}

.articles-list {
    min-height: 250px;
}

.article-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.article-item:hover {
    padding-left: 1rem;
}

.article-title-text {
    font-size: 1.1rem;
    font-weight: 400;
    flex: 1;
}

@media (min-width: 768px) {
    .article-title-text {
        font-size: 1.3rem;
    }
}

.article-preview-btn {
    width: 200px;
    height: 140px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-preview-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-item:hover .article-preview-btn {
    opacity: 1;
}

.article-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.pagination-dots {
    color: rgba(255, 255, 255, 0.5);
}

/* ====================================
   ABOUT ME / TESTIMONIALS
   ==================================== */
/* ====================================
   ARTICLE TITLE ROW & SERIES
   ==================================== */

.article-title-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

@media (max-width: 767px) {
    .article-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .article-series {
        width: auto;
        height: auto;
        min-width: 35px;
        padding: 0.25rem 0.5rem;
        display: inline-flex;
        border-radius: 8px;
    }

    .series-link {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
}

.article-series {
    flex-shrink: 0;
    width: auto;
    height: auto;
    background: transparent; /* ← odober background z rodiča */
    border-radius: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    gap: 0.4rem; /* ← medzera medzi buttonmi */
}

.series-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 50px;
    background: #FFFCF729; /* ← presunuté sem */
    border-radius: 10px;   /* ← presunuté sem */
    color: white;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.series-link:hover {
    background: #c9e87a;
    color: #1f5f3a;
}



/* ====================================
   ABOUT ME / TESTIMONIALS
   ==================================== */

.about-me {
    background: #fbf8f4;
    padding: 5rem 2rem;
}

.about-me-image {
    max-width: 350px;
    width: 100%;
}

.about-me-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--deep-green);
    margin-bottom: 2rem;
}

.about-me-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.testimonial-carousel {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.about-me-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0;
}

.reviewer-info-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 1.5rem;
    flex-shrink: 0;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-weight: 700;
    color: var(--deep-green);
}

.testimonial-nav {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.testimonial-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--dark-green);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    line-height: 1;
}


/* ====================================
   CONTACT SECTION
   ==================================== */
.contact-section {
    background: var(--lime-green);
    padding: 4rem 0;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--deep-green);
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
}

.contact-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-form {
    background: transparent;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
}

.form-control::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.form-control:focus {
    outline: none;
    background: white;
    border-color: var(--dark-green);
    box-shadow: 0 0 0 3px rgba(23, 69, 56, 0.1);
}

textarea.form-control {
    border-radius: 25px;
    resize: vertical;
    min-height: 100px;
}

.book-selection-wrapper {
    margin-bottom: 1rem;
}

.book-item {
    margin-bottom: 1rem;
}

.book-select-group {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    align-items: center;
}

.book-select {
    flex: 1;
}

.quantity-input {
    text-align: center;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23174538' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 12px;
    cursor: pointer;
    padding-right: 3rem;
}

.add-book-btn {
    background: transparent;
    border: 2px dashed var(--dark-green);
    color: var(--dark-green);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.add-book-btn:hover {
    background: rgba(23, 69, 56, 0.05);
    border-color: var(--deep-green);
}

.price-summary {
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid rgba(23, 69, 56, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.price-row:not(:last-child) {
    border-bottom: 1px solid rgba(23, 69, 56, 0.1);
}

.price-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.price-row span:last-child {
    font-weight: 600;
    color: var(--dark-green);
}

.submit-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.submit-btn {
    background: var(--dark-green);
    color: white;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.submit-btn:hover {
    background: var(--deep-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(23, 69, 56, 0.3);
}

.payment-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.payment-total {
    font-size: 1rem;
    color: var(--text-dark);
}

.payment-total strong {
    color: var(--dark-green);
}

.payment-total span {
    font-weight: 700;
    color: var(--dark-green);
    font-size: 1.1rem;
}

.payment-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

.decorative-arrow-contact {
    width: 200px;
    height: auto;
    margin-top: 2rem;
}

@media (min-width: 1200px) {
    .decorative-arrow-contact {
        margin-left: 20rem;
    }
}

/* ====================================
   FOOTER
   ==================================== */
footer {
    background: #fbf8f4;
    color: var(--dark-green);
    padding: 4rem 0 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    flex-wrap: wrap;
    padding-bottom: 1rem;
}

.footer-left {
    flex: 1;
    max-width: 400px;
}

.footer-tagline {
    font-size: 2.3rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-green);
}

.footer-logo-image {
    width: 180px;
    height: auto;
    margin-top: 1rem;
}

.footer-center {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-green);
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-icon img {
    width: 40px;
    height: 40px;
}

.social-icon:hover {
    color: var(--dark-green);
}

.footer-newsletter {
    flex: 1;
    max-width: 400px;
}

.newsletter-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-green);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--dark-green);
    border-radius: 50px;
    background: #fbf8f4;
    color: var(--dark-green);
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: rgba(23, 69, 56, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--dark-green);
}

.newsletter-btn {
    padding: 0.75rem 2rem;
    background: var(--dark-green);
    color: white;
    border: 2px solid var(--dark-green);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--lime-green);
    border-color: var(--dark-green);
    color: var(--dark-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(23, 69, 56, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: var(--dark-green);
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
}

.footer-legal a {
    color: var(--dark-green);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
}

/* ====================================
   UNIVERSAL LAYOUT
   ==================================== */
.px-lg-5 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.phone-container {
    position: relative;
    display: flex;
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 0;
}

@media (max-width: 767px) {
    .phone-container {
        justify-content: center;
    }
}

.container,
.container-fluid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
    width: 100%;
}

section {
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
    max-width: 100vw;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

/* ====================================
   CAROUSEL STATIC
   ==================================== */
#mediaCarousel .carousel-item {
    display: block;
    opacity: 1;
    visibility: visible;
    position: relative;
}

#mediaCarousel .carousel-item:nth-child(n+4) {
    display: none;
}

.carousel-control-next,
.carousel-control-prev {
    display: none;
}

.carousel-indicators {
    display: none;
}

/* ====================================
   ANIMATIONS
   ==================================== */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

.form-message {
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

.form-message-success {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    color: white;
}

.form-message-error {
    background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
    color: white;
}

/* ====================================
   MOBILE OPTIMALIZÁCIA (pod 768px)
   ==================================== */
@media (max-width: 767px) {
    /* SKRYTIE VŠETKÝCH DEKORÁCIÍ */
    .author-image-container,
    .decorative-lines,
    .decorative-lines-book,
    .decorative-arrow,
    .decorative-arrow-contact,
    .decorative-icon {
        display: none;
    }

    /* HERO */
    .hero {
        padding: 1.5rem 1rem 2.5rem;
    }

    .hero .row {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content {
        order: 1;
        text-align: left;
    }

    .hero-title {
        font-size: clamp(2rem, 9vw, 2.6rem);
        line-height: 1.15;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        max-width: 100%;
        margin-left: 0;
        margin-right: auto;
        margin-bottom: 1.5rem;
    }

    .books-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .phone-container {
        order: 2;
        justify-content: center;
    }

    .phone-mockup {
        max-width: 300px;
    }

    /* Goodman skryť na mobile */
    .icon-character {
        display: none !important;
    }

    /* ZAROVNANIE VĽAVO, MENŠIE PADDING */
    .about,
    .green-info,
    .books-section,
    .scientific-articles,
    .about-me,
    .contact-section {
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: left;
    }

    .about {
        padding-top: 3rem;
        padding-bottom: 2rem;
        margin-top: 0;
    }

    .about-title,
    .green-info-title,
    .book-title,
    .book-description,
    .articles-title,
    .about-me-title,
    .about-me-text,
    .contact-title,
    .contact-subtitle {
        text-align: left;
    }

    .about-title {
        font-size: 1.75rem;
        flex-direction: row;
        gap: 0.5rem;
        align-items: center;
    }

    .about-text {
        font-size: 1rem;
    }

    .green-info {
        padding-top: 3rem;
        padding-bottom: 0;
    }

    .green-info-title {
        font-size: 1.5rem;
    }

    .green-info-text {
        font-size: 0.95rem;
    }

    .green-info-image {
        width: calc(100% + 2rem);
        max-width: calc(100% + 2rem);
        margin-left: -1rem;
        margin-right: -1rem;
        margin-top: 2rem;
        border-radius: 1rem;
        display: block;
        object-fit: cover;
        margin-bottom: 4rem;
    }

    .about-me-image {
        width: calc(100% + 2rem);
        max-width: calc(100% + 2rem);
        margin-left: -1rem;
        margin-right: -1rem;
        margin-bottom: 1.5rem;
        display: block;
        border-radius: 20px;
        object-fit: contain;
        overflow: visible;
    }

    .book-title {
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }

    .book-description {
        font-size: 0.95rem;
    }

    .books-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .book-cover {
        max-width: 280px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: block;
        border-radius: 5px;
    }

    .book-image-wrapper {
        display: flex;
        justify-content: center;
    }

    .book-stores {
        justify-content: center !important;
        gap: 1.5rem !important;
    }

    .all-books-btn {
        display: block;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* ARTICLES */
    .articles-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .article-title-text {
        font-size: 0.95rem;
    }

    .article-item {
        padding: 1.25rem 0;
    }

    /* Series links pod nadpis na mobile */
    .article-title-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .article-series {
        width: auto;
        min-width: 32px;
        padding: 0.3rem 0.6rem;
        display: inline-flex;
        border-radius: 8px;
    }

    .series-link {
        font-size: 0.75rem;
        padding: 0;
    }

    .about-me {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .about-me-title {
        font-size: 1.75rem;
    }

    .about-me-text {
        font-size: 0.95rem;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .contact-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .book-stores,
    .social-icons {
        justify-content: center;
    }

    .reviewer-info,
    .reviewer-info-nav {
        justify-content: flex-start;
    }

    .container,
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    footer {
        padding: 2.5rem 1rem 1.5rem;
    }

    .footer-main {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 2rem;
    }

    .footer-left,
    .footer-newsletter {
        max-width: 100%;
        width: 100%;
    }

    .footer-tagline {
        font-size: 1.5rem;
    }

    .footer-logo-image {
        width: 130px;
        margin-left: 0;
        margin-right: auto;
        display: block;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }

    .newsletter-input {
        padding: 0.875rem 1.25rem;
    }

    .newsletter-btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: left;
        gap: 0.75rem;
        margin-top: 1.5rem;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.75rem 1.25rem;
    }

    .book-select-group {
        grid-template-columns: 1fr;
    }

    .quantity-input {
        width: 100%;
    }

    .submit-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .submit-btn {
        width: 100%;
    }

    .payment-info {
        text-align: left;
    }

    .video-section {
        padding: 2.5rem 0 3rem;
    }

    .video-title {
        font-size: 1.6rem;
        padding-left: 1rem;
        padding-right: 1rem;
        text-align: left;
    }

    .video-subtitle {
        font-size: 0.9rem;
        padding-left: 1rem;
        padding-right: 1rem;
        margin-bottom: 1.5rem;
        text-align: left;
        margin-left: 0;
    }

    .article-pagination {
        justify-content: flex-start;
        margin-top: 1rem;
    }

    .media-carousel-btn {
        display: none;
    }

    .carousel-section {
        padding: 2rem 0 3.5rem;
    }

    .carousel-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .carousel-card {
        height: 420px;
        border-radius: 20px;
    }

    .testimonial-carousel {
        height: auto;
        overflow: visible;
    }

    .testimonial-slide {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        display: none;
        flex-direction: column;
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }

    .testimonial-slide.active {
        display: flex;
    }

    .reviewer-info-nav {
        justify-content: flex-start;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    nav {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding: 0.75rem 1rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.2rem);
    }

    .hero {
        padding: 1rem 0.875rem 2rem;
    }

    .about,
    .green-info,
    .books-section,
    .scientific-articles,
    .about-me,
    .contact-section {
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }

    .container,
    .container-fluid {
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }

    footer {
        padding: 2rem 0.875rem 1.25rem;
    }

    nav {
        padding: 0.75rem 0.875rem;
    }

    .phone-mockup {
        max-width: 240px;
    }

    .footer-tagline {
        font-size: 1.3rem;
    }

    .carousel-card {
        height: 380px;
    }

    .video-title {
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }

    .video-subtitle {
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }

    .green-info-image {
        width: calc(100% + 1.75rem);
        max-width: calc(100% + 1.75rem);
        margin-left: -0.875rem;
        margin-right: -0.875rem;
    }

    .about-me-image {
        width: calc(100% + 1.75rem);
        max-width: calc(100% + 1.75rem);
        margin-left: -0.875rem;
        margin-right: -0.875rem;
    }
}


/* ============================================
   ARTICLES - ARROW BUTTON A PAGINATION VPRAVO
   ============================================ */

/* Button so šípkou v article */
.article-arrow-btn {
    width: 50px;
    height: 50px;
    background:#FFFCF729;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: 0;
}



/* Šípka vnútri buttonu */
.article-arrow-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

/* Pri hoveri na article-item zmení šípku na dark green */
.article-item:hover .article-arrow-icon {
    filter: brightness(0) saturate(100%) invert(21%) sepia(25%) saturate(1872%) hue-rotate(95deg) brightness(95%) contrast(93%);
}
.article-item:hover .article-arrow-btn {
        background: #c9e87a;
}
/* Pagination - VPRAVO namiesto v strede */
.article-pagination {
    display: flex;
    justify-content: flex-end !important;
    align-items: center;
}

/* Pagination buttony - BEZ POZADIA, LEN ŠÍPKY */
.pagination-btn {
    width: 40px;
    height: 40px;
    background: transparent !important; /* Žiadne pozadie */
    border: none !important; /* Žiadny border */
    color: #FFFCF7A3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}




.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Šípky v pagination - hover efekt */
.articles-title-circle {
    position: relative; /* nie absolute */
    margin-left: -9rem; /* prekrytie cez text, nastaviť podľa potreby */
    width: 10.5rem; /* relatívna veľkosť k font-size */
    height: auto;
    z-index: 2;
}

/* Neaktívne čísla - sivé/biele */
.pagination-btn:not(#prevPage):not(#nextPage) {
    color: rgba(255, 255, 255, 0.6); /* Sivá farba */
}

/* Aktívne číslo - zelené */
.pagination-btn.active {
    color: white !important;
}


/* NOVÝ WRAPPER PRE AUTORKU + ČIARY */
.author-with-lines {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: none; /* skryté defaultne */
}

/* AUTORKA pit1.webp */
.author-image-container {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 1.25rem 3.75rem rgba(0, 0, 0, 0.15);
}

.author-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative lines - VPRAVO HORE OD KRUHU */
.decorative-lines {
  position: absolute;
  top: 100px;
  right: 70px;
  width: 50px;
  height: auto;
  z-index: 2;
}

/* MEDIA QUERIES */
@media (min-width: 1200px) {
  .author-with-lines {
    display: block; /* zobrazené len nad 1200px */
    right: -4rem;
    bottom: -7.75rem;
  }
  
  .author-image-container {
    width: 380px;
    height: 380px;
  }
  
  .decorative-lines {
    width: 92px;
    top: 172px;
    right: 126px;
  }
}


.video-subtitle .video-link {
    color: inherit;         
    text-decoration: none;   
}

.video-subtitle .video-link:hover {
    text-decoration: none;   
}

/* ====================================
   INSTAGRAM REELS OVERLAY
   ==================================== */

.mobile-video-overlay {
    padding: 0 !important;
    justify-content: flex-start !important;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.45) 0%,
        transparent 25%,
        transparent 55%,
        rgba(0,0,0,0.6) 100%
    ) !important;
}

.ig-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 16px 0px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.02em;
}

.ig-status-right {
    display: flex;
    align-items: center;
    gap: 5px;
    width: 4rem;
    justify-content: flex-end;
}

.ig-5g {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
}

.ig-signal {
    width: 18px;
    height: 13px;
}

.ig-battery {
    width: 28px;
    height: 14px;
}

.ig-right-actions {
    position: absolute;
    right: 10px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    pointer-events: none;
}

.ig-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ig-action svg {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}

.ig-action span {
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.7);
}

.ig-disc-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    overflow: hidden;
    animation: igDiscSpin 6s linear infinite;
    background: #222;
}

.ig-disc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes igDiscSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.ig-bottom {
    position: absolute;
    bottom: 16px;
    left: 12px;
    right: 50px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    pointer-events: none;
    align-items: flex-start;
}

.ig-user-row {
    display: flex;
    align-items: center;
    gap: 7px;
}

.ig-avatar-small {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid white;
    overflow: hidden;
    flex-shrink: 0;
}

.ig-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ig-username {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.ig-follow-btn {
    background: transparent;
    border: 1.5px solid white;
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    cursor: pointer;
    pointer-events: auto;
    line-height: 1.4;
    white-space: nowrap;
}

.ig-caption {
    display: none;
}

.ig-desc {
    color: rgba(255,255,255,0.9);
    font-size: 0.74rem;
    font-weight: 500;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    text-align: left;
}

.ig-action-img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0,0,0,0.5));
    transition: filter 0.2s ease;
}

.ig-action:hover .ig-action-img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(90%) saturate(600%) hue-rotate(330deg) brightness(110%);
}

.ig-action:hover .ig-action-img {
    filter: brightness(0) saturate(100%) invert(33%) sepia(85%) saturate(700%) hue-rotate(322deg) brightness(105%);
}

.interview-toast {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(7, 16, 13, 0.44);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.interview-toast.is-visible {
    opacity: 1;
    visibility: visible;
}

.interview-toast.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.interview-toast-panel {
    position: relative;
    width: min(660px, calc(100vw - 2rem));
    background:
        radial-gradient(circle at top right, rgba(222, 242, 153, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(252, 249, 244, 0.99));
    border: 1px solid rgba(23, 69, 56, 0.1);
    border-radius: 24px;
    box-shadow: 0 24px 58px rgba(10, 22, 17, 0.24);
    padding: 1.15rem;
    overflow: hidden;
    transform: translateY(28px) scale(0.94);
    transition: transform 0.58s cubic-bezier(0.22, 1, 0.36, 1);
}

.interview-toast-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(23, 69, 56, 0.08);
    pointer-events: none;
}

.interview-toast.is-visible .interview-toast-panel {
    transform: translateY(0) scale(1);
}

.interview-toast.is-hidden .interview-toast-panel {
    transform: translateY(28px) scale(0.94);
}

.interview-toast-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.52rem 0.9rem;
    border: 1px solid rgba(23, 69, 56, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    color: #1b3b2d;
    font-size: 0.8rem;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.interview-toast-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 176px;
    gap: 1.15rem;
    align-items: center;
}

.interview-toast-image {
    width: 100%;
    height: 100%;
    max-height: 222px;
    object-fit: cover;
    object-position: center center;
    align-self: center;
    border-radius: 18px;
}

.interview-toast-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
}

.interview-toast-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.34rem 0.68rem;
    border-radius: 10px;
    background: rgba(222, 242, 153, 0.62);
    color: var(--dark-green);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}

.interview-toast-title {
    color: var(--dark-green);
    font-size: 1.72rem;
    font-weight: 800;
    line-height: 1.06;
    margin-bottom: 0.55rem;
    max-width: 350px;
}

.interview-toast-text {
    color: #33463e;
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 0.85rem;
    max-width: 360px;
}

.interview-toast-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.52rem 0.95rem;
    border-radius: 12px;
    background: var(--dark-green);
    color: var(--dark-green);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 22px rgba(23, 69, 56, 0.16);
}

.interview-toast-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    align-items: center;
}

.interview-toast-link:hover,
.interview-toast-close:hover {
    color: #fff;
    transform: translateY(-2px);
}

.interview-toast-link:hover {
    background: #102f26;
}

.interview-toast-close:hover {
    color: var(--dark-green);
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(23, 69, 56, 0.2);
}

@media (max-width: 640px) {
    .interview-toast {
        padding: 0.85rem;
    }

    .interview-toast-panel {
        width: 100%;
        border-radius: 22px;
        padding: 1rem;
    }

    .interview-toast-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.85rem;
        align-items: start;
    }

    .interview-toast-image {
        order: -1;
        width: min(48vw, 170px);
        height: auto;
        max-height: none;
        aspect-ratio: 0.77;
        object-fit: cover;
        border-radius: 16px;
    }

    .interview-toast-badge {
        font-size: 0.68rem;
        margin-bottom: 0.65rem;
    }

    .interview-toast-title {
        font-size: 1.35rem;
        max-width: none;
    }

    .interview-toast-text {
        font-size: 0.88rem;
        max-width: none;
    }

    .interview-toast-link {
        min-height: 36px;
        font-size: 0.79rem;
    }
}

.testimonials-page {
    background:
        radial-gradient(circle at top right, rgba(222, 183, 91, 0.12), transparent 24%),
        linear-gradient(180deg, #fbf7ee 0%, #f4efe1 100%);
    min-height: 100vh;
}

.quotes-page {
    background: #fff;
}

.quotes-page main,
.quotes-page .quotes-hero {
    background: #fff;
}

.testimonials-hero {
    background: var(--dark-green);
    color: white;
    padding: 7rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.testimonials-hero::before {
    content: "";
    position: absolute;
    inset: auto -5rem -6rem auto;
    width: 18rem;
    height: 18rem;
    background: rgba(222, 183, 91, 0.12);
    border-radius: 50%;
}

.testimonials-hero .container {
    position: relative;
    z-index: 1;
}

.testimonials-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.testimonials-title {
    max-width: 760px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.08;
    margin-bottom: 1.25rem;
}

.testimonials-intro {
    max-width: 760px;
    font-size: 1.08rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.86);
    margin-bottom: 0;
}

.testimonials-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonials-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0.9rem 1.5rem;
    border-radius: 999px;
    background: var(--gold);
    color: var(--dark-green);
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.testimonials-back-link:hover {
    transform: translateY(-2px);
    color: var(--dark-green);
}

.testimonials-section {
    padding: 4.5rem 2rem 5.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
}

.testimonial-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(17, 70, 39, 0.08);
    border-radius: 28px;
    padding: 1.5rem;
    box-shadow: 0 22px 50px rgba(17, 70, 39, 0.1);
}

.testimonial-card-inner {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 1.3rem;
    align-items: start;
}

.testimonial-photo {
    width: 160px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 22px;
    border: 6px solid rgba(17, 70, 39, 0.08);
    background: #e9e3d4;
}

.testimonial-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark-green);
    margin-bottom: 0.45rem;
}

.testimonial-role {
    font-size: 0.95rem;
    line-height: 1.55;
    color: #74694e;
    white-space: pre-line;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.85;
    color: #244530;
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .testimonials-hero {
        padding: 6rem 1.2rem 4rem;
    }

    .testimonials-section {
        padding: 3rem 1.2rem 4rem;
    }

    .testimonial-card {
        padding: 1.15rem;
        border-radius: 22px;
    }

    .testimonial-card-inner {
        grid-template-columns: 1fr;
    }

    .testimonial-photo {
        width: 100%;
        max-width: 220px;
    }
}
