:root {
    --primary-brand: #4CAF50;
    --secondary-brand: #81C784;
    --background-main: #F8FAF8;
    --background-alt: #FFFFFF;
    --text-primary-light: #1A2E1A;
    --text-secondary-light: #556B55;
    --accent-color: #2E7D32;
    --border-color: #E0E8E0;
    --status-success: #388E3C;
    --status-info: #00796B;
    --font-headings: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-main);
    color: var(--text-primary-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: border-box;
}

.text-muted {
    color: #556B55 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--text-primary-light);
}

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

.btn {
    border-radius: 4px;
    text-transform: none;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: none !important;
}

.btn-primary {
    background-color: var(--primary-brand) !important;
    color: #FFFFFF !important;
    box-shadow: none !important;
}

.btn-primary:hover {
    background-color: var(--status-success) !important;
}

.btn-outline-primary {
    border: 1.5px solid var(--primary-brand) !important;
    color: var(--primary-brand) !important;
    background: transparent !important;
}

.btn-outline-primary:hover {
    background-color: rgba(76, 175, 80, 0.05) !important;
    border-color: var(--status-success) !important;
    color: var(--status-success) !important;
}

/* ===== header ===== */
.epicudoitle-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E8E0;
    z-index: 1050;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.epicudoitle-header .navbar {
    padding: 0.75rem 0;
    background-color: #FFFFFF !important;
}

.epicudoitle-header .brand-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.epicudoitle-header .brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1A2E1A;
    letter-spacing: -0.02em;
}

.epicudoitle-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #556B55;
    padding: 0.5rem 1.25rem !important;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.epicudoitle-header .nav-link:hover,
.epicudoitle-header .nav-link.active {
    color: #4CAF50;
}

.epicudoitle-header .btn-cta {
    background-color: #4CAF50;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    border: none;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.epicudoitle-header .btn-cta:hover {
    background-color: #388E3C;
    color: #FFFFFF;
    box-shadow: 0 4px 8px rgba(76, 175, 80, 0.2);
}

.epicudoitle-header .navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.epicudoitle-header .navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .epicudoitle-header .navbar-collapse {
        background-color: #FFFFFF;
        padding: 1.5rem 0;
        border-top: 1px solid #E0E8E0;
        margin-top: 0.75rem;
    }

    .epicudoitle-header .nav-link {
        padding: 0.75rem 0 !important;
        font-size: 1.1rem;
    }

    .epicudoitle-header .btn-cta {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

/* ===== hero ===== */
.hero-magazine-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-color: #1A2E1A;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 46, 26, 0.9) 0%, rgba(26, 46, 26, 0.4) 100%);
}

.hero-magazine-section .z-index-10 {
    z-index: 10;
}

.hero-magazine-section h1 {
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
}

.hero-magazine-section .max-width-700 {
    max-width: 700px;
}

.hero-magazine-section .opacity-80 {
    opacity: 0.8;
}

.editorial-card {
    border: 1px solid #E0E8E0;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.editorial-card .card-image-container {
    position: relative;
    overflow: hidden;
}

.editorial-card img {
    object-fit: cover;
    width: 100%;
    display: block;
}

.featured-card .card-image-container {
    height: 350px;
}

.side-card .side-card-image-wrapper {
    width: 100%;
    height: 200px;
}

@media (min-width: 768px) {
    .side-card .side-card-image-wrapper {
        width: 180px;
        height: auto;
    }
}

.card-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #4CAF50;
    color: #FFFFFF;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 2px;
    letter-spacing: 0.05em;
}

.card-category-label {
    color: #4CAF50;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-magazine-section .card-title {
    font-family: 'Playfair Display', serif;
    transition: color 0.2s ease;
}

.hero-magazine-section .card-title:hover {
    color: #4CAF50 !important;
}

.btn-editorial-primary {
    display: inline-block;
    background-color: #4CAF50;
    color: #FFFFFF !important;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    border: none;
}

.btn-editorial-primary:hover {
    background-color: #388E3C;
}

.btn-editorial-link {
    display: inline-block;
    color: #4CAF50 !important;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    border-bottom: 2px solid transparent;
}

.btn-editorial-link:hover {
    border-bottom-color: #4CAF50;
}

/* ===== reviews ===== */
.reviews-cards {
    background-color: #F8FAF8;
    font-family: 'Inter', sans-serif;
}

