/* =============================================
   STYLE CSS - Vitrine Independente
   Frontend Publico Completo
   Sem frameworks - CSS puro
   ============================================= */

/* ===== CSS VARIABLES ===== */
:root {
    /* Cores principais */
    --primary: #c7a333;
    --primary-hover: #d4b84a;
    --primary-light: rgba(199, 163, 51, 0.15);
    
    /* Backgrounds */
    --bg-dark: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-surface: #ffffff;
    --bg-surface-hover: #2a2a2a;
    
    /* Borders */
    --border: #2a2a2a;
    --border-light: #333333;
    
    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #e5e5e5;
    --text-muted: #888888;
    --text-dark: #000000;
    
    /* Status */
    --success: #22c55e;
    --success-bg: rgba(34, 197, 94, 0.1);
    --warning: #f59e0b;
    --warning-bg: rgba(245, 158, 11, 0.1);
    --error: #ef4444;
    --error-bg: rgba(239, 68, 68, 0.1);
    --info: #3b82f6;
    --info-bg: rgba(59, 130, 246, 0.1);
    
    /* Spacing */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(199, 163, 51, 0.2);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.2s ease;
    --transition-slow: 0.3s ease;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
    border: 2px solid #1A1A1A;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-hover);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) #1A1A1A;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, select, textarea {
    font-family: inherit;
}

ul, ol {
    list-style: none;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== PUBLIC HEADER ===== */
.public-header {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header-logo {
    max-width: 200px;
    max-height: 60px;
    object-fit: contain;
}

.public-main {
    min-height: calc(100vh - 80px);
}

/* ===== PUBLIC FOOTER ===== */
.public-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.footer-content {
    text-align: center;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-brand {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 0;
}

.footer-brand .powered-by {
    font-size: 0.85em;
    color: var(--text-muted);
    font-weight: 300;
    font-style: italic;
    margin-left: 5px;
}

.footer-dev {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-info {
    font-size: 0.75rem;
    color: #666666;
    margin: 10px 0 0 0;
    padding-top: 10px;
    border-top: 1px solid var(--border);
}

/* ===== VITRINE PAGE ===== */
.vitrine-page {
    background: var(--bg-dark);
}

.vitrine-top-bar {
    background: var(--bg-dark);
    padding: 20px 0;
}

.vitrine-top-bar-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo-link-vitrine {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo-vitrine {
    max-height: 60px;
    object-fit: contain;
}

/* ===== SEARCH AND FILTERS ===== */
.search-filters-container {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    max-width: 600px;
}

.vitrine-search-form {
    flex: 1;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--text-dark);
    border-radius: var(--radius-lg);
    padding: 5px 15px;
}

.search-input {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    font-size: 14px;
    outline: none;
}

.search-input::placeholder {
    color: var(--text-dark);
    opacity: 0.7;
}

.search-submit-btn {
    color: var(--text-dark);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit-btn:hover {
    color: var(--primary);
}

/* Filter Toggle Buttons */
.filter-toggle-btn {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--text-dark);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition);
    white-space: nowrap;
}

.filter-toggle-btn:hover {
    background: var(--primary-hover);
}

.filter-toggle-btn-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary);
    color: var(--text-dark);
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.875rem;
    transition: all var(--transition);
    white-space: nowrap;
}

.filter-toggle-btn-desktop:hover {
    background: var(--primary-hover);
}

.filter-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    background: var(--error);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
}

/* Desktop Filters Panel */
.quick-filters-desktop {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 20px;
    margin-top: 16px;
    position: relative;
}

.close-filters-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface-hover);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    transition: all var(--transition);
}

.close-filters-btn:hover {
    background: var(--error-bg);
    color: var(--error);
}

.filter-section-desktop {
    margin-bottom: 16px;
}

.filter-label-desktop {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.filter-chips-desktop {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip-desktop {
    padding: 8px 16px;
    background: var(--bg-surface-hover);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--transition);
    cursor: pointer;
}

.filter-chip-desktop:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-chip-desktop.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-dark);
}

.btn-clear-filters-desktop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--error-bg);
    color: var(--error);
    border: 1px solid var(--error);
    border-radius: var(--radius-lg);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all var(--transition);
    cursor: pointer;
}

.btn-clear-filters-desktop:hover {
    background: var(--error);
    color: #fff;
}

/* ===== CAROUSEL BANNER ===== */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-xl);
    margin-bottom: 24px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all var(--transition);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary);
    color: var(--text-dark);
}

