/*
Theme Name: District Salon Suites Child
Theme URI: https://www.districtsalonsuites.com
Description: Divi Child Theme for The District Salon Suites - Yorkville, IL
Author: Your Name
Author URI: https://yourwebsite.com
Template: Divi
Version: 2.0.0
*/

/* ==========================================================================
   DIVI 5 CSS CUSTOM PROPERTIES (DESIGN VARIABLES)
   
   These CSS variables integrate with Divi 5's Design Variable Manager.
   Define them in Divi > Theme Options > Custom CSS wrapped in :root
   OR manage them through the Visual Builder's Variable Manager.
   
   Divi 5 supports:
   - CSS variables in any field with the new unit picker
   - clamp(), calc(), min(), max() functions
   - All CSS units including vw, vh, rem, em, ch
   ========================================================================== */

:root {
    /* ===== BRAND COLORS =====
       These can be imported into Divi 5's Color Variables for global control */
    --dss-cream: #F8F5F0;
    --dss-warm-white: #FDFCFA;
    --dss-charcoal: #2C2C2C;
    --dss-soft-black: #1A1A1A;
    --dss-taupe: #A69586;
    --dss-sage: #9BAB97;
    --dss-blush: #E8DDD4;
    --dss-gold: #C9A86C;
    
    /* ===== TYPOGRAPHY SCALE =====
       Import these into Divi 5's Number Variables for fluid typography */
    --dss-text-h1: clamp(3rem, 7vw, 5.5rem);
    --dss-text-h2: clamp(2.25rem, 5vw, 3.5rem);
    --dss-text-h3: clamp(1.5rem, 3vw, 2rem);
    --dss-text-h4: clamp(1.25rem, 2vw, 1.5rem);
    --dss-text-body: 1rem;
    --dss-text-small: 0.875rem;
    --dss-text-tag: 0.7rem;
    
    /* ===== SPACING SYSTEM =====
       Use with Divi 5's Number Variables for consistent spacing */
    --dss-space-xs: 0.5rem;
    --dss-space-sm: 1rem;
    --dss-space-md: 1.5rem;
    --dss-space-lg: 2.5rem;
    --dss-space-xl: 4rem;
    --dss-space-section: clamp(5rem, 12vw, 10rem);
    
    /* ===== LAYOUT =====  */
    --dss-container-max: 1400px;
    --dss-container-padding: clamp(1.5rem, 5vw, 4rem);
    
    /* ===== BORDERS & RADIUS ===== */
    --dss-radius-sm: 0;
    --dss-radius-md: 0;
    --dss-radius-lg: 0;
    --dss-radius-round: 50%;
    
    /* ===== SHADOWS ===== */
    --dss-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --dss-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --dss-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    
    /* ===== TRANSITIONS ===== */
    --dss-transition-fast: 0.2s ease;
    --dss-transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --dss-transition-slow: 0.6s ease;
    
    /* ===== FONTS =====
       Import into Divi 5's Font Variables */
    --dss-font-display: 'Cormorant Garamond', Georgia, serif;
    --dss-font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ==========================================================================
   GLOBAL BASE STYLES
   Divi 5 uses cleaner DOM output - these styles integrate seamlessly
   ========================================================================== */

body,
body.et-tb,
body.et-tb-has-header,
body.divi-5 {
    font-family: var(--dss-font-body);
    background-color: var(--dss-warm-white);
    color: var(--dss-charcoal);
    font-weight: 300;
    line-height: 1.7;
    font-size: var(--dss-text-body);
}

/* ==========================================================================
   TYPOGRAPHY - Divi 5 Compatible
   Works with Divi 5's new rendering engine and Design Variables
   ========================================================================== */

h1, h2, h3, h4, h5, h6,
.et_pb_module_header,
[class*="divi5"] h1,
[class*="divi5"] h2,
[class*="divi5"] h3 {
    font-family: var(--dss-font-display);
    font-weight: 300;
    line-height: 1.2;
    color: var(--dss-soft-black);
}

h1 { font-size: var(--dss-text-h1); line-height: 1.1; }
h2 { font-size: var(--dss-text-h2); }
h3 { font-size: var(--dss-text-h3); }
h4 { font-size: var(--dss-text-h4); }

/* Italic emphasis for headings */
h1 em, h2 em, h3 em, h4 em,
.dss-text-accent {
    font-style: italic;
    color: var(--dss-taupe);
}

p {
    font-family: var(--dss-font-body);
    font-weight: 300;
    line-height: 1.7;
    color: var(--dss-charcoal);
}

a {
    color: var(--dss-charcoal);
    transition: color var(--dss-transition-fast);
}

a:hover {
    color: var(--dss-gold);
}

/* ==========================================================================
   HEADER & NAVIGATION - Divi 5 Compatible
   Divi 5 has improved header rendering and faster fixed header transitions
   ========================================================================== */

#main-header,
.et-l--header,
[class*="header-style"] {
    background: transparent !important;
    box-shadow: none;
    padding: var(--dss-space-md) 0;
    transition: all var(--dss-transition-smooth);
}

/* Fixed/Scrolled Header State */
.et-fixed-header#main-header,
.dss-header-scrolled,
[data-fixed-header="on"] #main-header {
    background: rgba(253, 252, 250, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding: var(--dss-space-sm) 0;
}

/* Logo */
#logo {
    max-height: 60px;
    transition: all var(--dss-transition-smooth);
}

