/* ============================================
   ARMAZÉM DO MÓVEL - Stylesheet Principal
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary: #8B6914;
    --primary-light: #C9A96E;
    --primary-dark: #6B4F0E;
    --secondary: #2C3E2D;
    --secondary-light: #3D5540;
    --accent: #D4A847;
    --bg-cream: #FAF7F2;
    --bg-warm: #F5F0E8;
    --bg-dark: #1C1C1C;
    --bg-card: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-medium: #5A5A5A;
    --text-light: #8A8A8A;
    --border: #E8E0D4;
    --border-light: #F0EBE3;
    --success: #4CAF50;
    --danger: #E74C3C;
    --warning: #F39C12;
    --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);
    --shadow-xl: 0 16px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', 'Segoe UI', sans-serif;
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

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

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.8);
    padding: 8px 0;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: var(--primary-light);
    font-weight: 500;
}

.top-bar a:hover { color: var(--accent); }

.top-bar-left { display: flex; gap: 20px; align-items: center; }
.top-bar-right { display: flex; gap: 20px; align-items: center; }

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
    background: #FFFFFF;
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: transparent;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: 0 4px 12px rgba(139, 105, 20, 0.3);
}

.logo-text h1 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
}

.logo-text span {
    font-size: 11px;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Nav */
.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-links a {
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-medium);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
    background: rgba(139, 105, 20, 0.06);
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    background: var(--bg-warm);
    border-radius: 50px;
    padding: 0 6px 0 18px;
    border: 2px solid transparent;
    transition: var(--transition);
    width: 280px;
}

.search-bar:focus-within {
    border-color: var(--primary-light);
    background: white;
    box-shadow: 0 0 0 4px rgba(139, 105, 20, 0.1);
}

.search-bar input {
    border: none;
    background: none;
    padding: 10px 12px;
    font-size: 14px;
    width: 100%;
    outline: none;
    color: var(--text-dark);
}

.search-bar input::placeholder { color: var(--text-light); }

.search-bar button {
    background: var(--primary);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.search-bar button:hover { background: var(--primary-dark); transform: scale(1.05); }

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--text-medium);
    border: none;
    font-size: 20px;
    transition: var(--transition);
    position: relative;
}