.carousel-btn.prev {
    left: 16px;
}

.carousel-btn.next {
    right: 16px;
}

.carousel-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition);
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    background: var(--bg-secondary);
    padding: 40px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* Product Card */
.product-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-dark);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--primary);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-full);
}

.product-badge.vip {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
}

.product-badge.sale {
    background: var(--error);
    color: #fff;
}

.product-actions {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.product-card-unified .product-actions {
    position: static;
    opacity: 1;
    transform: none;
}

.product-action-btn {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.product-action-btn:hover {
    background: var(--primary);
    color: var(--text-dark);
}

.product-info {
    padding: 16px;
}

.product-brand {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.product-price-original {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-installments {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.btn-add-cart {
    width: 100%;
    padding: 12px;
    background: var(--primary);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition);
}

.btn-add-cart:hover {
    background: var(--primary-hover);
    box-shadow: var(--shadow-glow);
}

/* ===== SHOWCASES ===== */
.showcase-section {
    padding: 40px 0;
    background: var(--bg-dark);
}

.showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

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

.showcase-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition);
}

.showcase-link:hover {
    gap: 12px;
}

/* Horizontal Scroll Showcase */
.showcase-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.showcase-scroll::-webkit-scrollbar {
    height: 6px;
}

.showcase-scroll::-webkit-scrollbar-track {
    background: var(--border);
    border-radius: var(--radius-full);
}

.showcase-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: var(--radius-full);
}

.showcase-scroll .product-card {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* ===== CART ===== */
.cart-icon {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: all var(--transition);
}

.cart-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: var(--error);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: right var(--transition-slow);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border);
}

.cart-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cart-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface-hover);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    transition: all var(--transition);
}

.cart-close:hover {
    background: var(--error-bg);
    color: var(--error);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 12px;
    padding: 16px;
    background: var(--bg-surface-hover);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px;
}

.cart-item-brand {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    transition: all var(--transition);
}

