/*
Theme Name: Loove Dove Pro - Enhanced
Theme URI: https://loovedove.com
Author: Loove Dove Team
Author URI: https://loovedove.com
Description: A beautiful, modern WordPress theme for love messages, quotes, and wishes. Enhanced with perfect mobile responsiveness and extensive customization options.
Version: 2.1
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: loovedove
Tags: love, romantic, blog, quotes, messages, gradient, animations, mobile-friendly, responsive
*/

/* ============================================
   TABLE OF CONTENTS
   ============================================
   1. CSS Variables (Colors, Fonts)
   2. Google Fonts Import
   3. Reset & Base Styles
   4. Utility Classes
   5. Animations
   6. Header & Navigation
   7. Hero Section
   8. Categories Section
   9. Blog Posts Grid
   10. Quote Section
   11. Testimonials
   12. Newsletter
   13. Footer
   14. Floating Buttons
   15. Responsive Design
   16. WordPress Specific
   ============================================ */

/* ============================================
   1. CSS VARIABLES - CUSTOMIZE COLORS HERE
   ============================================ */
:root {
    /* PRIMARY COLORS - Change these to match your brand */
    --ld-pink: #ff69b4;
    --ld-purple: #9370db;
    --ld-dark-purple: #4b0082;
    --ld-light-pink: #fff0f5;
    --ld-lavender: #e6e6fa;
    
    /* TEXT COLORS */
    --ld-text-dark: #1a1a2e;
    --ld-text-medium: #4a4a5a;
    --ld-text-light: #7a7a8a;
    --ld-white: #ffffff;
    
    /* GRADIENTS */
    --ld-gradient-primary: linear-gradient(135deg, var(--ld-pink), var(--ld-purple));
    --ld-gradient-soft: linear-gradient(135deg, var(--ld-light-pink), var(--ld-lavender));
    --ld-gradient-dark: linear-gradient(135deg, var(--ld-dark-purple), #6b21a8);
    
    /* SHADOWS */
    --ld-shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --ld-shadow-card: 0 10px 40px rgba(0, 0, 0, 0.1);
    --ld-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --ld-shadow-glow: 0 0 40px rgba(255, 105, 180, 0.3);
    
    /* SPACING */
    --ld-section-padding: 80px;
    --ld-container-max: 1280px;
    
    /* BORDER RADIUS */
    --ld-radius-sm: 8px;
    --ld-radius-md: 16px;
    --ld-radius-lg: 24px;
    --ld-radius-xl: 32px;
    --ld-radius-full: 9999px;
    
    /* TRANSITIONS */
    --ld-transition-fast: 0.2s ease;
    --ld-transition-normal: 0.3s ease;
    --ld-transition-slow: 0.5s ease;
}

/* ============================================
   2. GOOGLE FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================
   3. RESET & BASE STYLES
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--ld-text-dark);
    line-height: 1.6;
    background-color: var(--ld-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ld-text-dark);
}

.font-script {
    font-family: 'Great Vibes', cursive;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--ld-transition-normal);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* ============================================
   4. UTILITY CLASSES
   ============================================ */

/* Container */
.ld-container {
    max-width: var(--ld-container-max);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .ld-container {
        padding: 0 40px;
    }
}

/* Gradient Text */
.ld-text-gradient {
    background: var(--ld-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient Background */
.ld-bg-gradient {
    background: var(--ld-gradient-primary);
}

.ld-bg-gradient-soft {
    background: var(--ld-gradient-soft);
}

.ld-bg-gradient-dark {
    background: var(--ld-gradient-dark);
}

/* Glass Effect */
.ld-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Section Padding */
.ld-section {
    padding: var(--ld-section-padding) 0;
}

/* Flex Utilities */
.ld-flex {
    display: flex;
}

.ld-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ld-flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Grid */
.ld-grid {
    display: grid;
}

.ld-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ld-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

/* ============================================
   5. ANIMATIONS
   ============================================ */
@keyframes ld-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes ld-pulse-heart {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes ld-fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes ld-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes ld-gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.ld-animate-float {
    animation: ld-float 6s ease-in-out infinite;
}

.ld-animate-pulse {
    animation: ld-pulse-heart 2s ease-in-out infinite;
}

.ld-animate-fade-up {
    animation: ld-fade-in-up 0.6s ease-out forwards;
}

/* Animation Delays */
.ld-delay-1 { animation-delay: 0.1s; }
.ld-delay-2 { animation-delay: 0.2s; }
.ld-delay-3 { animation-delay: 0.3s; }
.ld-delay-4 { animation-delay: 0.4s; }

/* ============================================
   6. HEADER & NAVIGATION
   ============================================ */
.ld-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--ld-transition-normal);
}

.ld-header.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--ld-shadow-soft);
}

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

