/* --- ZÁKLADNÍ NASTAVENÍ A PROMĚNNÉ --- */
:root {
    --matcha-green-dark: #2E7D32;
    --matcha-green-light: #A5D6A7;
    --matcha-green-accent: #4CAF50; /* Nový akcent pro hover efekty */
    --text-dark: #212121;
    --text-light: #ffffff;
    --text-muted: #666; /* Jemnější šedá pro vedlejší texty */
    --bg-light: #FDFCF8;
    --bg-gray: #F7F9F7; /* Světlejší šedá pro příjemnější pozadí */
    --border-color: #E8ECE8; /* Jemnější ohraničení */
    --star-color: #FFC107;
    --cross-color: #d32f2f;
    --font-headings: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
}

/* --- GLOBÁLNÍ STYLY --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-light);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem auto;
}

section {
    padding: 5rem 0;
    scroll-margin-top: var(--header-height);
}

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

/* --- ANIMACE PŘI SKROLOVÁNÍ --- */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- NAVIGAČNÍ MENU --- */
#main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    transition: var(--transition-fast);
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
}
#main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    height: 70px;
}
#main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.logo {
    font-family: var(--font-headings);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-fast);
}
#main-header.scrolled .logo {
    color: var(--matcha-green-dark);
}
#main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}
#main-nav a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-fast);
}
#main-header.scrolled #main-nav a {
    color: var(--text-dark);
}
#main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--matcha-green-accent);
    transition: width 0.3s ease;
}
#main-nav a:hover::after {
    width: 100%;
}
.nav-button {
    padding: 10px 25px;
}
#hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 1001;
}
#main-header.scrolled #hamburger-btn {
    color: var(--text-dark);
}

/* --- TLAČÍTKA --- */
.primary-button {
    display: inline-block;
    background: var(--matcha-green-dark);
    color: var(--text-light);
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-headings);
    border-radius: 50px;
    transition: var(--transition-fast);
    border: 2px solid var(--matcha-green-dark);
    box-shadow: var(--shadow-sm);
    text-align: center;
}
.primary-button:hover {
    background: var(--matcha-green-accent);
    border-color: var(--matcha-green-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.secondary-button {
    display: inline-block;
    background: transparent;
    color: var(--matcha-green-dark);
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-fast);
    border: 2px solid var(--matcha-green-dark);
    margin-top: 1rem;
}
.secondary-button:hover {
    background: var(--matcha-green-dark);
    color: var(--text-light);
    border-color: var(--matcha-green-dark);
}

/* --- MATCHA TLAČÍTKO --- */
.matcha-button {
    margin-top: 1.5rem;
}

/* --- STORY TLAČÍTKO --- */
.story-button {
    display: inline-block;
    background: var(--matcha-green-light);
    color: var(--text-dark);
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-headings);
    border-radius: 50px;
    transition: var(--transition-fast);
    border: 2px solid var(--matcha-green-light);
    box-shadow: var(--shadow-sm);
    margin-left: auto;
    vertical-align: middle;
}
.story-button:hover {
    background: var(--matcha-green-accent);
    border-color: var(--matcha-green-accent);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.story-button a {
    color: inherit;
    text-decoration: none;
}

/* --- HERO SEKCE S VIDEEM --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}
.main-headline {
    font-size: 4rem;
    color: var(--text-light);
    text-shadow: 0 4px 12px rgba(0,0,0,0.6);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}
.subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    font-family: var(--font-headings);
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-content .primary-button {
    margin-top: 2rem;
    transform: scale(1);
    transition: transform 0.3s ease;
}
.hero-content .primary-button:hover {
    transform: scale(1.05);
}

/* --- PANEL DŮVĚRY --- */
.trust-bar-section {
    background-color: var(--bg-gray);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
}
.trust-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--text-muted);
    background: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}
.trust-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.trust-item .stars {
    color: var(--star-color);
    font-size: 1.2rem;
}
.trust-item i {
    color: var(--matcha-green-dark);
    font-size: 1.5rem;
}

