/* Custom Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* CSS Variables for Premium Design System */
:root {
    --primary-blue: #0c4ba8;
    --primary-blue-hover: #073880;
    --primary-orange: #ff6d00;
    --primary-orange-hover: #e05e00;
    --dark-bg: #121212;
    --dark-header: #1a1a1a;
    --light-bg: #f8fafc;
    --white: #ffffff;
    
    --text-color: #334155;
    --text-light: #64748b;
    --text-dark: #0f172a;
    
    --pro-bg: #e6f9f0;
    --pro-text: #0e6245;
    --pro-primary: #02cc8c;
    
    --con-bg: #fff0f3;
    --con-text: #851c30;
    --con-primary: #fd476d;
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    
    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 20px rgba(12, 75, 168, 0.08);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.06);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

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

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--primary-blue-hover);
}

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

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

/* Header */
.site-header {
    background-color: var(--dark-header);
    color: var(--white);
    padding: 15px 0;
    border-bottom: 2px solid var(--primary-orange);
}

.header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 4px;
    user-select: none;
    text-transform: uppercase;
}

.site-logo span {
    color: var(--primary-orange);
    font-weight: 400;
}

.sponsor-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Blue Bar Hero Section */
.hero-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 30px 0;
    text-align: center;
}

.post-title {
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
}

.author-rating-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.author-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-img-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--white);
}

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

.author-rating-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-score {
    font-size: 1.25rem;
    font-weight: 700;
}

.stars-container {
    height: 20px;
}

.disclosure-link {
    color: #93c5fd;
    font-size: 0.85rem;
    border-bottom: 1px dashed #93c5fd;
}

.disclosure-link:hover {
    color: var(--white);
    border-bottom-style: solid;
}

/* Sticky Jump Menu (In This Review) */
.in-this-review {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-md);
    padding: 20px;
    margin: -15px auto 40px auto;
    max-width: 800px;
    box-shadow: var(--shadow-sm);
    z-index: 10;
    position: relative;
}

.in-this-review h2 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary-blue);
    text-transform: uppercase;
}

.review-nav-links {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.review-nav-links li a {
    color: var(--text-color);
    font-weight: 600;
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
}

.review-nav-links li a:hover {
    color: var(--primary-blue);
    background-color: #f1f5f9;
}

/* Main Layout Grid */
.main-content-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 50px;
}

/* General Sections */
.article-section {
    padding-bottom: 30px;
    border-bottom: 1px solid #e2e8f0;
}

.article-section:last-of-type {
    border-bottom: none;
}

.article-section h2 {
    font-size: 1.75rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    color: var(--text-dark);
}

.article-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-blue);
    border-radius: 2px;
}

.article-section p {
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 1.05rem;
}

/* Product Desc Layout */
.product-desc-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.product-desc-text {
    flex: 1 1 500px;
}

.product-desc-image {
    flex: 0 0 250px;
    margin: 0 auto;
    text-align: center;
}

.product-image-box {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    padding: 15px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.product-caption {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
    font-weight: 600;
}

/* Ingredients Section list */
.ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.ingredient-item-main {
    padding-left: 15px;
    border-left: 3px solid var(--primary-blue);
}

.ingredient-item-title {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.other-ingredients {
    margin-top: 25px;
    padding: 15px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
}

/* Pros and Cons Split Box */
.pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.pros-box, .cons-box {
    padding: 25px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.pros-box {
    background-color: var(--pro-bg);
    border: 1px solid #cbf3e0;
}

.cons-box {
    background-color: var(--con-bg);
    border: 1px solid #ffd4dc;
}

.pros-box h3 {
    color: var(--pro-text);
    margin-bottom: 20px;
    font-size: 1.4rem;
    border-bottom: 2px solid var(--pro-primary);
    padding-bottom: 8px;
}

.cons-box h3 {
    color: var(--con-text);
    margin-bottom: 20px;
    font-size: 1.4rem;
    border-bottom: 2px solid var(--con-primary);
    padding-bottom: 8px;
}

.list-pros, .list-cons {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list-pros li, .list-cons li {
    position: relative;
    padding-left: 28px;
    font-size: 1rem;
    font-weight: 500;
}

.list-pros li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--pro-primary);
    font-weight: 900;
    font-size: 1.2rem;
}

.list-cons li::before {
    content: '✕';
    position: absolute;
    left: 4px;
    top: 0;
    color: var(--con-primary);
    font-weight: 900;
    font-size: 1rem;
}

/* Bottom Line Rating Grid */
.rating-table-wrapper {
    margin: 30px 0;
    overflow-x: auto;
}

.rating-table-img {
    margin: 0 auto;
    display: block;
    box-shadow: var(--shadow-sm);
    border-radius: var(--border-radius-md);
}

.desktop-only {
    display: block;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: block;
    }
}

/* TOP PRODUCTS SECTION styling */
.top-products-section {
    margin: 60px 0;
}

.top-products-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.product-card {
    background-color: var(--white);
    border: 3px solid var(--primary-blue);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    margin-bottom: 40px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(12, 75, 168, 0.12);
}

/* Card badges */
.rank-badge {
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 10px 25px;
    font-size: 1.5rem;
    font-weight: 800;
    border-bottom-right-radius: var(--border-radius-md);
    z-index: 5;
    box-shadow: var(--shadow-sm);
}

/* Card top layout */
.product-card-top {
    display: grid;
    grid-template-columns: 300px 1fr;
}

@media (max-width: 768px) {
    .product-card-top {
        grid-template-columns: 1fr;
    }
}

/* Card Left column (Image & Rating & Main CTA) */
.product-card-left {
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid #e2e8f0;
}

@media (max-width: 768px) {
    .product-card-left {
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding-top: 60px; /* offset rank badge */
    }
}

.product-card-left h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.product-card-left .product-img {
    max-height: 220px;
    margin: 20px auto;
}

.rating-text {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.rating-text span {
    color: var(--primary-orange);
}

.rating-stars-img {
    height: 25px;
    margin-bottom: 25px;
}

/* Core Buttons with Transitions */
.cta-button {
    display: inline-block;
    width: 100%;
    max-width: 260px;
    background: var(--primary-orange);
    color: var(--white) !important;
    text-align: center;
    padding: 15px 20px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: var(--border-radius-md);
    box-shadow: 0 4px 6px rgba(255, 109, 0, 0.2);
    transition: var(--transition-smooth);
}

.cta-button:hover {
    background: var(--primary-orange-hover);
    transform: scale(1.03);
    box-shadow: 0 8px 15px rgba(255, 109, 0, 0.3);
}

/* Card Right column (Factors & text & details) */
.product-card-right {
    display: flex;
    flex-direction: column;
}

/* Blue Box Headers for review factors */
.factors-header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 15px 25px;
}

.factors-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.factors-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed rgba(255,255,255,0.3);
    padding-bottom: 8px;
    font-weight: 600;
    font-size: 0.95rem;
}

