:root {
    --bg-main: #FDFBF7;
    --bg-secondary: #F5F1E9;
    --bg-glass: rgba(255, 255, 255, 0.6);
    --text-primary: #2D2926;
    --text-secondary: #5C5852;
    --text-muted: #969085;
    --accent-primary: #D4C3A3;
    --accent-secondary: #E9E1D4;
    --border-glass: rgba(212, 195, 163, 0.3);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.text-muted {
    color: var(--text-muted) !important;
}

.glass-panel {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
}

.btn-glass {
    background: linear-gradient(135deg, var(--accent-secondary) 0%, var(--accent-primary) 100%);
    border: 1px solid var(--border-glass);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-glass:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 195, 163, 0.4);
}

.smooth-scroll {
    scroll-behavior: smooth;
}

.asymmetrical-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* ===== header ===== */
#header-block .js-dropdown-menu {
    backdrop-filter: blur(10px);
    background-color: #FDFBF7;
    z-index: 101;
}

#header-block .js-mobile-menu {
    height: calc(100vh - 70px);
}

#header-block .js-mobile-menu-toggle i {
    transition: transform 0.3s ease;
}

#header-block .js-mobile-menu-toggle[aria-expanded="true"] i {
    transform: rotate(90deg);
}

#header-block .js-dropdown-toggle i {
    transition: transform 0.2s ease;
}

#header-block .js-dropdown-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

#header-block a {
    text-decoration: none;
}

@media (max-width: 1023px) {
    #header-block .js-mobile-menu.hidden {
        display: none;
    }

    #header-block .js-mobile-menu:not(.hidden) {
        display: block;
    }
}

/* ===== hero ===== */
.cp-hero {
    position: relative;
    overflow: hidden;
}

.cp-hero__bg {
    transition: transform 0.8s ease-out;
}

.cp-hero:hover .cp-hero__bg {
    transform: scale(1.05);
}

.cp-hero__glass-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cp-hero__glass-card:hover {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 48px 0 rgba(212, 195, 163, 0.25);
}

.cp-hero h1 {
    color: #2D2926;
    hyphens: auto;
}

.cp-hero p {
    color: #5C5852;
}

.cp-hero .js-hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
}

/* ===== home-tips ===== */
.home-tips-block .home-tips-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-tips-block .home-tips-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(212, 195, 163, 0.15);
}

.home-tips-block h2,
.home-tips-block h3 {
    color: #2D2926;
}

.home-tips-block .js-card-btn {
    background: linear-gradient(135deg, #F5F1E9 0%, #E9E1D4 100%);
    border: 1px solid rgba(212, 195, 163, 0.4);
}

.home-tips-block .js-card-btn:hover {
    background: #D4C3A3;
    color: #FFFFFF;
    border-color: #D4C3A3;
}

@media (max-width: 767px) {
    .home-tips-block h2 {
        font-size: 16px;
    }

    .home-tips-block h3 {
        font-size: 14px;
    }

    .home-tips-block .home-tips-card img {
        height: 200px;
    }
}

/* ===== health-tips ===== */
.health-tips-block-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 195, 163, 0.3);
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.health-tips-block-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 195, 163, 0.2);
}

