:root {
    --primary-champagne: #F7E7CE;
    --primary-graphite: #28282B;
    --accent-gold: #D4AF37;
    --background-light: #FAF9F6;
    --surface-white: #FFFFFF;
    --muted-gold: #B8860B;
    --border-graphite: rgba(40, 40, 43, 0.1);
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-light);
    color: var(--primary-graphite);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.text-muted {
    color: #8E8E8E !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-champagne));
    border: none;
    color: var(--primary-graphite);
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    color: var(--primary-graphite);
    filter: brightness(1.05);
}

.smooth-transition {
    transition: all 0.3s ease-in-out;
}

/* ===== header ===== */
.mavv-header {
    background-color: #FFFFFF;
    border-bottom: 1px solid rgba(40, 40, 43, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mavv-header .navbar {
    padding: 0.75rem 0;
}

.mavv-header .mavv-logo {
    object-fit: contain;
}

.mavv-header .mavv-brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #28282B;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.mavv-header .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #28282B;
    padding: 0.5rem 1.25rem !important;
    transition: color 0.3s ease;
}

.mavv-header .nav-link:hover {
    color: #D4AF37;
}

.mavv-header .dropdown-menu {
    background-color: #FFFFFF;
    border-radius: 0;
    padding: 1rem 0;
    margin-top: 0;
}

.mavv-header .dropdown-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #28282B;
    padding: 0.6rem 1.5rem;
}

.mavv-header .dropdown-item:hover {
    background-color: #F7E7CE;
    color: #28282B;
}

.mavv-header .mavv-btn-cta {
    background: linear-gradient(135deg, #D4AF37 0%, #F7E7CE 100%);
    color: #28282B;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mavv-header .mavv-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    color: #28282B;
}

.mavv-header .offcanvas {
    background-color: #FFFFFF;
    width: 280px;
}

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

.mavv-header .dropdown:hover>.dropdown-menu {
    display: block;
}

@media (max-width: 991.98px) {
    .mavv-header .dropdown:hover>.dropdown-menu {
        display: none;
    }

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

/* ===== hero ===== */
.hero-mavv {
    background-color: #FAF9F6;
    font-family: 'Montserrat', sans-serif;
}

.hero-mavv .featured-card {
    height: 600px;
    background-color: #28282B;
}

.hero-mavv .stacked-card {
    height: calc(300px - 0.75rem);
    background-color: #28282B;
}

.hero-mavv .featured-img-wrapper img,
.hero-mavv .stacked-img-wrapper img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-mavv .featured-card:hover .featured-img-wrapper img,
.hero-mavv .stacked-card:hover .stacked-img-wrapper img {
    transform: scale(1.05);
}

.hero-mavv .featured-overlay {
    background: linear-gradient(to top, rgba(40, 40, 43, 0.9) 0%, rgba(40, 40, 43, 0) 100%);
    z-index: 2;
}

.hero-mavv .stacked-overlay {
    background: linear-gradient(to top, rgba(40, 40, 43, 0.8) 0%, rgba(40, 40, 43, 0) 100%);
    z-index: 2;
}

.hero-mavv .category-badge {
    background-color: #c41e3a;
    color: #FFFFFF;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.hero-mavv .featured-title {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.hero-mavv .stacked-title {
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

.hero-mavv .breaking-news-panel {
    box-shadow: 0 10px 30px rgba(40, 40, 43, 0.05);
    border: 1px solid rgba(40, 40, 43, 0.05);
}

.hero-mavv .breaking-news-panel h2 {
    font-family: 'Montserrat', sans-serif;
    color: #28282B;
    letter-spacing: 1px;
}

.hero-mavv .breaking-item h4 {
    transition: color 0.3s ease;
}

.hero-mavv .breaking-item:hover h4 {
    color: #D4AF37 !important;
}

.hero-mavv .nav-arrows button {
    transition: color 0.3s ease, transform 0.2s ease;
}

.hero-mavv .nav-arrows button:hover {
    color: #D4AF37 !important;
    transform: translateX(2px);
}

.hero-mavv .nav-arrows button.js-prev-news:hover {
    transform: translateX(-2px);
}

.hero-mavv .meta-row {
    font-size: 0.85rem;
    opacity: 0.9;
}

@media (max-width: 991.98px) {
    .hero-mavv .featured-card {
        height: 450px;
    }

    .hero-mavv .stacked-card {
        height: 300px;
    }
}

@media (max-width: 767.98px) {
    .hero-mavv .featured-card {
        height: 350px;
    }

    .hero-mavv .featured-title {
        font-size: 1.5rem !important;
    }
}

/* ===== latest-news ===== */
.latest-news-block {
    background-color: #FAF9F6;
    overflow: hidden;
}

.latest-news-block__title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #28282B;
    font-size: 2.5rem;
}

.latest-news-block__subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #555555;
    font-size: 1rem;
    max-width: 600px;
}

.latest-news-block__card {
    background: #FFFFFF;
    border: 1px solid rgba(40, 40, 43, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.latest-news-block__card:hover {
    box-shadow: 0 10px 30px rgba(40, 40, 43, 0.1);
    border-color: #D4AF37;
}

.latest-news-block__image-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.latest-news-block__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.latest-news-block__card:hover .latest-news-block__image {
    transform: scale(1.05);
}

.latest-news-block__tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #D4AF37;
    color: #FFFFFF;
    padding: 5px 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.latest-news-block__content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.latest-news-block__meta {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: #8E8E8E;
}

.latest-news-block__card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #28282B;
    font-size: 1.25rem;
    line-height: 1.3;
    flex-grow: 1;
}

.latest-news-block__link {
    display: inline-block;
    margin-top: auto;
    padding: 10px 24px;
    background: linear-gradient(135deg, #D4AF37 0%, #F7E7CE 100%);
    color: #28282B;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    text-align: center;
    transition: opacity 0.3s ease;
}

.latest-news-block__link:hover {
    opacity: 0.9;
    color: #28282B;
}

@media (max-width: 767px) {
    .latest-news-block__title {
        font-size: 1.75rem;
    }

    .latest-news-block__image-wrapper {
        height: 200px;
    }
}

/* ===== popular-articles ===== */
.popular-articles-section {
    background-color: #FAF9F6;
    padding: 80px 0;
}

.popular-articles-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #28282B;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.popular-articles-divider {
    width: 60px;
    height: 3px;
    background-color: #D4AF37;
    margin-bottom: 40px;
}

.popular-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(40, 40, 43, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.popular-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(40, 40, 43, 0.05);
    border-color: #D4AF37;
}

.popular-card-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.popular-card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #D4AF37;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    padding: 4px 12px;
    letter-spacing: 1px;
    font-weight: 600;
}

.popular-card-content {
    padding: 24px;
    flex-grow: 1;
}

.popular-card-headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #28282B;
    margin-bottom: 15px;
    line-height: 1.3;
}

