/*
Theme Name: Connected Caregiver
Theme URI: https://myconnectedcaregiver.com
Author: Connected Caregiver
Author URI: https://myconnectedcaregiver.com
Description: Custom theme for My Connected Caregiver - Family caregiving, simplified. A modern, responsive theme featuring medical alert systems, remote health monitoring, and caregiver coordination tools.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: connected-caregiver
Tags: healthcare, caregiving, responsive, custom-menu, featured-images, threaded-comments
*/

/* ==========================================================================
   CSS VARIABLES - Brand Colors & Typography
   ========================================================================== */
:root {
    /* Primary Colors */
    --cc-yellow: #F2C500;
    --cc-yellow-dark: #D4AC00;
    --cc-teal: #7EBEC5;
    --cc-teal-dark: #5BA8B0;
    --cc-green: #59AD77;
    --cc-green-dark: #489963;

    /* Neutral Colors */
    --cc-dark: #333333;
    --cc-gray: #666666;
    --cc-light-gray: #F5F5F5;
    --cc-white: #FFFFFF;
    --cc-border: #E0E0E0;

    /* Alert Colors */
    --cc-red: #E74C3C;
    --cc-orange: #F39C12;

    /* Typography */
    --font-primary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);

    /* Container */
    --container-width: 1200px;
    --container-padding: 20px;
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--cc-dark);
    background-color: var(--cc-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--cc-teal-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--cc-green);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    color: var(--cc-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: var(--spacing-sm);
}

/* ==========================================================================
   LAYOUT - Container & Grid
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.container-wide {
    max-width: 1400px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col {
    padding: 0 15px;
    flex: 1;
}

.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-4 { flex: 0 0 33.333%; max-width: 33.333%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    background-color: var(--cc-yellow);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.site-logo {
    display: flex;
    align-items: center;
}

.site-logo img {
    height: 50px;
    width: auto;
}

.site-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cc-dark);
    margin-left: 10px;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--cc-dark);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--cc-green-dark);
}

/* Dropdown Menu */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--cc-white);
    min-width: 220px;
    padding: 10px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.nav-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu a {
    padding: 10px 20px;
    font-weight: 500;
}

.nav-menu .sub-menu a:hover {
    background-color: var(--cc-light-gray);
}

/* Header Phone & Cart */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    color: var(--cc-dark);
    font-weight: 700;
    font-size: 1rem;
}

.header-phone svg {
    margin-right: 8px;
}

.header-cart {
    position: relative;
}

.header-cart a {
    display: flex;
    align-items: center;
    color: var(--cc-dark);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--cc-green);
    color: var(--cc-white);
    font-size: 0.75rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--cc-dark);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    background: linear-gradient(135deg, var(--cc-light-gray) 0%, var(--cc-white) 100%);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.hero-text {
    flex: 1;
}

.hero-tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cc-teal-dark);
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cc-dark);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.hero-title span {
    color: var(--cc-green);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--cc-gray);
    margin-bottom: var(--spacing-md);
    max-width: 500px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: var(--radius-lg);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--cc-green);
    color: var(--cc-white);
}

.btn-primary:hover {
    background-color: var(--cc-green-dark);
    color: var(--cc-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--cc-teal);
    color: var(--cc-white);
}

.btn-secondary:hover {
    background-color: var(--cc-teal-dark);
    color: var(--cc-white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--cc-green);
    color: var(--cc-green);
}

.btn-outline:hover {
    background-color: var(--cc-green);
    color: var(--cc-white);
}

.btn-yellow {
    background-color: var(--cc-yellow);
    color: var(--cc-dark);
}

.btn-yellow:hover {
    background-color: var(--cc-yellow-dark);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 18px 42px;
    font-size: 1.125rem;
}

/* ==========================================================================
   SECTIONS - Common Styles
   ========================================================================== */
.section {
    padding: var(--spacing-xl) 0;
}

.section-light {
    background-color: var(--cc-light-gray);
}

