/**
 * Diabetic Shoes Guide 2025 - Beautiful Template
 * A stunning, immersive design for the diabetic shoes guide
 */

/* CSS Variables - Health-focused color scheme */
:root {
    --dg-teal-light: #E8F5F3;
    --dg-teal: #4DB6AC;
    --dg-teal-dark: #00897B;
    --dg-blue-light: #E3F2FD;
    --dg-blue: #64B5F6;
    --dg-blue-accent: #00a9e0;
    --dg-coral-light: #FFF3E0;
    --dg-coral: #FFB74D;
    --dg-coral-dark: #F57C00;
    --dg-green: #27AE60;
    --dg-red: #E74C3C;
    --dg-text: #2D3436;
    --dg-text-light: #636E72;
    --dg-white: #FFFFFF;
    --dg-cream: #FAFBFC;
    --dg-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --dg-shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --dg-radius: 16px;
    --dg-radius-sm: 8px;
    --dg-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --dg-font-display: 'Playfair Display', Georgia, serif;
    --dg-font-body: 'Source Sans 3', 'Roboto', sans-serif;
}

/* Reset for this section */
#diabetic-guide {
    font-family: var(--dg-font-body);
    color: var(--dg-text);
    line-height: 1.8;
    font-size: 1.8rem;
    overflow-x: hidden;
}

#diabetic-guide p {
    margin-bottom: 1.5em;
}

#diabetic-guide a {
    color: var(--dg-blue-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
    background-image: none;
}

#diabetic-guide a:hover {
    color: var(--dg-teal-dark);
}

#diabetic-guide * {
    box-sizing: border-box;
}

#diabetic-guide .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.dg-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dg-teal-light) 0%, var(--dg-blue-light) 50%, var(--dg-coral-light) 100%);
}

.dg-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.dg-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.dg-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(232, 245, 243, 0.7) 0%, rgba(227, 242, 253, 0.8) 50%, rgba(255, 243, 224, 0.7) 100%);
}

.dg-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 85%, rgba(77, 182, 172, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 85% 15%, rgba(100, 181, 246, 0.25) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255, 183, 77, 0.15) 0%, transparent 50%);
    animation: floatBg 25s ease-in-out infinite;
}

@keyframes floatBg {
    0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
    50% { transform: translateY(-15px) scale(1.02); opacity: 0.9; }
}

.dg-hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    padding: 60px 24px;
}

.dg-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--dg-teal) 0%, var(--dg-blue-accent) 100%);
    color: var(--dg-white);
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: var(--dg-shadow);
}

.dg-hero h1 {
    font-family: var(--dg-font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--dg-text);
    margin: 0 0 20px;
    line-height: 1.15;
}

.dg-hero-subtitle {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    color: var(--dg-text-light);
    margin-bottom: 48px;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.dg-hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.dg-stat {
    text-align: center;
    padding: 28px 24px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: var(--dg-radius);
    min-width: 200px;
    box-shadow: var(--dg-shadow);
    transition: var(--dg-transition);
    border-bottom: 4px solid transparent;
}

.dg-stat:nth-child(1) { border-bottom-color: var(--dg-teal); }
.dg-stat:nth-child(2) { border-bottom-color: var(--dg-coral); }
.dg-stat:nth-child(3) { border-bottom-color: var(--dg-blue-accent); }

.dg-stat:hover {
    transform: translateY(-6px);
    box-shadow: var(--dg-shadow-lg);
}

.dg-stat-number {
    display: block;
    font-family: var(--dg-font-display);
    font-size: 3.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--dg-teal-dark) 0%, var(--dg-blue-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.dg-stat-label {
    font-size: 1.4rem;
    color: var(--dg-text-light);
    line-height: 1.4;
    margin-top: 8px;
}

.dg-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--dg-text-light);
    font-size: 1.4rem;
    cursor: pointer;
    animation: bounce 2s ease-in-out infinite;
}