.factors-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.factors-rating-stars {
    height: 18px;
}

.card-inner-details {
    padding: 25px;
    flex-grow: 1;
}

.card-inner-details h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.card-inner-details p {
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.highlight-text-border {
    background-color: #fef08a;
    padding: 2px 4px;
    border-radius: 4px;
    font-weight: 600;
}

/* Sub-card Ingredient details section (Quietum Plus unique layout) */
.ingredients-detail-box {
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
    padding: 35px 25px;
}

.ingredients-detail-box h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
}

.ingredient-sub-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.sub-ingredient-card {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 20px;
    align-items: center;
    background: var(--white);
    padding: 15px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 576px) {
    .sub-ingredient-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .sub-ingredient-card img {
        margin: 0 auto;
    }
}

.sub-ingredient-card img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid #f1f5f9;
}

.sub-ingredient-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-blue);
}

.sub-ingredient-card p {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Mini Advantages & Disadvantages within Card #2 & #3 */
.adv-disadv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.adv-box h4 {
    color: var(--pro-primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.disadv-box h4 {
    color: var(--con-primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.adv-box ul, .disadv-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.adv-box ul li, .disadv-box ul li {
    font-size: 0.85rem;
    position: relative;
    padding-left: 20px;
}

.adv-box ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--pro-primary);
    font-weight: 700;
}

.disadv-box ul li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--con-primary);
    font-weight: 700;
}

/* Card Conclusion block */
.card-conclusion-block {
    background-color: #f1f5f9;
    border-top: 1px solid #e2e8f0;
    padding: 25px;
    text-align: center;
}

.card-conclusion-block h5 {
    font-size: 1.15rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.card-conclusion-block p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.card-conclusion-block .cta-button {
    max-width: 320px;
}

/* Disclaimers & Footnotes Section */
.disclaimers-section {
    font-size: 0.85rem;
    color: var(--text-light);
    border-top: 1px solid #e2e8f0;
    padding-top: 25px;
    margin-bottom: 50px;
}

.disclaimers-section p {
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Footer Section */
.site-footer {
    background-color: var(--dark-header);
    color: #94a3b8;
    padding: 60px 0 30px 0;
    font-size: 0.9rem;
    border-top: 4px solid var(--primary-blue);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

/* Footer site logo styling (inherits .site-logo) */
.site-footer .site-logo {
    opacity: 0.8;
}

.footer-links {
    list-style: none;
    display: flex;
    gap: 15px 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links li a {
    color: #94a3b8;
    font-weight: 500;
}

.footer-links li a:hover {
    color: var(--white);
}

.footer-disclaimer-text {
    font-size: 0.8rem;
    max-width: 800px;
    color: #64748b;
    line-height: 1.6;
    margin-top: 10px;
}

.footer-copyright {
    font-size: 0.8rem;
    margin-top: 20px;
    color: #475569;
}

.footer-copyright a {
    color: #64748b;
}

.footer-copyright a:hover {
    color: var(--white);
}

/* ==============================================
   HEAD-TO-HEAD COMPARISON TABLE
   ============================================== */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin: 25px 0;
    border-radius: var(--border-radius-md);
    border: 1px solid #e2e8f0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background-color: var(--white);
    font-size: 0.95rem;
}

.comparison-table th, .comparison-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table th {
    background-color: #f1f5f9;
    font-weight: 700;
    color: var(--text-dark);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.85rem;
}

.comparison-table tbody tr:hover {
    background-color: #f8fafc;
}

.comparison-table td strong {
    color: var(--text-dark);
}

/* Highlight Quietum Plus (Winner) Column */
.comparison-table .highlight-col {
    background-color: #f0f9ff;
    border-left: 2px solid #bae6fd;
    border-right: 2px solid #bae6fd;
    font-weight: 600;
    color: var(--primary-blue);
}

.comparison-table th.highlight-col {
    background-color: #e0f2fe;
    color: var(--primary-blue);
    border-top: 3px solid var(--primary-blue);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* Header layout with product shot */
.table-product-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    padding: 5px 0;
}

.table-prod-img {
    max-height: 70px;
    width: auto;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    background-color: var(--white);
    padding: 5px;
    border: 1px solid #e2e8f0;
}

/* Adjustments for Rank 4 and 5 neutral styling */
#lipo-flavonoid-card:hover,
#quietum-plus-card:hover {
    transform: none; /* No scale up on hover to make it feel less active */
    box-shadow: var(--shadow-sm);
}

/* ==============================================
   TESTIMONIALS SECTION WITHIN PRODUCT CARDS
   ============================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
    border-top: 1px solid #e2e8f0;
    padding-top: 25px;
}

.testimonial-item {
    background-color: var(--light-bg);
    border-radius: var(--border-radius-md);
    padding: 15px;
    border: 1px solid #e2e8f0;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.testimonial-user-details {
    display: flex;
    flex-direction: column;
}

.testimonial-user-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-user-tag {
    font-size: 0.75rem;
    color: #15803d; /* dark green for verified buyer tag */
    font-weight: 600;
}

.testimonial-stars-img {
    height: 14px;
    width: auto;
    margin-top: 2px;
}

.testimonial-quote {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-color);
    font-style: italic;
}

/* ==============================================
   ADVERTORIAL & NEWS STYLE (review_audifort)
   ============================================== */
.alert-strip {
    background-color: #dc2626; /* urgent red */
    color: var(--white);
    text-align: center;
    padding: 10px 15px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
}

.news-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.news-layout {
    background-color: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    border: 1px solid #e2e8f0;
    margin-bottom: 50px;
}

.news-header {
    margin-bottom: 25px;
}

.news-category {
    color: #dc2626;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 10px;
}

.news-title {
    font-size: 2.35rem;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.news-sub-title {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 500;
}

.news-meta-row {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 12px 0;
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.news-author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.news-body-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.news-body-content p strong {
    color: var(--text-dark);
}

.news-image-wrap {
    margin: 30px 0;
    text-align: center;
}

.news-image-wrap img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.news-caption {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
    font-style: italic;
}

.agitation-box {
    background-color: #fffbeb; /* light amber */
    border-left: 5px solid #f59e0b; /* amber border */
    padding: 25px;
    border-radius: var(--border-radius-md);
    margin: 30px 0;
    box-shadow: var(--shadow-sm);
}

.agitation-box h4 {
    color: #b45309;
    font-size: 1.25rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.agitation-box p {
    margin-bottom: 0 !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    color: #78350f !important;
}

.warning-red-box {
    background-color: #fef2f2; /* light red */
    border: 2px dashed #ef4444; /* red border */
    padding: 25px;
    border-radius: var(--border-radius-md);
    margin: 30px 0;
}

.warning-red-box h4 {
    color: #991b1b;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.warning-red-box p {
    margin-bottom: 0 !important;
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    color: #991b1b !important;
}

.dtc-cta-area {
    text-align: center;
    margin: 45px 0;
    padding: 35px;
    background: radial-gradient(circle, #fdf2f8 0%, #fce7f3 100%); /* very soft pink gradient */
    border: 2px solid #fbcfe8;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.dtc-cta-title {
    font-size: 1.75rem;
    color: #9d174d;
    margin-bottom: 15px;
    font-weight: 800;
}

.dtc-cta-desc {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 25px;
}

.dtc-button {
    display: inline-block;
    width: 100%;
    max-width: 450px;
    background: linear-gradient(135deg, #ff6d00 0%, #e65100 100%);
    color: var(--white) !important;
    font-size: 1.5rem;
    font-weight: 800;
    padding: 20px 30px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 25px rgba(255, 109, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: var(--transition-smooth);
    animation: pulseGlow 2s infinite ease-in-out;
}

.dtc-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(255, 109, 0, 0.5);
    background: linear-gradient(135deg, #ff8c00 0%, #ff5d00 100%);
}

.scarcity-tag {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #c2410c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(255, 109, 0, 0.4);
    }
    50% {
        box-shadow: 0 10px 35px rgba(255, 109, 0, 0.7);
    }
}
