/*
Theme Name: Logoland Promotional Products
Theme URI: https://logoland.com
Author: Logoland
Author URI: https://logoland.com
Description: A modern, bright promotional products supplier theme with sliding hero, category showcases, best sellers, and USA 250th Anniversary collection. Designed for distributors and B2B promotional product suppliers.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: logoland
Tags: e-commerce, custom-logo, custom-menu, featured-images, theme-options, woocommerce

Logoland Promotional Products Theme - Your Trusted Source for Branded Merchandise
*/

/* ============================================
   BASE STYLES
   ============================================ */
:root {
    --ll-primary: #2563eb;
    --ll-primary-dark: #1d4ed8;
    --ll-accent: #ef4444;
    --ll-accent-dark: #dc2626;
    --ll-text: #1f2937;
    --ll-text-light: #6b7280;
    --ll-bg-light: #f8f9fc;
    --ll-bg-blue: #f0f5ff;
    --ll-gold: #f59e0b;
    --ll-patriot-blue: #1e3a5f;
    --ll-border: #f3f4f6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--ll-text);
    line-height: 1.6;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--ll-primary);
    color: #fff;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (min-width: 640px) {
    .top-bar { font-size: 0.875rem; }
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

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

@media (min-width: 640px) {
    .site-logo img { height: 85px; }
}

@media (min-width: 768px) {
    .site-logo img { height: 100px; }
}

@media (min-width: 1024px) {
    .site-logo img { height: 110px; }
}

.main-nav {
    display: none;
}

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

.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--ll-primary);
}

.main-nav a.active {
    font-weight: 600;
    border-bottom: 2px solid var(--ll-primary);
    padding-bottom: 2px;
}

.header-actions {
    display: none;
}

@media (min-width: 768px) {
    .header-actions {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
}

.search-box {
    position: relative;
}

.search-box input {
    width: 14rem;
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 9999px;
    font-size: 0.875rem;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.2s;
}

.search-box input:focus {
    border-color: var(--ll-primary);
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.1);
}

.search-box svg {
    position: absolute;
    right: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    width: 16px;
    height: 16px;
}

.header-icon {
    padding: 0.5rem;
    color: #6b7280;
    transition: color 0.2s;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.header-icon:hover {
    color: var(--ll-primary);
}

.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--ll-accent);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile menu */
.mobile-toggle {
    display: block;
    background: none;
    border: none;
    padding: 0.5rem;
    color: #4b5563;
    cursor: pointer;
}

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

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid #f3f4f6;
    padding: 1rem;
}

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

.mobile-menu a {
    display: block;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
}

.mobile-menu a:hover {
    color: var(--ll-primary);
}

/* ============================================
   HERO CAROUSEL
   ============================================ */
.hero-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: 300px;
}

@media (min-width: 640px) {
    .hero-carousel { height: 360px; }
}

@media (min-width: 768px) {
    .hero-carousel { height: 420px; }
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px);
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 2rem;
}

.hero-overlay-default {
    background: linear-gradient(to bottom, rgba(255,255,255,0.1), rgba(31,41,55,0.35), rgba(31,41,55,0.5));
}

.hero-overlay-patriot {
    background: linear-gradient(to right, rgba(30,58,95,0.85), rgba(30,58,95,0.5), transparent);
}

.hero-headline {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    max-width: 56rem;
}

@media (min-width: 640px) {
    .hero-headline { font-size: 1.875rem; }
}

@media (min-width: 768px) {
    .hero-headline { font-size: 2.25rem; }
}

@media (min-width: 1024px) {
    .hero-headline { font-size: 3rem; }
}

.hero-subtext {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.75rem;
    max-width: 42rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    line-height: 1.6;
}

@media (min-width: 640px) {
    .hero-subtext { font-size: 0.875rem; }
}

@media (min-width: 768px) {
    .hero-subtext { font-size: 1rem; }
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ll-primary);
    color: #fff;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--ll-primary-dark);
    color: #fff;
}

.btn-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ll-accent);
    color: #fff;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: none;
    cursor: pointer;
}

.btn-accent:hover {
    background: var(--ll-accent-dark);
    color: #fff;
}

/* Carousel navigation */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.carousel-arrow:hover {
    background: rgba(255,255,255,0.4);
}