.dg-scroll-indicator svg {
    opacity: 0.6;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ========================================
   INTRO SECTION
   ======================================== */
.dg-intro {
    background: var(--dg-white);
    padding: 80px 0;
}

.dg-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.dg-lead {
    font-size: 2.3rem;
    line-height: 1.7;
    color: var(--dg-text);
    margin-bottom: 32px;
    font-weight: 400;
}

.dg-intro-content p {
    font-size: 1.9rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 24px;
}

.dg-intro-content p strong {
    color: var(--dg-text);
    font-weight: 600;
}

/* ========================================
   SECTIONS - GENERAL
   ======================================== */
.dg-section {
    padding: 100px 0;
}

.dg-section-header {
    margin-bottom: 60px;
}

.dg-section-header.dg-center {
    text-align: center;
}

.dg-section-number {
    display: inline-block;
    font-family: var(--dg-font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dg-teal-dark);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.dg-section-header h2 {
    font-family: var(--dg-font-display);
    font-size: clamp(2.6rem, 5vw, 3.8rem);
    font-weight: 600;
    color: var(--dg-text);
    margin: 0 0 16px;
    line-height: 1.25;
}

.dg-section-intro {
    font-size: 1.9rem;
    color: var(--dg-text-light);
    max-width: 650px;
    margin: 0;
    line-height: 1.7;
}

.dg-center .dg-section-intro {
    margin: 0 auto;
}

/* ========================================
   RISKS SECTION
   ======================================== */
.dg-risks {
    background: var(--dg-cream);
}

.dg-risks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.dg-risk-card {
    background: var(--dg-white);
    border-radius: var(--dg-radius);
    padding: 40px;
    box-shadow: var(--dg-shadow);
    transition: var(--dg-transition);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.dg-risk-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.dg-risk-card.dg-card-neuropathy::before { background: linear-gradient(90deg, var(--dg-teal) 0%, var(--dg-teal-dark) 100%); }
.dg-risk-card.dg-card-circulation::before { background: linear-gradient(90deg, var(--dg-blue) 0%, var(--dg-blue-accent) 100%); }
.dg-risk-card.dg-card-complications::before { background: linear-gradient(90deg, var(--dg-coral) 0%, var(--dg-coral-dark) 100%); }

.dg-risk-card.dg-visible {
    opacity: 1;
    transform: translateY(0);
}

.dg-risk-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dg-shadow-lg);
}

.dg-card-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--dg-teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dg-card-neuropathy .dg-card-icon { background: var(--dg-teal-light); color: var(--dg-teal-dark); }
.dg-card-circulation .dg-card-icon { background: var(--dg-blue-light); color: var(--dg-blue-accent); }
.dg-card-complications .dg-card-icon { background: var(--dg-coral-light); color: var(--dg-coral-dark); }

.dg-card-icon svg {
    width: 100%;
    height: 100%;
}

.dg-risk-card h3 {
    font-family: var(--dg-font-display);
    font-size: 2.2rem;
    font-weight: 600;
    margin: 0 0 20px;
    color: var(--dg-text);
}

.dg-risk-card > p {
    color: #444;
    margin-bottom: 16px;
    font-size: 1.75rem;
    line-height: 1.75;
}

.dg-risk-card > p:last-of-type {
    margin-bottom: 0;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.dg-features {
    background: linear-gradient(180deg, var(--dg-white) 0%, var(--dg-teal-light) 100%);
}

.dg-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

.dg-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--dg-white);
    padding: 32px;
    border-radius: var(--dg-radius);
    box-shadow: var(--dg-shadow);
    transition: var(--dg-transition);
    opacity: 0;
    transform: translateY(30px);
}

.dg-feature-card.dg-visible {
    opacity: 1;
    transform: translateY(0);
}

.dg-feature-card:nth-child(1) { transition-delay: 0s; }
.dg-feature-card:nth-child(2) { transition-delay: 0.08s; }
.dg-feature-card:nth-child(3) { transition-delay: 0.16s; }
.dg-feature-card:nth-child(4) { transition-delay: 0.24s; }
.dg-feature-card:nth-child(5) { transition-delay: 0.32s; }
.dg-feature-card:nth-child(6) { transition-delay: 0.40s; }

.dg-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--dg-shadow-lg);
}

.dg-feature-num {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, var(--dg-teal) 0%, var(--dg-teal-dark) 100%);
    color: var(--dg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--dg-font-display);
    font-size: 2rem;
    font-weight: 700;
}

.dg-feature-content h4 {
    font-family: var(--dg-font-display);
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--dg-text);
}

.dg-feature-content p {
    margin: 0;
    font-size: 1.65rem;
    line-height: 1.7;
    color: #444;
}

/* Avoid Box */
.dg-avoid-box {
    background: linear-gradient(135deg, #FFEBEE 0%, #FFF3E0 100%);
    border-radius: var(--dg-radius);
    padding: 48px;
    max-width: 1000px;
    margin: 0 auto;
}

.dg-avoid-box h4 {
    font-family: var(--dg-font-display);
    font-size: 2.4rem;
    color: var(--dg-red);
    margin: 0 0 32px;
    text-align: center;
}

.dg-avoid-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 992px) {
    .dg-avoid-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .dg-avoid-grid {
        grid-template-columns: 1fr;
    }
}