.popular-card-excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.popular-card-link {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    color: #28282B;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    border-bottom: 2px solid #D4AF37;
    padding-bottom: 2px;
    align-self: flex-start;
}

.popular-card-link:hover {
    color: #D4AF37;
}

@media (max-width: 767px) {
    .popular-articles-title {
        font-size: 1.125rem;
    }

    .popular-card-headline {
        font-size: 1rem;
    }

    .popular-card-excerpt {
        font-size: 0.85rem;
    }

    .popular-articles-section {
        padding: 40px 0;
    }
}

/* ===== categories-block ===== */
.mavv-categories {
    background-color: #FAF9F6;
}

.mavv-categories-title {
    font-family: 'Playfair Display', serif;
    color: #28282B;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.mavv-categories-subtitle {
    font-family: 'Montserrat', sans-serif;
    color: #555555;
    margin-bottom: 2rem;
}

.mavv-category-card {
    position: relative;
    display: block;
    height: 400px;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(40, 40, 43, 0.1);
    transition: transform 0.3s ease;
}

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

.mavv-category-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.5s ease;
}

.mavv-category-card:hover .mavv-category-image {
    transform: scale(1.05);
}

.mavv-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mavv-category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(40, 40, 43, 0.85) 0%, rgba(40, 40, 43, 0.2) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: background 0.3s ease;
}

.mavv-category-content {
    width: 100%;
}

