/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/
Description: Child Theme for Hello Elementor
Author: Your Name
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/



/* =========================================
   Global Color Variables (Inhe apni style.css me zaroor rakhein)
   ========================================= */
:root {
    --dp-primary: #e85d75;       /* Main Pink Accent */
    --dp-primary-hover: #d14a62; /* Darker Pink for Hover */
    --dp-dark: #111111;          /* Main Dark Text */
    --dp-text: #333333;          /* Normal Text */
    --dp-text-light: #666666;    /* Light Gray Text */
    --dp-bg-light: #f8f9fa;      /* Light Background */
    --dp-bg-white: #ffffff;      /* White Background */
    --dp-border: #e9ecef;        /* Border Color */
    --dp-font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --dp-font-serif: 'Georgia', 'Times New Roman', serif; /* Magazine Headings */
    --dp-shadow: 0 4px 15px rgba(0,0,0,0.05);
    --dp-shadow-hover: 0 8px 25px rgba(0,0,0,0.1);
    --dp-radius: 8px;
}

/* =========================================
   Homepage Layout Styles
   ========================================= */
.dp-homepage {
    font-family: var(--dp-font-primary);
    color: var(--dp-text);
    line-height: 1.6;
}

.dp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. Hero Section */
.dp-hero {
    background: linear-gradient(135deg, #fdf0f3 0%, #ffffff 100%);
    padding: 80px 0;
    text-align: center;
}

.dp-hero-badge {
    display: inline-block;
    background: rgba(232, 93, 117, 0.1);
    color: var(--dp-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.dp-hero-title {
    font-family: var(--dp-font-serif);
    font-size: 52px;
    font-weight: 900;
    color: var(--dp-dark);
    margin: 0 0 20px 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.dp-hero-text {
    font-size: 18px;
    color: var(--dp-text-light);
    max-width: 650px;
    margin: 0 auto 35px auto;
}

.dp-hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.dp-btn {
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.dp-btn-primary {
    background: var(--dp-primary);
    color: #fff;
}

.dp-btn-primary:hover {
    background: var(--dp-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 93, 117, 0.3);
}

.dp-btn-secondary {
    background: transparent;
    color: var(--dp-dark);
    border: 2px solid var(--dp-dark);
}

.dp-btn-secondary:hover {
    background: var(--dp-dark);
    color: #fff;
    transform: translateY(-2px);
}

.dp-hero-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.dp-trust-badges {
    display: flex;
    gap: 10px;
}

.dp-badge {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid var(--dp-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--dp-primary);
    font-size: 16px;
    box-shadow: var(--dp-shadow);
}

.dp-hero-trust p {
    font-size: 14px;
    color: var(--dp-text-light);
    font-weight: 600;
    margin: 0;
}

/* 2. Topics Section */
.dp-topics {
    padding: 80px 0;
    background: var(--dp-bg-white);
}

.dp-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.dp-section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    margin-bottom: 40px;
}

.dp-section-subtitle {
    display: block;
    color: var(--dp-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.dp-section-title {
    font-family: var(--dp-font-serif);
    font-size: 38px;
    font-weight: 800;
    color: var(--dp-dark);
    margin: 0 0 15px 0;
}

.dp-section-desc {
    font-size: 16px;
    color: var(--dp-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.dp-view-all {
    color: var(--dp-primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.dp-view-all:hover {
    color: var(--dp-primary-hover);
}

.dp-topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dp-topic-card {
    background: var(--dp-bg-white);
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dp-topic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dp-shadow-hover);
    border-color: var(--dp-primary);
}

.dp-topic-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.dp-topic-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dp-dark);
    margin: 0 0 5px 0;
}

.dp-topic-meta {
    display: block;
    font-size: 13px;
    color: var(--dp-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.dp-topic-card p {
    font-size: 14px;
    color: var(--dp-text-light);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.dp-topic-link {
    color: var(--dp-dark);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s, gap 0.3s;
}

.dp-topic-link:hover {
    color: var(--dp-primary);
    gap: 10px;
}

/* 3. Stats Section */
.dp-stats {
    background: var(--dp-bg-light);
    padding: 60px 0;
    border-top: 1px solid var(--dp-border);
    border-bottom: 1px solid var(--dp-border);
}

.dp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.dp-stat-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dp-stat-number {
    font-family: var(--dp-font-serif);
    font-size: 42px;
    font-weight: 900;
    color: var(--dp-primary);
    line-height: 1;
}

.dp-stat-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--dp-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 4. Articles Section */
.dp-articles {
    padding: 80px 0;
    background: var(--dp-bg-white);
}

.dp-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dp-article-card {
    background: var(--dp-bg-white);
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dp-article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dp-shadow-hover);
}

.dp-article-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #eee; /* Fallback */
}

.dp-article-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dp-article-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 12px;
}

.dp-category-tag {
    background: rgba(232, 93, 117, 0.1);
    color: var(--dp-primary);
    padding: 4px 10px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dp-article-date {
    color: var(--dp-text-light);
}

.dp-article-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--dp-dark);
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.dp-article-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.dp-article-title a:hover {
    color: var(--dp-primary);
}

.dp-article-excerpt {
    font-size: 14px;
    color: var(--dp-text-light);
    margin: 0 0 20px 0;
    flex-grow: 1;
}

.dp-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--dp-border);
    font-size: 13px;
}

.dp-author {
    color: var(--dp-text);
    font-weight: 600;
}

.dp-read-more {
    color: var(--dp-primary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.dp-read-more:hover {
    color: var(--dp-primary-hover);
}

/* 5. Newsletter Section */
.dp-newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf0f3 0%, #fff5f7 100%);
}

.dp-newsletter-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.dp-newsletter-box h2 {
    font-family: var(--dp-font-serif);
    font-size: 32px;
    font-weight: 800;
    color: var(--dp-dark);
    margin: 0 0 15px 0;
}

.dp-newsletter-box p {
    font-size: 16px;
    color: var(--dp-text-light);
    margin: 0 0 30px 0;
}

.dp-newsletter-form-inline {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.dp-newsletter-form-inline input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--dp-border);
    border-radius: 50px;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s;
}

.dp-newsletter-form-inline input:focus {
    border-color: var(--dp-primary);
}

.dp-newsletter-form-inline button {
    background: var(--dp-primary);
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.dp-newsletter-form-inline button:hover {
    background: var(--dp-primary-hover);
    transform: translateY(-2px);
}

.dp-newsletter-box small {
    font-size: 12px;
    color: #999;
}

/* =========================================
   Responsive Design (Mobile & Tablet)
   ========================================= */
@media (max-width: 992px) {
    .dp-hero-title { font-size: 40px; }
    .dp-section-title { font-size: 30px; }
    
    .dp-topics-grid, .dp-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .dp-hero { padding: 60px 0; }
    .dp-hero-title { font-size: 32px; }
    .dp-hero-text { font-size: 16px; }
    
    .dp-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .dp-btn { width: 100%; max-width: 280px; text-align: center; }
    
    .dp-section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .dp-topics-grid, .dp-articles-grid, .dp-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .dp-newsletter-form-inline {
        flex-direction: column;
    }
    
    .dp-newsletter-form-inline button { width: 100%; }
}

/* =========================================
   Arena-Style Extra Sections CSS
   ========================================= */

/* 6. Intro Hero */
.dp-intro-hero {
    padding: 80px 0;
    background: var(--dp-bg-white);
    text-align: center;
}

.dp-intro-hero h2 {
    font-family: var(--dp-font-serif);
    font-size: 42px;
    font-weight: 800;
    color: var(--dp-dark);
    max-width: 800px;
    margin: 0 auto 20px auto;
    line-height: 1.2;
}

.dp-intro-hero p {
    font-size: 18px;
    color: var(--dp-text-light);
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.dp-intro-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* 7. Featured Reads */
.dp-featured-reads {
    padding: 80px 0;
    background: var(--dp-bg-light);
}

.dp-featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dp-featured-card {
    background: var(--dp-bg-white);
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.dp-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dp-shadow-hover);
    border-color: var(--dp-primary);
}

.dp-featured-cat {
    display: inline-block;
    color: var(--dp-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.dp-featured-meta {
    font-size: 13px;
    color: var(--dp-text-light);
    margin-bottom: 15px;
    font-weight: 500;
}

.dp-featured-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dp-dark);
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.dp-featured-card h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.dp-featured-card h3 a:hover {
    color: var(--dp-primary);
}

.dp-featured-card p {
    font-size: 15px;
    color: var(--dp-text-light);
    margin: 0 0 20px 0;
    flex-grow: 1;
}

/* 8. In Focus Section */
.dp-in-focus {
    padding: 80px 0;
    background: var(--dp-bg-white);
}

.dp-in-focus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dp-in-focus-content .dp-section-subtitle,
.dp-in-focus-content .dp-section-title {
    text-align: left;
}

.dp-in-focus-content p {
    font-size: 16px;
    color: var(--dp-text-light);
    margin-bottom: 25px;
}

.dp-focus-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dp-focus-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--dp-text);
    font-weight: 500;
}

.dp-focus-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--dp-primary);
    font-weight: 800;
    font-size: 18px;
}

.dp-focus-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.dp-focus-card {
    background: var(--dp-bg-light);
    border-radius: var(--dp-radius);
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.dp-focus-card:hover {
    background: var(--dp-bg-white);
    border-color: var(--dp-border);
    box-shadow: var(--dp-shadow);
}

.dp-focus-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.dp-focus-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--dp-dark);
    margin: 0 0 8px 0;
}

.dp-focus-card p {
    font-size: 14px;
    color: var(--dp-text-light);
    margin: 0;
    line-height: 1.5;
}

/* 9. Quick Tips */
/*
.dp-quick-tips {
    padding: 80px 0;
    background: var(--dp-bg-light);
}

.dp-tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.dp-tip-card {
    background: var(--dp-bg-white);
    border-left: 4px solid var(--dp-primary);
    padding: 25px;
    border-radius: 0 var(--dp-radius) var(--dp-radius) 0;
    transition: transform 0.3s ease;
}

.dp-tip-card:hover {
    transform: translateX(5px);
}

.dp-tip-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--dp-dark);
    margin: 0 0 10px 0;
}

.dp-tip-card p {
    font-size: 14px;
    color: var(--dp-text-light);
    margin: 0;
    line-height: 1.6;
}  */

/* =========================================
   9. Quick Tips - Redesigned (Image Match)
   ========================================= */
.dp-quick-tips {
    padding: 80px 0;
    background: var(--dp-bg-light);
}

.dp-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.dp-tip-card {
    background: var(--dp-bg-white);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.dp-tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

/* Icon Circle */
.dp-tip-icon-circle {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 3px solid currentColor;
    padding: 15px;
}

.dp-tip-icon-circle svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
}

/* Color Themes */
.dp-tip-green {
    color: #7cb342;
}

.dp-tip-green .dp-tip-icon-circle {
    background: #e8f5e9;
    border-color: #7cb342;
}

.dp-tip-blue {
    color: #5ba4d9;
}

.dp-tip-blue .dp-tip-icon-circle {
    background: #e3f2fd;
    border-color: #5ba4d9;
}

.dp-tip-orange {
    color: #e8985e;
}

.dp-tip-orange .dp-tip-icon-circle {
    background: #fff3e0;
    border-color: #e8985e;
}

/* Content */
.dp-tip-content {
    flex: 1;
    min-width: 0;
}

.dp-tip-card h4 {
    font-size: 20px;
    font-weight: 800;
    color: #5d4037;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.dp-tip-card p {
    font-size: 14px;
    color: var(--dp-text-light);
    margin: 0;
    line-height: 1.6;
}

/* Illustration */
.dp-tip-illustration {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.dp-tip-card:hover .dp-tip-illustration {
    transform: scale(1.1) rotate(-5deg);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
    .dp-tips-grid {
        grid-template-columns: 1fr;
    }
    
    .dp-tip-card {
        padding: 25px;
    }
    
    .dp-tip-icon-circle {
        width: 70px;
        height: 70px;
        padding: 12px;
    }
    
    .dp-tip-illustration {
        width: 80px;
        height: 80px;
        font-size: 50px;
    }
    
    .dp-tip-card h4 {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .dp-quick-tips {
        padding: 60px 0;
    }
    
    .dp-tip-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 15px;
    }
    
    .dp-tip-content {
        order: 2;
    }
    
    .dp-tip-illustration {
        order: 3;
        width: 70px;
        height: 70px;
        font-size: 45px;
    }
    
    .dp-tip-icon-circle {
        order: 1;
        width: 65px;
        height: 65px;
        padding: 10px;
    }
    
    .dp-tip-card h4 {
        font-size: 17px;
    }
    
    .dp-tip-card p {
        font-size: 13px;
    }
}

/* 10. Enhanced Newsletter */
.dp-newsletter-enhanced {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf0f3 0%, #ffffff 100%);
}

.dp-newsletter-enhanced-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--dp-bg-white);
    padding: 50px;
    border-radius: var(--dp-radius);
    box-shadow: var(--dp-shadow);
}

.dp-newsletter-content .dp-section-subtitle,
.dp-newsletter-content .dp-section-title {
    text-align: left;
}

.dp-newsletter-content p {
    font-size: 16px;
    color: var(--dp-text-light);
    margin-bottom: 25px;
}

.dp-newsletter-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dp-newsletter-features ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--dp-text);
    font-weight: 500;
}