.section-teal {
    background-color: var(--cc-teal);
    color: var(--cc-white);
}

.section-yellow {
    background-color: var(--cc-yellow);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.25rem;
    color: var(--cc-dark);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--cc-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.feature-card {
    background: var(--cc-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--cc-teal) 0%, var(--cc-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
}

.feature-icon svg,
.feature-icon img {
    width: 40px;
    height: 40px;
    color: var(--cc-white);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.feature-description {
    color: var(--cc-gray);
    font-size: 0.95rem;
}

/* ==========================================================================
   PRODUCTS / SERVICES SECTION
   ========================================================================== */
.product-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) 0;
}

.product-section:nth-child(even) {
    flex-direction: row-reverse;
}

.product-content,
.product-image {
    flex: 1;
}

.product-badge {
    display: inline-block;
    background: var(--cc-teal);
    color: var(--cc-white);
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.product-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.product-description {
    color: var(--cc-gray);
    margin-bottom: var(--spacing-md);
}

.product-features {
    margin-bottom: var(--spacing-md);
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--cc-dark);
}

.product-features li::before {
    content: "";
    width: 20px;
    height: 20px;
    background: var(--cc-green);
    border-radius: 50%;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

.product-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.pricing-card {
    background: var(--cc-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 3px solid var(--cc-green);
}

.pricing-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--cc-green);
    color: var(--cc-white);
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
}

.pricing-header {
    background: linear-gradient(135deg, var(--cc-teal) 0%, var(--cc-teal-dark) 100%);
    color: var(--cc-white);
    padding: var(--spacing-md);
    text-align: center;
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, var(--cc-green) 0%, var(--cc-green-dark) 100%);
}

.pricing-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
}

.pricing-body {
    padding: var(--spacing-md);
}

.pricing-features {
    margin-bottom: var(--spacing-md);
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--cc-border);
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: "";
    width: 18px;
    height: 18px;
    background: var(--cc-green);
    border-radius: 50%;
    margin-right: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.pricing-features li.unavailable::before {
    background: var(--cc-border);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23999'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z'/%3E%3C/svg%3E");
}

.pricing-features li.unavailable {
    color: var(--cc-gray);
    opacity: 0.6;
}

.pricing-footer {
    padding: 0 var(--spacing-md) var(--spacing-md);
    text-align: center;
}

.pricing-footer .btn {
    width: 100%;
}

/* ==========================================================================
   APP DOWNLOAD SECTION
   ========================================================================== */
.app-section {
    background: linear-gradient(135deg, var(--cc-dark) 0%, #1a1a1a 100%);
    color: var(--cc-white);
    padding: var(--spacing-xl) 0;
}

.app-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.app-text {
    flex: 1;
}

.app-title {
    color: var(--cc-white);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

.app-title span {
    color: var(--cc-yellow);
}

.app-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.app-badges {
    display: flex;
    gap: var(--spacing-sm);
}

.app-badge {
    height: 50px;
    transition: transform 0.3s ease;
}

.app-badge:hover {
    transform: scale(1.05);
}

.app-mockup {
    flex: 1;
    text-align: center;
}

.app-mockup img {
    max-width: 300px;
    margin: 0 auto;
}

/* ==========================================================================
   TESTIMONIALS / MEDIA SECTION
   ========================================================================== */
.media-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
}

.media-logo {
    opacity: 0.6;
    transition: opacity 0.3s ease;
    max-height: 50px;
}

.media-logo:hover {
    opacity: 1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--cc-dark);
    color: var(--cc-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

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

.footer-logo {
    height: 40px;
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cc-white);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--cc-yellow);
    color: var(--cc-dark);
}

.footer-column h4 {
    color: var(--cc-white);
    font-size: 1.125rem;
    margin-bottom: var(--spacing-md);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--cc-yellow);
}

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

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-md);
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--cc-yellow);
}

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--cc-dark);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-primary);
    font-size: 1rem;
    border: 2px solid var(--cc-border);
    border-radius: var(--radius-md);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--cc-teal);
    box-shadow: 0 0 0 3px rgba(126, 190, 197, 0.2);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ==========================================================================
   CARDS - General
   ========================================================================== */