/* Logo */
.ld-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ld-logo-icon {
    width: 40px;
    height: 40px;
    position: relative;
}

.ld-logo-icon svg {
    width: 100%;
    height: 100%;
}

.ld-logo-text {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: var(--ld-pink);
}

/* Navigation */
.ld-nav {
    display: none;
}

@media (min-width: 1024px) {
    .ld-nav {
        display: flex;
        align-items: center;
        gap: 8px;
    }
}

.ld-nav-link {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ld-text-medium);
    border-radius: var(--ld-radius-full);
    position: relative;
    overflow: hidden;
}

.ld-nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--ld-gradient-primary);
    border-radius: 2px;
    transition: var(--ld-transition-normal);
}

.ld-nav-link:hover {
    color: var(--ld-pink);
}

.ld-nav-link:hover::after {
    width: 60%;
}

/* CTA Button */
.ld-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--ld-gradient-primary);
    color: var(--ld-white);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--ld-radius-full);
    transition: var(--ld-transition-normal);
    box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.ld-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--ld-shadow-glow);
}

/* Mobile Menu Toggle */
.ld-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
}

.ld-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ld-text-dark);
    transition: var(--ld-transition-normal);
}

@media (min-width: 1024px) {
    .ld-menu-toggle {
        display: none;
    }
}

/* Mobile Menu */
.ld-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ld-white);
    z-index: 999;
    padding: 100px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.ld-mobile-menu.active {
    transform: translateX(0);
}

.ld-mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--ld-light-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--ld-text-dark);
}

.ld-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ld-mobile-nav a {
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 500;
    color: var(--ld-text-dark);
    border-radius: var(--ld-radius-md);
    transition: var(--ld-transition-normal);
}

.ld-mobile-nav a:hover {
    background: var(--ld-light-pink);
    color: var(--ld-pink);
}

/* ============================================
   7. HERO SECTION
   ============================================ */
.ld-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: linear-gradient(135deg, rgba(255, 105, 180, 0.05), rgba(147, 112, 219, 0.05));
}

/* Background Decorations */
.ld-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ld-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.ld-hero-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--ld-pink);
    top: -100px;
    left: -100px;
    animation: ld-float 8s ease-in-out infinite;
}

.ld-hero-orb-2 {
    width: 400px;
    height: 400px;
    background: var(--ld-purple);
    bottom: -50px;
    right: -50px;
    animation: ld-float 10s ease-in-out infinite reverse;
}

.ld-hero-orb-3 {
    width: 600px;
    height: 600px;
    background: var(--ld-gradient-primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    animation: ld-pulse-heart 4s ease-in-out infinite;
}

/* Floating Hearts */
.ld-floating-heart {
    position: absolute;
    color: var(--ld-pink);
    opacity: 0.3;
    animation: ld-float 6s ease-in-out infinite;
}

.ld-floating-heart-1 {
    top: 15%;
    left: 10%;
    font-size: 32px;
    animation-delay: 0s;
}

.ld-floating-heart-2 {
    top: 25%;
    right: 15%;
    font-size: 24px;
    animation-delay: 1s;
}

.ld-floating-heart-3 {
    bottom: 30%;
    left: 15%;
    font-size: 40px;
    animation-delay: 2s;
}

/* Hero Content */
.ld-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Badge */
.ld-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--ld-white);
    border-radius: var(--ld-radius-full);
    box-shadow: var(--ld-shadow-soft);
    font-size: 14px;
    color: var(--ld-text-medium);
    margin-bottom: 30px;
}

