/* Best Dresses Australia - Shared Styles */
/* Authority Site Design - High-End Publication Look */

/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
    /* Primary Colors */
    --primary-dark: #1a1a2e;
    --primary-darker: #16213e;
    --primary-darkest: #0f0f1a;

    /* Accent Colors */
    --accent-coral: #e94560;
    --accent-gold: #ffc107;
    --accent-light: #f8f9fa;

    /* Text Colors */
    --text-dark: #2d2d2d;
    --text-medium: #555;
    --text-light: #777;
    --text-muted: #999;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #fafafa;
    --bg-cream: #f8f6f3;

    /* Spacing (increased for high-end look) */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-xxl: 6rem;

    /* Typography */
    --font-heading: 'Georgia', 'Times New Roman', serif;
    --font-body: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);

    /* Max Width */
    --max-width: 1200px;
    --max-width-narrow: 800px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-dark);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-md);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-md);
    color: var(--text-medium);
}

a {
    color: var(--accent-coral);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

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

/* ============================================
   GLOBAL HEADER
   ============================================ */
.site-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    color: white;
    padding: var(--space-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent-coral);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo span {
    color: white;
}

.main-nav {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: var(--space-xs) 0;
    position: relative;
    transition: color 0.3s;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-coral);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--accent-coral);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
}

/* ============================================
   GLOBAL FOOTER
   ============================================ */
.site-footer {
    background: var(--primary-darkest);
    color: white;
    padding: var(--space-xxl) 0 var(--space-lg);
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

.footer-section h4 {
    color: var(--accent-coral);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
}

.footer-section p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--space-xs);
}

.footer-section a {
    color: #aaa;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent-coral);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: var(--space-lg);
    text-align: center;
}

.footer-bottom p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
}

.amazon-disclosure {
    background: var(--primary-dark);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}

.amazon-disclosure p {
    color: #aaa;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.92), rgba(26, 26, 46, 0.95));
    color: white;
    padding: var(--space-xxl) var(--space-lg);
    text-align: center;
}

.hero-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    color: white;
    font-size: 3.25rem;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    line-height: 1.7;
}

.hero-cta {
    display: inline-block;
    background: white;
    color: var(--accent-coral);
    padding: var(--space-md) var(--space-xl);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    color: var(--primary-dark);
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
    padding: var(--space-xxl) var(--space-lg);
}

.section-alt {
    background: var(--bg-light);
}

.section-dark {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    color: white;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
}

.container-narrow {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

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

.section-header h2 {
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--space-lg);
}

.category-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

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