.dp-newsletter-features ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--dp-primary);
    font-size: 14px;
    top: 2px;
}

/* =========================================
   Responsive Adjustments for New Sections
   ========================================= */
@media (max-width: 992px) {
    .dp-intro-hero h2 { font-size: 34px; }
    .dp-featured-grid { grid-template-columns: repeat(2, 1fr); }
    .dp-in-focus-grid { grid-template-columns: 1fr; gap: 40px; }
    .dp-tips-grid { grid-template-columns: repeat(2, 1fr); }
    .dp-newsletter-enhanced-grid { grid-template-columns: 1fr; padding: 40px; gap: 40px; }
}

@media (max-width: 768px) {
    .dp-intro-hero { padding: 60px 0; }
    .dp-intro-hero h2 { font-size: 28px; }
    .dp-intro-buttons { flex-direction: column; align-items: center; }
    .dp-featured-grid { grid-template-columns: 1fr; }
    .dp-focus-cards { grid-template-columns: 1fr; }
    .dp-tips-grid { grid-template-columns: 1fr; }
    .dp-newsletter-enhanced-grid { padding: 30px; }
}

/* =========================================
   Hero Image Slider CSS
   ========================================= */
.dp-hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 500px;
    max-height: 750px;
    overflow: hidden;
    background: var(--dp-dark);
}