.ld-badge svg {
    width: 16px;
    height: 16px;
    color: var(--ld-pink);
}

/* Hero Title */
.ld-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 24px;
}

.ld-hero-title span {
    display: inline;
}

/* Hero Description */
.ld-hero-desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--ld-text-medium);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Hero Buttons */
.ld-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.ld-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: transparent;
    color: var(--ld-pink);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--ld-radius-full);
    border: 2px solid var(--ld-pink);
    transition: var(--ld-transition-normal);
}

.ld-btn-secondary:hover {
    background: var(--ld-pink);
    color: var(--ld-white);
}

/* Hero Stats */
.ld-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
}

.ld-stat {
    text-align: center;
}

.ld-stat-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--ld-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ld-stat-label {
    font-size: 12px;
    color: var(--ld-text-light);
    margin-top: 4px;
}

/* Wave Separator */
.ld-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.ld-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* ============================================
   8. CATEGORIES SECTION
   ============================================ */
.ld-categories {
    background: var(--ld-white);
    position: relative;
}

.ld-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.ld-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--ld-gradient-soft);
    border-radius: var(--ld-radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--ld-purple);
    margin-bottom: 16px;
}

.ld-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.ld-section-desc {
    color: var(--ld-text-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Category Cards */
.ld-category-card {
    background: var(--ld-white);
    border-radius: var(--ld-radius-lg);
    padding: 32px;
    box-shadow: var(--ld-shadow-soft);
    transition: var(--ld-transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ld-category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ld-gradient-primary);
    opacity: 0;
    transition: var(--ld-transition-normal);
}

.ld-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ld-shadow-hover);
}

.ld-category-card:hover::before {
    opacity: 0.03;
}

.ld-category-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--ld-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.ld-category-icon.pink {
    background: rgba(255, 105, 180, 0.1);
    color: var(--ld-pink);
}

.ld-category-icon.purple {
    background: rgba(147, 112, 219, 0.1);
    color: var(--ld-purple);
}

.ld-category-icon.rose {
    background: rgba(244, 63, 94, 0.1);
    color: #f43f5e;
}

.ld-category-icon.violet {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.ld-category-icon svg {
    width: 28px;
    height: 28px;
}

.ld-category-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.ld-category-card:hover .ld-category-title {
    color: var(--ld-pink);
}

.ld-category-desc {
    font-size: 14px;
    color: var(--ld-text-light);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.ld-category-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.ld-category-count {
    font-size: 12px;
    color: var(--ld-text-light);
}

.ld-category-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--ld-transition-normal);
}

.ld-category-card:hover .ld-category-arrow {
    background: var(--ld-pink);
    color: var(--ld-white);
}

/* ============================================
   9. BLOG POSTS GRID
   ============================================ */
.ld-blog {
    background: linear-gradient(to bottom, var(--ld-white), rgba(255, 105, 180, 0.03));
}

.ld-blog-header {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
}

.ld-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .ld-blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Blog Card */
.ld-blog-card {
    background: var(--ld-white);
    border-radius: var(--ld-radius-lg);
    overflow: hidden;
    box-shadow: var(--ld-shadow-soft);
    transition: var(--ld-transition-normal);
}

.ld-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ld-shadow-hover);
}

.ld-blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.ld-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ld-blog-card:hover .ld-blog-image img {
    transform: scale(1.1);
}

.ld-blog-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--ld-white);
    border-radius: var(--ld-radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ld-pink);
}

.ld-blog-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: var(--ld-transition-normal);
}