.reviews-cards__main-title {
    font-family: 'Playfair Display', serif;
    color: #1A2E1A;
    font-size: 2.5rem;
    font-weight: 700;
}

.reviews-cards__subtitle {
    color: #556B55;
    max-width: 600px;
    line-height: 1.6;
}

.reviews-cards__item {
    background: #FFFFFF;
    border: 1px solid #E0E8E0;
    border-radius: 0;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.reviews-cards__item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: #4CAF50;
}

.reviews-cards__img-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.reviews-cards__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.reviews-cards__title {
    font-family: 'Playfair Display', serif;
    color: #1A2E1A;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.reviews-cards__title-link {
    text-decoration: none;
}

.reviews-cards__title-link:hover .reviews-cards__title {
    color: #4CAF50;
}

.reviews-cards__meta {
    font-size: 0.85rem;
    color: #A8BBA8;
}

.reviews-cards__meta-item {
    display: flex;
    align-items: center;
}

.reviews-cards__icon {
    color: #81C784;
}

.reviews-cards__description {
    color: #556B55;
    font-size: 0.95rem;
    line-height: 1.7;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.reviews-cards__btn {
    background-color: #4CAF50;
    color: #FFFFFF;
    border-radius: 4px;
    padding: 12px 24px;
    font-weight: 500;
    text-transform: none;
    box-shadow: none;
    border: none;
    transition: background-color 0.2s ease;
}

.reviews-cards__btn:hover {
    background-color: #388E3C;
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .reviews-cards__main-title {
        font-size: 1.75rem;
    }

    .reviews-cards__subtitle {
        font-size: 0.9rem;
    }
}

/* ===== lists ===== */
.book-lists-section {
    background-color: #F8FAF8;
    padding: 80px 0;
    overflow: hidden;
}

.book-lists-section .section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #1A2E1A !important;
}

.book-lists-section .section-subtitle {
    font-family: 'Inter', sans-serif;
    color: #556B55;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.book-lists-section .list-card {
    background: transparent;
    border: none;
    position: relative;
    display: flex;
    flex-direction: column;
}

.book-lists-section .image-container {
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.book-lists-section .card-content {
    margin: -40px 15px 0 15px;
    background: #FFFFFF;
    padding: 24px;
    position: relative;
    z-index: 2;
    border: 1px solid #E0E8E0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border-radius: 4px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.book-lists-section .list-card:hover .card-content {
    border-color: #4CAF50;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.book-lists-section .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1A2E1A !important;
    margin-bottom: 12px;
    line-height: 1.3;
}

.book-lists-section .card-text {
    font-family: 'Inter', sans-serif;
    color: #556B55;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
}

.book-lists-section .meta-info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    color: #A8BBA8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.book-lists-section .meta-info span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.book-lists-section .icon {
    width: 14px;
    height: 14px;
}

.book-lists-section .btn-custom {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: #4CAF50;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 0;
    border: none;
    background: transparent;
    transition: color 0.2s ease;
}

.book-lists-section .btn-custom:hover {
    color: #2E7D32;
}

.book-lists-section .btn-main {
    display: inline-block;
    background-color: #4CAF50;
    color: #FFFFFF;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.book-lists-section .btn-main:hover {
    background-color: #388E3C;
    color: #FFFFFF;
}

@media (max-width: 991px) {
    .book-lists-section {
        padding: 60px 0;
    }

    .book-lists-section .section-title {
        font-size: 2rem;
    }

    .book-lists-section .card-content {
        margin-top: -20px;
    }
}

@media (max-width: 767px) {
    .book-lists-section .section-title {
        font-size: 1.5rem;
    }

    .book-lists-section .card-title {
        font-size: 1.2rem;
    }
}

/* ===== blog ===== */
.blog-cards-block {
    background-color: #F8FAF8;
    font-family: 'Inter', sans-serif;
}

.blog-cards-block__main-title {
    font-family: 'Playfair Display', serif;
    color: #1A2E1A;
    font-weight: 700;
    font-size: 2.5rem;
}

.blog-cards-block__subtitle {
    color: #556B55;
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.6;
}