.dp-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slides */
.dp-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dp-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Dark overlay for text readability */
.dp-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
}

/* Slide Content */
.dp-slide-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: 0 40px;
    text-align: left;
    color: #fff;
    margin-right: auto;
    margin-left: 10%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.dp-slide.active .dp-slide-content {
    opacity: 1;
    transform: translateY(0);
}

.dp-slide-tag {
    display: inline-block;
    background: var(--dp-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.dp-slide-content h2 {
    font-family: var(--dp-font-serif);
    font-size: 56px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.1;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.dp-slide-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 30px 0;
    line-height: 1.6;
    max-width: 550px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
}

.dp-slide-content .dp-btn-primary {
    background: var(--dp-primary);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 93, 117, 0.4);
}

.dp-slide-content .dp-btn-primary:hover {
    background: var(--dp-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 117, 0.5);
}

/* Navigation Arrows */
.dp-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    padding: 0;
}

.dp-slider-arrow:hover {
    background: var(--dp-primary);
    border-color: var(--dp-primary);
    transform: translateY(-50%) scale(1.1);
}

.dp-prev {
    left: 30px;
}

.dp-next {
    right: 30px;
}

/* Dots Navigation */
.dp-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dp-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dp-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.dp-dot.active {
    background: var(--dp-primary);
    border-color: var(--dp-primary);
    width: 35px;
    border-radius: 10px;
}