.ld-blog-card:hover .ld-blog-actions {
    opacity: 1;
}

.ld-blog-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ld-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ld-text-medium);
    transition: var(--ld-transition-fast);
}

.ld-blog-action-btn:hover {
    background: var(--ld-pink);
    color: var(--ld-white);
}

.ld-blog-action-btn.active {
    background: var(--ld-pink);
    color: var(--ld-white);
}

.ld-blog-content {
    padding: 24px;
}

.ld-blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--ld-text-light);
}

.ld-blog-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.ld-blog-meta svg {
    width: 14px;
    height: 14px;
}

.ld-blog-title {
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ld-blog-card:hover .ld-blog-title {
    color: var(--ld-pink);
}

.ld-blog-excerpt {
    font-size: 14px;
    color: var(--ld-text-medium);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 20px;
}

.ld-blog-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.ld-blog-likes {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--ld-text-light);
    background: none;
    transition: var(--ld-transition-fast);
}

.ld-blog-likes:hover,
.ld-blog-likes.active {
    color: var(--ld-pink);
}

.ld-blog-likes svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.ld-blog-likes:hover svg,
.ld-blog-likes.active svg {
    transform: scale(1.2);
}

.ld-read-more {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ld-pink);
}

.ld-read-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.ld-read-more:hover svg {
    transform: translateX(4px);
}

/* Load More Button */
.ld-load-more {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   10. QUOTE SECTION
   ============================================ */
.ld-quote {
    background: var(--ld-gradient-dark);
    color: var(--ld-white);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

/* Particle Canvas */
#ld-particles-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Quote Decorations */
.ld-quote-decoration {
    position: absolute;
    font-family: 'Playfair Display', serif;
    font-size: 300px;
    opacity: 0.05;
    line-height: 1;
}

.ld-quote-decoration-left {
    top: -50px;
    left: 50px;
}

.ld-quote-decoration-right {
    bottom: -100px;
    right: 50px;
    transform: rotate(180deg);
}

.ld-quote-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.ld-quote-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--ld-radius-full);
    font-size: 14px;
    margin-bottom: 40px;
}

.ld-quote-label svg {
    width: 16px;
    height: 16px;
    animation: ld-pulse-heart 2s ease-in-out infinite;
}

.ld-quote-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.5;
    margin-bottom: 30px;
}

.ld-quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.ld-quote-line {
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.ld-quote-author-name {
    font-size: 1.125rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
}

.ld-quote-category {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--ld-radius-full);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.ld-quote-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.ld-btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--ld-white);
    font-size: 14px;
    border-radius: var(--ld-radius-full);
    transition: var(--ld-transition-normal);
}

.ld-btn-quote:hover {
    background: var(--ld-pink);
    border-color: var(--ld-pink);
}

.ld-btn-quote-primary {
    background: var(--ld-gradient-primary);
    border: none;
}

.ld-btn-quote-primary:hover {
    box-shadow: 0 4px 20px rgba(255, 105, 180, 0.4);
}

/* ============================================
   11. TESTIMONIALS SECTION
   ============================================ */
.ld-testimonials {
    background: linear-gradient(to bottom, rgba(255, 105, 180, 0.03), var(--ld-white));
}

.ld-testimonial-card {
    background: var(--ld-white);
    border-radius: var(--ld-radius-xl);
    padding: 50px;
    box-shadow: var(--ld-shadow-card);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.ld-testimonial-quote-icon {
    position: absolute;
    top: -25px;
    left: 40px;
    width: 50px;
    height: 50px;
    background: var(--ld-gradient-primary);
    border-radius: var(--ld-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--ld-shadow-glow);
}

.ld-testimonial-quote-icon svg {
    width: 24px;
    height: 24px;
    color: var(--ld-white);
}

.ld-testimonial-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
}

@media (max-width: 768px) {
    .ld-testimonial-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ld-testimonial-card {
        padding: 30px;
    }
}