.header-btn:hover {
    background: var(--bg-warm);
    color: var(--primary);
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background: var(--danger);
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cart-count:empty,
.cart-count[data-count="0"] { display: none; }

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 50%, var(--primary-dark) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-cream), transparent);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-content { max-width: 560px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero h2 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h2 em {
    font-style: normal;
    color: var(--accent);
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    line-height: 1.7;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    flex-shrink: 0;
    width: 420px;
    height: 420px;
    border-radius: var(--radius-xl);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-visual-inner {
    text-align: center;
    color: rgba(255,255,255,0.9);
}

.hero-visual-inner .big-icon {
    font-size: 80px;
    margin-bottom: 16px;
    display: block;
}

.hero-visual-inner p {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--primary-light);
    margin-bottom: 0;
}

.hero-float-badge {
    position: absolute;
    background: white;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.hero-float-badge:nth-child(2) { bottom: 30px; left: -30px; animation-delay: 0.5s; }
.hero-float-badge:nth-child(3) { top: 30px; right: -30px; animation-delay: 1s; }

.hero-float-badge .badge-icon {
    width: 40px;
    height: 40px;
    background: var(--bg-warm);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.hero-float-badge .badge-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-float-badge .badge-text small {
    display: block;
    font-weight: 400;
    color: var(--text-light);
    font-size: 11px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 4px 16px rgba(139, 105, 20, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(139, 105, 20, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary-light);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 18px 40px; font-size: 16px; }

.btn-danger { background: var(--danger); color: white; }
.btn-danger:hover { background: #c0392b; }

.btn-success { background: var(--success); color: white; }
.btn-success:hover { background: #43a047; }

.btn-icon {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: var(--radius-sm);
}

.btn-cart {
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    width: 100%;
}

.btn-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ============================================
   FEATURES STRIP
   ============================================ */
.features-strip {
    background: white;
    padding: 32px 0;
    border-bottom: 1px solid var(--border-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--bg-warm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
    color: var(--primary);
}

.feature-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

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

.section-header-flex .section-header {
    text-align: left;
    margin-bottom: 0;
}

/* ============================================
   CATEGORIES
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.category-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

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

.category-card:hover::before { transform: scaleX(1); }

.category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--bg-warm);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.05);
}

.category-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.category-card p {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   PRODUCT GRID
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.product-image {
    display: block;
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: var(--bg-warm);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-image .no-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--border);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badge {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-sale {
    background: var(--danger);
    color: white;
}

.badge-new {
    background: var(--success);
    color: white;
}

.badge-featured {
    background: var(--accent);
    color: white;
}

.product-actions-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    transform: translateY(100%);
    transition: var(--transition);
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

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

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

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

.product-name a:hover { color: var(--primary); }

.product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 16px;
}

.price-current {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.price-original {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-discount {
    font-size: 12px;
    font-weight: 700;
    color: var(--success);
    background: rgba(76, 175, 80, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.product-card .btn-cart {
    font-size: 13px;
    padding: 10px 16px;
}

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

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.gallery-main {
    width: 100%;
    padding-top: 100%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-warm);
    margin-bottom: 16px;
}

.gallery-main img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-thumb {
    padding-top: 100%;
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    background: var(--bg-warm);
    transition: var(--transition);
}

.gallery-thumb.active,
.gallery-thumb:hover {
    border-color: var(--primary);
}

.gallery-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-info h1 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-detail-info .product-category {
    margin-bottom: 20px;
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.product-detail-price .price-current {
    font-size: 36px;
}

.product-detail-price .price-original {
    font-size: 18px;
}

.product-description {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.product-quantity label {
    font-weight: 600;
    font-size: 14px;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-selector button {
    width: 44px;
    height: 44px;
    background: var(--bg-warm);
    border: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.qty-selector button:hover { background: var(--border); }

.qty-selector input {
    width: 60px;
    height: 44px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    outline: none;
}

.product-detail-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.product-detail-actions .btn-cart {
    width: auto;
    flex: 1;
    padding: 16px 32px;
    font-size: 16px;
}

.product-meta {
    padding: 24px;
    background: var(--bg-warm);
    border-radius: var(--radius-md);
}

.product-meta-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    align-items: center;
}

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

.product-meta-item .icon { font-size: 18px; width: 24px; text-align: center; }
.product-meta-item strong { color: var(--text-dark); }

/* ============================================
   CART SIDEBAR
   ============================================ */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    background: white;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}

.cart-sidebar.active {
    transform: translateX(0);
}

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

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-header .close-cart {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: none;
    background: var(--bg-warm);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-header .close-cart:hover {
    background: var(--danger);
    color: white;
}

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

.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.cart-empty .empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
    display: block;
    opacity: 0.4;
}

.cart-empty h4 {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.cart-empty p { font-size: 14px; }

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
    animation: slideIn 0.3s ease;
}

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

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-warm);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

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

.cart-item-qty button {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-item-qty button:hover {
    background: var(--bg-warm);
}

.cart-item-qty span {
    font-size: 14px;
    font-weight: 600;
    width: 32px;
    text-align: center;
}

.cart-item-remove {
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    color: var(--text-light);
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.cart-item-remove:hover {
    background: rgba(231, 76, 60, 0.1);
    color: var(--danger);
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid var(--border-light);
    flex-shrink: 0;
    background: var(--bg-warm);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 18px;
}

.cart-total strong {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--primary);
}

.cart-footer .btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
}

.cart-footer .continue-shopping {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    padding: 8px;
    transition: var(--transition);
}

.cart-footer .continue-shopping:hover { color: var(--primary); }

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-page {
    padding: 40px 0 80px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.checkout-section {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
}

.checkout-section h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-section h3 .step-number {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group label .required { color: var(--danger); }

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    color: var(--text-dark);
    transition: var(--transition);
    background: white;
    outline: none;
}

.form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(139, 105, 20, 0.1);
}

.form-control::placeholder { color: var(--text-light); }

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

/* Order Summary */
.order-summary {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border-light);
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.order-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
}

.order-item-img {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-warm);
    flex-shrink: 0;
}

.order-item-img img { width: 100%; height: 100%; object-fit: cover; }

.order-item-details {
    flex: 1;
    min-width: 0;
}

.order-item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-item-qty {
    font-size: 12px;
    color: var(--text-light);
}

.order-item-price {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
    flex-shrink: 0;
}

.order-totals {
    padding-top: 20px;
    margin-top: 8px;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-medium);
}

.order-total-row.total {
    padding-top: 16px;
    margin-top: 8px;
    border-top: 2px solid var(--border);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.order-total-row.total span:last-child {
    color: var(--primary);
    font-family: var(--font-display);
    font-size: 24px;
}

.pix-info {
    background: var(--bg-warm);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 24px;
    text-align: center;
}

.pix-info .pix-icon {
    font-size: 40px;
    margin-bottom: 12px;
    display: block;
}

.pix-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.pix-info p {
    font-size: 13px;
    color: var(--text-light);
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumb {
    padding: 16px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-medium);
    transition: var(--transition);
}

.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .separator { color: var(--border); }

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.pagination a, .pagination span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: var(--transition);
    color: var(--text-medium);
}

.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination .active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: white;
    margin-bottom: 4px;
}

.footer-brand .logo-text span {
    font-size: 11px;
    color: var(--primary-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.5);
}

.footer h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact .icon {
    color: var(--primary-light);
    font-size: 16px;
    margin-top: 2px;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
}

/* ============================================
   CATALOG PAGE
   ============================================ */
.catalog-page { padding: 40px 0 80px; }

.catalog-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
}