.carousel-arrow.prev { left: 1.25rem; }
.carousel-arrow.next { right: 1.25rem; }

.carousel-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    height: 10px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255,255,255,0.5);
    width: 10px;
}

.carousel-dot.active {
    background: #fff;
    width: 28px;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
    background: #fff;
    border-bottom: 1px solid #f3f4f6;
    padding: 1rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.trust-item svg {
    color: var(--ll-primary);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.trust-item span {
    font-size: 0.75rem;
    font-weight: 500;
    color: #374151;
}

@media (min-width: 640px) {
    .trust-item span { font-size: 0.875rem; }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: 3rem 0;
}

@media (min-width: 640px) {
    .section { padding: 4rem 0; }
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ll-text);
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .section-title { font-size: 1.875rem; }
}

.section-title-center {
    text-align: center;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    text-align: center;
    color: var(--ll-text-light);
    font-size: 0.875rem;
    max-width: 32rem;
    margin: 0 auto 2.5rem;
}

/* ============================================
   FEATURED CATEGORIES
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .categories-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.category-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.2s;
    cursor: pointer;
    display: block;
}

.category-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.category-card-img {
    aspect-ratio: 4/3;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
}

.category-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.5rem;
    transition: transform 0.2s;
}

.category-card:hover .category-card-img img {
    transform: scale(1.02);
}

.category-card-label {
    padding: 0.75rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1f2937;
}

/* ============================================
   USA 250 BANNER
   ============================================ */
.usa250-banner {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.usa250-banner img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

@media (min-width: 640px) {
    .usa250-banner img { height: 280px; }
}

.usa250-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30,58,95,0.85), rgba(30,58,95,0.5), transparent);
    display: flex;
    align-items: center;
    padding: 1.25rem 2rem;
}

@media (min-width: 1024px) {
    .usa250-overlay { padding: 1.25rem 3rem; }
}

.usa250-content {
    max-width: 28rem;
}

.usa250-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.usa250-eyebrow span {
    font-size: 0.6875rem;
    font-weight: 600;
    color: #d4a520;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.usa250-eyebrow svg {
    color: #d4a520;
    fill: #d4a520;
    width: 14px;
    height: 14px;
}

.usa250-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .usa250-title { font-size: 1.5rem; }
}

@media (min-width: 1024px) {
    .usa250-title { font-size: 1.875rem; }
}

.usa250-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.75rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .usa250-text { font-size: 0.875rem; }
}

/* ============================================
   BEST SELLERS / PRODUCTS
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .products-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

.product-card {
    background: #fff;
    border: 1px solid #f3f4f6;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-card-img {
    aspect-ratio: 1;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s;
}

.product-card:hover .product-card-img img {
    transform: scale(1.03);
}

.product-card-info {
    padding: 0.75rem;
    border-top: 1px solid #f9fafb;
}

.product-card-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2rem;
}

@media (min-width: 640px) {
    .product-card-name { font-size: 0.875rem; }
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
}

.btn-add-cart {
    background: var(--ll-primary);
    color: #fff;
    font-size: 0.625rem;
    font-weight: 600;
    padding: 0.375rem 0.625rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

@media (min-width: 640px) {
    .btn-add-cart { font-size: 0.75rem; }
}

.btn-add-cart:hover {
    background: var(--ll-primary-dark);
}

/* ============================================
   CATEGORY SHOWCASE
   ============================================ */
.showcase-section {
    padding: 3rem 0;
}

@media (min-width: 640px) {
    .showcase-section { padding: 4rem 0; }
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .showcase-grid { grid-template-columns: 1fr 1fr; }
}

.showcase-image {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
}

.showcase-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

@media (min-width: 640px) {
    .showcase-image img { height: 300px; }
}

.showcase-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.showcase-icon-badge {
    width: 36px;
    height: 36px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-icon-badge svg {
    color: #fff;
    width: 18px;
    height: 18px;
}

.showcase-icon-badge.blue { background: var(--ll-primary); }
.showcase-icon-badge.red { background: var(--ll-accent); }

.showcase-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ll-text);
}

@media (min-width: 640px) {
    .showcase-title { font-size: 1.5rem; }
}