.ld-testimonial-avatar {
    text-align: center;
}

.ld-testimonial-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--ld-light-pink);
    margin: 0 auto 16px;
}

.ld-testimonial-rating {
    display: flex;
    gap: 4px;
    justify-content: center;
    margin-bottom: 12px;
}

.ld-testimonial-rating svg {
    width: 18px;
    height: 18px;
    color: #fbbf24;
    fill: #fbbf24;
}

.ld-testimonial-name {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.ld-testimonial-role {
    font-size: 14px;
    color: var(--ld-text-light);
}

.ld-testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--ld-text-medium);
    margin-bottom: 30px;
}

.ld-testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ld-testimonial-dots {
    display: flex;
    gap: 8px;
}

.ld-testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transition: var(--ld-transition-normal);
}

.ld-testimonial-dot.active {
    width: 30px;
    border-radius: 5px;
    background: var(--ld-gradient-primary);
}

.ld-testimonial-arrows {
    display: flex;
    gap: 10px;
}

.ld-testimonial-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 105, 180, 0.3);
    background: var(--ld-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ld-pink);
    transition: var(--ld-transition-normal);
}

.ld-testimonial-arrow:hover {
    background: var(--ld-pink);
    border-color: var(--ld-pink);
    color: var(--ld-white);
}

/* Stats Grid */
.ld-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .ld-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ld-stat-box {
    background: var(--ld-white);
    border-radius: var(--ld-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: var(--ld-shadow-soft);
    transition: var(--ld-transition-normal);
}

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

.ld-stat-box-value {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--ld-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.ld-stat-box-label {
    font-size: 14px;
    color: var(--ld-text-light);
}

/* ============================================
   12. NEWSLETTER SECTION
   ============================================ */
.ld-newsletter {
    background: var(--ld-white);
}

.ld-newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .ld-newsletter-inner {
        grid-template-columns: 1fr;
    }
    
    .ld-newsletter-image {
        display: none;
    }
}

.ld-newsletter-image {
    position: relative;
}

.ld-newsletter-image img {
    border-radius: var(--ld-radius-xl);
    box-shadow: var(--ld-shadow-card);
}

.ld-newsletter-float-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--ld-white);
    border-radius: var(--ld-radius-lg);
    padding: 20px;
    box-shadow: var(--ld-shadow-card);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: ld-float 6s ease-in-out infinite;
}

.ld-newsletter-float-icon {
    width: 50px;
    height: 50px;
    background: var(--ld-gradient-primary);
    border-radius: var(--ld-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ld-newsletter-float-icon svg {
    width: 24px;
    height: 24px;
    color: var(--ld-white);
    fill: currentColor;
}

.ld-newsletter-float-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--ld-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ld-newsletter-float-label {
    font-size: 13px;
    color: var(--ld-text-light);
}

.ld-newsletter-content {
    padding: 20px 0;
}

.ld-newsletter-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 16px;
    line-height: 1.3;
}

.ld-newsletter-title .emoji {
    display: inline-block;
    animation: ld-bounce-soft 2s ease-in-out infinite;
}

@keyframes ld-bounce-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.ld-newsletter-desc {
    color: var(--ld-text-medium);
    margin-bottom: 30px;
    line-height: 1.7;
}

.ld-newsletter-benefits {
    margin-bottom: 30px;
}

.ld-newsletter-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--ld-text-medium);
}