.catalog-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.sidebar-section {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
}

.sidebar-section h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-filter {
    list-style: none;
}

.category-filter li { margin-bottom: 2px; }

.category-filter a {
    display: flex;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-medium);
    transition: var(--transition);
}

.category-filter a:hover,
.category-filter a.active {
    background: rgba(139, 105, 20, 0.06);
    color: var(--primary);
    font-weight: 600;
}

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

.catalog-header h2 {
    font-family: var(--font-display);
    font-size: 28px;
}

.catalog-sort select {
    padding: 10px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    background: white;
    cursor: pointer;
}

.catalog-count {
    font-size: 14px;
    color: var(--text-light);
}

/* ============================================
   CTA / WHATSAPP
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--secondary), var(--primary-dark));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2h2v6h-2zm0-13V4H0V2h20V0h2v7.5h-2zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20z'/%3E%3C/g%3E%3C/svg%3E");
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 36px;
    color: white;
    margin-bottom: 16px;
    position: relative;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    position: relative;
}

.cta-section .btn { position: relative; }

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ============================================
   ALERT MESSAGES
   ============================================ */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success { background: rgba(76,175,80,0.1); color: #2e7d32; border: 1px solid rgba(76,175,80,0.2); }
.alert-error { background: rgba(231,76,60,0.1); color: #c0392b; border: 1px solid rgba(231,76,60,0.2); }
.alert-warning { background: rgba(243,156,18,0.1); color: #e67e22; border: 1px solid rgba(243,156,18,0.2); }
.alert-info { background: rgba(52,152,219,0.1); color: #2980b9; border: 1px solid rgba(52,152,219,0.2); }

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    animation: toastIn 0.4s ease;
    border-left: 4px solid var(--success);
}

.toast.toast-out {
    animation: toastOut 0.3s ease forwards;
}

.toast-icon { font-size: 22px; }
.toast-message { font-size: 14px; font-weight: 500; flex: 1; }

@keyframes toastIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes toastOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   ABOUT / EMPTY STATES
   ============================================ */
.empty-state {
    text-align: center;
    padding: 80px 20px;
}

.empty-state .icon { font-size: 80px; margin-bottom: 20px; opacity: 0.3; }
.empty-state h3 { font-size: 22px; margin-bottom: 8px; color: var(--text-medium); }
.empty-state p { color: var(--text-light); margin-bottom: 24px; }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .hero h2 { font-size: 40px; }
    .hero-visual { width: 320px; height: 320px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-bar { display: none; }

    .header .container {
        flex-wrap: wrap;
        gap: 12px;
    }

    .mobile-toggle { display: flex; }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 16px 0;
        border-top: 1px solid var(--border-light);
    }

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

    .nav-links a {
        width: 100%;
        padding: 12px 16px;
    }

    .search-bar {
        order: 10;
        width: 100%;
    }

    .hero { padding: 48px 0; min-height: auto; }

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .hero h2 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .hero-buttons { justify-content: center; }

    .hero-visual {
        width: 100%;
        max-width: 300px;
        height: 250px;
    }

    .hero-float-badge { display: none; }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .categories-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .category-card { padding: 20px 16px; }
    .category-icon { width: 48px; height: 48px; font-size: 22px; }

    .section { padding: 48px 0; }
    .section-header h2 { font-size: 28px; }

    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-gallery { position: static; }

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

    .order-summary { position: static; }

    .catalog-layout {
        grid-template-columns: 1fr;
    }

    .catalog-sidebar { position: static; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cart-sidebar { width: 100%; max-width: 100vw; }

    .form-row { grid-template-columns: 1fr; }

    .product-detail-price .price-current { font-size: 28px; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

    .product-info { padding: 14px; }
    .product-name { font-size: 13px; margin-bottom: 8px; }
    .price-current { font-size: 17px; }
    .price-original { font-size: 12px; }
    .product-card .btn-cart { font-size: 12px; padding: 8px 12px; }

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

    .hero h2 { font-size: 26px; }

    .container { padding: 0 16px; }
}

/* ============================================
   ADMIN STYLES
   ============================================ */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--bg-dark));
    padding: 20px;
}

.admin-login-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 48px;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--shadow-xl);
}