.category-icon {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.cat-maxi { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.cat-cocktail { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.cat-summer { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.cat-evening { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }

.category-card h3 {
    padding: var(--space-md);
    text-align: center;
    font-size: 1.2rem;
    color: var(--primary-dark);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-image {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    position: relative;
}

.product-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    background: var(--accent-coral);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.prod-1 { background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%); }
.prod-2 { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); }
.prod-3 { background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%); }
.prod-4 { background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%); }
.prod-5 { background: linear-gradient(135deg, #fddb92 0%, #d1fdff 100%); }
.prod-6 { background: linear-gradient(135deg, #c1dfc4 0%, #deecdd 100%); }
.prod-7 { background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); }
.prod-8 { background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%); }

.product-info {
    padding: var(--space-md);
}

.product-info h3 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: var(--space-xs);
}

.product-rating {
    color: var(--accent-gold);
    margin-bottom: var(--space-sm);
    font-size: 0.95rem;
}

.product-price {
    font-size: 1.4rem;
    color: var(--accent-coral);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.buy-button {
    display: block;
    background: linear-gradient(135deg, var(--accent-coral) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    padding: 0.9rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s, transform 0.3s;
}

.buy-button:hover {
    opacity: 0.9;
    transform: scale(1.02);
    color: white;
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.feature-card h3 {
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
}

.feature-card p {
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   LATEST GUIDES SECTION
   ============================================ */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.guide-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: block;
}

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

.guide-thumbnail {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #e8e4df 100%);
}

.guide-content {
    padding: var(--space-md);
}

.guide-category {
    display: inline-block;
    color: var(--accent-coral);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.guide-card h3 {
    font-size: 1.15rem;
    color: var(--primary-dark);
    margin-bottom: var(--space-xs);
    line-height: 1.4;
}

.guide-excerpt {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.guide-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ============================================
   BLOG INDEX PAGE
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.blog-card-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, var(--bg-cream) 0%, #e8e4df 100%);
}

.blog-card-content {
    padding: var(--space-lg);
}

.blog-card-category {
    display: inline-block;
    color: var(--accent-coral);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.blog-card h3 {
    font-size: 1.35rem;
    margin-bottom: var(--space-sm);
    line-height: 1.35;
}

.blog-card h3 a {
    color: var(--primary-dark);
    text-decoration: none;
}

.blog-card h3 a:hover {
    color: var(--accent-coral);
}

.blog-card-excerpt {
    color: var(--text-light);
    margin-bottom: var(--space-md);
    line-height: 1.7;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--accent-coral);
    font-weight: 600;
    margin-top: var(--space-md);
}

.read-more:hover {
    color: var(--primary-dark);
}

/* ============================================
   BLOG ARTICLE PAGE
   ============================================ */
.article-header {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.92), rgba(26, 26, 46, 0.95));
    color: white;
    padding: var(--space-xxl) var(--space-lg);
    text-align: center;
}

.article-header-content {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.article-category {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: var(--space-md);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.article-header h1 {
    color: white;
    font-size: 2.75rem;
    margin-bottom: var(--space-md);
    line-height: 1.25;
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.article-content {
    padding: var(--space-xxl) var(--space-lg);
}

.article-body {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.article-body h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid #eee;
}

.article-body h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.article-body h3 {
    margin-top: var(--space-lg);
    color: var(--text-dark);
}

.article-body p {
    margin-bottom: var(--space-md);
    line-height: 1.85;
}

.article-body ul, .article-body ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.article-body li {
    margin-bottom: var(--space-xs);
    line-height: 1.75;
    color: var(--text-medium);
}

/* Info Boxes */
.info-box {
    background: #e8f4fd;
    border-left: 4px solid #2196F3;
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.info-box h4 {
    color: #1976D2;
    margin-bottom: var(--space-xs);
    font-family: var(--font-body);
    font-weight: 600;
}

.info-box p {
    color: #1565C0;
    margin: 0;
    font-size: 0.95rem;
}

/* Tip Boxes */
.tip-box {
    background: #e8f5e9;
    border-left: 4px solid #4CAF50;
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.tip-box h4 {
    color: #2E7D32;
    margin-bottom: var(--space-xs);
    font-family: var(--font-body);
    font-weight: 600;
}

.tip-box p {
    color: #1B5E20;
    margin: 0;
    font-size: 0.95rem;
}

/* Warning Boxes */
.warning-box {
    background: #fff3e0;
    border-left: 4px solid #FF9800;
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.warning-box h4 {
    color: #E65100;
    margin-bottom: var(--space-xs);
    font-family: var(--font-body);
    font-weight: 600;
}

.warning-box p {
    color: #BF360C;
    margin: 0;
    font-size: 0.95rem;
}

/* Key Takeaway Box */
.key-takeaway {
    background: linear-gradient(135deg, #fce4ec 0%, #f3e5f5 100%);
    border: 2px solid var(--accent-coral);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
    border-radius: var(--radius-md);
    text-align: center;
}

.key-takeaway h4 {
    color: var(--accent-coral);
    margin-bottom: var(--space-sm);
    font-size: 1.1rem;
}

.key-takeaway p {
    color: var(--primary-dark);
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Author Bio */
.author-bio {
    background: var(--bg-light);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-top: var(--space-xxl);
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-coral) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.author-info h4 {
    margin-bottom: var(--space-xs);
    font-family: var(--font-heading);
}

.author-title {
    color: var(--accent-coral);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.author-info p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.92), rgba(26, 26, 46, 0.95));
    color: white;
    padding: var(--space-xxl) var(--space-lg);
    text-align: center;
}

.about-content {
    padding: var(--space-xxl) var(--space-lg);
}

.about-section {
    max-width: var(--max-width-narrow);
    margin: 0 auto var(--space-xxl);
}

.about-section:last-child {
    margin-bottom: 0;
}

.about-section h2 {
    margin-bottom: var(--space-lg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.team-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-coral) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto var(--space-md);
}

.team-card h3 {
    margin-bottom: var(--space-xs);
}

.team-role {
    color: var(--accent-coral);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

.team-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-info h2 {
    margin-bottom: var(--space-md);
}

.contact-methods {
    margin-top: var(--space-xl);
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-method h4 {
    margin-bottom: var(--space-xs);
}

.contact-method p {
    margin: 0;
    color: var(--text-light);
}

.contact-form {
    background: var(--bg-light);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.contact-form h3 {
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-coral);
}

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

.submit-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-coral) 0%, var(--primary-dark) 100%);
    color: white;
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
    padding: var(--space-xxl) var(--space-lg);
}

.legal-body {
    max-width: var(--max-width-narrow);
    margin: 0 auto;
}

.legal-body h2 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-body h2:first-child {
    margin-top: 0;
}

.legal-body h3 {
    margin-top: var(--space-lg);
    color: var(--text-dark);
}

.legal-body ul {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

.legal-body li {
    margin-bottom: var(--space-xs);
    color: var(--text-medium);
}

.legal-update {
    background: var(--bg-light);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-xl);
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    color: white;
    padding: var(--space-xl) var(--space-lg);
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: var(--space-xs);
}

.page-header p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    margin: 0;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --space-xxl: 4rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-dark);
        flex-direction: column;
        padding: var(--space-md);
        text-align: center;
        gap: 0;
    }

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

    .main-nav a {
        padding: var(--space-sm);
        display: block;
    }

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

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-meta {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .guides-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    .section {
        padding: var(--space-xl) var(--space-md);
    }

    .header-container {
        padding: 0 var(--space-md);
    }

    .category-grid,
    .product-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }
}