.dg-avoid-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 28px;
    border-radius: var(--dg-radius-sm);
    text-align: center;
    transition: var(--dg-transition);
}

.dg-avoid-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--dg-shadow);
}

.dg-avoid-card h5 {
    font-family: var(--dg-font-display);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--dg-text);
    margin: 16px 0 12px;
}

.dg-avoid-card p {
    font-size: 1.5rem;
    color: var(--dg-text-light);
    margin: 0;
    line-height: 1.6;
}

.dg-avoid-icon {
    color: var(--dg-red);
    opacity: 0.8;
}

/* ========================================
   SHOPPING TIPS SECTION
   ======================================== */
.dg-shopping {
    background: var(--dg-cream);
}

.dg-tips-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.dg-tip-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: var(--dg-white);
    padding: 32px 36px;
    border-radius: var(--dg-radius);
    box-shadow: var(--dg-shadow);
    transition: var(--dg-transition);
    opacity: 0;
    transform: translateX(-30px);
}

.dg-tip-item.dg-visible {
    opacity: 1;
    transform: translateX(0);
}

.dg-tip-item:hover {
    box-shadow: var(--dg-shadow-lg);
}

.dg-tip-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, var(--dg-teal-light) 0%, var(--dg-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dg-teal-dark);
}

.dg-tip-icon svg {
    width: 28px;
    height: 28px;
}

.dg-tip-content h4 {
    font-family: var(--dg-font-display);
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--dg-text);
}

.dg-tip-content p {
    margin: 0;
    font-size: 1.7rem;
    line-height: 1.7;
    color: #444;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.dg-products {
    background: linear-gradient(180deg, var(--dg-teal-light) 0%, var(--dg-white) 100%);
}

.dg-product-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.dg-product-buttons .dg-btn {
    padding: 14px 32px;
    font-size: 1.5rem;
}

.dg-product-buttons .dg-btn-secondary {
    background: var(--dg-white);
    color: var(--dg-teal-dark) !important;
    border: 2px solid var(--dg-teal);
}

.dg-product-buttons .dg-btn-secondary:hover {
    background: var(--dg-teal-light);
    border-color: var(--dg-teal-dark);
}

@media (max-width: 480px) {
    .dg-product-buttons {
        flex-direction: column;
        align-items: center;
    }

    .dg-product-buttons .dg-btn {
        width: 100%;
        max-width: 280px;
    }
}

.dg-product-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.dg-product-card {
    background: var(--dg-white);
    border-radius: var(--dg-radius);
    overflow: hidden;
    box-shadow: var(--dg-shadow-lg);
    position: relative;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(40px);
    transition: var(--dg-transition);
    transition-duration: 0.5s;
}

.dg-product-card.dg-visible {
    opacity: 1;
    transform: translateY(0);
}

.dg-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.dg-product-featured {
    border: 3px solid var(--dg-teal);
}

.dg-product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--dg-teal) 0%, var(--dg-teal-dark) 100%);
    color: var(--dg-white);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.dg-badge-alt {
    background: linear-gradient(135deg, var(--dg-blue-accent) 0%, var(--dg-blue) 100%);
}

.dg-product-image {
    background: linear-gradient(180deg, #f8f9fa 0%, #eef2f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.dg-product-image img {
    max-width: 100%;
    object-fit: contain;
    transition: var(--dg-transition);
}

.dg-product-card:hover .dg-product-image img {
    transform: scale(1.08);
}

.dg-product-info {
    padding: 36px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dg-product-info h3 {
    font-family: var(--dg-font-display);
    font-size: 2.4rem;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--dg-text);
}

.dg-product-price {
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--dg-teal-dark);
    margin-bottom: 20px;
}

.dg-product-desc {
    font-size: 1.6rem;
    color: var(--dg-text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.dg-product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}

.dg-product-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.55rem;
    line-height: 1.6;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}

.dg-product-features li:last-child {
    border-bottom: none;
}

.dg-product-features li strong {
    color: var(--dg-text);
}

.dg-product-features li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.dg-product-info h4 {
    font-family: var(--dg-font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dg-text);
    margin: 20px 0 16px;
}