.qty-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.qty-value {
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.cart-item-remove {
    margin-left: auto;
    color: var(--text-muted);
    transition: color var(--transition);
}

.cart-item-remove:hover {
    color: var(--error);
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cart-total span:last-child {
    color: var(--primary);
}

.btn-checkout {
    width: 100%;
    padding: 14px;
    background: var(--primary);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition);
}

.btn-checkout:hover {
    background: var(--primary-hover);
    box-shadow: var(--shadow-glow);
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.cart-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ===== CHECKOUT PAGES ===== */
.checkout-page {
    min-height: 100vh;
    background: var(--bg-dark);
    padding: 40px 0;
}

.checkout-container {
    max-width: 900px;
    margin: 0 auto;
}

.checkout-header {
    text-align: center;
    margin-bottom: 32px;
}

.checkout-logo {
    max-height: 60px;
    margin-bottom: 16px;
}

.checkout-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.checkout-steps {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.checkout-step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.checkout-step.active {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.checkout-step.completed {
    background: var(--success-bg);
    border-color: var(--success);
    color: var(--success);
}

.checkout-step-number {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: currentColor;
    color: var(--bg-dark);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
}

.checkout-form-section {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px;
}

.checkout-form-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-form-title i {
    color: var(--primary);
}

.checkout-summary {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px;
    position: sticky;
    top: 100px;
}

.summary-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.summary-item-info {
    flex: 1;
}

.summary-item-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.summary-item-qty {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.summary-item-price {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
}

.summary-totals {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.summary-row.total {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.summary-row.total span:last-child {
    color: var(--primary);
}

/* ===== AUTH PAGES ===== */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    padding: 40px 20px;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    max-height: 60px;
    margin-bottom: 20px;
}

.auth-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.auth-footer a {
    color: var(--primary);
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* ===== FORMS (Public) ===== */
.form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all var(--transition);
}

.input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.input::placeholder {
    color: var(--text-muted);
}

.input-error {
    border-color: var(--error);
}

.error-message {
    font-size: 0.8rem;
    color: var(--error);
    margin-top: 4px;
}

/* ===== BUTTONS (Public) ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--primary);
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: var(--shadow-glow);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--bg-surface-hover);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-secondary:hover {
    background: var(--border);
}

.w-full {
    width: 100%;
}

/* ===== ALERTS (Public) ===== */
.alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
}

.alert-success {
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid var(--success);
}

.alert-danger {
    background: var(--error-bg);
    color: var(--error);
    border: 1px solid var(--error);
}

.alert-warning {
    background: var(--warning-bg);
    color: var(--warning);
    border: 1px solid var(--warning);
}

.alert-info {
    background: var(--info-bg);
    color: var(--info);
    border: 1px solid var(--info);
}

.hidden {
    display: none !important;
}

/* ===== PRODUCT PAGE ===== */
.product-page {
    padding: 40px 0;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.product-thumbnails {
    display: flex;
    gap: 12px;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
}

.product-thumbnail:hover,
.product-thumbnail.active {
    border-color: var(--primary);
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-detail-brand {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-detail-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.product-detail-price .current {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.product-detail-price .original {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-detail-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.product-variants {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.variant-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.variant-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.variant-option {
    padding: 10px 20px;
    background: var(--bg-surface-hover);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}

.variant-option:hover {
    border-color: var(--primary);
}

.variant-option.selected {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 16px;
}

.quantity-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 8px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: var(--bg-surface-hover);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.quantity-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.quantity-input {
    width: 60px;
    text-align: center;
    padding: 10px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
}

.product-buy-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-buy-now {
    padding: 16px;
    background: var(--primary);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition);
}

.btn-buy-now:hover {
    background: var(--primary-hover);
    box-shadow: var(--shadow-glow);
}

.btn-add-to-cart {
    padding: 16px;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition);
}

.btn-add-to-cart:hover {
    background: var(--primary-light);
}

/* ===== MOBILE RESPONSIVE ===== */
/* =============================================
   RESPONSIVE DESIGN - Mobile First Approach
   Breakpoints:
   - Extra Small: 0-479px (phones portrait)
   - Small: 480-767px (phones landscape)
   - Medium: 768-1023px (tablets)
   - Large: 1024-1399px (laptops)
   - Extra Large: 1400px+ (desktops)
   ============================================= */

/* ===== EXTRA LARGE SCREENS (1400px+) ===== */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 24px;
    }
    
    .product-card-modern {
        min-height: 420px;
    }
}

/* ===== LARGE SCREENS (1024px - 1399px) ===== */
@media (min-width: 1024px) and (max-width: 1399px) {
    .container {
        max-width: 1200px;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

/* ===== MEDIUM SCREENS - TABLETS (768px - 1023px) ===== */
@media (max-width: 1023px) {
    .container {
        padding: 0 20px;
    }
    
    .vitrine-top-bar-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .search-filters-container {
        flex-direction: column;
        max-width: none;
        width: 100%;
    }
    
    .filter-toggle-btn-desktop {
        display: none;
    }
    
    .filter-toggle-btn {
        display: flex;
        width: 100%;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .checkout-steps {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .cart-sidebar {
        width: 100%;
        max-width: 100%;
    }
    
    .section-title {
        font-size: 1.375rem;
    }
    
    .product-detail-name {
        font-size: 1.5rem;
    }
    
    .product-detail-price .current {
        font-size: 1.5rem;
    }
    
    /* Header adjustments */
    .header-logo-vitrine {
        max-height: 50px;
    }
    
    /* Carousel adjustments */
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-btn.prev {
        left: 12px;
    }
    
    .carousel-btn.next {
        right: 12px;
    }
    
    .checkout-summary {
        position: static;
    }
}

/* ===== SMALL SCREENS - PHONES LANDSCAPE (480px - 767px) ===== */
@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }
    
    /* Header */
    .header-logo-vitrine {
        max-height: 45px;
    }
    
    .header-logo {
        max-width: 150px;
        max-height: 45px;
    }
    
    .public-header {
        padding: 12px 0;
    }
    
    /* Products Grid - 2 columns on phones landscape */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    /* Product Card Mobile */
    .product-card-modern {
        border-radius: var(--radius-lg);
    }
    
    .product-image-modern {
        aspect-ratio: 1;
    }
    
    .product-info-modern {
        padding: 12px;
    }
    
    .product-name-modern {
        font-size: 0.85rem;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .product-brand-modern {
        font-size: 0.7rem;
    }
    
    .product-price-modern {
        font-size: 1rem;
    }
    
    .price-installments {
        font-size: 0.65rem !important;
    }
    
    .product-actions-modern {
        padding: 8px 12px 12px;
        gap: 6px;
    }
    
    .product-actions-modern a {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .product-actions-modern a span {
        display: none;
    }
    
    .product-actions-modern a i {
        margin-right: 0;
    }
    
    /* Sections */
    .section-title {
        font-size: 1.25rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    /* Checkout */
    .checkout-steps {
        gap: 8px;
    }
    
    .checkout-step {
        padding: 10px 14px;
        font-size: 0.75rem;
    }
    
    .checkout-step i {
        display: none;
    }
    
    .checkout-form-section {
        padding: 16px;
    }
    
    .checkout-summary {
        padding: 16px;
    }
    
    /* Cart Sidebar */
    .cart-sidebar {
        width: 100%;
        border-radius: 0;
    }
    
    .cart-header {
        padding: 16px;
    }
    
    .cart-items {
        padding: 12px;
    }
    
    .cart-item {
        padding: 12px 0;
    }
    
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-name {
        font-size: 0.85rem;
    }
    
    .cart-item-price {
        font-size: 0.9rem;
    }
    
    /* Buttons */
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
        width: 100%;
    }
    
    /* Auth */
    .auth-card {
        padding: 24px;
        margin: 16px;
        border-radius: var(--radius-lg);
    }
    
    .auth-title {
        font-size: 1.5rem;
    }
    
    /* Footer */
    .public-footer {
        padding: 24px 0;
    }
    
    .footer-brand {
        font-size: 1rem;
    }
    
    /* Carousel */
    .carousel-container {
        border-radius: var(--radius-lg);
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    
    .carousel-dots {
        bottom: 10px;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

/* ===== EXTRA SMALL SCREENS - PHONES PORTRAIT (0 - 479px) ===== */
@media (max-width: 479px) {
    .container {
        padding: 0 12px;
    }
    
    /* Header */
    .header-logo-vitrine {
        max-height: 40px;
    }
    
    .header-logo {
        max-width: 120px;
        max-height: 40px;
    }
    
    /* Products Grid - 2 columns with tighter spacing */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    /* Product Card Mobile Compact */
    .product-card-modern {
        border-radius: var(--radius-md);
    }
    
    .product-info-modern {
        padding: 10px;
    }
    
    .product-name-modern {
        font-size: 0.8rem;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: auto;
    }
    
    .product-brand-modern {
        font-size: 0.65rem;
        margin-bottom: 4px;
    }
    
    .product-price-modern {
        font-size: 0.95rem;
    }
    
    .price-installments {
        font-size: 0.6rem !important;
        margin-top: 2px !important;
    }
    
    .product-actions-modern {
        padding: 6px 10px 10px;
        gap: 4px;
    }
    
    .product-actions-modern a {
        padding: 8px 10px;
        font-size: 0.7rem;
        border-radius: var(--radius-md);
    }
    
    .btn-view-details {
        flex: 0 0 auto;
        min-width: 36px;
        padding: 8px !important;
    }
    
    .btn-whatsapp-modern {
        flex: 1;
    }
    
    /* Discount badge smaller */
    .product-discount-badge {
        padding: 3px 6px !important;
        font-size: 0.65rem !important;
        top: 6px !important;
        left: 6px !important;
    }
    
    .product-vip-badge-modern {
        padding: 3px 8px;
        font-size: 0.65rem;
    }
    
    .product-images-badge {
        padding: 3px 6px;
        font-size: 0.6rem;
    }
    
    /* Section titles */
    .section-title {
        font-size: 1.125rem;
    }
    
    /* Checkout extremely compact */
    .checkout-steps {
        gap: 4px;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }
    
    .checkout-step {
        padding: 8px 12px;
        font-size: 0.7rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .checkout-form-section {
        padding: 12px;
    }
    
    .checkout-summary {
        padding: 12px;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    /* Auth compact */
    .auth-card {
        padding: 20px;
        margin: 12px;
    }
    
    .auth-title {
        font-size: 1.375rem;
    }
    
    /* Buttons full width on small phones */
    .btn-primary,
    .btn-secondary {
        padding: 12px 16px;
        font-size: 0.875rem;
    }
    
    /* Cart compact */
    .cart-item-image {
        width: 50px;
        height: 50px;
    }
    
    .cart-item-name {
        font-size: 0.8rem;
    }
    
    .cart-item-price {
        font-size: 0.85rem;
    }
    
    .cart-totals {
        font-size: 0.9rem;
    }
    
    /* Carousel compact */
    .carousel-btn {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    
    .carousel-btn.prev {
        left: 8px;
    }
    
    .carousel-btn.next {
        right: 8px;
    }
    
    /* Policy pages */
    .policy-content {
        padding: 20px;
    }
    
    .policy-title {
        font-size: 1.5rem;
    }
    
    /* Thank you page */
    .thank-you-title {
        font-size: 1.5rem;
    }
    
    .thank-you-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }
}

/* ===== TOUCH DEVICE ENHANCEMENTS ===== */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects that don't work on touch */
    .product-card-modern:hover {
        transform: none;
    }
    
    .product-card:hover .product-image {
        transform: none;
    }
    
    /* Make touch targets at least 44px */
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp-modern,
    .btn-view-details {
        min-height: 44px;
    }
    
    /* Always show product actions on touch */
    .product-actions {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Better touch feedback */
    .product-card-modern:active {
        transform: scale(0.98);
    }
    
    .btn-primary:active,
    .btn-secondary:active {
        transform: scale(0.97);
    }
}

/* ===== LANDSCAPE MODE PHONES ===== */
@media (max-height: 500px) and (orientation: landscape) {
    .cart-sidebar {
        max-height: 100vh;
    }
    
    .mobile-filter-panel {
        max-height: 90vh;
    }
    
    .auth-page {
        padding: 20px 0;
    }
    
    .auth-card {
        padding: 20px;
    }
}

/* ===== HIGH DPI SCREENS ===== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    /* Sharper borders */
    .product-card-modern,
    .admin-card,
    .auth-card {
        border-width: 0.5px;
    }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .carousel-track {
        transition: none;
    }
    
    .logos-track {
        animation: none;
    }
}

/* ===== DARK MODE SYSTEM PREFERENCE ===== */
@media (prefers-color-scheme: dark) {
    /* Already dark by default, but ensure consistency */
    :root {
        color-scheme: dark;
    }
}

@media (max-width: 768px) {
    .vitrine-top-bar-wrapper {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .logo-link-vitrine {
        justify-content: center;
    }
    
    .search-filters-container {
        flex-direction: column;
        max-width: none;
    }
    
    .filter-toggle-btn {
        display: flex;
        width: 100%;
    }
    
    .filter-toggle-btn-desktop {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
    }
    
    .checkout-steps {
        flex-wrap: wrap;
    }
    
    .cart-sidebar {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .product-detail-name {
        font-size: 1.5rem;
    }
    
    .product-detail-price .current {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .auth-card {
        padding: 24px;
    }
    
    .checkout-form-section {
        padding: 16px;
    }
    
    .checkout-summary {
        padding: 16px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* ===== MOBILE FILTER PANEL ===== */
.mobile-filter-panel {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: var(--bg-surface);
    border-top-left-radius: var(--radius-2xl);
    border-top-right-radius: var(--radius-2xl);
    padding: 24px;
    z-index: 1000;
    max-height: 70vh;
    overflow-y: auto;
    transition: bottom var(--transition-slow);
}

.mobile-filter-panel.open {
    bottom: 0;
}

.mobile-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mobile-filter-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

.mobile-filter-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-surface-hover);
    border-radius: var(--radius-md);
    color: var(--text-muted);
}

.mobile-filter-section {
    margin-bottom: 24px;
}

.mobile-filter-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.mobile-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.mobile-filter-option {
    padding: 10px 16px;
    background: var(--bg-surface-hover);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: all var(--transition);
}

.mobile-filter-option.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-dark);
}

.filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.filter-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* ===== LOGOS CAROUSEL ===== */
.logos-section {
    padding: 40px 0;
    background: var(--bg-surface);
    overflow: hidden;
}

.logos-track {
    display: flex;
    gap: 40px;
    animation: scrollLogos 30s linear infinite;
}

.logos-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%) opacity(0.5);
    transition: all var(--transition);
}

.logo-item:hover {
    filter: grayscale(0%) opacity(1);
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== THANK YOU PAGE ===== */
.thank-you-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    padding: 40px 20px;
}

.thank-you-card {
    text-align: center;
    max-width: 500px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background: var(--success-bg);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px;
}

.thank-you-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.thank-you-message {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.order-number {
    font-size: 1.25rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 24px;
}

/* ===== POLICIES PAGES ===== */
.policy-page {
    padding: 60px 0;
    background: var(--bg-dark);
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
}

.policy-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    text-align: center;
}

.policy-content {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.policy-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 12px;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-content ul {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 24px;
}

.policy-content ul li {
    list-style: disc;
    margin-bottom: 8px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease;
}

.animate-slide-up {
    animation: slideUp 0.4s ease;
}

.animate-pulse {
    animation: pulse 2s infinite;
}