.card {
    background: var(--cc-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: var(--spacing-md);
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.card-text {
    color: var(--cc-gray);
}

/* ==========================================================================
   SHOP / WOOCOMMERCE STYLES
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.product-card {
    background: var(--cc-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-card-image {
    position: relative;
    padding-top: 100%;
    background: var(--cc-light-gray);
}

.product-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-body {
    padding: var(--spacing-md);
    text-align: center;
}

.product-card-title {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
}

.product-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cc-green);
    margin-bottom: var(--spacing-sm);
}

.product-card-price del {
    color: var(--cc-gray);
    font-weight: 400;
    font-size: 1rem;
}

.product-rating {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: var(--spacing-sm);
}

.star {
    color: var(--cc-yellow);
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-section {
    display: flex;
    gap: var(--spacing-lg);
}

.contact-form-wrapper {
    flex: 2;
}

.contact-info {
    flex: 1;
    background: var(--cc-light-gray);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--cc-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-sm);
    flex-shrink: 0;
}

.contact-info-icon svg {
    color: var(--cc-white);
    width: 24px;
    height: 24px;
}

.contact-info-text h4 {
    margin-bottom: 5px;
}

.contact-info-text p {
    color: var(--cc-gray);
    margin: 0;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-hero {
    background: linear-gradient(135deg, var(--cc-teal) 0%, var(--cc-green) 100%);
    color: var(--cc-white);
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.about-hero h1 {
    color: var(--cc-white);
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.about-story {
    padding: var(--spacing-xl) 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--cc-gray);
    margin-bottom: var(--spacing-md);
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.value-card {
    text-align: center;
    padding: var(--spacing-md);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--cc-light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.py-1 { padding-top: var(--spacing-sm); padding-bottom: var(--spacing-sm); }
.py-2 { padding-top: var(--spacing-md); padding-bottom: var(--spacing-md); }
.py-3 { padding-top: var(--spacing-lg); padding-bottom: var(--spacing-lg); }
.py-4 { padding-top: var(--spacing-xl); padding-bottom: var(--spacing-xl); }

.hidden { display: none; }
.visible { display: block; }

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */
@media (max-width: 1024px) {
    .features-grid,
    .pricing-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .hero-content,
    .product-section,
    .product-section:nth-child(even),
    .app-content,
    .contact-section {
        flex-direction: column;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--cc-white);
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .header-phone {
        display: none;
    }

    .features-grid,
    .pricing-grid,
    .products-grid,
    .about-values {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }

    .app-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* ==========================================================================
   WORDPRESS SPECIFIC
   ========================================================================== */
.alignleft {
    float: left;
    margin-right: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.alignright {
    float: right;
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.aligncenter {
    display: block;
    margin: 0 auto var(--spacing-md);
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--cc-gray);
    text-align: center;
    padding-top: var(--spacing-xs);
}

/* Screen reader text */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

/* Sticky post */
.sticky {
    border-left: 4px solid var(--cc-yellow);
}

/* Gallery */
.gallery {
    display: grid;
    grid-gap: var(--spacing-sm);
}

.gallery-columns-2 { grid-template-columns: repeat(2, 1fr); }
.gallery-columns-3 { grid-template-columns: repeat(3, 1fr); }
.gallery-columns-4 { grid-template-columns: repeat(4, 1fr); }

/* Comments */
.comment-list {
    list-style: none;
}

.comment {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--cc-border);
}

.comment-author {
    font-weight: 700;
}

.comment-meta {
    font-size: 0.875rem;
    color: var(--cc-gray);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-lg);
}

.pagination a,
.pagination span {
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid var(--cc-border);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination .current {
    background: var(--cc-green);
    color: var(--cc-white);
    border-color: var(--cc-green);
}