.health-tips-block-btn {
    background: linear-gradient(135deg, #F5F1E9 0%, #E9E1D4 100%);
    color: #2D2926;
    border: 1px solid rgba(212, 195, 163, 0.4);
    text-decoration: none;
}

.health-tips-block-btn:hover {
    background: linear-gradient(135deg, #E9E1D4 0%, #D4C3A3 100%);
    color: #2D2926;
    transform: scale(1.02);
}

/* ===== newsletter ===== */
.newsletter-section .newsletter-card {
    box-shadow: 0 10px 40px -15px rgba(212, 195, 163, 0.4);
}

.newsletter-section .js-newsletter-input::placeholder {
    color: #969085;
    opacity: 1;
}

.newsletter-section .js-newsletter-input:focus {
    border-color: #D4C3A3;
}

.newsletter-section .js-newsletter-input:invalid:not(:placeholder-shown) {
    border-color: #e3342f;
}

/* ===== footer ===== */
.cp-footer .cp-footer-disclaimer {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cp-footer .js-footer-nav-item a,
.cp-footer .js-footer-legal-item a {
    position: relative;
    display: inline-block;
}

.cp-footer .js-footer-nav-item a::after,
.cp-footer .js-footer-legal-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #D4C3A3;
    transition: width 0.3s ease;
}

.cp-footer .js-footer-nav-item a:hover::after,
.cp-footer .js-footer-legal-item a:hover::after {
    width: 100%;
}

.cp-footer i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .cp-footer .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* ===== PAGE: health ===== */
.health-page-container .glass-panel {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.health-page-container article {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.health-page-container article:hover {
  transform: translateY(-4px);
}

.health-page-container input::placeholder {
  color: #969085;
  opacity: 1;
}

.health-page-container .line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== PAGE: home ===== */
.dom-section-wrapper {
  font-family: 'Inter', sans-serif;
}
.dom-section-wrapper .font-serif {
  font-family: 'Playfair Display', serif;
}
.dom-section-wrapper .dom-card {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}
.dom-section-wrapper .dom-card:hover {
  transform: translateY(-8px);
}
.dom-section-wrapper .js-filter-btn.active {
  box-shadow: 0 4px 15px rgba(212, 195, 163, 0.3);
}
@media (max-width: 767px) {
  .dom-section-wrapper .search-container {
    order: 1;
  }
  .dom-section-wrapper .tabs-container {
    order: 2;
  }
}

/* ===== PAGE: reviews ===== */
.reviews-category-title { position: relative; overflow: hidden; }
.reviews-articles-grid .card-glass { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.reviews-articles-grid input::placeholder { color: #969085; opacity: 0.8; }
.reviews-articles-grid .js-filter-btn.active { background-color: #D4C3A3; color: white; border-color: #D4C3A3; }
.reviews-articles-grid article { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.reviews-articles-grid article:hover { transform: translateY(-8px); }
@media (max-width: 768px) {
  .reviews-articles-grid .flex-nowrap { scrollbar-width: none; -ms-overflow-style: none; }
  .reviews-articles-grid .flex-nowrap::-webkit-scrollbar { display: none; }
}

/* ===== PAGE: about ===== */
.about-page-content .js-accordion-trigger i.bi-chevron-down.rotate-180 { transform: rotate(180deg); } .about-page-content .js-accordion-content.show { display: block; animation: fadeIn 0.3s ease-out; } @keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } } .about-page-content img { transition: transform 0.5s ease; } .about-page-content .group:hover img { transform: scale(1.05); } .about-page-content .container { position: relative; z-index: 1; }

/* ===== PAGE: contact ===== */
.contact-section .form-container {
  box-shadow: 0 20px 40px -15px rgba(212, 195, 163, 0.2);
}
.contact-section input::placeholder, 
.contact-section textarea::placeholder {
  color: #969085;
  opacity: 0.8;
}
.contact-section .info-card:hover {
  border-color: rgba(212, 195, 163, 0.6);
  background-color: rgba(255, 255, 255, 0.8);
}
.contact-section .icon-box {
  transition: transform 0.3s ease;
}
.contact-section .info-card:hover .icon-box {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .contact-section .form-container {
    padding: 1.5rem;
  }
}

/* ===== PAGE: privacy ===== */
.privacy-section .content-card { background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(212, 195, 163, 0.3); box-shadow: 0 10px 30px -10px rgba(212, 195, 163, 0.2); }.privacy-section .text-group p { hyphens: auto; }.privacy-section a:hover { color: #D4C3A3; transition: color 0.3s ease; }

/* ===== PAGE: terms ===== */
.terms-section { font-family: 'Inter', sans-serif; }
.terms-glass-card { box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05); }
.terms-navigation .js-nav-item:hover { text-decoration: underline; }
.terms-content h2 { color: #2D2926; margin-top: 1rem; }
.terms-content article { scroll-margin-top: 100px; }
@media (max-width: 767px) {
  .terms-content h2 { line-height: 1.3; }
  .terms-glass-card { padding: 1.5rem; }
}

/* ===== PAGE: disclaimer ===== */
.disclaimer-content .disclaimer-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.disclaimer-content .disclaimer-item h2 {
  border-left: 3px solid #D4C3A3;
  padding-left: 1rem;
}
.disclaimer-content .disclaimer-text p {
  margin-bottom: 1rem;
  line-height: 1.8;
}
.disclaimer-content i {
  font-size: 1.25rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .disclaimer-content .disclaimer-item h2 {
    border-left-width: 2px;
    padding-left: 0.75rem;
  }
  .disclaimer-content i {
    font-size: 1rem;
  }
}

/* ===== PAGE: cookies ===== */
.cookies-content .glass-panel { box-shadow: 0 10px 40px -15px rgba(212, 195, 163, 0.2); } .cookies-content .cookie-entry h2 { position: relative; padding-bottom: 0.75rem; } .cookies-content .cookie-entry h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 2px; background: #D4C3A3; border-radius: 2px; }

.comment-container {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comment-container:hover {
    box-shadow: 0 10px 25px -5px rgba(212, 195, 163, 0.2);
}

.comment-avatar {
    width: 56px;
    height: 56px;
    object-fit: cover;
    display: block;
    background-color: #F5F1E9;
}

.reply-thread-wrapper {
    position: relative;
}

.reply-avatar {
    width: 40px;
    height: 40px;
    object-fit: cover;
    display: block;
    background-color: #F5F1E9;
}

.reply-thread-wrapper::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25px;
    width: 15px;
    height: 2px;
    background-color: rgba(212, 195, 163, 0.2);
}


/* ===== PAGE TEMPLATE: health ===== */
#header-block .js-dropdown-menu {
    backdrop-filter: blur(10px);
    background-color: #FDFBF7;
    z-index: 101;
}

#header-block .js-mobile-menu {
    height: calc(100vh - 70px);
}

#header-block .js-mobile-menu-toggle i {
    transition: transform 0.3s ease;
}

#header-block .js-mobile-menu-toggle[aria-expanded="true"] i {
    transform: rotate(90deg);
}

#header-block .js-dropdown-toggle i {
    transition: transform 0.2s ease;
}

#header-block .js-dropdown-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

#header-block a {
    text-decoration: none;
}

@media (max-width: 1023px) {
    #header-block .js-mobile-menu.hidden {
        display: none;
    }

    #header-block .js-mobile-menu:not(.hidden) {
        display: block;
    }
}