/* --- PROBLÉM A ŘEŠENÍ --- */
.problem-solution-section {
    background: var(--bg-light);
}
.solution-box {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 3rem;
}
.solution-text {
    flex: 1;
}
.solution-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--matcha-green-dark);
}
.solution-image {
    flex: 1;
}
.solution-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}
.solution-image img:hover {
    transform: scale(1.02);
}

/* --- PŘÍNOSY --- */
.benefits-section {
    background-color: var(--bg-gray);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}
.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--matcha-green-light);
}
.benefit-item i {
    font-size: 2.8rem;
    color: var(--matcha-green-dark);
    margin-bottom: 1rem;
}
.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--matcha-green-dark);
}
.benefit-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- SROVNÁVACÍ TABULKA --- */
.comparison-section {
    background-color: var(--bg-light);
}
.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.comparison-column {
    padding: 2rem;
    transition: var(--transition-fast);
}
.comparison-column:first-child {
    background-color: var(--matcha-green-light);
    border-right: 1px solid var(--border-color);
}
.comparison-column:hover {
    background-color: rgba(165, 214, 167, 0.1);
}
.comparison-column h3 {
    font-size: 1.7rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--matcha-green-dark);
}
.comparison-column ul {
    list-style: none;
}
.comparison-column li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.comparison-column li i {
    font-size: 1.4rem;
    margin-top: 2px;
}
.comparison-column .check {
    color: var(--matcha-green-dark);
}
.comparison-column .cross {
    color: var(--cross-color);
}

/* --- KVALITA A PŮVOD --- */
.quality-section {
    background-color: var(--bg-gray);
}
.quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}
.quality-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.8rem;
    background: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition-fast);
}
.quality-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--matcha-green-light);
}
.quality-item i {
    font-size: 1.8rem;
    color: var(--matcha-green-dark);
    margin-top: 5px;
}
.quality-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
    color: var(--matcha-green-dark);
}
.quality-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- OBSAH SADY --- */
.contents-section {
    background-color: var(--bg-light);
}
.contents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}
.content-item {
    text-align: center;
    background: var(--text-light);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.content-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.content-item img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    margin: 0 auto;
}
.content-item h3 {
    font-size: 1.3rem;
    margin: 1.2rem 1.2rem 0.5rem;
    color: var(--matcha-green-dark);
}
.content-item p {
    padding: 0 1.2rem 1.2rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    flex-grow: 1;
}
.content-item .secondary-button {
    margin: 0 1.2rem 1.2rem;
}
.main-product {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    text-align: left;
    gap: 2rem;
    padding: 2rem;
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}
.main-product img {
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}
.main-product-details {
    padding: 0;
}
.spec-table {
    width: 100%;
    text-align: left;
    font-size: 0.9rem;
    margin: 1.2rem 0;
    border-collapse: collapse;
}
.spec-table td {
    padding: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}
.spec-table tr:last-child td {
    border: none;
}
.spec-table td:first-child {
    color: var(--text-muted);
    font-weight: 600;
}