.dg-product-info > p {
    font-size: 1.6rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.dg-product-info > p:last-of-type {
    margin-bottom: 24px;
}

#diabetic-guide .dg-product-cta {
    margin-top: auto;
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--dg-teal) 0%, var(--dg-teal-dark) 100%);
    color: var(--dg-white) !important;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: var(--dg-transition);
}

#diabetic-guide .dg-product-cta:hover {
    background: linear-gradient(135deg, var(--dg-teal-dark) 0%, #00695C 100%);
    transform: scale(1.03);
}

/* ========================================
   FOOT CARE SECTION
   ======================================== */
.dg-footcare {
    background: var(--dg-cream);
}

.dg-footcare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.dg-footcare-card {
    background: var(--dg-white);
    padding: 36px;
    border-radius: var(--dg-radius);
    text-align: center;
    box-shadow: var(--dg-shadow);
    transition: var(--dg-transition);
    opacity: 0;
    transform: translateY(30px);
    border-top: 4px solid var(--dg-teal);
}

.dg-footcare-card.dg-visible {
    opacity: 1;
    transform: translateY(0);
}

.dg-footcare-card:nth-child(1) { transition-delay: 0s; }
.dg-footcare-card:nth-child(2) { transition-delay: 0.08s; }
.dg-footcare-card:nth-child(3) { transition-delay: 0.16s; }
.dg-footcare-card:nth-child(4) { transition-delay: 0.24s; }
.dg-footcare-card:nth-child(5) { transition-delay: 0.32s; }
.dg-footcare-card:nth-child(6) { transition-delay: 0.40s; }

.dg-footcare-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dg-shadow-lg);
}

.dg-footcare-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: var(--dg-teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dg-teal-dark);
}

.dg-footcare-icon svg {
    width: 36px;
    height: 36px;
}

.dg-footcare-card h4 {
    font-family: var(--dg-font-display);
    font-size: 1.9rem;
    font-weight: 600;
    margin: 0 0 14px;
    color: var(--dg-text);
}

.dg-footcare-card p {
    margin: 0;
    font-size: 1.6rem;
    line-height: 1.7;
    color: #444;
}

/* ========================================
   INSURANCE SECTION
   ======================================== */
.dg-insurance {
    background: linear-gradient(135deg, var(--dg-blue-light) 0%, var(--dg-teal-light) 100%);
}

.dg-insurance-box {
    background: var(--dg-white);
    border-radius: var(--dg-radius);
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--dg-shadow-lg);
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: start;
}

@media (max-width: 600px) {
    .dg-insurance-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px;
    }
    .dg-insurance-icon {
        margin: 0 auto;
    }
}

.dg-insurance-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--dg-teal-light) 0%, var(--dg-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dg-teal-dark);
}

.dg-insurance-icon svg {
    width: 40px;
    height: 40px;
}

.dg-insurance-content h3 {
    font-family: var(--dg-font-display);
    font-size: 2.4rem;
    font-weight: 600;
    margin: 0 0 20px;
    color: var(--dg-text);
}