.cp-hero {
    position: relative;
    overflow: hidden;
}

.cp-hero__bg {
    transition: transform 0.8s ease-out;
}

.cp-hero:hover .cp-hero__bg {
    transform: scale(1.05);
}

.cp-hero__glass-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cp-hero h1 {
    color: #2D2926;
    hyphens: auto;
}

.cp-hero p {
    color: #5C5852;
}

.cp-footer .cp-footer-disclaimer {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cp-footer .js-footer-nav-item a,
.cp-footer .js-footer-legal-item a {
    position: relative;
    display: inline-block;
}

.cp-footer .js-footer-nav-item a::after,
.cp-footer .js-footer-legal-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #D4C3A3;
    transition: width 0.3s ease;
}

.cp-footer .js-footer-nav-item a:hover::after,
.cp-footer .js-footer-legal-item a:hover::after {
    width: 100%;
}

.cp-footer i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.detail-content .article-body h2 {
    border-left: 3px solid #D4C3A3;
    padding-left: 1rem;
}

.detail-content .comment-avatar {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.detail-content .reply-avatar {
    width: 35px;
    height: 35px;
    object-fit: cover;
}

/* ===== PAGE TEMPLATE: home ===== */
.article-content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2D2926;
    font-size: 16px;
    line-height: 1.3;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .article-content h2 {
        font-size: 32px;
    }
}

.article-content p {
    margin-bottom: 1.5rem;
}

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

.article-content ul {
    list-style-type: disc;
}

.article-content ol {
    list-style-type: decimal;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content strong {
    color: #2D2926;
    font-weight: 600;
}

.comment-avatar {
    aspect-ratio: 1/1;
}

.js-like-btn.active {
    color: #D4C3A3;
}

.js-like-btn.active i::before {
    content: "\f415";
}

#header-block .js-dropdown-menu {
    backdrop-filter: blur(10px);
    background-color: #FDFBF7;
    z-index: 101;
}

#header-block .js-mobile-menu {
    height: calc(100vh - 70px);
}

#header-block .js-mobile-menu-toggle i {
    transition: transform 0.3s ease;
}

#header-block .js-mobile-menu-toggle[aria-expanded="true"] i {
    transform: rotate(90deg);
}

#header-block .js-dropdown-toggle i {
    transition: transform 0.2s ease;
}

#header-block .js-dropdown-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.cp-footer .cp-footer-disclaimer {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cp-footer .js-footer-nav-item a,
.cp-footer .js-footer-legal-item a {
    position: relative;
    display: inline-block;
}

.cp-footer .js-footer-nav-item a::after,
.cp-footer .js-footer-legal-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #D4C3A3;
    transition: width 0.3s ease;
}

.cp-footer .js-footer-nav-item a:hover::after,
.cp-footer .js-footer-legal-item a:hover::after {
    width: 100%;
}

/* ===== PAGE TEMPLATE: reviews ===== */
.cp-detail-page .cp-article-content h2 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #2D2926;
    font-size: 16px;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cp-detail-page .cp-article-content h2 {
        font-size: 32px;
    }
}

.cp-detail-page .cp-article-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #5C5852;
}

.cp-detail-page .cp-article-content ul,
.cp-detail-page .cp-article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
}

.cp-detail-page .cp-article-content li {
    margin-bottom: 0.5rem;
    position: relative;
}

.cp-detail-page .cp-article-content ul li::before {
    content: '•';
    color: #D4C3A3;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.cp-detail-page .cp-article-content blockquote {
    border-left: 4px solid #D4C3A3;
    padding-left: 1.5rem;
    font-style: italic;
    margin: 2rem 0;
    color: #2D2926;
}

#header-block .js-dropdown-menu {
    backdrop-filter: blur(10px);
    background-color: #FDFBF7;
    z-index: 101;
}

#header-block .js-mobile-menu {
    height: calc(100vh - 70px);
}

#header-block .js-mobile-menu-toggle i {
    transition: transform 0.3s ease;
}

#header-block .js-mobile-menu-toggle[aria-expanded="true"] i {
    transform: rotate(90deg);
}

#header-block .js-dropdown-toggle i {
    transition: transform 0.2s ease;
}

#header-block .js-dropdown-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

#header-block a {
    text-decoration: none;
}

.cp-footer .cp-footer-disclaimer {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cp-footer .js-footer-nav-item a,
.cp-footer .js-footer-legal-item a {
    position: relative;
    display: inline-block;
}

.cp-footer .js-footer-nav-item a::after,
.cp-footer .js-footer-legal-item a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #D4C3A3;
    transition: width 0.3s ease;
}

.cp-footer .js-footer-nav-item a:hover::after,
.cp-footer .js-footer-legal-item a:hover::after {
    width: 100%;
}