/* --- PŘÍPRAVA (S ČASOVOU OSOU) --- */
.preparation-section {
    background: var(--bg-gray);
}
.preparation-grid {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}
.prep-timeline {
    flex: 1;
    position: relative;
    padding: 2rem 0;
}
.prep-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--matcha-green-light);
    z-index: 0;
}
.prep-step {
    position: relative;
    width: 45%;
    text-align: center;
    padding: 1.5rem;
    background: var(--text-light);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    margin-bottom: 2rem;
}
.prep-step:last-child {
    margin-bottom: 0;
}
.prep-step::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -5%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: var(--matcha-green-dark);
    border-radius: 50%;
    z-index: 1;
}
.prep-step:nth-child(even) {
    margin-left: 55%;
}
.prep-step:nth-child(even)::before {
    left: auto;
    right: -5%;
}
.prep-step span {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: var(--matcha-green-dark);
    color: var(--text-light);
    font-size: 1.4rem;
    font-family: var(--font-headings);
    border-radius: 50%;
    line-height: 36px;
    margin-bottom: 1rem;
}
.prep-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--matcha-green-dark);
}
.prep-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- NÁŠ PŘÍBĚH --- */
.story-section {
    background-color: var(--bg-light);
}
.story-box {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.story-image {
    flex: 1;
    max-width: 320px;
}
.story-image img {
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
}
.story-image img:hover {
    transform: scale(1.03);
}
.story-text {
    flex: 2;
}
.story-text h2 {
    text-align: left;
    font-size: 2.2rem;
    color: var(--matcha-green-dark);
}
.story-text blockquote {
    font-size: 1.2rem;
    font-style: italic;
    border-left: 4px solid var(--matcha-green-light);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: var(--text-muted);
}
.owner-name {
    font-weight: bold;
    font-family: var(--font-headings);
    color: var(--matcha-green-dark);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    margin-top: 1rem;
}
.guarantee-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    background-color: var(--bg-gray);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}
.guarantee-box i {
    font-size: 2.2rem;
    color: var(--matcha-green-dark);
}
.guarantee-box strong {
    display: block;
    color: var(--matcha-green-dark);
}
.guarantee-box p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-muted);
    margin: 0;
}

/* --- RECENZE --- */
.reviews-section {
    background-color: var(--bg-gray);
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.review-item {
    background: var(--text-light);
    padding: 1.8rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    transition: var(--transition-fast);
}
.review-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.review-item p {
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 1.2rem;
    flex-grow: 1;
    font-size: 0.95rem;
}
.author-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}
.author-info strong {
    font-family: var(--font-headings);
    color: var(--matcha-green-dark);
    font-size: 1rem;
}
.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.stars {
    color: var(--star-color);
    font-size: 1rem;
}

/* --- HODNOCENÍ OBCHODU --- */
.store-reviews-section {
    background-color: var(--bg-light);
}
.rating-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-gray);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}
.rating-stars {
    font-size: 1.4rem;
    color: var(--star-color);
    font-weight: bold;
}
.rating-breakdown p {
    font-size: 0.85rem;
    margin: 0.2rem 0;
    color: var(--text-muted);
}
.rating-breakdown .stars {
    font-size: 0.85rem;
}

/* --- DOPRAVA ZDARMA --- */
.free-shipping-section {
    background-color: var(--bg-gray);
    padding: 2.5rem 0;
    text-align: center;
}
.free-shipping-section h2 {
    font-size: 1.8rem;
    color: var(--matcha-green-dark);
}
.free-shipping-section .section-intro {
    margin-bottom: 0.5rem;
}

/* --- VĚRNOSTNÍ PROGRAM --- */
.loyalty-program-section {
    background-color: var(--bg-light);
}
.loyalty-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background: var(--text-light);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}
.loyalty-content h3 {
    font-size: 1.4rem;
    margin: 1.2rem 0 0.5rem;
    color: var(--matcha-green-dark);
}
.loyalty-content ul, .loyalty-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}
.loyalty-content li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.loyalty-content .expandable {
    display: none;
    margin-top: 1rem;
}
.loyalty-content .expandable.active {
    display: block;
}
.loyalty-content .toggle-button {
    display: inline-block;
    background: var(--matcha-green-light);
    color: var(--text-dark);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-headings);
    border-radius: 50px;
    transition: var(--transition-fast);
    border: 2px solid var(--matcha-green-light);
    cursor: pointer;
    margin-top: 1rem;
}
.loyalty-content .toggle-button:hover {
    background: var(--matcha-green-accent);
    border-color: var(--matcha-green-accent);
    color: var(--text-light);
}
.loyalty-content .toggle-button i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}
.loyalty-content .toggle-button.expanded i {
    transform: rotate(180deg);
}