/* =========================================
   Responsive Slider
   ========================================= */
@media (max-width: 992px) {
    .dp-hero-slider {
        height: 70vh;
        min-height: 450px;
    }
    
    .dp-slide-content {
        margin-left: 5%;
        padding: 0 30px;
    }
    
    .dp-slide-content h2 {
        font-size: 42px;
    }
    
    .dp-slide-content p {
        font-size: 16px;
    }
    
    .dp-slider-arrow {
        width: 45px;
        height: 45px;
    }
    
    .dp-prev { left: 15px; }
    .dp-next { right: 15px; }
}

@media (max-width: 768px) {
    .dp-hero-slider {
        height: 65vh;
        min-height: 400px;
    }
    
    .dp-slide-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.8) 100%
        );
    }
    
    .dp-slide-content {
        margin: 0 auto;
        text-align: center;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .dp-slide-content h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }
    
    .dp-slide-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .dp-slide-tag {
        font-size: 11px;
        padding: 5px 12px;
        margin-bottom: 15px;
    }
    
    .dp-slide-content .dp-btn-primary {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .dp-slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .dp-slider-arrow svg {
        width: 18px;
        height: 18px;
    }
    
    .dp-prev { left: 10px; }
    .dp-next { right: 10px; }
    
    .dp-slider-dots {
        bottom: 20px;
    }
    
    .dp-dot {
        width: 10px;
        height: 10px;
    }
    
    .dp-dot.active {
        width: 28px;
    }
}

@media (max-width: 480px) {
    .dp-hero-slider {
        height: 55vh;
        min-height: 380px;
    }
    
    .dp-slide-content h2 {
        font-size: 24px;
    }
    
    .dp-slide-content p {
        display: none; /* Mobile par text kam karne ke liye paragraph hide */
    }
    
    .dp-slider-arrow {
        display: none; /* Mobile par arrows hide, dots se navigate karenge */
    }
}





/* =========================================
   Living With Pets Category Page CSS
   ========================================= */

/* 2. Category Intro */
.dp-cat-intro {
    padding: 80px 0;
    background: var(--dp-bg-white);
}

.dp-cat-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.dp-cat-intro-text .dp-section-subtitle,
.dp-cat-intro-text h2 {
    text-align: left;
}

.dp-cat-intro-text h2 {
    font-family: var(--dp-font-serif);
    font-size: 38px;
    font-weight: 800;
    color: var(--dp-dark);
    margin: 0 0 20px 0;
}

.dp-cat-intro-text p {
    font-size: 16px;
    color: var(--dp-text-light);
    margin: 0 0 15px 0;
    line-height: 1.7;
}

.dp-cat-intro-image img {
    width: 100%;
    height: auto;
    border-radius: var(--dp-radius);
    box-shadow: var(--dp-shadow);
}

/* 3. Category Topics Grid */
.dp-cat-topics {
    padding: 80px 0;
    background: var(--dp-bg-light);
}

.dp-cat-topics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.dp-cat-topic-card {
    background: var(--dp-bg-white);
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    padding: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dp-cat-topic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dp-shadow-hover);
    border-color: var(--dp-primary);
}

.dp-cat-topic-icon {
    font-size: 36px;
    margin-bottom: 5px;
}

.dp-cat-topic-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dp-dark);
    margin: 0;
}

.dp-cat-topic-card span {
    font-size: 14px;
    color: var(--dp-text-light);
}

/* 4. Featured Article */
.dp-cat-featured {
    padding: 80px 0;
    background: var(--dp-bg-white);
}

.dp-cat-featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: var(--dp-bg-light);
    border-radius: var(--dp-radius);
    overflow: hidden;
    box-shadow: var(--dp-shadow);
}

.dp-cat-featured-img {
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

.dp-cat-featured-content {
    padding: 50px;
}

.dp-cat-featured-content .dp-category-tag {
    margin-bottom: 15px;
}

.dp-cat-featured-content h3 {
    font-family: var(--dp-font-serif);
    font-size: 32px;
    font-weight: 800;
    color: var(--dp-dark);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.dp-cat-featured-content h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.dp-cat-featured-content h3 a:hover {
    color: var(--dp-primary);
}

.dp-cat-featured-content p {
    font-size: 16px;
    color: var(--dp-text-light);
    margin: 0 0 25px 0;
    line-height: 1.7;
}

.dp-cat-featured-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--dp-text-light);
}

.dp-cat-featured-meta .dp-author {
    font-weight: 600;
    color: var(--dp-text);
}

/* 5. Practical Tips */
.dp-cat-tips {
    padding: 80px 0;
    background: var(--dp-bg-light);
}

.dp-cat-tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.dp-cat-tip {
    background: var(--dp-bg-white);
    border-radius: var(--dp-radius);
    padding: 35px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid var(--dp-border);
}