.et-fixed-header #logo {
    max-height: 50px;
}

/* Navigation Links - Works with Divi 5 Menu Module */
#top-menu li a,
.et_mobile_menu li a,
[class*="menu-module"] a {
    font-family: var(--dss-font-body);
    font-size: var(--dss-text-tag);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dss-charcoal);
    padding: var(--dss-space-xs) 0;
    position: relative;
}

#top-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--dss-gold);
    transition: width 0.3s var(--dss-transition-smooth);
}

#top-menu li a:hover::after,
#top-menu li.current-menu-item a::after {
    width: 100%;
}

/* Mobile Menu - Divi 5 Enhanced */
.et_mobile_menu {
    background: var(--dss-warm-white);
    border: none;
    box-shadow: var(--dss-shadow-lg);
}

.et_mobile_menu li a {
    font-family: var(--dss-font-display);
    font-size: 1.25rem;
    padding: var(--dss-space-sm) var(--dss-space-md);
    border-bottom: 1px solid var(--dss-cream);
}

/* ==========================================================================
   BUTTONS - Divi 5 Preset Compatible
   Create these as Element Presets in Divi 5 for reusable button styles
   ========================================================================== */

.et_pb_button,
.et_pb_contact_submit,
.et_pb_newsletter_button,
button[type="submit"],
.dss-btn {
    font-family: var(--dss-font-body) !important;
    font-size: var(--dss-text-tag) !important;
    font-weight: 600 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    padding: var(--dss-space-sm) var(--dss-space-lg) !important;
    border-radius: var(--dss-radius-sm) !important;
    transition: all var(--dss-transition-smooth) !important;
}

/* Primary Button - Dark */
.et_pb_button,
.dss-btn-primary {
    background: var(--dss-soft-black) !important;
    color: var(--dss-warm-white) !important;
    border: none !important;
}

.et_pb_button:hover,
.dss-btn-primary:hover {
    background: var(--dss-charcoal) !important;
    transform: translateY(-2px);
    box-shadow: var(--dss-shadow-md);
}

/* Secondary Button - Outline */
.dss-btn-secondary,
.et_pb_button.et_pb_bg_layout_light {
    background: transparent !important;
    color: var(--dss-soft-black) !important;
    border: 1px solid var(--dss-charcoal) !important;
}

.dss-btn-secondary:hover,
.et_pb_button.et_pb_bg_layout_light:hover {
    background: var(--dss-soft-black) !important;
    color: var(--dss-warm-white) !important;
}

/* Gold CTA Button */
.dss-btn-gold {
    background: var(--dss-gold) !important;
    color: var(--dss-soft-black) !important;
}

.dss-btn-gold:hover {
    background: var(--dss-warm-white) !important;
    box-shadow: var(--dss-shadow-md);
}