/* --- KONTAKTY --- */
.contacts-section {
    background-color: var(--bg-gray);
}
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.contact-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--text-light);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}
.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--matcha-green-dark);
}
.contact-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* --- O NÁS --- */
.about-us-section {
    background-color: var(--bg-light);
}
.about-us-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background: var(--text-light);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}
.about-us-content p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}
.about-us-content .expandable {
    display: none;
    margin-top: 1rem;
}
.about-us-content .expandable.active {
    display: block;
}
.about-us-content .toggle-button {
    display: inline-block;
    background: var(--matcha-green-light);
    color: var(--text-dark);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-headings);
    border-radius: 50px;
    transition: var(--transition-fast);
    border: 2px solid var(--matcha-green-light);
    cursor: pointer;
    margin-top: 1rem;
}
.about-us-content .toggle-button:hover {
    background: var(--matcha-green-accent);
    border-color: var(--matcha-green-accent);
    color: var(--text-light);
}
.about-us-content .toggle-button i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}
.about-us-content .toggle-button.expanded i {
    transform: rotate(180deg);
}
.about-us-content blockquote {
    font-size: 1.1rem;
    font-style: italic;
    border-left: 4px solid var(--matcha-green-light);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: var(--text-muted);
}
.about-us-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}
.about-us-content li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.about-us-content h3 {
    font-size: 1.4rem;
    margin: 1.2rem 0 0.5rem;
    color: var(--matcha-green-dark);
}

/* --- PODĚKOVÁNÍ --- */
.thank-you-section {
    background-color: var(--bg-gray);
    text-align: center;
    padding: 2.5rem 0;
}
.thank-you-content {
    background: var(--text-light);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    max-width: 500px;
    margin: 0 auto;
}
.thank-you-content p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}
.thank-you-content p:last-child {
    color: var(--matcha-green-dark);
    font-weight: bold;
}

/* --- VALUE PROPOSITION --- */
.value-section {
    background-color: var(--bg-gray);
    text-align: center;
    padding: 2.5rem 0;
}
.value-section h2 {
    font-size: 1.8rem;
    color: var(--matcha-green-dark);
}
.value-section p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-muted);
}
.value-graphic {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--matcha-green-dark);
    background-color: var(--text-light);
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    display: inline-block;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}
.value-graphic:hover {
    background-color: var(--matcha-green-light);
}

/* --- NABÍDKA A FINÁLNÍ CTA --- */
.offer-section {
    background-color: var(--bg-light);
}
.offer-box {
    display: flex;
    background: var(--text-light);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    align-items: center;
}
.offer-image {
    flex: 1;
}
.offer-details {
    flex: 1.2;
    padding: 2.5rem;
}
.offer-details h3 {
    font-size: 1.6rem;
    color: var(--matcha-green-dark);
}
.offer-details ul {
    list-style: none;
    margin: 1.2rem 0;
}
.offer-details li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: var(--text-muted);
}
.offer-details li i {
    color: var(--matcha-green-dark);
    margin-right: 8px;
}
.price-box {
    margin: 1.5rem 0;
}
.price {
    font-size: 2.8rem;
    font-weight: 700;
    font-family: var(--font-headings);
    color: var(--matcha-green-dark);
}
.shipping {
    color: var(--text-muted);
    margin-left: 10px;
    font-size: 0.9rem;
}
.timer-box {
    margin: 1.5rem 0;
    text-align: center;
}
.timer-box p {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--cross-color);
}
.countdown {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    font-weight: bold;
}
.countdown span {
    background-color: var(--matcha-green-dark);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 5px;
}
.cta-button {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.1rem;
}
.final-text {
    font-size: 0.85rem;
    text-align: center;
    color: var(--text-muted);
    margin-top: 1.2rem;
}
.eshop-info {
    font-size: 0.9rem;
    text-align: center;
    color: var(--text-muted);
    margin-top: 1rem;
}
.eshop-info a {
    color: var(--matcha-green-dark);
    text-decoration: none;
}
.eshop-info a:hover {
    color: var(--matcha-green-accent);
    text-decoration: underline;
}