.blog-cards-block__card {
    background: #FFFFFF;
    border: 1px solid #E0E8E0;
    border-radius: 4px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.blog-cards-block__card:hover {
    box-shadow: 0 12px 24px rgba(26, 46, 26, 0.08);
}

.blog-cards-block__img-link {
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.blog-cards-block__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-cards-block__card:hover .blog-cards-block__img {
    transform: scale(1.03);
}

.blog-cards-block__body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-cards-block__meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-cards-block__meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #A8BBA8;
    font-size: 0.85rem;
}

.blog-cards-block__icon {
    width: 16px;
    height: 16px;
}

.blog-cards-block__title-link {
    text-decoration: none;
    display: block;
}

.blog-cards-block__card-title {
    font-family: 'Playfair Display', serif;
    color: #1A2E1A;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.blog-cards-block__card-title:hover {
    color: #4CAF50;
}

.blog-cards-block__card-text {
    color: #556B55;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-cards-block__btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: transparent;
    border: 1.5px solid #4CAF50;
    color: #4CAF50;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.blog-cards-block__btn:hover {
    background-color: #4CAF50;
    color: #FFFFFF;
}

.blog-cards-block__main-btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background-color: #4CAF50;
    color: #FFFFFF;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s ease;
    border: none;
}

.blog-cards-block__main-btn:hover {
    background-color: #388E3C;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .blog-cards-block__main-title {
        font-size: 1.8rem;
    }

    .blog-cards-block__subtitle {
        font-size: 1rem;
    }
}

/* ===== text_block ===== */
.epicudoitle-info-block {
    background-color: #F8FAF8;
    overflow: hidden;
}

.epicudoitle-info-block .text-primary-light {
    color: #1A2E1A !important;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.epicudoitle-info-block .text-secondary-light {
    color: #556B55 !important;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
}

.epicudoitle-info-block .text-accent {
    color: #2E7D32 !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.epicudoitle-info-block .accent-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: #4CAF50;
}

.epicudoitle-info-block .btn-primary-custom {
    background-color: #4CAF50;
    color: #F1F8F1 !important;
    border: none;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.epicudoitle-info-block .btn-primary-custom:hover {
    background-color: #388E3C;
}

.epicudoitle-info-block .info-image-container img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    z-index: 2;
    position: relative;
}

.epicudoitle-info-block .image-overlay-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid #E0E8E0;
    z-index: 1;
    border-radius: 4px;
}

@media (max-width: 767.98px) {
    .epicudoitle-info-block .info-image-container img {
        height: 300px;
    }

    .epicudoitle-info-block .image-overlay-decoration {
        display: none;
    }

    .epicudoitle-info-block .info-content {
        padding: 1rem !important;
    }

    .epicudoitle-info-block h2 {
        font-size: 1.5rem !important;
    }
}

/* ===== footer ===== */
.epicudoitle-footer {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    color: #1A2E1A;
}

.epicudoitle-footer .footer-logo {
    max-width: 50px;
    height: auto;
    display: block;
}

.epicudoitle-footer .footer-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1A2E1A;
    font-size: 1.25rem;
}

.epicudoitle-footer .footer-description {
    color: #556B55;
    line-height: 1.7;
    font-size: 0.95rem;
}

.epicudoitle-footer .footer-links a {
    color: #556B55;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
    display: inline-block;
}

.epicudoitle-footer .footer-links a:hover {
    color: #4CAF50;
}

.epicudoitle-footer .copyright-text {
    color: #A8BBA8;
    font-size: 0.85rem;
}

.epicudoitle-footer .border-top {
    border-color: #E0E8E0 !important;
}

@media (max-width: 767.98px) {
    .epicudoitle-footer .footer-heading {
        font-size: 1.1rem;
    }

    .epicudoitle-footer .footer-description,
    .epicudoitle-footer .footer-links a {
        font-size: 0.85rem;
    }
}