.dp-cat-tip:hover {
    box-shadow: var(--dp-shadow);
    transform: translateY(-3px);
}

.dp-cat-tip-number {
    font-family: var(--dp-font-serif);
    font-size: 48px;
    font-weight: 900;
    color: var(--dp-primary);
    line-height: 1;
    opacity: 0.3;
}

.dp-cat-tip h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--dp-dark);
    margin: 0 0 10px 0;
}

.dp-cat-tip p {
    font-size: 15px;
    color: var(--dp-text-light);
    margin: 0;
    line-height: 1.6;
}

/* 6. Blog Articles Grid */
.dp-cat-articles {
    padding: 80px 0;
    background: var(--dp-bg-white);
}

.dp-cat-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 7. Related Categories */
.dp-cat-related {
    padding: 80px 0;
    background: var(--dp-bg-light);
}

.dp-cat-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dp-cat-related-card {
    position: relative;
    height: 250px;
    border-radius: var(--dp-radius);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.dp-cat-related-card:hover {
    transform: scale(1.03);
}

.dp-cat-related-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.dp-cat-related-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.dp-cat-related-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    color: #fff;
}

.dp-cat-related-content h3 {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 10px 0;
}

.dp-cat-related-content span {
    font-size: 14px;
    color: var(--dp-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 8. Newsletter */
.dp-cat-newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf0f3 0%, #ffffff 100%);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 992px) {
    .dp-cat-hero { height: 450px; }
    .dp-cat-title { font-size: 40px; }
    .dp-cat-desc { font-size: 16px; }
    
    .dp-cat-intro-grid,
    .dp-cat-featured-article {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dp-cat-featured-img { min-height: 300px; }
    .dp-cat-featured-content { padding: 35px; }
    
    .dp-cat-topics-grid,
    .dp-cat-articles-grid,
    .dp-cat-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dp-cat-tips-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dp-cat-hero { height: 400px; }
    .dp-cat-title { font-size: 32px; }
    .dp-cat-desc { font-size: 15px; }
    
    .dp-cat-stats {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .dp-cat-intro-text h2 { font-size: 28px; }
    
    .dp-cat-topics-grid,
    .dp-cat-articles-grid,
    .dp-cat-related-grid {
        grid-template-columns: 1fr;
    }
    
    .dp-cat-featured-content h3 { font-size: 24px; }
    
    .dp-cat-tip {
        flex-direction: column;
        gap: 15px;
    }
    
    .dp-cat-related-card { height: 200px; }
}

@media (max-width: 480px) {
    .dp-cat-hero { height: 350px; }
    .dp-cat-title { font-size: 28px; }
    .dp-cat-stat-num { font-size: 26px; }
    .dp-cat-featured-content { padding: 25px; }
    .dp-cat-featured-content h3 { font-size: 20px; }
}






/* =========================================
   Dogs & Puppies Category Page CSS
   ========================================= */

/* Dogs-specific hero background */
.dp-dogs-hero .dp-cat-hero-overlay {
    background: linear-gradient(135deg, rgba(232, 93, 117, 0.85) 0%, rgba(17, 17, 17, 0.7) 100%);
}

/* 4. Featured Posts - Layout 1 (Magazine Style) */
.dp-dogs-featured {
    padding: 80px 0;
    background: var(--dp-bg-white);
}

.dp-featured-magazine {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

/* Main Featured Post */
.dp-featured-main {
    background: var(--dp-bg-light);
    border-radius: var(--dp-radius);
    overflow: hidden;
    box-shadow: var(--dp-shadow);
    display: flex;
    flex-direction: column;
}

.dp-featured-main-img {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
}

.dp-featured-main-content {
    padding: 40px;
}

.dp-featured-main-content .dp-category-tag {
    margin-bottom: 15px;
}

.dp-featured-main-content h3 {
    font-family: var(--dp-font-serif);
    font-size: 28px;
    font-weight: 800;
    color: var(--dp-dark);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.dp-featured-main-content h3 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.dp-featured-main-content h3 a:hover {
    color: var(--dp-primary);
}

.dp-featured-main-content p {
    font-size: 16px;
    color: var(--dp-text-light);
    margin: 0 0 20px 0;
    line-height: 1.7;
}

.dp-featured-main-content .dp-article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--dp-text-light);
}

.dp-featured-main-content .dp-author {
    font-weight: 600;
    color: var(--dp-text);
}

/* Side Featured Posts */
.dp-featured-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dp-featured-side-card {
    background: var(--dp-bg-white);
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    overflow: hidden;
    display: flex;
    transition: all 0.3s ease;
}

.dp-featured-side-card:hover {
    transform: translateX(5px);
    box-shadow: var(--dp-shadow);
    border-color: var(--dp-primary);
}

.dp-featured-side-img {
    width: 140px;
    min-height: 140px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.dp-featured-side-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dp-featured-side-content .dp-category-tag {
    font-size: 11px;
    padding: 3px 8px;
    margin-bottom: 8px;
    align-self: flex-start;
}

.dp-featured-side-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dp-dark);
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.dp-featured-side-content h4 a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.dp-featured-side-content h4 a:hover {
    color: var(--dp-primary);
}

.dp-featured-side-content .dp-article-date {
    font-size: 12px;
    color: var(--dp-text-light);
}

/* 5. Dog Care Essentials */
.dp-dogs-essentials {
    padding: 80px 0;
    background: var(--dp-bg-light);
}

.dp-dogs-essentials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.dp-essential-card {
    background: var(--dp-bg-white);
    border-radius: var(--dp-radius);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--dp-border);
}

.dp-essential-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dp-shadow-hover);
    border-color: var(--dp-primary);
}