/* Button Arrow */
.et_pb_button::after {
    font-size: 14px !important;
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.et_pb_button:hover::after {
    transform: translateX(4px);
}

/* ==========================================================================
   SECTION BACKGROUNDS - Divi 5 Option Group Presets
   Use these classes or create as Option Group Presets for backgrounds
   ========================================================================== */

.dss-bg-cream,
.et_pb_section.dss-bg-cream {
    background-color: var(--dss-cream) !important;
}

.dss-bg-white,
.et_pb_section.dss-bg-white {
    background-color: var(--dss-warm-white) !important;
}

.dss-bg-dark,
.et_pb_section.dss-bg-dark {
    background-color: var(--dss-soft-black) !important;
}

.dss-bg-dark h1,
.dss-bg-dark h2,
.dss-bg-dark h3,
.dss-bg-dark h4,
.dss-bg-dark p,
.dss-bg-dark {
    color: var(--dss-warm-white);
}

.dss-bg-dark h2 em,
.dss-bg-dark .dss-text-accent {
    color: var(--dss-gold);
}

.dss-bg-blush {
    background-color: var(--dss-blush) !important;
}

/* ==========================================================================
   HERO SECTION - Divi 5 Compatible with Interactions
   Divi 5 supports no-code interactions - add scroll/hover triggers in builder
   ========================================================================== */

.dss-hero,
.et_pb_fullwidth_header.dss-hero,
.et_pb_section.dss-hero {
    background: linear-gradient(135deg, var(--dss-cream) 0%, var(--dss-blush) 50%, var(--dss-cream) 100%) !important;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
    position: relative;
    overflow: hidden;
}

/* Animated background elements - use CSS animations or Divi 5 Interactions */
.dss-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(201, 168, 108, 0.08) 0%, transparent 70%);
    animation: dss-float 20s ease-in-out infinite;
    pointer-events: none;
}

.dss-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(155, 171, 151, 0.06) 0%, transparent 70%);
    animation: dss-float 25s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes dss-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(5deg); }
}

/* Hero Tag/Subtitle */
.dss-hero-tag {
    font-size: var(--dss-text-tag) !important;
    font-weight: 500 !important;
    letter-spacing: 0.3em !important;
    text-transform: uppercase !important;
    color: var(--dss-taupe) !important;
    display: inline-flex;
    align-items: center;
    gap: var(--dss-space-sm);
}

.dss-hero-tag::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--dss-gold);
}

/* ==========================================================================
   SECTION TAG & TITLES - Divi 5 Preset Ready
   Create as Text/Heading Element Presets in Divi 5
   ========================================================================== */

.dss-section-tag {
    font-size: var(--dss-text-tag);
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--dss-taupe);
    margin-bottom: var(--dss-space-sm);
    display: block;
}

.dss-section-title {
    font-family: var(--dss-font-display);
    font-size: var(--dss-text-h2);
    font-weight: 300;
    line-height: 1.2;
    color: var(--dss-soft-black);
    margin-bottom: var(--dss-space-md);
}

/* ==========================================================================
   SERVICE CARDS - Divi 5 Blurb Element Preset
   Create this styling as a Blurb Element Preset with nested Option Groups
   ========================================================================== */

.dss-service-card,
.et_pb_blurb.dss-service-card {
    background: var(--dss-warm-white);
    padding: var(--dss-space-lg) !important;
    transition: all var(--dss-transition-smooth);
    position: relative;
    overflow: hidden;
}

.dss-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--dss-gold), var(--dss-sage));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dss-transition-smooth);
}

.dss-service-card:hover::before {
    transform: scaleX(1);
}

.dss-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--dss-shadow-lg);
}

/* Service Card Icon Container */
.dss-service-card .et_pb_main_blurb_image,
.dss-service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: var(--dss-space-md);
    background: var(--dss-cream);
    border-radius: var(--dss-radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dss-service-card .et_pb_main_blurb_image .et-pb-icon,
.dss-service-icon .et-pb-icon {
    font-size: 28px;
    color: var(--dss-taupe);
}

/* Service Card Title */
.dss-service-card .et_pb_module_header {
    font-family: var(--dss-font-display);
    font-size: var(--dss-text-h4);
    font-weight: 400;
    margin-bottom: 0.75rem;
    color: var(--dss-soft-black);
}

/* Service Card Description */
.dss-service-card .et_pb_blurb_description {
    font-size: var(--dss-text-small);
    color: var(--dss-charcoal);
    opacity: 0.8;
}

/* ==========================================================================
   TENANT/PROFESSIONAL CARDS - Divi 5 Text Module Preset
   ========================================================================== */

.dss-tenant-card {
    background: var(--dss-cream);
    padding: var(--dss-space-lg);
    transition: all var(--dss-transition-smooth);
}

.dss-tenant-card:hover {
    background: var(--dss-blush);
}

.dss-tenant-suite {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dss-gold);
    margin-bottom: 0.75rem;
    display: block;
}