.ld-newsletter-benefit-icon {
    width: 32px;
    height: 32px;
    background: var(--ld-light-pink);
    border-radius: var(--ld-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ld-newsletter-benefit-icon svg {
    width: 16px;
    height: 16px;
    color: var(--ld-pink);
}

.ld-newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ld-newsletter-input-wrapper {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.ld-newsletter-input-wrapper svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--ld-text-light);
}

.ld-newsletter-input {
    width: 100%;
    padding: 16px 20px 16px 48px;
    border: 2px solid rgba(255, 105, 180, 0.2);
    border-radius: var(--ld-radius-full);
    font-size: 15px;
    outline: none;
    transition: var(--ld-transition-normal);
}

.ld-newsletter-input:focus {
    border-color: var(--ld-pink);
    box-shadow: 0 0 0 4px rgba(255, 105, 180, 0.1);
}

.ld-newsletter-note {
    font-size: 12px;
    color: var(--ld-text-light);
    margin-top: 12px;
    margin-left: 16px;
}

/* ============================================
   13. FOOTER
   ============================================ */
.ld-footer {
    background: var(--ld-gradient-dark);
    color: var(--ld-white);
    position: relative;
    overflow: hidden;
}

.ld-footer-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.ld-footer-decoration-1 {
    width: 500px;
    height: 500px;
    background: var(--ld-pink);
    top: -200px;
    left: -200px;
}

.ld-footer-decoration-2 {
    width: 400px;
    height: 400px;
    background: var(--ld-purple);
    bottom: -150px;
    right: -150px;
}

.ld-footer-inner {
    position: relative;
    z-index: 1;
    padding: 80px 0 40px;
}

.ld-footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .ld-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

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

.ld-footer-brand {
    max-width: 300px;
}

.ld-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.ld-footer-logo svg {
    width: 32px;
    height: 32px;
    color: var(--ld-pink);
    fill: currentColor;
}

.ld-footer-logo-text {
    font-family: 'Great Vibes', cursive;
    font-size: 2rem;
    color: var(--ld-white);
}

.ld-footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.ld-footer-contact {
    margin-bottom: 24px;
}

.ld-footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    transition: var(--ld-transition-normal);
}

.ld-footer-contact-item:hover {
    color: var(--ld-pink);
}

.ld-footer-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.ld-footer-social {
    display: flex;
    gap: 12px;
}

.ld-footer-social-link {
    width: 42px;
    height: 42px;
    border-radius: var(--ld-radius-sm);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--ld-transition-normal);
}

.ld-footer-social-link:hover {
    background: var(--ld-pink);
    color: var(--ld-white);
    transform: translateY(-3px);
}

.ld-footer-social-link svg {
    width: 20px;
    height: 20px;
}

.ld-footer-column h4 {
    font-size: 1.125rem;
    margin-bottom: 24px;
    color: var(--ld-white);
}

.ld-footer-links {
    list-style: none;
}

.ld-footer-links li {
    margin-bottom: 12px;
}

.ld-footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--ld-transition-normal);
}

.ld-footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--ld-pink);
    transition: var(--ld-transition-normal);
}

.ld-footer-links a:hover {
    color: var(--ld-pink);
}

.ld-footer-links a:hover::before {
    width: 12px;
}

.ld-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.ld-footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.ld-footer-copyright svg {
    width: 14px;
    height: 14px;
    color: var(--ld-pink);
    fill: currentColor;
    display: inline;
    vertical-align: middle;
    animation: ld-pulse-heart 1.5s ease-in-out infinite;
}

.ld-footer-legal {
    display: flex;
    gap: 24px;
}

.ld-footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--ld-transition-normal);
}

.ld-footer-legal a:hover {
    color: var(--ld-pink);
}

/* ============================================
   14. FLOATING BUTTONS
   ============================================ */
.ld-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--ld-gradient-primary);
    color: var(--ld-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--ld-shadow-glow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--ld-transition-normal);
    z-index: 999;
}

.ld-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ld-scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 105, 180, 0.5);
}

.ld-scroll-top svg {
    width: 20px;
    height: 20px;
}

/* Quick Message Button */
.ld-quick-message {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.ld-quick-message-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--ld-gradient-primary);
    color: var(--ld-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--ld-shadow-glow);
    transition: var(--ld-transition-normal);
    animation: ld-pulse-heart 3s ease-in-out infinite;
}

.ld-quick-message-btn:hover {
    transform: scale(1.1);
}