.dg-insurance-content p {
    font-size: 1.75rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.dg-insurance-content p:last-of-type {
    margin-bottom: 0;
}

.dg-insurance-content strong {
    color: var(--dg-text);
}

/* ========================================
   PROMO PRODUCTS SECTION
   ======================================== */
.dg-promo-strip {
    background: linear-gradient(135deg, #e8f5f3 0%, #f0faf8 50%, #e5f2f0 100%);
    padding: 50px 0;
    position: relative;
    border-top: 3px solid #b8e0d8;
    border-bottom: 3px solid #b8e0d8;
}

/* Subtle pattern overlay */
.dg-promo-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(77, 182, 172, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 169, 224, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.dg-promo-strip.dg-promo-alt {
    background: linear-gradient(135deg, #e3f2fd 0%, #ecf7ff 50%, #e0eff9 100%);
    border-color: #a8d4f0;
}

.dg-promo-title {
    font-family: var(--dg-font-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: #4a7c6f;
    text-align: center;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.dg-promo-title::before {
    content: 'Sponsored';
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #5a9a8a;
    letter-spacing: 2px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.dg-promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 960px) {
    .dg-promo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.dg-promo-card {
    background: var(--dg-white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(77, 182, 172, 0.12);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(77, 182, 172, 0.15);
}

.dg-promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(77, 182, 172, 0.2);
}

.dg-promo-img-link {
    display: block;
    text-decoration: none;
}

.dg-promo-img-link img {
    transition: transform 0.2s ease;
}

.dg-promo-img-link:hover img {
    transform: scale(1.03);
}

.dg-promo-card img {
    max-width: 100%;
    max-height: 250px;
    margin-bottom: 16px;
    object-fit: contain;
    margin: 0 auto 16px;
    border-radius: 8px;
    display: block;
}

.dg-promo-card h4 {
    font-family: var(--dg-font-body);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dg-text);
    margin-bottom: 16px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.8em;
    padding: 0 12px;
}

.dg-promo-card .dg-amazon-btn {
    padding: 10px 20px;
    font-size: 1.2rem;
}

.dg-amazon-btn {
    display: inline-block;
    background: #FF9900;
    color: var(--dg-white) !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: var(--dg-transition);
    position: relative;
    overflow: hidden;
}

.dg-amazon-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.dg-amazon-btn:hover::before {
    width: 300px;
    height: 300px;
}

.dg-amazon-btn:hover {
    background: #E68A00;
    transform: translateY(-2px);
}

/* Mobile Carousel Styles */
@media (max-width: 768px) {
    .dg-promo-strip {
        padding: 36px 0;
        overflow: hidden;
    }

    .dg-promo-grid.dg-promo-carousel {
        display: block;
        max-width: 100%;
        margin: 0;
    }

    .dg-promo-carousel .dg-promo-card {
        padding: 24px;
        margin: 0 8px;
        background: var(--dg-white);
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(77, 182, 172, 0.15);
    }

    .dg-promo-carousel .dg-promo-card img {
        max-height: 250px;
        margin: 0 auto 20px;
    }

    .dg-promo-carousel .dg-promo-card h4 {
        font-size: 1.6rem;
        min-height: auto;
        margin-bottom: 20px;
    }

    .dg-promo-carousel .dg-promo-card .dg-amazon-btn {
        padding: 14px 28px;
        font-size: 1.4rem;
    }

    /* Slick carousel styles */
    .dg-promo-carousel.slick-initialized {
        position: relative;
        margin-bottom: 20px;
    }

    .dg-promo-carousel .slick-list {
        overflow: visible;
    }

    /* Arrow styles */
    .dg-slick-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.95);
        border: none;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        color: #333;
        transition: all 0.2s ease;
    }

    .dg-slick-arrow:hover {
        background: #FF9900;
        color: #fff;
        box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
    }

    .dg-slick-prev {
        left: 10px;
    }

    .dg-slick-next {
        right: 10px;
    }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.dg-faq {
    background: linear-gradient(180deg, var(--dg-white) 0%, var(--dg-teal-light) 100%);
}

.dg-faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.dg-faq-item {
    background: var(--dg-white);
    border-radius: var(--dg-radius);
    margin-bottom: 18px;
    overflow: hidden;
    box-shadow: var(--dg-shadow);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--dg-transition);
}

.dg-faq-item.dg-visible {
    opacity: 1;
    transform: translateY(0);
}

.dg-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 32px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--dg-font-display);
    font-size: 1.9rem;
    font-weight: 500;
    color: var(--dg-text);
    transition: var(--dg-transition);
}

.dg-faq-question:hover {
    background: var(--dg-cream);
}

.dg-faq-question svg {
    flex-shrink: 0;
    transition: var(--dg-transition);
    color: var(--dg-teal-dark);
}

.dg-faq-item.active .dg-faq-question svg {
    transform: rotate(180deg);
}

.dg-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.dg-faq-item.active .dg-faq-answer {
    max-height: 600px;
}

.dg-faq-answer p {
    padding: 0 32px 28px;
    margin: 0;
    font-size: 1.75rem;
    color: #444;
    line-height: 1.8;
}

/* ========================================
   TAKEAWAYS SECTION
   ======================================== */
.dg-takeaways {
    background: var(--dg-teal-light);
    padding: 80px 0;
}

.dg-takeaways-box {
    background: var(--dg-white);
    border-radius: var(--dg-radius);
    padding: 56px;
    box-shadow: var(--dg-shadow-lg);
    max-width: 950px;
    margin: 0 auto;
}

.dg-takeaways-box h3 {
    font-family: var(--dg-font-display);
    font-size: 2.6rem;
    font-weight: 600;
    margin: 0 0 24px;
    text-align: center;
    color: var(--dg-text);
}

.dg-conclusion-text {
    font-size: 1.85rem;
    line-height: 1.8;
    color: var(--dg-text);
    text-align: center;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.dg-takeaways-box h4 {
    font-family: var(--dg-font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--dg-text);
    margin: 0 0 24px;
    text-align: center;
}

.dg-takeaways-grid {
    display: grid;
    gap: 18px;
}

.dg-takeaway {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 28px;
    background: var(--dg-cream);
    border-radius: var(--dg-radius-sm);
    font-size: 1.7rem;
    line-height: 1.6;
    color: var(--dg-text);
    transition: var(--dg-transition);
}

.dg-takeaway:hover {
    background: var(--dg-teal-light);
}

.dg-takeaway-check {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    background: var(--dg-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dg-white);
}

.dg-takeaway-check svg {
    width: 18px;
    height: 18px;
}

.dg-closing {
    font-size: 1.7rem;
    line-height: 1.8;
    color: var(--dg-text);
    text-align: center;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 2px solid #eee;
    font-style: italic;
}

/* ========================================
   CTA SECTION
   ======================================== */
.dg-cta {
    background: linear-gradient(135deg, var(--dg-text) 0%, #1a252f 100%);
    padding: 100px 0;
    text-align: center;
}

.dg-cta-content {
    max-width: 750px;
    margin: 0 auto;
}

.dg-cta h2 {
    font-family: var(--dg-font-display);
    font-size: clamp(2.6rem, 5vw, 3.4rem);
    font-weight: 600;
    color: var(--dg-white);
    margin: 0 0 20px;
}

.dg-cta p {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.7;
}

.dg-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dg-btn {
    display: inline-block;
    padding: 18px 44px;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: var(--dg-transition);
}

.dg-btn-primary {
    background: linear-gradient(135deg, var(--dg-teal) 0%, var(--dg-teal-dark) 100%);
    color: var(--dg-white) !important;
}

.dg-btn-primary:hover {
    background: linear-gradient(135deg, var(--dg-teal-dark) 0%, #00695C 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 137, 123, 0.3);
}

.dg-btn-secondary {
    background: transparent;
    color: var(--dg-white) !important;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.dg-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--dg-white);
    transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
    .dg-section {
        padding: 60px 0;
    }

    .dg-hero {
        min-height: 85vh;
    }

    .dg-hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .dg-stat {
        min-width: 280px;
        width: 100%;
        max-width: 320px;
    }

    .dg-risks-grid,
    .dg-features-grid,
    .dg-footcare-grid {
        grid-template-columns: 1fr;
    }

    .dg-avoid-box {
        padding: 28px;
    }

    .dg-tip-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .dg-product-showcase {
        grid-template-columns: 1fr;
    }

    .dg-takeaways-box {
        padding: 32px 24px;
    }

    .dg-faq-question {
        padding: 20px 24px;
        font-size: 1.6rem;
    }

    .dg-faq-answer p {
        padding: 0 24px 20px;
    }
}

@media (max-width: 480px) {
    .dg-hero-content {
        padding: 40px 16px;
    }

    .dg-product-image {
        min-height: 220px;

    }

    .dg-product-info {
        padding: 28px;
    }

    .dg-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .dg-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ========================================
   LATEST BLOG POSTS SECTION
   ======================================== */
.dg-latest-posts {
    background: linear-gradient(180deg, var(--dg-white) 0%, #f0f9f7 100%);
}

.dg-posts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.dg-post-card {
    background: var(--dg-white);
    border-radius: var(--dg-radius);
    overflow: hidden;
    box-shadow: var(--dg-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: block;
}

.dg-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(77, 182, 172, 0.2);
}

.dg-post-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.dg-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dg-post-card:hover .dg-post-image img {
    transform: scale(1.05);
}

.dg-post-content {
    padding: 20px;
}

.dg-post-content h3 {
    font-family: var(--dg-font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dg-text);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dg-post-date {
    font-size: 1.2rem;
    color: var(--dg-teal);
    font-weight: 500;
}

.dg-posts-cta {
    text-align: center;
}

@media (max-width: 1024px) {
    .dg-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .dg-posts-grid {
        grid-template-columns: 1fr;
    }

    .dg-post-content h3 {
        font-size: 1.5rem;
    }
}

/* Print styles */
@media print {
    .dg-hero-bg,
    .dg-scroll-indicator,
    .dg-cta,
    .dg-latest-posts {
        display: none;
    }

    .dg-hero {
        min-height: auto;
        padding: 40px 0;
    }

    .dg-section {
        padding: 40px 0;
        break-inside: avoid;
    }
}