.dss-tenant-name {
    font-family: var(--dss-font-display);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--dss-soft-black);
    margin-bottom: var(--dss-space-xs);
}

.dss-tenant-specialty {
    font-size: var(--dss-text-small);
    color: var(--dss-taupe);
    margin-bottom: var(--dss-space-sm);
}

.dss-tenant-desc {
    font-size: var(--dss-text-small);
    color: var(--dss-charcoal);
    opacity: 0.8;
    line-height: 1.6;
}

/* ==========================================================================
   FEATURE ITEMS - Divi 5 Blurb/Icon List Option Group
   ========================================================================== */

.dss-feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--dss-space-sm);
}

.dss-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--dss-cream);
    border-radius: var(--dss-radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dss-feature-icon .et-pb-icon {
    font-size: 18px;
    color: var(--dss-gold);
}

.dss-feature-title {
    font-size: var(--dss-text-small);
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--dss-soft-black);
}

.dss-feature-desc {
    font-size: var(--dss-text-small);
    opacity: 0.7;
    margin: 0;
}

/* ==========================================================================
   IMAGE STYLING - Works with Divi 5 Image Module
   ========================================================================== */

.dss-image-frame {
    position: relative;
}

.dss-image-frame::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--dss-gold);
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

.dss-image-offset {
    transform: translateY(2rem);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.dss-cta-section {
    position: relative;
    overflow: hidden;
}

.dss-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(201, 168, 108, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.dss-cta-info-item {
    padding-left: var(--dss-space-md);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.dss-cta-info-label {
    font-size: var(--dss-text-tag);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dss-gold);
    margin-bottom: var(--dss-space-xs);
    display: block;
}

.dss-cta-info-value {
    font-family: var(--dss-font-display);
    font-size: 1.25rem;
    color: var(--dss-warm-white);
}

.dss-cta-info-value a {
    color: var(--dss-warm-white);
    text-decoration: none;
}

.dss-cta-info-value a:hover {
    color: var(--dss-gold);
}

/* ==========================================================================
   FOOTER - Divi 5 Theme Builder Compatible
   ========================================================================== */

#main-footer,
.et-l--footer,
footer[class*="footer"] {
    background: var(--dss-charcoal) !important;
}

#footer-widgets .footer-widget {
    color: rgba(255, 255, 255, 0.6);
}

#footer-widgets h4.fwidget-title,
.footer-widget-title {
    font-size: var(--dss-text-tag);
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dss-warm-white);
    margin-bottom: var(--dss-space-md);
}

#footer-widgets .footer-widget li {
    margin-bottom: 0.75rem;
}

#footer-widgets .footer-widget a {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--dss-text-small);
    transition: color var(--dss-transition-fast);
}

#footer-widgets .footer-widget a:hover {
    color: var(--dss-gold);
}

#footer-bottom {
    background: var(--dss-charcoal) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#footer-info {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* Social Icons */
.dss-social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--dss-radius-round);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--dss-transition-fast);
    margin-right: var(--dss-space-xs);
}

.dss-social-link:hover {
    background: var(--dss-gold);
}

.dss-social-link .et-pb-icon {
    color: var(--dss-warm-white);
    font-size: 18px;
}

/* ==========================================================================
   FORMS - Divi 5 Contact Form Module
   ========================================================================== */

.et_pb_contact_form input,
.et_pb_contact_form textarea,
.et_pb_newsletter_form input,
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    font-family: var(--dss-font-body);
    background: var(--dss-cream) !important;
    border: none !important;
    padding: var(--dss-space-sm) 1.25rem !important;
    font-size: var(--dss-text-small);
    color: var(--dss-charcoal);
    transition: all var(--dss-transition-fast);
}

.et_pb_contact_form input:focus,
.et_pb_contact_form textarea:focus,
input:focus,
textarea:focus {
    background: var(--dss-warm-white) !important;
    box-shadow: 0 0 0 2px var(--dss-gold);
    outline: none;
}

input::placeholder,
textarea::placeholder {
    color: var(--dss-taupe);
    opacity: 0.7;
}