.ld-quick-message-btn svg {
    width: 24px;
    height: 24px;
}

.ld-quick-message-panel {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 300px;
    background: var(--ld-white);
    border-radius: var(--ld-radius-lg);
    box-shadow: var(--ld-shadow-hover);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--ld-transition-normal);
}

.ld-quick-message-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ld-quick-message-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ld-quick-message-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ld-text-dark);
}

.ld-quick-message-title svg {
    width: 16px;
    height: 16px;
    color: var(--ld-pink);
}

.ld-quick-message-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--ld-text-medium);
    transition: var(--ld-transition-fast);
}

.ld-quick-message-close:hover {
    background: var(--ld-pink);
    color: var(--ld-white);
}

.ld-quick-message-list {
    max-height: 250px;
    overflow-y: auto;
}

.ld-quick-message-item {
    width: 100%;
    text-align: left;
    padding: 12px;
    background: var(--ld-light-pink);
    border-radius: var(--ld-radius-md);
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--ld-text-medium);
    transition: var(--ld-transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ld-quick-message-item:hover {
    background: rgba(255, 105, 180, 0.15);
}

.ld-quick-message-item svg {
    width: 14px;
    height: 14px;
    color: var(--ld-pink);
    flex-shrink: 0;
}

.ld-quick-message-random {
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    background: var(--ld-gradient-primary);
    color: var(--ld-white);
    border-radius: var(--ld-radius-md);
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--ld-transition-normal);
}

.ld-quick-message-random:hover {
    box-shadow: var(--ld-shadow-glow);
}

.ld-quick-message-random svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   15. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .ld-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --ld-section-padding: 60px;
    }
    
    .ld-hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ld-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .ld-btn-primary,
    .ld-btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .ld-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .ld-testimonial-nav {
        flex-direction: column;
        gap: 20px;
    }
    
    .ld-newsletter-form {
        flex-direction: column;
    }
    
    .ld-newsletter-input-wrapper {
        min-width: 100%;
    }
    
    .ld-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .ld-footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .ld-container {
        padding: 0 16px;
    }
    
    .ld-category-card,
    .ld-blog-card,
    .ld-testimonial-card {
        padding: 20px;
    }
    
    .ld-scroll-top,
    .ld-quick-message {
        bottom: 20px;
    }
    
    .ld-scroll-top {
        right: 20px;
    }
    
    .ld-quick-message {
        left: 20px;
    }
}

/* ============================================
   16. WORDPRESS SPECIFIC STYLES
   ============================================ */

/* Admin Bar Fix */
body.admin-bar .ld-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .ld-header {
        top: 46px;
    }
}

/* WordPress Alignments */
.alignleft {
    float: left;
    margin-right: 20px;
}

.alignright {
    float: right;
    margin-left: 20px;
}

.aligncenter {
    display: block;
    margin: 0 auto;
}

/* WordPress Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.gallery-item {
    margin: 0;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Comments */
.comments-area {
    margin-top: 60px;
}

.comment-list {
    list-style: none;
}

.comment {
    padding: 24px;
    background: var(--ld-white);
    border-radius: var(--ld-radius-lg);
    margin-bottom: 20px;
    box-shadow: var(--ld-shadow-soft);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 50px;
}

.page-numbers {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ld-radius-full);
    background: var(--ld-white);
    color: var(--ld-text-medium);
    font-weight: 500;
    box-shadow: var(--ld-shadow-soft);
    transition: var(--ld-transition-normal);
}

.page-numbers:hover,
.page-numbers.current {
    background: var(--ld-gradient-primary);
    color: var(--ld-white);
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    font-size: 14px;
    color: var(--ld-text-light);
}

.breadcrumbs a:hover {
    color: var(--ld-pink);
}

.breadcrumbs .separator {
    margin: 0 8px;
}

/* Screen Reader Text */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Clearfix */
.clearfix::after {
    content: '';
    display: table;
    clear: both;
}