.mavv-category-content i {
    color: #D4AF37;
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.mavv-category-name {
    font-family: 'Playfair Display', serif;
    color: #F7E7CE;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mavv-category-btn {
    display: inline-block;
    background: linear-gradient(90deg, #D4AF37, #F7E7CE);
    color: #28282B;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.mavv-category-card:hover .mavv-category-btn {
    opacity: 0.9;
}

@media (max-width: 767px) {
    .mavv-categories-title {
        font-size: 1.125rem;
    }

    .mavv-categories-subtitle {
        font-size: 0.875rem;
    }

    .mavv-category-card {
        height: 300px;
    }

    .mavv-category-name {
        font-size: 1.25rem;
    }
}

/* ===== newsletter ===== */
.mavv-newsletter-section {
    background-image: linear-gradient(rgba(247, 231, 206, 0.92), rgba(250, 249, 246, 0.92)),
    url('../public/pictures/media/mavv-newsletter-editorial-background.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.mavv-newsletter-section .newsletter-card {
    background: #FFFFFF;
    border: 1px solid rgba(40, 40, 43, 0.1);
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(40, 40, 43, 0.05);
}

.mavv-newsletter-section .newsletter-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #28282B;
    font-size: 2rem;
}

.mavv-newsletter-section .newsletter-description {
    font-family: 'Montserrat', sans-serif;
    color: #555555;
    font-size: 1rem;
    line-height: 1.6;
}

.mavv-newsletter-section .form-control {
    border: 1px solid rgba(40, 40, 43, 0.2);
    border-radius: 0;
    padding: 12px 20px;
    font-family: 'Montserrat', sans-serif;
    color: #28282B;
    height: 52px;
    background-color: #FAF9F6;
}

.mavv-newsletter-section .form-control:focus {
    box-shadow: none;
    border-color: #D4AF37;
    background-color: #FFFFFF;
}

.mavv-newsletter-section .form-control::placeholder {
    color: #8E8E8E;
    opacity: 1;
}

.mavv-newsletter-section .btn-newsletter {
    background: linear-gradient(135deg, #D4AF37, #F7E7CE);
    color: #28282B;
    border: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 52px;
    transition: all 0.3s ease;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mavv-newsletter-section .btn-newsletter:hover {
    background: linear-gradient(135deg, #B8860B, #D4AF37);
    color: #28282B;
    transform: translateY(-1px);
}

.mavv-newsletter-section .newsletter-error-msg {
    color: #dc3545;
    font-size: 0.8rem;
    text-align: left;
    margin-top: 5px;
    display: none;
}

@media (max-width: 767.98px) {
    .mavv-newsletter-section .newsletter-title {
        font-size: 16px;
    }

    .mavv-newsletter-section .newsletter-description {
        font-size: 14px;
    }

    .mavv-newsletter-section .btn-newsletter {
        font-size: 14px;
    }
}

/* ===== footer ===== */
.mavv-footer {
    background-color: #FAF9F6;
    color: #28282B;
    font-family: 'Montserrat', sans-serif;
    border-top: 1px solid rgba(40, 40, 43, 0.1);
}

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

.mavv-footer .footer-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #28282B;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mavv-footer .footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555555;
    max-width: 320px;
}

.mavv-footer .footer-links li,
.mavv-footer .footer-contact li {
    margin-bottom: 0.75rem;
}

.mavv-footer a {
    color: #555555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.mavv-footer a:hover {
    color: #D4AF37;
}

.mavv-footer .footer-contact i {
    color: #D4AF37;
}

.mavv-footer .footer-divider {
    height: 1px;
    background-color: rgba(40, 40, 43, 0.1);
}

.mavv-footer .copyright-text,
.mavv-footer .sitemap-link {
    font-size: 0.8rem;
    color: #8E8E8E;
}

.mavv-footer .sitemap-link:hover {
    color: #28282B;
}

@media (max-width: 767px) {
    .mavv-footer .footer-heading {
        font-size: 1rem;
        margin-bottom: 1rem !important;
    }

    .mavv-footer {
        text-align: left;
    }
}

/* ===== PAGE: privacy ===== */
.policy-container { font-family: 'Montserrat', sans-serif; color: #28282B; max-width: 900px; margin: 0 auto; padding: 40px 20px; line-height: 1.8; background-color: #FAF9F6; }.policy-container h2 { font-family: 'Playfair Display', serif; font-size: 32px; color: #28282B; margin-bottom: 20px; text-align: center; font-weight: 700; border-bottom: 2px solid #D4AF37; display: inline-block; width: 100%; padding-bottom: 15px; }.policy-container h3 { font-family: 'Playfair Display', serif; font-size: 20px; color: #B8860B; margin-top: 35px; margin-bottom: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }.policy-container p { font-size: 16px; margin-bottom: 15px; text-align: justify; hyphens: auto; }.policy-container ul { margin-bottom: 25px; padding-left: 20px; }.policy-container li { list-style-type: none; position: relative; margin-bottom: 10px; font-size: 15px; padding-left: 25px; }.policy-container li::before { content: '\F26E'; font-family: 'Bootstrap Icons'; position: absolute; left: 0; color: #D4AF37; font-size: 18px; }.policy-section { border-bottom: 1px solid rgba(40, 40, 43, 0.05); padding-bottom: 20px; }.policy-section:last-of-type { border-bottom: none; }.policy-header .text-muted { font-size: 0.9rem; letter-spacing: 1px; color: #8E8E8E !important; text-align: center; }@media (max-width: 768px) { .policy-container { padding: 30px 15px; } .policy-container h2 { font-size: 18px; } .policy-container h3 { font-size: 16px; } .policy-container p, .policy-container li { font-size: 14px; line-height: 1.6; } }

/* ===== PAGE: terms ===== */
.policy-container { font-family: 'Montserrat', sans-serif; color: #28282B; max-width: 900px; margin: 0 auto; padding: 4rem 1.5rem; background-color: #FAF9F6; line-height: 1.8; } .policy-container .policy-header { margin-bottom: 4rem; position: relative; } .policy-container .policy-title { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: #28282B; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 2px; } .policy-container .policy-breadcrumb .breadcrumb { background: transparent; padding: 0; margin-bottom: 0; font-size: 0.9rem; color: #D4AF37; } .policy-container .policy-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(40, 40, 43, 0.3); } .policy-container .policy-breadcrumb .active { color: #28282B; font-weight: 600; } .policy-container .policy-section { margin-bottom: 3.5rem; } .policy-container .policy-subtitle { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #D4AF37; margin-bottom: 1.5rem; border-left: 3px solid #D4AF37; padding-left: 1.5rem; } .policy-container p { font-size: 1.05rem; color: #555555; text-align: justify; hyphens: auto; } .policy-container .policy-footer-text { margin-top: 5rem; padding-top: 2rem; border-top: 1px solid rgba(40, 40, 43, 0.1); text-align: center; } @media (max-width: 767px) { .policy-container { padding: 2rem 1rem; } .policy-container .policy-title { font-size: 18px !important; } .policy-container .policy-subtitle { font-size: 16px !important; padding-left: 1rem; } .policy-container p { font-size: 14px !important; text-align: left; } .policy-container .policy-header { margin-bottom: 2rem; } }

/* ===== PAGE: disclaimer ===== */
.policy-container { max-width: 900px; margin: 0 auto; padding: 40px 20px; background-color: #FAF9F6; color: #28282B; font-family: 'Montserrat', sans-serif; }
.policy-container .policy-header { border-bottom: 1px solid rgba(40, 40, 43, 0.1); padding-bottom: 20px; }
.policy-container .policy-date { font-size: 0.85rem; color: #B8860B; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; display: block; margin-bottom: 10px; }
.policy-container .policy-main-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 700; color: #28282B; margin: 0; }
.policy-container .policy-section { margin-bottom: 40px; }
.policy-container h2 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #28282B; margin-bottom: 20px; border-left: 3px solid #D4AF37; padding-left: 15px; }
.policy-container p { font-size: 1rem; line-height: 1.8; color: #555555; margin-bottom: 1.5rem; }
.policy-container .policy-list { list-style: none; padding-left: 0; margin-bottom: 1.5rem; }
.policy-container .policy-list li { position: relative; padding-left: 25px; margin-bottom: 12px; font-size: 0.95rem; line-height: 1.6; color: #555555; }
.policy-container .policy-list li::before { content: '\F285'; font-family: 'bootstrap-icons'; position: absolute; left: 0; top: 2px; color: #D4AF37; font-size: 1rem; }
.policy-container .policy-contact-info { background: #FFFFFF; padding: 25px; border: 1px solid rgba(40, 40, 43, 0.1); border-radius: 4px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); }
.policy-container .policy-contact-info p { margin-bottom: 8px; font-weight: 600; color: #28282B; }
@media (max-width: 768px) {
  .policy-container { padding: 30px 15px; }
  .policy-container .policy-main-title { font-size: 18px; }
  .policy-container h2 { font-size: 16px; }
  .policy-container h3 { font-size: 14px; }
  .policy-container p, .policy-container .policy-list li { font-size: 14px; }
}

/* ===== PAGE: cookies ===== */
.policy-inner-content {
  font-family: 'Montserrat', sans-serif;
  color: #28282B;
  line-height: 1.6;
}

.policy-inner-content .section-title {
  font-family: 'Playfair Display', serif;
  color: #28282B;
  font-weight: 700;
  border-left: 4px solid #D4AF37;
  padding-left: 1rem;
}

.policy-inner-content h2 {
  font-size: 16px !important;
}

.policy-inner-content h3 {
  font-size: 14px !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #D4AF37;
}

.policy-inner-content p {
  font-size: 0.95rem;
  color: #555555;
}

.policy-inner-content .cookie-card {
  background-color: #FFFFFF;
  border-color: rgba(40, 40, 43, 0.1) !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.policy-inner-content .cookie-card:hover {
  border-color: #D4AF37 !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.policy-inner-content .custom-list {
  padding-left: 0;
  list-style: none;
}

.policy-inner-content .custom-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #555555;
}

.policy-inner-content .custom-list li::before {
  content: "\F287";
  font-family: 'Bootstrap-icons';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-size: 0.8rem;
}

.policy-inner-content .info-box {
  background-color: #F7E7CE;
  border-radius: 4px;
  border-left: 4px solid #B8860B;
}

@media (max-width: 767px) {
  .policy-inner-content h2 {
    font-size: 16px !important;
  }
  .policy-inner-content h3 {
    font-size: 14px !important;
  }
  .policy-inner-content .section-title {
    margin-top: 2rem;
  }
}

/* ===== PAGE: fashion ===== */
.fashion-news-grid {
  background-color: #FAF9F6;
}
.fashion-news-grid__heading {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #28282B;
}
.fashion-news-grid__subheading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
}
.fashion-news-grid__card {
  background-color: #FFFFFF;
  box-shadow: 0 5px 15px rgba(40, 40, 43, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(40, 40, 43, 0.1) !important;
}
.fashion-news-grid__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(40, 40, 43, 0.1);
}
.fashion-news-grid__image-container {
  height: 260px;
}
.fashion-news-grid__image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fashion-news-grid__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #D4AF37;
  color: #FFFFFF;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  letter-spacing: 1px;
}
.fashion-news-grid__meta {
  font-family: 'Montserrat', sans-serif;
}
.fashion-news-grid__card .card-title {
  font-family: 'Playfair Display', serif;
  color: #28282B;
  line-height: 1.3;
}
.fashion-news-grid__card .card-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.fashion-news-grid__btn {
  background: linear-gradient(135deg, #D4AF37 0%, #F7E7CE 100%);
  border: none;
  color: #28282B;
  font-weight: 600;
  font-size: 0.9rem;
  transition: filter 0.3s ease;
}
.fashion-news-grid__btn:hover {
  filter: brightness(1.1);
  color: #28282B;
}
.fashion-news-grid__search-wrapper .input-group {
  border-color: rgba(40, 40, 43, 0.2) !important;
}
.fashion-news-grid__search-wrapper .form-control:focus {
  box-shadow: none;
}
.fashion-news-grid__search-wrapper .input-group-text i {
  color: #D4AF37;
}

/* ===== PAGE: brands ===== */
.brands-intro-section {
    background: linear-gradient(135deg, #F7E7CE 0%, #FFFFFF 100%);
    border-bottom: 1px solid rgba(40, 40, 43, 0.05);
    overflow: hidden;
}
.brands-intro-section .brands-heading {
    font-family: 'Playfair Display', serif;
    color: #28282B;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
}
.brands-intro-section .brands-lead {
    color: #B8860B;
    font-weight: 300;
    font-size: 1.25rem;
}
.brands-intro-section .brands-description-text {
    color: #555555;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
}
.brands-intro-section .brands-hero-image-container::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border-top: 4px solid #D4AF37;
    border-right: 4px solid #D4AF37;
    z-index: 0;
    pointer-events: none;
}
.brands-news-section {
    background-color: #FAF9F6;
}
.brands-news-section .brands-section-title {
    font-family: 'Playfair Display', serif;
    color: #28282B;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.brands-news-section .brands-divider {
    width: 60px;
    height: 3px;
    background-color: #D4AF37;
    margin-top: 15px;
}
.article-card {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    background-color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(40, 40, 43, 0.05);
}
.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(40, 40, 43, 0.12);
}
.article-img {
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.article-card:hover .article-img {
    transform: scale(1.05);
}
.category-tag {
    background-color: #D4AF37;
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    z-index: 10;
    letter-spacing: 1px;
}
.article-title a {
    color: #28282B;
    transition: color 0.2s ease;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}
.article-title a:hover {
    color: #D4AF37;
}
.article-excerpt {
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.brands-btn {
    background: linear-gradient(90deg, #D4AF37 0%, #B8860B 100%);
    color: #FFFFFF;
    font-weight: 600;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.brands-btn:hover {
    background: linear-gradient(90deg, #28282B 0%, #444444 100%);
    color: #F7E7CE;
    transform: translateY(-2px);
}
.article-meta small i {
    color: #D4AF37;
}
@media (max-width: 768px) {
    .brands-intro-section .brands-heading {
        font-size: 1.8rem;
    }
    .article-img {
        height: 200px;
    }
}

/* ===== PAGE: celebrities ===== */
.news-grid-block { background-color: #FAF9F6; min-height: 500px; } .news-grid-block__main-title { font-family: 'Playfair Display', serif; color: #28282B; font-weight: 900; letter-spacing: -1px; } .news-grid-block__intro { font-family: 'Montserrat', sans-serif; color: #555555; line-height: 1.8; font-size: 1.1rem; } .news-grid-block__toolbar { border: 1px solid rgba(40, 40, 43, 0.05); } .news-grid-block__search input { border: 1px solid #E5E4E2; border-radius: 4px; font-size: 0.9rem; } .news-grid-block__search input:focus { border-color: #D4AF37; box-shadow: none; } .news-grid-block__card { background: #FFFFFF; border: 1px solid rgba(40, 40, 43, 0.1); border-radius: 0; transition: transform 0.4s ease, box-shadow 0.4s ease; height: 100%; position: relative; } .news-grid-block__card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(40, 40, 43, 0.1); border-color: #D4AF37; } .news-grid-block__img-wrapper { position: relative; height: 260px; overflow: hidden; } .news-grid-block__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; } .news-grid-block__card:hover .news-grid-block__img { transform: scale(1.1); } .news-grid-block__tag { position: absolute; bottom: 15px; left: 15px; background: #D4AF37; color: #FFFFFF; padding: 4px 12px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; } .news-grid-block__card-title { font-family: 'Playfair Display', serif; font-weight: 700; color: #28282B; margin-bottom: 0.75rem; transition: color 0.3s ease; } .news-grid-block__card:hover .news-grid-block__card-title { color: #D4AF37; } .news-grid-block__excerpt { font-size: 0.95rem; color: #555555; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; } .news-grid-block__cta { background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%); border: none; border-radius: 50px; padding: 10px 25px; font-weight: 600; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; color: #FFFFFF; transition: opacity 0.3s ease; } .news-grid-block__cta:hover { opacity: 0.9; color: #FFFFFF; } @media (max-width: 767.98px) { .news-grid-block__main-title { font-size: 18px; } .news-grid-block h2 { font-size: 16px; } .news-grid-block p { font-size: 14px; } .news-grid-block__img-wrapper { height: 200px; } }

/* ===== PAGE: beauty ===== */
.beauty-news-grid {
  background-color: #FAF9F6;
  font-family: 'Montserrat', sans-serif;
}

.beauty-news-grid .breadcrumb-item, 
.beauty-news-grid .breadcrumb-item a {
  color: #8E8E8E;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.beauty-news-grid .breadcrumb-item.active {
  color: #D4AF37;
}

.beauty-news-grid .beauty-main-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #28282B;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.beauty-news-grid .beauty-subtitle {
  max-width: 700px;
  color: #555555;
  font-size: 1.1rem;
  line-height: 1.6;
}

.beauty-news-grid .js-search-input {
  padding: 0.8rem 1.2rem;
  border-radius: 0 50px 50px 0;
  background-color: #FFFFFF;
  color: #28282B;
}

.beauty-news-grid .input-group-text {
  background-color: #FFFFFF;
  border-radius: 50px 0 0 50px;
  color: #D4AF37;
  padding-left: 1.5rem;
}

.beauty-news-grid .js-search-input::placeholder {
  color: #8E8E8E;
}

.beauty-news-grid .beauty-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  background-color: #FFFFFF;
}

.beauty-news-grid .beauty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(40, 40, 43, 0.1) !important;
}

.beauty-news-grid .beauty-card-img-wrapper {
  height: 250px;
  overflow: hidden;
}

.beauty-news-grid .beauty-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.5s ease;
}

.beauty-news-grid .beauty-card:hover .beauty-card-img-wrapper img {
  scale: 1.05;
}

.beauty-news-grid .beauty-card .badge {
  background-color: #D4AF37;
  color: #FFFFFF;
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.7rem;
}

.beauty-news-grid .beauty-card .card-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #28282B;
  font-size: 1.25rem;
  line-height: 1.3;
}

.beauty-news-grid .beauty-category {
  color: #D4AF37;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
}

.beauty-news-grid .beauty-date, 
.beauty-news-grid .beauty-author-info {
  color: #8E8E8E;
  font-size: 0.85rem;
}

.beauty-news-grid .beauty-btn-primary {
  background: linear-gradient(90deg, #D4AF37 0%, #F7E7CE 100%);
  border: none;
  color: #28282B;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
  transition: opacity 0.3s ease;
}

.beauty-news-grid .beauty-btn-primary:hover {
  opacity: 0.9;
  color: #28282B;
}

@media (max-width: 768px) {
  .beauty-news-grid .beauty-main-title {
    font-size: 1.75rem;
  }
  .beauty-news-grid .beauty-subtitle {
    font-size: 1rem;
  }
}

/* ===== PAGE: about-contact ===== */
.mavv-about-contact {
  --primary-graphite: #28282B;
  --accent-gold: #D4AF37;
  --champagne: #F7E7CE;
  --surface-white: #FFFFFF;
  --bg-light: #FAF9F6;
}

.mavv-about-contact .text-graphite {
  color: var(--primary-graphite) !important;
}

.mavv-about-contact .text-gold {
  color: var(--accent-gold) !important;
}

.mavv-about-contact .bg-light-surface {
  background-color: var(--bg-light);
}

.mavv-about-contact h2,
.mavv-about-contact h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.mavv-about-contact .about-content-wrapper {
  padding-right: 2rem;
}

.mavv-about-contact .about-image-container .image-overlay-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 4px solid var(--accent-gold);
  z-index: -1;
}

.mavv-about-contact .icon-box {
  width: 45px;
  height: 45px;
  background: var(--champagne);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mavv-about-contact .form-control {
  border: 1px solid rgba(40, 40, 43, 0.1);
  background-color: var(--bg-light);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
}

.mavv-about-contact .form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.1);
}

.mavv-about-contact .btn-gold {
  background: linear-gradient(135deg, var(--accent-gold), #B8860B);
  border: none;
  color: #FFFFFF;
  transition: all 0.3s ease;
}

.mavv-about-contact .btn-gold:hover {
  background: linear-gradient(135deg, #B8860B, var(--accent-gold));
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  color: #FFFFFF;
}

.mavv-about-contact .btn-outline-gold {
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  transition: all 0.3s ease;
}

.mavv-about-contact .btn-outline-gold:hover {
  background-color: var(--accent-gold);
  color: #FFFFFF;
}

@media (max-width: 991.98px) {
  .mavv-about-contact .about-content-wrapper {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .mavv-about-contact .about-image-container img {
    height: 350px !important;
  }
}

.mavv-comment-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(40, 40, 43, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(40, 40, 43, 0.03);
    transition: border-color 0.3s ease;
}

.mavv-comment-card:hover {
    border-color: #D4AF37;
}

.mavv-avatar-main {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #F7E7CE;
}

.mavv-author-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #28282B;
}

.mavv-comment-meta {
    font-family: 'Montserrat', sans-serif;
    color: #8E8E8E;
    letter-spacing: 0.5px;
}

.mavv-comment-body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    font-size: 1rem;
    color: #555555;
}

.mavv-action-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #D4AF37 !important;
}

.mavv-action-btn:hover {
    color: #B8860B !important;
}

.mavv-reply-container {
    border-left: 2px solid #F7E7CE;
    padding-left: 1rem;
}

.mavv-reply-card {
    background-color: #FAF9F6 !important;
    border: none !important;
}

.mavv-avatar-reply {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
}

.mavv-author-name-small {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #28282B;
    font-size: 0.95rem;
}

.mavv-comment-body-small {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    font-size: 0.9rem;
    color: #555555;
}


/* ===== PAGE TEMPLATE: fashion ===== */
.fashion-detail-page {
    font-family: 'Montserrat', sans-serif;
    color: #28282B;
}

.fashion-hero-title {
    font-family: 'Playfair Display', serif;
    color: #28282B;
    line-height: 1.1;
}

.fashion-hero-subtitle {
    color: #555555;
    max-width: 600px;
}

.fashion-hero-img-wrapper {
    height: 400px;
    border: 1px solid rgba(40, 40, 43, 0.1);
}

.fashion-meta {
    font-size: 0.9rem;
    color: #8E8E8E;
}

.fashion-article-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.fashion-rich-text h2,
.fashion-rich-text h3 {
    font-family: 'Playfair Display', serif;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    color: #28282B;
}

.fashion-rich-text p {
    margin-bottom: 1.5rem;
    color: #28282B;
}

.fashion-rich-text ul,
.fashion-rich-text ol {
    margin-bottom: 2rem;
    padding-left: 1.25rem;
}

.fashion-rich-text li {
    margin-bottom: 0.75rem;
}

.mavv-comment-card {
    border-radius: 4px;
    background-color: #FFFFFF;
    border: 1px solid rgba(40, 40, 43, 0.08);
}

.mavv-avatar-main {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.mavv-avatar-reply {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.mavv-author-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.mavv-comment-meta {
    color: #8E8E8E;
}

.mavv-action-btn {
    font-size: 0.85rem;
    color: #D4AF37 !important;
    font-weight: 600;
}

.mavv-action-btn:hover {
    color: #B8860B !important;
}

.mavv-reply-card {
    background-color: #FAF9F6;
}

.fashion-comment-form-container input,
.fashion-comment-form-container textarea {
    border-radius: 0;
    border: 1px solid rgba(40, 40, 43, 0.2);
    padding: 0.75rem 1rem;
}

.fashion-comment-form-container input:focus,
.fashion-comment-form-container textarea:focus {
    border-color: #D4AF37;
    box-shadow: none;
}

.sidebar-block {
    border-left: 3px solid #D4AF37;
}

.breadcrumb-item a {
    color: #8E8E8E;
    font-size: 0.85rem;
}

.breadcrumb-item.active {
    color: #28282B;
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .fashion-hero-title {
        font-size: 2rem !important;
    }

    .fashion-hero-img-wrapper {
        height: 250px;
    }

    .fashion-article-body {
        font-size: 1rem;
    }

    .mavv-avatar-main {
        width: 48px;
        height: 48px;
    }

    .mavv-reply-container {
        margin-left: 1.5rem !important;
    }
}

/* ===== PAGE TEMPLATE: brands ===== */
.brand-detail-page {
    background-color: #FAF9F6;
    font-family: 'Montserrat', sans-serif;
}

.brand-detail-page .hero-detail h1 {
    font-family: 'Playfair Display', serif;
    color: #28282B;
}

.brand-detail-page .article-main-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555555;
}

.brand-detail-page .article-main-text h2 {
    font-family: 'Playfair Display', serif;
    color: #28282B;
    margin-top: 2rem;
}

.brand-detail-page .mavv-avatar-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.brand-detail-page .mavv-comment-card {
    background: #FFFFFF;
    border: 1px solid rgba(40, 40, 43, 0.05);
}

.brand-detail-page .mavv-action-btn {
    font-size: 0.85rem;
    color: #8E8E8E;
    transition: color 0.3s ease;
}

.brand-detail-page .mavv-action-btn:hover {
    color: #D4AF37;
}

.brand-detail-page .mavv-action-btn.active {
    color: #D4AF37;
}

.brand-detail-page .sidebar-sticky {
    position: sticky;
    top: 100px;
}

.brand-detail-page .btn-primary-champagne {
    background: linear-gradient(135deg, #D4AF37 0%, #F7E7CE 100%);
    border: none;
    color: #28282B;
    font-weight: 600;
}

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

    .brand-detail-page .content-body {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ===== PAGE TEMPLATE: celebrities ===== */
.mavv-detail-wrapper {
    font-family: 'Montserrat', sans-serif;
    color: #28282B;
}

.mavv-h1,
.mavv-h2,
.mavv-h3,
.mavv-h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #28282B;
}

.mavv-rich-text p {
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555555;
    text-align: justify;
}

.mavv-rich-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.mavv-rich-text ul {
    margin-bottom: 2rem;
}

.mavv-rich-text li {
    margin-bottom: 1rem;
    color: #555555;
}

.mavv-avatar-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #F7E7CE;
}

.mavv-avatar-reply {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #F7E7CE;
}

.mavv-comment-card {
    background: #FFFFFF;
    border-left: 4px solid #D4AF37;
    shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.mavv-action-btn {
    font-size: 0.85rem;
    color: #8E8E8E;
    transition: color 0.3s ease;
}

.mavv-action-btn:hover {
    color: #D4AF37;
}

.sidebar-card {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.mavv-btn-cta {
    background: linear-gradient(135deg, #D4AF37 0%, #F7E7CE 100%);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    color: #28282B;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s;
}

.mavv-btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.form-control {
    border-radius: 0;
    padding: 12px;
    border: 1px solid rgba(40, 40, 43, 0.1);
    background: #FAF9F6;
}

.form-control:focus {
    box-shadow: none;
    border-color: #D4AF37;
}

.breadcrumb-item a:hover {
    color: #D4AF37 !important;
}

/* ===== PAGE TEMPLATE: beauty ===== */
.mavv-detail-hero .hero-bg-wrapper {
    height: 70vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.mavv-detail-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(40, 40, 43, 0.9) 0%, rgba(40, 40, 43, 0.3) 50%, rgba(40, 40, 43, 0.1) 100%);
}

.mavv-detail-hero .bg-gold {
    background-color: #D4AF37;
}

.mavv-article-body .content-rich-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
}

.mavv-article-body .content-rich-text p {
    margin-bottom: 1.5rem;
}

.mavv-article-body h1,
.mavv-article-body h2,
.mavv-article-body h3 {
    font-family: 'Playfair Display', serif;
    color: #28282B;
}

.mavv-sidebar .widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bg-gold-light {
    background-color: #F7E7CE;
}

.mavv-comment-card {
    background: #FFFFFF;
    border: 1px solid rgba(40, 40, 43, 0.05);
}

.mavv-avatar-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.mavv-avatar-reply {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.mavv-action-btn {
    font-size: 0.85rem;
    color: #8E8E8E;
    transition: color 0.3s ease;
}

.mavv-action-btn:hover {
    color: #D4AF37;
}

.mavv-action-btn.active {
    color: #D4AF37;
}

.mavv-reply-card {
    border-left: 3px solid #D4AF37;
    background-color: #FAF9F6;
}

.transition-fast {
    transition: transform 0.4s ease-in-out;
}

.x-small {
    font-size: 0.75rem;
}

@media (max-width: 767.98px) {
    .mavv-detail-hero .display-3 {
        font-size: 2rem;
    }

    .mavv-detail-hero .hero-bg-wrapper {
        height: 50vh;
    }

    .mavv-main-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .mavv-reply-container {
        margin-left: 1rem !important;
    }
}