/* ===== PAGE: privacy ===== */
.policy-content-block { font-family: 'Inter', sans-serif; line-height: 1.7; color: #1A2E1A; background-color: #F8FAF8; padding: 60px 20px; min-height: 100vh; } .policy-article { max-width: 850px; margin: 0 auto; background-color: #FFFFFF; padding: 48px; border-radius: 4px; border: 1px solid #E0E8E0; box-shadow: 0 4px 12px rgba(0,0,0,0.02); } .policy-article h2 { font-family: 'Playfair Display', serif; font-weight: 700; color: #1A2E1A; font-size: 2.5rem; margin-bottom: 24px; line-height: 1.2; text-align: center; } .policy-article h3 { font-family: 'Playfair Display', serif; font-weight: 700; color: #2E7D32; font-size: 1.5rem; margin-top: 40px; margin-bottom: 20px; border-bottom: 1.5px solid #E0E8E0; padding-bottom: 8px; } .policy-article p { margin-bottom: 1.25rem; font-size: 1rem; color: #556B55; text-align: justify; hyphens: auto; } .policy-article ul { margin-bottom: 1.5rem; padding-left: 1.5rem; list-style-type: none; } .policy-article li { position: relative; margin-bottom: 0.75rem; font-size: 0.95rem; color: #556B55; padding-left: 20px; } .policy-article li::before { content: '•'; color: #4CAF50; font-weight: bold; position: absolute; left: 0; } .policy-article strong { color: #1A2E1A; font-weight: 600; } @media (max-width: 768px) { .policy-content-block { padding: 30px 15px; } .policy-article { padding: 24px; } .policy-article h2 { font-size: 1.8rem; } .policy-article h3 { font-size: 1.3rem; } .policy-article p { font-size: 0.95rem; } }

/* ===== PAGE: terms ===== */
.policy-content-block { padding: 48px 0; background-color: #F8FAF8; font-family: 'Inter', sans-serif; }.policy-content-block .terms-wrapper { max-width: 800px; margin: 0 auto; padding: 0 24px; }.policy-content-block h2 { font-family: 'Playfair Display', serif; color: #2E7D32; font-weight: 700; font-size: 2rem; margin-bottom: 1.5rem; position: relative; padding-bottom: 0.75rem; border-bottom: 1px solid #E0E8E0; }.policy-content-block p { color: #1A2E1A; line-height: 1.8; margin-bottom: 1.25rem; font-size: 1.05rem; }.policy-content-block .terms-list { list-style: none; padding-left: 0; margin-bottom: 1.5rem; }.policy-content-block .terms-list li { position: relative; padding-left: 1.75rem; margin-bottom: 0.75rem; color: #556B55; line-height: 1.6; }.policy-content-block .terms-list li::before { content: ''; position: absolute; left: 0; top: 0.6rem; width: 8px; height: 8px; background-color: #4CAF50; border-radius: 2px; }@media (max-width: 768px) { .policy-content-block { padding: 32px 0; } .policy-content-block h2 { font-size: 18px; margin-bottom: 1rem; } .policy-content-block p { font-size: 14px; line-height: 1.6; } .policy-content-block .terms-list li { font-size: 14px; } }

/* ===== PAGE: disclaimer ===== */
.policy-content-block {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  background-color: #FFFFFF;
  color: #1A2E1A;
  line-height: 1.7;
}

.policy-content-block h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #2E7D32;
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
  border-bottom: 1px solid #E0E8E0;
  padding-bottom: 0.5rem;
}

.policy-content-block h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #4CAF50;
  margin-top: 1.8rem;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.policy-content-block p {
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
  color: #556B55;
  text-align: justify;
}

.policy-content-block ul,
.policy-content-block ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.policy-content-block li {
  margin-bottom: 0.5rem;
  color: #556B55;
}

@media (max-width: 768px) {
  .policy-content-block {
    padding: 2rem 1rem;
  }
  .policy-content-block h2 {
    font-size: 16px !important;
  }
  .policy-content-block h3 {
    font-size: 14px !important;
  }
  .policy-content-block p {
    font-size: 0.95rem;
    text-align: left;
    hyphens: auto;
  }
}

/* ===== PAGE: cookies ===== */
.policy-content-block { font-family: 'Inter', sans-serif; color: #1A2E1A; line-height: 1.7; background: #F8FAF8; padding: 48px 24px; }
.policy-content-block__inner { max-width: 800px; margin: 0 auto; }
.policy-content-block__h1 { font-family: 'Playfair Display', serif; color: #1A2E1A; font-weight: 700; line-height: 1.2; font-size: 2.5rem; }
.policy-content-block__h2 { font-family: 'Playfair Display', serif; color: #1A2E1A; font-weight: 700; line-height: 1.3; font-size: 1.75rem; border-left: 4px solid #4CAF50; padding-left: 16px; }
.policy-content-block__h3 { font-family: 'Inter', sans-serif; color: #2E7D32; font-weight: 600; font-size: 1.1rem; }
.policy-content-block__text { color: #556B55; margin-bottom: 1rem; }
.policy-card { background: #FFFFFF; border: 1px solid #E0E8E0; border-radius: 4px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.policy-tabs__btn { background: #FFFFFF; border: 1px solid #4CAF50; color: #4CAF50; padding: 8px 20px; border-radius: 4px; font-weight: 500; transition: background 0.2s, color 0.2s; }
.policy-tabs__btn.active { background: #4CAF50; color: #FFFFFF; }
.policy-tabs__btn:hover { background: #E8F5E9; }
.policy-list { list-style: none; padding-left: 0; }
.policy-list__item { position: relative; padding-left: 24px; color: #556B55; }
.policy-list__item::before { content: '•'; color: #4CAF50; position: absolute; left: 0; font-weight: bold; }
@media (max-width: 767px) {
  .policy-content-block__h1 { font-size: 18px !important; }
  .policy-content-block__h2 { font-size: 16px !important; }
  .policy-content-block__h3 { font-size: 14px !important; }
  .policy-content-block { padding: 24px 12px; }
}

/* ===== PAGE: reviews ===== */
.reviews-section {
  background-color: #F8FAF8;
}

.reviews-section .text-primary-brand {
  color: #4CAF50;
  font-family: 'Playfair Display', serif;
}

.reviews-section .text-secondary-light {
  color: #556B55;
}

.reviews-section .card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  background-color: #FFFFFF;
}

.reviews-section .card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08) !important;
}

.reviews-section .card-img-top-wrapper {
  height: 380px;
  background-color: #E0E8E0;
}

.reviews-section .card-img-top {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.reviews-section .card:hover .card-img-top {
  transform: scale(1.05);
}

.reviews-section .badge.bg-success-subtle {
  background-color: #E8F5E9;
}

.reviews-section .btn-primary {
  background-color: #4CAF50;
  border-color: #4CAF50;
  color: #FFFFFF;
  font-weight: 500;
  padding: 10px 20px;
  text-transform: none;
  box-shadow: none;
}

.reviews-section .btn-primary:hover,
.reviews-section .btn-primary:active {
  background-color: #388E3C !important;
  border-color: #388E3C !important;
}

.reviews-section .btn-outline-success {
  color: #4CAF50;
  border-color: #4CAF50;
  text-transform: none;
}

.reviews-section .btn-outline-success.active,
.reviews-section .btn-outline-success:hover {
  background-color: #4CAF50 !important;
  border-color: #4CAF50 !important;
  color: #FFFFFF !important;
}

.reviews-section .form-outline .form-control:focus ~ .form-label {
  color: #4CAF50;
}

.reviews-section .form-outline .form-control:focus {
  border-color: #4CAF50;
  box-shadow: inset 0 0 0 1px #4CAF50;
}

.reviews-section .avatar-placeholder {
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .reviews-section .card-img-top-wrapper {
    height: 300px;
  }
  .reviews-section .reviews-title {
    font-size: 1.5rem;
  }
}

/* ===== PAGE: lists ===== */
.lists-section {
  background-color: #F8FAF8;
}
.lists-section__title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #1A2E1A;
  font-size: 2.5rem;
}
.lists-section__subtitle {
  font-family: 'Inter', sans-serif;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.lists-section__filter-container {
  max-width: 500px;
}
.lists-section__search-input {
  border-radius: 4px;
  border: 1px solid #E0E8E0;
  padding: 0.75rem 1.25rem;
  font-family: 'Inter', sans-serif;
  color: #1A2E1A;
}
.lists-section__search-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
  border-color: #4CAF50;
}
.lists-section__card {
  border: 1px solid #E0E8E0;
  border-radius: 4px;
  transition: box-shadow 0.2s ease;
  background-color: #FFFFFF;
  overflow: hidden;
}
.lists-section__card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.lists-section__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.lists-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.lists-section__card:hover .lists-section__image {
  transform: scale(1.05);
}
.lists-section__card-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #1A2E1A;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.lists-section__btn {
  background-color: #4CAF50 !important;
  border: none !important;
  box-shadow: none !important;
  text-transform: none !important;
  font-weight: 500;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.2s ease !important;
}
.lists-section__btn:hover {
  background-color: #388E3C !important;
}
.lists-section .bg-success-subtle {
  background-color: #E8F5E9 !important;
  color: #2E7D32 !important;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .lists-section__title {
    font-size: 1.75rem;
  }
  .lists-section__card-heading {
    font-size: 1.15rem;
  }
}

/* ===== PAGE: blog ===== */
.blog-section {
  background-color: #F8FAF8;
  color: #1A2E1A;
  font-family: 'Inter', sans-serif;
}

.blog-section h1 {
  font-family: 'Playfair Display', serif;
  color: #1A2E1A;
  font-weight: 700;
}

.blog-section .card {
  border: 1px solid #E0E8E0;
  border-radius: 4px;
  background-color: #FFFFFF;
  transition: box-shadow 0.3s ease;
}

.blog-section .card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

.blog-section .card-img-top {
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-section .card:hover .card-img-top {
  transform: scale(1.03);
}

.blog-section .card-title a {
  color: #1A2E1A;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  transition: color 0.2s ease;
}

.blog-section .card-title a:hover {
  color: #4CAF50;
}

.blog-section .badge.bg-light {
  background-color: #F1F8F1 !important;
  color: #2E7D32 !important;
  font-weight: 600;
}

.blog-section .btn-primary {
  background-color: #4CAF50;
  border-color: #4CAF50;
  font-weight: 500;
  border-radius: 4px;
}

.blog-section .btn-primary:hover {
  background-color: #388E3C;
  border-color: #388E3C;
}

.blog-section .btn-outline-primary {
  color: #4CAF50;
  border-color: #4CAF50;
  border-radius: 4px;
  font-weight: 500;
}

.blog-section .btn-outline-primary:hover, 
.blog-section .btn-outline-primary.active {
  background-color: #4CAF50;
  border-color: #4CAF50;
  color: #FFFFFF;
}

.blog-section .input-group-text {
  border-color: #E0E8E0;
}

.blog-section .form-control {
  border-color: #E0E8E0;
  color: #1A2E1A;
}

.blog-section .form-control::placeholder {
  color: #A8BBA8;
}

.blog-section .form-control:focus {
  box-shadow: none;
  border-color: #4CAF50;
}

/* ===== PAGE: about ===== */
.about-project-content { background-color: #F8FAF8; color: #1A2E1A; font-family: 'Inter', sans-serif; line-height: 1.7; overflow: hidden; } .about-project-content .about-main-title { font-family: 'Playfair Display', serif; font-weight: 700; color: #2E7D32; font-size: 2.5rem; } .about-project-content .about-subtitle { font-family: 'Playfair Display', serif; font-weight: 700; color: #4CAF50; font-size: 1.5rem; } .about-project-content .about-text { color: #556B55; font-size: 1.1rem; } .about-project-content .about-image-container { position: relative; } .about-project-content .about-image-container img { object-fit: cover; width: 100%; height: 500px; border: 1px solid #E0E8E0; } .about-project-content .feature-card { border-color: #E0E8E0 !important; transition: border-color 0.3s ease; } .about-project-content .feature-title { color: #2E7D32; font-family: 'Playfair Display', serif; } .about-project-content .feature-text { color: #556B55; font-size: 0.95rem; margin-bottom: 0; } .about-project-content .philosophical-quote { border-left: 5px solid #4CAF50; } .about-project-content .quote-text { font-family: 'Playfair Display', serif; color: #1A2E1A; font-style: italic; font-size: 1.8rem; line-height: 1.3; } @media (max-width: 767px) { .about-project-content .about-main-title { font-size: 1.125rem; } .about-project-content .about-subtitle { font-size: 1rem; } .about-project-content .about-image-container img { height: 300px; } .about-project-content .quote-text { font-size: 1.25rem; } }

.comment-wrapper {
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    transition: border-color 0.2s ease;
    border: 1px solid #E0E8E0;
}

.avatar-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: #FFFFFF;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.main-avatar {
    width: 54px;
    height: 54px;
    font-size: 1.2rem;
}

.comment-author-name {
    font-family: 'Playfair Display', serif;
    color: #1A2E1A;
    font-weight: 700;
}

.comment-body-text {
    font-family: 'Inter', sans-serif;
    color: #556B55;
    line-height: 1.7;
    font-size: 1rem;
}

.comment-timestamp {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.02em;
}

.text-accent {
    color: #2E7D32 !important;
    font-weight: 600;
    text-decoration: none;
}

.text-secondary-light {
    color: #556B55 !important;
    text-decoration: none;
}

.text-accent:hover {
    color: #1A2E1A !important;
}

.comment-wrapper-reply {
    background-color: #F8FAF8;
    border-left: 3px solid #81C784 !important;
    border-radius: 0 4px 4px 0;
}

.reply-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    background: #81C784;
}

.comment-body-text-sm {
    font-family: 'Inter', sans-serif;
    color: #556B55;
    line-height: 1.6;
    font-size: 0.935rem;
}

.ms-5 {
    margin-left: 3rem !important;
}

@media (max-width: 576px) {
    .ms-5 {
        margin-left: 1.5rem !important;
    }
}


/* ===== PAGE TEMPLATE: reviews ===== */
.book-review-detail {
    font-family: 'Inter', sans-serif;
    color: #1A2E1A;
}

.book-review-detail h1,
.book-review-detail h2,
.book-review-detail h3,
.book-review-detail h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.book-review-detail .detail-hero {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E8E0;
}

.book-review-detail .breadcrumb-item a {
    color: #4CAF50;
    text-decoration: none;
}

.book-review-detail .breadcrumb-item.active {
    color: #556B55;
}

.book-review-detail .featured-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.book-review-detail .rich-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: #2C3E2C;
}

.book-review-detail .avatar-initials {
    width: 48px;
    height: 48px;
    background-color: #4CAF50;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    font-size: 1.1rem;
}

.book-review-detail .reply-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
}

.book-review-detail .comment-wrapper-reply {
    margin-left: 3rem;
    border-left: 2px solid #E0E8E0;
    background-color: #FAFAFA;
}

.book-review-detail .text-accent {
    color: #4CAF50;
    font-weight: 600;
    text-decoration: none;
}

.book-review-detail .text-accent:hover {
    color: #388E3C;
}

.book-review-detail .sidebar-card {
    border: 1px solid #E0E8E0;
}

.book-review-detail .btn-success {
    background-color: #4CAF50 !important;
    box-shadow: none;
    text-transform: none;
    font-weight: 600;
}

.book-review-detail .btn-success:hover {
    background-color: #388E3C !important;
}

.book-review-detail .js-comment-name-input,
.book-review-detail .js-comment-text-input {
    border: 1px solid #E0E8E0;
    background-color: #F8FAF8;
}

.book-review-detail .js-comment-name-input:focus,
.book-review-detail .js-comment-text-input:focus {
    background-color: #FFFFFF;
    border-color: #4CAF50;
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.1);
}

@media (max-width: 768px) {
    .book-review-detail .detail-hero h1 {
        font-size: 2rem;
    }

    .book-review-detail .featured-image-wrapper img {
        height: 350px !important;
    }

    .book-review-detail .comment-wrapper-reply {
        margin-left: 1rem;
    }
}

/* ===== PAGE TEMPLATE: lists ===== */
.list-detail-template {
    background-color: #F8FAF8;
    color: #1A2E1A;
    font-family: 'Inter', sans-serif;
}

.list-detail-template h1,
.list-detail-template h2,
.list-detail-template h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1A2E1A;
}

.list-detail-template .list-hero-section {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E8E0;
}

.list-detail-template .list-hero-title {
    font-size: 2.5rem;
    color: #1A2E1A;
}

.list-detail-template .list-hero-subtitle {
    color: #556B55;
    max-width: 800px;
}

.list-detail-template .main-list-image {
    max-height: 500px;
    object-fit: cover;
}

.list-detail-template .list-meta-item {
    font-size: 0.9rem;
    color: #556B55;
}

.list-detail-template .btn-primary {
    background-color: #4CAF50;
    border: none;
}

.list-detail-template .btn-primary:hover {
    background-color: #388E3C;
}

.list-detail-template .btn-secondary {
    background-color: transparent;
    border: 1.5px solid #4CAF50;
    color: #4CAF50;
}

.list-detail-template .btn-secondary:hover {
    background-color: #4CAF50;
    color: #FFFFFF;
}

.list-detail-template .avatar-initials {
    width: 48px;
    height: 48px;
    background-color: #81C784;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    font-size: 1.1rem;
}

.list-detail-template .comment-author-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
}

.list-detail-template .text-accent {
    color: #2E7D32;
}

.list-detail-template .sidebar-widget {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.list-detail-template .widget-title {
    font-size: 1.25rem;
    border-left: 3px solid #4CAF50;
    padding-left: 1rem;
}

.list-detail-template .sidebar-links a:hover {
    color: #4CAF50 !important;
}

@media (max-width: 768px) {
    .list-detail-template .list-hero-title {
        font-size: 1.75rem;
    }

    .list-detail-template .main-list-image {
        max-height: 300px;
    }

    .list-detail-template .list-content-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .list-detail-template .comment-wrapper-reply {
        margin-left: 1rem;
    }
}

@media (max-width: 991.98px) {
    .epicudoitle-header.sticky-top {
        position: relative !important;
        top: auto !important;
    }
}

.epicudoitle-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E8E0;
    z-index: 1050;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.epicudoitle-header .navbar {
    padding: 0.75rem 0;
    background-color: #FFFFFF !important;
}

.epicudoitle-header .brand-logo {
    max-width: 45px;
    height: auto;
    object-fit: contain;
}

.epicudoitle-header .brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1A2E1A;
    letter-spacing: -0.02em;
}

.epicudoitle-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #556B55;
    padding: 0.5rem 1.25rem !important;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.epicudoitle-header .btn-cta {
    background-color: #4CAF50;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    border: none;
    transition: background-color 0.2s ease;
}

.epicudoitle-footer {
    background-color: #FFFFFF;
    color: #1A2E1A;
}

.epicudoitle-footer .footer-logo {
    max-width: 50px;
    height: auto;
}

.epicudoitle-footer .footer-links a {
    color: #556B55;
    text-decoration: none;
    font-size: 0.95rem;
}

.epicudoitle-footer .footer-links a:hover {
    color: #4CAF50;
}

/* ===== PAGE TEMPLATE: blog ===== */
.epicudoitle-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid #E0E8E0;
    z-index: 1050;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.epicudoitle-header .brand-logo {
    max-width: 45px;
    height: auto;
}

.epicudoitle-header .brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #1A2E1A;
}