/* --- FAQ --- */
.faq-section {
    background-color: var(--bg-gray);
}
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-fast);
}
.faq-question {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 1.2rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-headings);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--matcha-green-dark);
}
.faq-question:hover {
    color: var(--matcha-green-accent);
}
.faq-question i {
    font-size: 0.9rem;
    color: var(--matcha-green-dark);
    transition: transform 0.3s;
}
.faq-question i.rotated {
    transform: rotate(180deg);
}
.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;
}
.faq-answer p {
    padding-bottom: 1.2rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}
.faq-answer p a {
    color: var(--matcha-green-dark);
    text-decoration: none;
}
.faq-answer p a:hover {
    color: var(--matcha-green-accent);
    text-decoration: underline;
}
.faq-answer ul {
    list-style: none;
    padding-left: 0;
}
.faq-answer ul li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}
.faq-answer ul li strong {
    color: var(--matcha-green-dark);
}

/* --- DALŠÍ PRODUKTY --- */
.additional-products-section {
    background-color: var(--bg-light);
    padding: 5rem 0;
    text-align: center;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.product-card {
    background: var(--text-light);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    min-height: 400px;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.product-card img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--matcha-green-dark);
}
.product-card p, .product-card ul {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    flex-grow: 1;
    text-align: left;
}
.product-card ul {
    list-style: none;
    padding: 0;
}
.product-card .secondary-button {
    margin-top: auto;
    padding: 10px 20px;
    font-size: 1rem;
}