.showcase-desc {
    color: var(--ll-text-light);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.showcase-products {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.showcase-product-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: #4b5563;
}

.showcase-product-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--ll-primary);
    flex-shrink: 0;
}

.showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ll-primary);
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.showcase-link:hover {
    color: var(--ll-primary-dark);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .why-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.why-card {
    background: #fff;
    padding: 1.25rem;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    transition: box-shadow 0.2s;
}

.why-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.why-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.why-icon svg {
    color: var(--ll-primary);
    width: 20px;
    height: 20px;
}

.why-card h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ll-text);
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .why-card h3 { font-size: 1rem; }
}

.why-card p {
    color: var(--ll-text-light);
    font-size: 0.75rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .why-card p { font-size: 0.875rem; }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

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

.step-card {
    text-align: center;
    position: relative;
}

.step-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--ll-bg-blue);
    border: 2px solid rgba(37, 99, 235, 0.2);
    margin-bottom: 1rem;
    transition: box-shadow 0.2s;
}

.step-card:hover .step-icon {
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.step-icon svg {
    color: var(--ll-primary);
    width: 28px;
    height: 28px;
}

.step-number {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ll-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h3 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ll-text);
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .step-card h3 { font-size: 1rem; }
}

.step-card p {
    color: var(--ll-text-light);
    font-size: 0.75rem;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .step-card p { font-size: 0.875rem; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}

.testimonial-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #f3f4f6;
    transition: box-shadow 0.2s;
}

.testimonial-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.testimonial-quote {
    color: rgba(37, 99, 235, 0.2);
    margin-bottom: 0.75rem;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.75rem;
}

.testimonial-stars svg {
    width: 14px;
    height: 14px;
    color: var(--ll-gold);
    fill: var(--ll-gold);
}

.testimonial-text {
    color: #4b5563;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #f3f4f6;
    padding-top: 0.75rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--ll-text);
    font-size: 0.875rem;
}

.testimonial-role {
    color: #9ca3af;
    font-size: 0.75rem;
    margin-top: 0.125rem;
}

/* ============================================
   CALL TO ACTION
   ============================================ */
.cta-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--ll-primary), #1e40af);
    padding: 2rem;
    text-align: center;
}

@media (min-width: 640px) {
    .cta-card { padding: 3rem; }
}

@media (min-width: 1024px) {
    .cta-card { padding: 4rem; }
}

.cta-card::before,
.cta-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    filter: blur(48px);
}

.cta-card::before {
    top: 0;
    right: 0;
    width: 12rem;
    height: 12rem;
}

.cta-card::after {
    bottom: 0;
    left: 0;
    width: 9rem;
    height: 9rem;
    background: rgba(255,255,255,0.05);
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .cta-title { font-size: 1.875rem; }
}

.cta-text {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 640px) {
    .cta-buttons { flex-direction: row; }
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    font-weight: 600;
    border-radius: 9999px;
    font-size: 0.875rem;
    transition: all 0.2s;
    background: transparent;
    cursor: pointer;
}

.btn-cta-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #fff;
    border-top: 1px solid #f3f4f6;
    padding: 2.5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.footer-heading {
    color: var(--ll-primary);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--ll-text-light);
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--ll-primary);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ll-text-light);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--ll-primary);
    color: #fff;
}

.footer-social a svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    border-top: 1px solid #f3f4f6;
    margin-top: 2rem;
    padding-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-copyright {
    font-size: 0.75rem;
    color: #9ca3af;
}

.footer-logo img {
    height: 36px;
    width: auto;
}

/* ============================================
   UTILITIES
   ============================================ */
.bg-light { background: var(--ll-bg-light); }
.bg-blue-light { background: var(--ll-bg-blue); }
.text-center { text-align: center; }

.hidden-mobile {
    display: none;
}

@media (min-width: 640px) {
    .hidden-mobile { display: inline; }
}

.hidden-desktop {
    display: inline;
}

@media (min-width: 1024px) {
    .hidden-desktop { display: none; }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* WordPress specific resets */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.entry-content {
    max-width: 65ch;
    margin: 0 auto;
}

/* Ensure WordPress admin bar doesn't break sticky header */
.admin-bar .site-header {
    top: 32px;
}

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