.epicudoitle-header .nav-link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #556B55;
    padding: 0.5rem 1.25rem !important;
}

.epicudoitle-header .nav-link:hover,
.epicudoitle-header .nav-link.active {
    color: #4CAF50;
}

.epicudoitle-header .btn-cta {
    background-color: #4CAF50;
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 4px;
}

.epicudoitle-detail-page {
    background-color: #F8FAF8;
    font-family: 'Inter', sans-serif;
}

.epicudoitle-detail-page .detail-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1A2E1A;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.epicudoitle-detail-page .detail-subtitle {
    font-size: 1.25rem;
    color: #556B55;
}

.epicudoitle-detail-page .article-body {
    color: #1A2E1A;
    line-height: 1.8;
}

.epicudoitle-detail-page .article-text h2,
.epicudoitle-detail-page .article-text h3 {
    font-family: 'Playfair Display', serif;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1A2E1A;
}

.epicudoitle-detail-page .article-text p {
    margin-bottom: 1.5rem;
}

.epicudoitle-detail-page .avatar-initials {
    width: 48px;
    height: 48px;
    background-color: #81C784;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.epicudoitle-detail-page .main-avatar {
    background-color: #4CAF50;
}

.epicudoitle-detail-page .reply-avatar {
    background-color: #81C784;
}

.epicudoitle-detail-page .text-accent {
    color: #4CAF50;
    text-decoration: none;
}

.epicudoitle-detail-page .comment-wrapper-reply {
    border-left: 2px solid #E0E8E0;
}

.epicudoitle-detail-page .sidebar .widget-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.2rem;
    border-bottom: 2px solid #4CAF50;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.epicudoitle-footer {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
}

.epicudoitle-footer .footer-logo {
    max-width: 50px;
}

.epicudoitle-footer .footer-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #1A2E1A;
}

.epicudoitle-footer .footer-links a {
    color: #556B55;
    text-decoration: none;
}

.epicudoitle-footer .footer-links a:hover {
    color: #4CAF50;
}

@media (max-width: 768px) {
    .epicudoitle-detail-page .detail-title {
        font-size: 1.8rem;
    }

    .epicudoitle-detail-page .detail-subtitle {
        font-size: 1rem;
    }
}