/* Pro Derma Ecosystem - Luxury Frontend Styles */
/* Version: 2.1.0 */

:root {
    --pd-primary-teal: #0cb8b6;
    --pd-primary-green: #6ebe44;
    --pd-primary-dark: #1a2e35;
    --pd-primary-white: #ffffff;
    --pd-primary-gold: #D4AF37;
    --pd-accent-gold: rgba(212, 175, 55, 0.1);
    
    --pd-gradient-primary: linear-gradient(135deg, #0cb8b6, #6ebe44);
    --pd-gradient-dark: linear-gradient(135deg, #1a2e35, #2c4a5a);
    --pd-gradient-gold: linear-gradient(135deg, #D4AF37, #F9D976);
    
    --pd-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --pd-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --pd-shadow-lg: 0 20px 60px rgba(12, 184, 182, 0.1);
    
    --pd-border-radius: 30px;
    --pd-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.proderma-ecosystem, 
.proderma-ecosystem * {
    box-sizing: border-box;
}

.proderma-ecosystem {
    font-family: 'Outfit', 'Inter', sans-serif;
    color: var(--pd-primary-dark);
    line-height: 1.6;
    max-width: 100%;
    overflow-x: hidden;
}

.pd-luxury-font {
    font-family: 'Playfair Display', serif !important;
}

.proderma-rtl {
    direction: rtl;
    text-align: right;
}

/* Common Components */
.pd-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--pd-transition);
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.pd-btn-primary {
    background: var(--pd-gradient-primary);
    color: white;
    box-shadow: 0 10px 25px rgba(12, 184, 182, 0.25);
}

.pd-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(12, 184, 182, 0.35);
}

.pd-btn-gold {
    background: var(--pd-gradient-gold);
    color: var(--pd-primary-dark);
}

/* Luxury Card */
.pd-card {
    background: white;
    border-radius: var(--pd-border-radius);
    padding: 40px;
    box-shadow: var(--pd-shadow-lg);
    border: 1px solid rgba(12, 184, 182, 0.05);
}

/* Section Header */
.pd-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pd-section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 800;
}

.pd-section-header p {
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* RTL Support */
.proderma-rtl .pd-btn .dashicons {
    transform: rotate(180deg);
}