.admin-login-card h2 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 8px;
    text-align: center;
}

.admin-login-card p {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 32px;
}

/* Admin Layout */
.admin-wrapper {
    display: flex;
    min-height: 100vh;
    background: var(--bg-warm);
}

.admin-sidebar {
    width: 260px;
    background: var(--bg-dark);
    color: white;
    padding: 24px 0;
    flex-shrink: 0;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 100;
}

.admin-sidebar .logo {
    padding: 0 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 16px;
}

.admin-sidebar .logo-text h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: white;
}

.admin-sidebar .logo-text span {
    font-size: 10px;
    color: var(--primary-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.admin-nav {
    list-style: none;
    padding: 0 12px;
}

.admin-nav li { margin-bottom: 4px; }

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(255,255,255,0.1);
    color: white;
}

.admin-nav a .nav-icon {
    width: 20px;
    text-align: center;
    font-size: 16px;
}

.admin-main {
    margin-left: 260px;
    flex: 1;
    padding: 32px;
    min-width: 0;
}

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

.admin-header h1 {
    font-family: var(--font-display);
    font-size: 28px;
}

.admin-header p {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 4px;
}

/* Admin Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--border-light);
}

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.stat-card .stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.stat-card .stat-label {
    font-size: 13px;
    color: var(--text-light);
}

/* Admin Table */
.admin-table-card {
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

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

.admin-table-header h3 {
    font-size: 16px;
    font-weight: 700;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    padding: 14px 20px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    background: var(--bg-warm);
    border-bottom: 1px solid var(--border-light);
}

.admin-table td {
    padding: 16px 20px;
    font-size: 14px;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-light);
    vertical-align: middle;
}

.admin-table tr:hover td { background: rgba(139, 105, 20, 0.02); }

.admin-table .product-thumb {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-warm);
}

.admin-table .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-badge {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.status-active { background: rgba(76,175,80,0.1); color: #2e7d32; }
.status-inactive { background: rgba(231,76,60,0.1); color: #c0392b; }
.status-pending { background: rgba(243,156,18,0.1); color: #e67e22; }

.table-actions {
    display: flex;
    gap: 6px;
}

.table-actions button,
.table-actions a {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-medium);
    cursor: pointer;
    transition: var(--transition);
}

.table-actions button:hover,
.table-actions a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.table-actions .btn-delete:hover {
    border-color: var(--danger);
    color: var(--danger);
    background: rgba(231,76,60,0.05);
}

/* Admin Form */
.admin-form-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border-light);
}

.admin-form-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
}

.image-upload {
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: var(--bg-cream);
}

.image-upload:hover {
    border-color: var(--primary-light);
    background: rgba(139, 105, 20, 0.02);
}

.image-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

.image-upload .upload-icon {
    font-size: 36px;
    margin-bottom: 8px;
    color: var(--text-light);
}

.image-upload p {
    font-size: 14px;
    color: var(--text-light);
}

.image-preview {
    width: 100%;
    max-width: 200px;
    margin: 10px auto 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.image-preview img {
    width: 100%;
    height: auto;
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Admin Mobile */
@media (max-width: 768px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: var(--transition);
    }
    .admin-sidebar.active { transform: translateX(0); }
    .admin-main { margin-left: 0; padding: 16px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .admin-table { font-size: 12px; }
    .admin-table th, .admin-table td { padding: 10px 12px; }
    .images-grid { grid-template-columns: repeat(2, 1fr); }
}
/* ====== MOBILE MENU SIDEBAR ====== */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9996;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    z-index: 9997;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
}

.mobile-sidebar.active {
    transform: translateX(0);
}

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

.mobile-sidebar-header h3 {
    font-family: var(--font-display);
    font-size: 18px;
    margin: 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 12px 0;
    margin: 0;
    flex: 1;
    overflow-y: auto;
}

.mobile-nav-list li a {
    display: block;
    padding: 14px 24px;
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
}

.mobile-nav-list li a:hover {
    background: var(--bg-warm);
    color: var(--primary);
    padding-left: 32px;
}

.mobile-sidebar-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border-light);
}
/* ====== FOOTER BADGES ====== */
.footer-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 24px 0;
    margin-bottom: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-badges-group {
    text-align: center;
}

.footer-badges .badge-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 12px;
}

.footer-badges .badge-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-badges .badge-icons img {
    height: 32px;
    width: auto;
    background: white;
    border-radius: 6px;
    padding: 4px 8px;
    object-fit: contain;
    transition: var(--transition);
}

.footer-badges .badge-icons img:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .footer-badges {
        gap: 24px;
    }
    .footer-badges .badge-icons img {
        height: 28px;
    }
}