/* Base Styles - Global reset and containers */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    background: var(--white);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.75rem;
}

section {
    padding: 5rem 0;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-highlight {
    color: var(--violet-600);
}

.text-gradient {
    background: linear-gradient(135deg, var(--blue-600), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Common Button Styles */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--blue-600);
    color: #ffffff !important;
}

.btn-primary:hover {
    background: var(--blue-700);
    transform: translateY(-2px);
}

/* CTA Button */
.cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--violet-500), var(--violet-600));
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(16, 137, 242, 0.3);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 137, 242, 0.4);
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.badge-green {
    background: var(--green-100);
    color: var(--green-500);
}

.badge-orange {
    background: var(--orange-100);
    color: var(--orange-500);
}
/* ==========================================================================
   Interactive target floor — WCAG 2.1 AA (2.5.5 Target Size)
   Appended 2026-08-30.

   Guarantees every control is finger-sized regardless of what utility classes
   a template happens to apply. It only ever raises a target, never shrinks one,
   so it is safe on top of any existing button styling.

   Scoped away from admin bar and WooCommerce quantity spinners, which are
   layout-sensitive and already sized by their own CSS.
   ========================================================================== */

button,
.btn,
a[role="button"],
input[type="submit"],
input[type="button"],
input[type="reset"] {
    min-height: 48px;
    min-width: 48px;
}

/* Inline links inside prose must not become 48px blocks. */
p button,
li button,
p .btn,
li .btn {
    min-height: 0;
    min-width: 0;
}

#wpadminbar button,
#wpadminbar .btn,
.quantity input,
.quantity button {
    min-height: 0;
    min-width: 0;
}