.dp-essential-icon {
    font-size: 42px;
    margin-bottom: 15px;
}

.dp-essential-card h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--dp-dark);
    margin: 0 0 10px 0;
}

.dp-essential-card p {
    font-size: 14px;
    color: var(--dp-text-light);
    margin: 0;
    line-height: 1.6;
}

/* 6. Latest Posts - Layout 2 (Standard Grid) */
.dp-dogs-latest {
    padding: 80px 0;
    background: var(--dp-bg-white);
}

.dp-dogs-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* 7. Popular Breeds Showcase */
.dp-dogs-breeds {
    padding: 80px 0;
    background: var(--dp-bg-light);
}

.dp-breeds-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.dp-breed-card {
    position: relative;
    height: 280px;
    border-radius: var(--dp-radius);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.dp-breed-card:hover {
    transform: scale(1.05);
}

.dp-breed-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.dp-breed-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    color: #fff;
}

.dp-breed-content h4 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 5px 0;
}

.dp-breed-content span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* =========================================
   Responsive Design for Dogs Page
   ========================================= */
@media (max-width: 992px) {
    .dp-featured-magazine {
        grid-template-columns: 1fr;
    }
    
    .dp-featured-main-img {
        height: 280px;
    }
    
    .dp-featured-main-content {
        padding: 30px;
    }
    
    .dp-featured-main-content h3 {
        font-size: 24px;
    }
    
    .dp-featured-side {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .dp-featured-side-card {
        flex: 1 1 calc(50% - 10px);
        flex-direction: column;
    }
    
    .dp-featured-side-img {
        width: 100%;
        height: 150px;
    }
    
    .dp-dogs-essentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dp-dogs-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dp-breeds-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dp-featured-side {
        flex-direction: column;
    }
    
    .dp-featured-side-card {
        flex: 1 1 100%;
    }
    
    .dp-dogs-essentials-grid,
    .dp-dogs-articles-grid,
    .dp-breeds-showcase {
        grid-template-columns: 1fr;
    }
    
    .dp-featured-main-content h3 {
        font-size: 20px;
    }
    
    .dp-breed-card {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .dp-featured-main-img {
        height: 200px;
    }
    
    .dp-featured-main-content {
        padding: 20px;
    }
    
    .dp-featured-main-content h3 {
        font-size: 18px;
    }
    
    .dp-featured-side-img {
        height: 120px;
    }
}

/* =========================================
   Cats & Kittens Specific Styles
   ========================================= */

.dp-cats-page .dp-cat-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?w=1600&q=80');
}

/* Cat-specific color accent for tags */
.dp-cats-page .dp-category-tag {
    background: rgba(232, 93, 117, 0.1);
    color: var(--dp-primary);
}

/* Hover effect for cat topic cards */
.dp-cats-page .dp-cat-topic-card:hover .dp-cat-topic-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.dp-cats-page .dp-cat-topic-icon {
    transition: transform 0.3s ease;
}

/* Cat breed cards special hover */
.dp-cats-page .dp-cat-related-card:hover .dp-cat-related-content h3 {
    color: var(--dp-primary);
    transition: color 0.3s ease;
}

/* Kitten care section highlight */
.dp-cats-page .dp-cat-tips {
    background: linear-gradient(135deg, #fff5f7 0%, #fdf0f3 100%);
}

.dp-cats-page .dp-cat-tip {
    background: var(--dp-bg-white);
    border: 1px solid var(--dp-border);
}

.dp-cats-page .dp-cat-tip:hover {
    border-color: var(--dp-primary);
    box-shadow: 0 8px 25px rgba(232, 93, 117, 0.15);
}

/* Cat intro image styling */
.dp-cats-page .dp-cat-intro-image img {
    border-radius: var(--dp-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.dp-cats-page .dp-cat-intro-image:hover img {
    transform: scale(1.02);
}

/* Featured article cat-specific styling */
.dp-cats-page .dp-cat-featured-article {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 2px solid var(--dp-border);
}

.dp-cats-page .dp-cat-featured-article:hover {
    border-color: var(--dp-primary);
    transition: border-color 0.3s ease;
}

/* Newsletter section cat-themed */
.dp-cats-page .dp-cat-newsletter {
    background: linear-gradient(135deg, #fdf0f3 0%, #fff5f7 50%, #ffffff 100%);
}

.dp-cats-page .dp-newsletter-box {
    position: relative;
    overflow: hidden;
}

.dp-cats-page .dp-newsletter-box::before {
    content: '🐱';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 80px;
    opacity: 0.1;
    transform: rotate(15deg);
}

/* Article cards cat-specific hover */
.dp-cats-page .dp-article-card {
    border: 1px solid var(--dp-border);
    transition: all 0.3s ease;
}

.dp-cats-page .dp-article-card:hover {
    border-color: var(--dp-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(232, 93, 117, 0.15);
}

.dp-cats-page .dp-article-card:hover .dp-article-img {
    transform: scale(1.05);
}

.dp-cats-page .dp-article-img {
    transition: transform 0.5s ease;
    overflow: hidden;
}

/* Stats section animation */
.dp-cats-page .dp-cat-stat {
    transition: transform 0.3s ease;
}

.dp-cats-page .dp-cat-stat:hover {
    transform: translateY(-3px);
}

/* Breadcrumb styling for cats page */
.dp-cats-page .dp-cat-breadcrumb {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.dp-cats-page .dp-cat-breadcrumb::before {
    content: '🐾 ';
    margin-right: 5px;
}

/* Mobile optimizations for cats page */
@media (max-width: 768px) {
    .dp-cats-page .dp-newsletter-box::before {
        display: none;
    }
    
    .dp-cats-page .dp-cat-featured-article {
        border: 1px solid var(--dp-border);
    }
}




/* =========================================
   Pet News & Entertainment Specific Styles
   ========================================= */

/* Trending Bar */
.dp-trending-bar {
    background: var(--dp-dark);
    color: #fff;
    padding: 15px 0;
    border-bottom: 3px solid var(--dp-primary);
}

.dp-trending-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.dp-trending-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dp-primary);
    white-space: nowrap;
}

.dp-trending-items {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.dp-trending-item {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.dp-trending-item:hover {
    color: var(--dp-primary);
}

/* Viral Videos Grid */
.dp-viral-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.dp-viral-card {
    background: var(--dp-bg-white);
    border-radius: var(--dp-radius);
    overflow: hidden;
    box-shadow: var(--dp-shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.dp-viral-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dp-shadow-hover);
}

.dp-viral-img {
    position: relative;
    height: 180px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.dp-viral-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(232, 93, 117, 0.9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.dp-viral-card:hover .dp-viral-play {
    background: var(--dp-primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.dp-viral-views {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.dp-viral-content {
    padding: 20px;
}

.dp-viral-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dp-dark);
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.dp-viral-content p {
    font-size: 14px;
    color: var(--dp-text-light);
    margin: 0;
    line-height: 1.5;
}

/* Breaking News Badge */
.dp-breaking-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #e74c3c;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Article Badge */
.dp-article-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--dp-primary);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

/* News page specific hero */
.dp-news-page .dp-cat-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1601758228041-f3b2795255f1?w=1600&q=80');
}

/* News page intro image */
.dp-news-page .dp-cat-intro-image img {
    border-radius: var(--dp-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* News page topic cards */
.dp-news-page .dp-cat-topic-card {
    position: relative;
    overflow: hidden;
}

.dp-news-page .dp-cat-topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--dp-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.dp-news-page .dp-cat-topic-card:hover::before {
    transform: scaleX(1);
}

/* News page featured article */
.dp-news-page .dp-cat-featured-article {
    position: relative;
}

.dp-news-page .dp-cat-featured-img {
    position: relative;
}

/* Viral section background */
.dp-news-page .dp-cat-tips {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Newsletter section news-themed */
.dp-news-page .dp-cat-newsletter {
    background: linear-gradient(135deg, #fdf0f3 0%, #fff5f7 100%);
}

/* Mobile responsive for viral grid */
@media (max-width: 992px) {
    .dp-viral-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dp-trending-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .dp-trending-items {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .dp-viral-grid {
        grid-template-columns: 1fr;
    }
    
    .dp-trending-item {
        font-size: 13px;
    }
    
    .dp-breaking-badge {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .dp-article-badge {
        font-size: 10px;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .dp-trending-items {
        gap: 15px;
    }
    
    .dp-viral-img {
        height: 150px;
    }
}



/* =========================================
   Pet Gear & Apparel Specific Styles
   ========================================= */

/* Shop by Category Grid */
.dp-gear-categories {
    padding: 80px 0;
    background: var(--dp-bg-white);
}

.dp-gear-cat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.dp-gear-cat-card {
    background: var(--dp-bg-light);
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    padding: 30px 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.dp-gear-cat-card:hover {
    background: var(--dp-bg-white);
    border-color: var(--dp-primary);
    transform: translateY(-5px);
    box-shadow: var(--dp-shadow-hover);
}

.dp-gear-cat-icon {
    font-size: 40px;
    transition: transform 0.3s ease;
}

.dp-gear-cat-card:hover .dp-gear-cat-icon {
    transform: scale(1.15) rotate(-5deg);
}

.dp-gear-cat-card h3 {
    font-size: 15px;
    font-weight: 800;
    color: var(--dp-dark);
    margin: 0;
}

.dp-gear-cat-card span {
    font-size: 12px;
    color: var(--dp-text-light);
    font-weight: 600;
}

/* Featured Product Card */
.dp-gear-featured {
    padding: 80px 0;
    background: var(--dp-bg-light);
}

.dp-gear-featured-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--dp-bg-white);
    border-radius: var(--dp-radius);
    overflow: hidden;
    box-shadow: var(--dp-shadow-hover);
    border: 2px solid var(--dp-border);
}

.dp-gear-featured-img {
    position: relative;
    min-height: 450px;
    background-size: cover;
    background-position: center;
}

.dp-gear-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--dp-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(232, 93, 117, 0.4);
}

.dp-gear-featured-content {
    padding: 50px;
}

.dp-gear-featured-content h3 {
    font-family: var(--dp-font-serif);
    font-size: 32px;
    font-weight: 800;
    color: var(--dp-dark);
    margin: 10px 0 15px 0;
    line-height: 1.2;
}

.dp-gear-featured-content p {
    font-size: 15px;
    color: var(--dp-text-light);
    margin: 15px 0 20px 0;
    line-height: 1.7;
}

/* Star Ratings */
.dp-gear-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 15px 0;
}

.dp-stars {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 2px;
}

.dp-rating-text,
.dp-rating-count {
    font-size: 13px;
    color: var(--dp-text-light);
    font-weight: 600;
}

/* Features List */
.dp-gear-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.dp-gear-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--dp-text);
    font-weight: 500;
}

.dp-gear-features li::before {
    color: var(--dp-primary);
    margin-right: 8px;
}

/* Price Row */
.dp-gear-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.dp-gear-price {
    font-family: var(--dp-font-serif);
    font-size: 32px;
    font-weight: 900;
    color: var(--dp-primary);
    line-height: 1;
}

.dp-gear-price-original {
    font-size: 18px;
    color: var(--dp-text-light);
    text-decoration: line-through;
}

.dp-gear-discount {
    background: #e74c3c;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Best Sellers Grid */
.dp-gear-bestsellers {
    padding: 80px 0;
    background: var(--dp-bg-white);
}

.dp-gear-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.dp-gear-product {
    background: var(--dp-bg-white);
    border: 1px solid var(--dp-border);
    border-radius: var(--dp-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.dp-gear-product:hover {
    transform: translateY(-5px);
    box-shadow: var(--dp-shadow-hover);
    border-color: var(--dp-primary);
}

.dp-gear-product-img {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #f5f5f5;
}

.dp-gear-product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--dp-dark);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dp-gear-product-badge.new {
    background: #27ae60;
}

.dp-gear-product-badge.sale {
    background: #e74c3c;
}

.dp-gear-product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dp-gear-product-cat {
    font-size: 11px;
    color: var(--dp-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.dp-gear-product-content h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--dp-dark);
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.dp-gear-product-content .dp-gear-price-row {
    margin: 12px 0;
}

.dp-gear-product-content .dp-gear-price {
    font-size: 22px;
}

.dp-gear-product-content .dp-gear-price-original {
    font-size: 14px;
}

.dp-gear-shop-btn {
    display: block;
    text-align: center;
    background: var(--dp-dark);
    color: #fff;
    padding: 10px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin-top: auto;
}

.dp-gear-shop-btn:hover {
    background: var(--dp-primary);
    transform: translateY(-2px);
}

/* Gift Guides */
.dp-gear-gifts {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf0f3 0%, #fff5f7 100%);
}

.dp-gear-gifts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dp-gear-gift-card {
    position: relative;
    height: 300px;
    border-radius: var(--dp-radius);
    overflow: hidden;
    text-decoration: none;
    display: block;
    transition: transform 0.3s ease;
}

.dp-gear-gift-card:hover {
    transform: scale(1.02);
}

.dp-gear-gift-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.dp-gear-gift-card:hover .dp-gear-gift-img {
    transform: scale(1.08);
}

.dp-gear-gift-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    z-index: 2;
}

.dp-gear-gift-tag {
    display: inline-block;
    background: var(--dp-primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.dp-gear-gift-content h3 {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.dp-gear-gift-content span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Shopping Tips */
.dp-gear-tips {
    padding: 80px 0;
    background: var(--dp-bg-white);
}

.dp-gear-tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.dp-gear-tip {
    background: var(--dp-bg-light);
    border-radius: var(--dp-radius);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.dp-gear-tip:hover {
    background: var(--dp-bg-white);
    border-color: var(--dp-primary);
    transform: translateY(-5px);
    box-shadow: var(--dp-shadow);
}

.dp-gear-tip-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.dp-gear-tip h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--dp-dark);
    margin: 0 0 10px 0;
}

.dp-gear-tip p {
    font-size: 14px;
    color: var(--dp-text-light);
    margin: 0;
    line-height: 1.6;
}

/* Gear Page Newsletter */
.dp-gear-page .dp-cat-newsletter {
    background: linear-gradient(135deg, #fdf0f3 0%, #ffffff 100%);
}

/* Article cards gear-specific */
.dp-gear-page .dp-article-card:hover {
    border-color: var(--dp-primary);
}

/* =========================================
   Responsive Design for Gear Page
   ========================================= */
@media (max-width: 992px) {
    .dp-gear-cat-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .dp-gear-featured-card {
        grid-template-columns: 1fr;
    }
    
    .dp-gear-featured-img {
        min-height: 300px;
    }
    
    .dp-gear-featured-content {
        padding: 35px;
    }
    
    .dp-gear-products-grid,
    .dp-gear-tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dp-gear-gifts-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dp-gear-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dp-gear-featured-content h3 {
        font-size: 24px;
    }
    
    .dp-gear-price {
        font-size: 26px;
    }
    
    .dp-gear-products-grid,
    .dp-gear-tips-grid {
        grid-template-columns: 1fr;
    }
    
    .dp-gear-gift-card {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .dp-gear-cat-grid {
        grid-template-columns: 1fr;
    }
    
    .dp-gear-featured-content {
        padding: 25px;
    }
    
    .dp-gear-featured-content h3 {
        font-size: 20px;
    }
}