/* ==========================================================================
   DIVIDERS & DECORATIVE ELEMENTS
   ========================================================================== */

.dss-divider-gold {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--dss-taupe), transparent);
    opacity: 0.3;
}

/* ==========================================================================
   SCROLL ANIMATIONS - Divi 5 Native Interactions Alternative
   Divi 5 has built-in scroll interactions, but these work as fallback
   ========================================================================== */

.dss-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--dss-transition-slow), transform var(--dss-transition-slow);
}

.dss-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.dss-delay-1 { transition-delay: 0.1s; }
.dss-delay-2 { transition-delay: 0.2s; }
.dss-delay-3 { transition-delay: 0.3s; }
.dss-delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   BADGE/COUNTER ELEMENT
   ========================================================================== */

.dss-badge {
    width: 140px;
    height: 140px;
    background: var(--dss-warm-white);
    border-radius: var(--dss-radius-round);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--dss-shadow-lg);
    position: absolute;
}

.dss-badge-number {
    font-family: var(--dss-font-display);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--dss-gold);
    line-height: 1;
}

.dss-badge-label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dss-charcoal);
}

/* ==========================================================================
   LINK STYLES
   ========================================================================== */

.dss-link-arrow {
    font-size: var(--dss-text-tag);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dss-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--dss-space-xs);
}

.dss-link-arrow::after {
    content: '→';
    transition: transform var(--dss-transition-fast);
}

.dss-link-arrow:hover::after {
    transform: translateX(4px);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.dss-text-center { text-align: center; }
.dss-text-gold { color: var(--dss-gold) !important; }
.dss-text-taupe { color: var(--dss-taupe) !important; }
.dss-text-white { color: var(--dss-warm-white) !important; }

.dss-mt-0 { margin-top: 0 !important; }
.dss-mb-0 { margin-bottom: 0 !important; }
.dss-mb-1 { margin-bottom: var(--dss-space-sm) !important; }
.dss-mb-2 { margin-bottom: var(--dss-space-lg) !important; }

.dss-pt-section { padding-top: var(--dss-space-section) !important; }
.dss-pb-section { padding-bottom: var(--dss-space-section) !important; }
.dss-py-section { 
    padding-top: var(--dss-space-section) !important; 
    padding-bottom: var(--dss-space-section) !important; 
}

/* ==========================================================================
   RESPONSIVE - Using Modern CSS
   Divi 5 has better responsive controls, but these provide baseline
   ========================================================================== */

@media (max-width: 980px) {
    :root {
        --dss-space-section: clamp(4rem, 10vw, 8rem);
    }
    
    .dss-hero {
        min-height: auto;
        padding-top: 100px;
    }
    
    .dss-image-offset {
        transform: none;
    }
    
    .dss-badge {
        width: 100px;
        height: 100px;
    }
    
    .dss-badge-number {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    :root {
        --dss-space-section: 4rem;
    }
    
    .dss-hero-tag::before {
        display: none;
    }
    
    .et_pb_button {
        width: 100%;
        text-align: center;
    }
    
    .dss-feature-item {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   WOOCOMMERCE - Divi 5 Woo Modules Compatible
   Divi 5 Beta includes full WooCommerce module support
   ========================================================================== */

.woocommerce .button,
.woocommerce input.button,
.woocommerce a.button {
    font-family: var(--dss-font-body) !important;
    font-size: var(--dss-text-tag) !important;
    font-weight: 600 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    background: var(--dss-soft-black) !important;
    color: var(--dss-warm-white) !important;
    border-radius: var(--dss-radius-sm) !important;
    padding: var(--dss-space-sm) var(--dss-space-lg) !important;
}

/* ==========================================================================
   DIVI 5 CANVASES SUPPORT
   Divi 5 Beta 5 introduced Canvases for off-canvas menus and popups
   ========================================================================== */

.dss-canvas-menu {
    background: var(--dss-warm-white);
    padding: var(--dss-space-xl);
}

.dss-canvas-menu a {
    font-family: var(--dss-font-display);
    font-size: var(--dss-text-h3);
    color: var(--dss-soft-black);
    display: block;
    padding: var(--dss-space-sm) 0;
    border-bottom: 1px solid var(--dss-cream);
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {
    .dss-hero::before,
    .dss-hero::after,
    .dss-cta-section::before {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}