/* --- PATIČKA --- */
.footer-section {
    background-color: var(--matcha-green-dark);
    color: #ddd;
    padding: 50px 20px;
    text-align: center;
    font-size: 0.9rem;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-col {
    flex: 1;
    min-width: 200px;
    text-align: left;
    padding-left: 20px;
}
.footer-col h4 {
    font-family: var(--font-headings);
    font-size: 1.4rem;
    color: var(--matcha-green-light);
    margin-bottom: 15px;
}
.footer-col p {
    font-size: 0.95rem;
    margin: 5px 0;
    color: #ddd;
    display: flex;
    align-items: center;
}
.footer-col a {
    color: var(--matcha-green-light);
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer-col a:hover {
    color: var(--text-light);
    text-decoration: underline;
}
.icon-footer {
    width: 20px;
    text-align: center;
    margin-right: 10px;
    color: var(--matcha-green-light);
}
.footer-bottom {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #ccc;
}


/* --- TLAČÍTKO PRO SCROLL NAHORU --- */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1001;
    border: none;
    outline: none;
    background-color: var(--matcha-green-dark);
    color: var(--text-light);
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    display: flex;
    justify-content: center;
    align-items: center;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollTopBtn:hover {
    background-color: var(--matcha-green-accent);
}


/* --- RESPONZIVITA --- */
@media (max-width: 992px) {
/* ... zde začínají pravidla pro responzivitu ... */


/* --- RESPONZIVITA --- */
@media (max-width: 992px) {
    .nav-button { display: none; }
    #hamburger-btn { display: block; }
    #main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--text-light);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.4s ease;
    }
    #main-nav.active { right: 0; }
    #main-nav ul {
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        align-items: center;
    }
    #main-nav a, #main-header.scrolled #main-nav a {
        color: var(--text-dark);
    }
    h2 { font-size: 2.2rem; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content .subtitle { font-size: 1.6rem; }
    .benefits-grid, .reviews-grid { grid-template-columns: 1fr; }
    .main-product { grid-template-columns: 1fr; gap: 1.5rem; }
    .contents-grid { grid-template-columns: 1fr; }
    .solution-box, .story-box { flex-direction: column; gap: 1.5rem; }
    .story-box { text-align: center; }
    .story-text h2 { text-align: center; }
    .owner-name { flex-direction: column; text-align: center; }
    .owner-name .story-button { margin: 1rem 0 0; }
    .preparation-grid { flex-direction: column; }
    .prep-timeline, .prep-steps { width: 100%; }
    .prep-step { width: 100%; margin-left: 0; }
    .prep-step:nth-child(even) { margin-left: 0; }
    .comparison-table { grid-template-columns: 1fr; }
    .comparison-column:first-child { border-right: none; border-bottom: 1px solid var(--border-color); }
    .contacts-grid { grid-template-columns: 1fr; }
    .value-section h2 { font-size: 1.6rem; }
    .value-section p { font-size: 1rem; }
    .value-graphic { font-size: 2.2rem; }
    .rating-summary { flex-direction: column; gap: 1rem; }
    .loyalty-content, .about-us-content { padding: 1rem; }
    .products-grid { grid-template-columns: 1fr; }
    .faq-answer ul { padding-left: 1rem; }
    /* Úprava offer-box pro tablety */
    .offer-box {
        flex-direction: column;
        align-items: stretch;
    }
    .offer-image img {
        width: 100%;
        height: auto;
    }
    .offer-details {
        padding: 1.5rem;
        text-align: center;
    }
    .offer-details h3 {
        font-size: 1.4rem;
    }
    .offer-details ul {
        text-align: left;
    }
    .price {
        font-size: 2.2rem;
    }
    .countdown {
        font-size: 1.2rem;
    }
    .countdown span {
        padding: 0.4rem 0.8rem;
    }
}

@media (max-width: 768px) {
    section { padding: 3rem 0; }
    h2 { font-size: 1.8rem; }
    .main-headline { font-size: 2.2rem; }
    .subtitle { font-size: 1.4rem; }
    .trust-bar { flex-direction: column; align-items: flex-start; padding: 0 1rem; }
    .trust-item { width: 100%; justify-content: center; }
    .offer-details { padding: 1.2rem; }
    .price { font-size: 2rem; }
    .countdown { font-size: 1rem; }
    .countdown span { padding: 0.3rem 0.6rem; }
    .free-shipping-section h2 { 
        font-size: 1.4rem; 
    }
    .free-shipping-section .section-intro { 
        display: block;
        margin-top: 0.5rem;
    }
    .loyalty-content h3, .about-us-content h3 { font-size: 1.2rem; }
    .contact-item { padding: 1.2rem; }
    .contacts-section .section-intro {
        display: block;
        margin-bottom: 0.5rem;
    }
    .contacts-section .section-intro a {
        display: block;
        margin-top: 0.5rem;
    }
    .review-item { padding: 1.5rem; }
    .story-image { max-width: 250px; }
    .footer-content { flex-direction: column; gap: 20px; }
    .footer-col { padding-left: 15px; }
    .product-card { min-height: 350px; }
    .product-card img { height: 180px; }
    /* Odstranění zelených teček v prep-step */
    .prep-step::before {
        display: none;
    }
    .prep-timeline::before {
        display: none;
    }
    .prep-step {
        width: 100%;
        margin-left: 0;
    }
    .prep-step:nth-child(even)::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .free-shipping-section h2 {
        font-size: 1.2rem; /* Další zmenšení pro nejmenší obrazovky */
    }
    .container { padding: 0 15px; }
    .main-headline { font-size: 1.8rem; }
    .subtitle { font-size: 1.2rem; }
    .primary-button { padding: 10px 20px; font-size: 0.9rem; }
    #main-nav { width: 100%; }
    .prep-steps { grid-template-columns: 1fr; }
    .value-graphic { font-size: 1.8rem; padding: 0.5rem 1rem; }
    .review-item p { font-size: 0.9rem; }
    .author-info { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .footer-col h4 { font-size: 1.2rem; }
    .footer-col p { font-size: 0.85rem; }
    .product-card { padding: 1rem; }
    .product-card h3 { font-size: 1.2rem; }
    .product-card p, .product-card ul { font-size: 0.9rem; }
    .faq-answer ul li { font-size: 0.9rem; }
    .offer-details h3 { font-size: 1.2rem; }
    .price { font-size: 1.8rem; }
    .countdown { font-size: 0.9rem; }
}