/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #DC143C;
    --primary-dark: #B71C1C;
    --secondary: #1E3A8A;
    --danger: #f44336;
    --warning: #ff9800;
    --dark: #333;
    --light: #f5f5f5;
    --light-bg: #f8f9fa;
    --border: #e0e0e0;
    --text: #1a1a1a;
    --text-light: #666;
    --text-lighter: #999;
    
    /* Espaçamentos consistentes */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Sombras profissionais */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
    --shadow-hover: 0 6px 20px rgba(220, 20, 60, 0.2);
    
    /* Bordas */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 50px;
    
    /* Transições */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.4s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: #fafafa;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden; /* Previne scroll horizontal */
}

/* Previne zoom em inputs no iOS */
@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="number"],
    input[type="tel"],
    input[type="search"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-lg);
    min-height: 80px;
    gap: var(--spacing-md);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%;
    flex-shrink: 0;
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    transition: transform var(--transition-base);
    display: block;
}

.logo-image:hover {
    transform: scale(1.02);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
    align-items: center;
    height: 100%;
}

.nav-menu li {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-base);
    position: relative;
    padding: var(--spacing-xs) 0;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

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

.nav-menu a:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
    height: 100%;
    padding: var(--spacing-xs) 0;
}

.dropdown-toggle .material-icons {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.dropdown.active .dropdown-toggle .material-icons {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    list-style: none;
    padding: var(--spacing-xs) 0;
    min-width: 240px;
    max-width: 320px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
}

.dropdown.active .dropdown-menu,
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(220, 20, 60, 0.05);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 1.25rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    height: 100%;
}

.search-form {
    display: flex;
    gap: var(--spacing-xs);
    align-items: center;
    height: 40px;
}

.search-form input {
    padding: 0.625rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    height: 40px;
    min-width: 250px;
    transition: border-color var(--transition-base);
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
}

.search-form button {
    padding: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.search-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.search-form button .material-icons {
    font-size: 1.2rem;
}

.icon-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--transition-base);
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
}

.icon-btn:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.icon-btn .material-icons {
    font-size: 1.5rem;
}

/* User Menu Dropdown */
.user-menu {
    position: relative;
}

.user-menu.active .user-menu-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 0.875rem;
    text-decoration: none;
    height: 40px;
    white-space: nowrap;
}

.user-menu-btn:hover {
    background: var(--light-bg);
    border-color: var(--primary);
    color: var(--primary);
}

.user-menu-btn .material-icons {
    font-size: 1.5rem;
}

.user-menu-btn .user-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu-btn .material-icons:last-child {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.user-menu.active .user-menu-btn .material-icons:last-child {
    transform: rotate(180deg);
}

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}


.user-menu-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.user-menu-header .material-icons {
    font-size: 2.5rem;
    opacity: 0.9;
}

.user-menu-header div {
    flex: 1;
    min-width: 0;
}

.user-menu-header strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu-header small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-menu-divider {
    height: 1px;
    background: var(--border);
    margin: 0.5rem 0;
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.875rem;
}

.user-menu-item:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.user-menu-item .material-icons {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.user-menu-item:hover .material-icons {
    color: var(--primary);
}

.user-menu-logout {
    color: #f44336;
}

.user-menu-logout:hover {
    background: #ffebee;
    color: #d32f2f;
}

.user-menu-logout .material-icons {
    color: #f44336;
}

.user-menu-logout:hover .material-icons {
    color: #d32f2f;
}

.cart-btn {
    position: relative;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    width: 40px;
    height: 40px;
    color: var(--text);
    transition: all var(--transition-base);
    border-radius: var(--radius-md);
}

.cart-btn:hover {
    background: var(--light-bg);
    color: var(--primary);
}

.cart-btn .material-icons {
    font-size: 1.5rem;
}

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

/* Buttons */
.btn-primary, .btn-secondary, .btn-small {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-base);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.01em;
}

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

.btn-primary:active {
    transform: translateY(0);
}

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

.btn-secondary:hover {
    background: #1976D2;
}

.btn-small,
a.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    background: var(--primary) !important;
    color: white !important;
    border: none;
    text-decoration: none;
}

.btn-small:hover,
a.btn-small:hover {
    background: var(--primary-dark) !important;
    color: white !important;
    text-decoration: none;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

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

.btn-add-cart {
    margin-top: 0.5rem;
    width: 100%;
}

/* Alerts */
.alert {
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.product-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.product-card h3 {
    padding: 1rem;
    font-size: 1rem;
}

.product-card .price {
    padding: 0 1rem;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    margin-right: 0.5rem;
}

.current-price {
    font-weight: bold;
    color: var(--primary);
    font-size: 1.2rem;
}

/* Hero */
/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image .material-icons {
    font-size: 15rem;
    opacity: 0.2;
}

/* Promo Banner */
.promo-banner {
    background: white;
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.promo-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    align-items: center;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.promo-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base);
}

.promo-item:hover .promo-icon {
    transform: scale(1.1) rotate(5deg);
}

.promo-icon .material-icons {
    font-size: 2rem;
}

.promo-text {
    flex: 1;
}

.promo-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text);
}

.promo-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Categories Section */
.categories-section {
    padding: 4rem 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-md);
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text);
    transition: all var(--transition-base);
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

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

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

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

.category-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-icon .material-icons {
    font-size: 2.5rem;
    color: white;
}

.category-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text);
    letter-spacing: -0.02em;
}

.category-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--primary);
    margin-top: 0.5rem;
}

.category-link .material-icons {
    font-size: 1rem;
    transition: transform 0.3s;
}

.category-card:hover .category-link .material-icons {
    transform: translateX(5px);
}

/* Products Section */
.products-section {
    padding: var(--spacing-xxl) 0;
    background: var(--light-bg);
}

.products-section:nth-child(even) {
    background: white;
}

.products-section:first-of-type {
    padding-top: var(--spacing-xl);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    gap: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid var(--border);
}

.section-header h2 {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.section-header .material-icons {
    font-size: 2.25rem;
    color: var(--primary);
    background: rgba(220, 20, 60, 0.1);
    padding: var(--spacing-xs);
    border-radius: var(--radius-md);
}

.section-header p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0.5rem 0 0 0;
}

.section-footer {
    text-align: center;
    margin-top: 2rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-link:hover {
    gap: 0.75rem;
    color: var(--primary-dark);
}

.btn-link .material-icons {
    font-size: 1.2rem;
}

/* Product Card Enhanced */
.product-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

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

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.discount-badge,
.out-of-stock-badge,
.low-stock-badge,
.best-seller-badge,
.new-badge {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    z-index: 2;
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.discount-badge {
    background: linear-gradient(135deg, #f44336 0%, #e91e63 100%);
}

.out-of-stock-badge {
    background: #757575;
}

.low-stock-badge {
    background: #ff9800;
}

.best-seller-badge {
    background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%);
    top: 10px;
    left: 10px;
    right: auto;
}

.new-badge {
    background: linear-gradient(135deg, #2196F3 0%, #03A9F4 100%);
}

.product-info {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-brand {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0 0 1rem 0;
}

.product-price {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

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

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

.product-actions-card {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid var(--border);
}

.product-card .btn-add-cart {
    margin: 0;
    border-radius: 0;
    padding: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex: 1;
}

.product-card .btn-add-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.product-card .btn-add-cart .material-icons {
    font-size: 1.2rem;
}

.btn-favorite-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background: white;
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.btn-favorite-icon:hover {
    border-color: #f44336;
    background: #ffebee;
    color: #f44336;
}

.btn-favorite-icon.active {
    background: #f44336;
    border-color: #f44336;
    color: white;
}

.btn-favorite-icon.active:hover {
    background: #d32f2f;
    border-color: #d32f2f;
}

.btn-favorite-icon .material-icons {
    font-size: 1.5rem;
}

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

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon .material-icons {
    font-size: 2.5rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Newsletter Section */
.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-icon .material-icons {
    font-size: 2.5rem;
}

.newsletter-text {
    flex: 1;
    min-width: 300px;
}

.newsletter-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    min-width: 300px;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
}

.newsletter-form button {
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter-form button .material-icons {
    font-size: 1.2rem;
}

/* Product Page */
.product-page {
    padding: 2rem 0;
}

/* Category Page */
.category-page,
.products-page {
    padding: 0;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background: var(--light-bg);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumb .material-icons {
    font-size: 1rem;
    color: var(--text-light);
}

/* Category Header */
.category-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 0;
}

.category-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.category-icon-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon-large .material-icons {
    font-size: 3.5rem;
}

.category-header-text {
    flex: 1;
}

.category-header-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.category-description {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.category-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
}

.stat-item .material-icons {
    font-size: 1.2rem;
}

.stat-item strong {
    font-weight: 700;
}

/* Category Filters */
.category-filters {
    background: white;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border);
}

.filters-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filters-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.results-count {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.filters-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-weight: 500;
    font-size: 0.95rem;
}

.sort-label .material-icons {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.sort-select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: white;
    color: var(--text);
    font-size: 0.95rem;
    cursor: pointer;
    outline: none;
    transition: all 0.3s;
}

.sort-select:hover {
    border-color: var(--primary);
}

.sort-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Category Products */
.category-products {
    padding: 3rem 0;
    background: var(--light-bg);
}

/* Empty Category */
.empty-category {
    padding: 5rem 0;
    background: var(--light-bg);
}

.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.empty-state .material-icons {
    font-size: 5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.empty-state h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 1rem 0;
}

.empty-state p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 0 2rem 0;
}

.empty-state .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Products Page */
.products-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 3rem 0;
}

.products-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.products-header-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.products-header-content h1 .material-icons {
    font-size: 3rem;
}

.products-description {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
    line-height: 1.6;
}

.products-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.products-content {
    padding: 2rem 0;
    background: var(--light-bg);
}

.products-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Products Filters Sidebar */
.products-filters {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 2.25rem;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    min-width: 360px;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid var(--light);
}

.filters-header h2 {
    margin: 0;
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
}

.filters-header h2 .material-icons {
    color: var(--primary);
    font-size: 1.5rem;
}

.clear-filters {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    background: var(--light);
    border: none;
    border-radius: 6px;
    color: var(--text);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
}

.clear-filters:hover {
    background: var(--primary);
    color: white;
}

.clear-filters .material-icons {
    font-size: 1rem;
}

/* Active Filters */
.active-filters {
    background: var(--light);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--border);
}

.active-filters-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.active-filters-label .material-icons {
    font-size: 1.1rem;
    color: var(--primary);
}

.active-filters-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.filter-badge .material-icons {
    font-size: 1rem;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.filter-badge .material-icons:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    padding: 2px;
}

/* Filter Groups */
.filter-group {
    margin-bottom: 1.25rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    overflow: hidden;
    background: var(--light-bg);
}

.filter-group-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    text-align: left;
}

.filter-group-toggle:hover {
    background: rgba(76, 175, 80, 0.05);
}

.filter-group-toggle .filter-title {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.filter-group-toggle .filter-title .material-icons {
    font-size: 1.2rem;
    color: var(--primary);
}

.toggle-icon {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.filter-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
    background: white;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-options-scroll {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 0.5rem;
    margin-top: 0.5rem;
}

.filter-options-scroll::-webkit-scrollbar {
    width: 6px;
}

.filter-options-scroll::-webkit-scrollbar-track {
    background: var(--light);
    border-radius: 3px;
}

.filter-options-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.875rem;
    border-radius: 6px;
    transition: all 0.3s;
    border: 1px solid transparent;
}

.filter-option:hover {
    background: var(--light);
    border-color: var(--border);
}

.filter-option input[type="radio"]:checked + .filter-option-label,
.filter-option input[type="checkbox"]:checked + .filter-option-label {
    color: var(--primary);
    font-weight: 600;
}

.filter-option input[type="radio"],
.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.filter-option-label {
    font-size: 0.95rem;
    color: var(--text);
    user-select: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.filter-option-label .material-icons {
    font-size: 1.1rem;
    color: var(--primary);
}

.stock-icon {
    color: var(--primary);
}

.stock-icon.out-of-stock {
    color: var(--danger);
}

.filter-checkbox {
    padding: 0.75rem;
}

/* Price Range */
.price-range {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-inputs-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-input-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.price-input-container {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: white;
    transition: border-color 0.3s;
}

.price-input-container:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.price-currency {
    padding: 0.75rem 0.5rem 0.75rem 0.75rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    background: var(--light);
    border-right: 1px solid var(--border);
}

.price-input-container input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 0 6px 6px 0;
    font-size: 0.95rem;
    outline: none;
    background: transparent;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    padding: 0.75rem;
    background: var(--light);
    border-radius: 6px;
}

.price-info .material-icons {
    font-size: 1rem;
    color: var(--primary);
}

/* Products Main */
.products-main {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--light);
    flex-wrap: wrap;
    gap: 1rem;
}

.results-info {
    display: flex;
    align-items: center;
}

.results-count {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.results-count strong {
    color: var(--text);
    font-weight: 600;
}

.sort-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.pagination-btn:hover:not(.disabled) {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn .material-icons {
    font-size: 1.2rem;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.pagination-page:hover {
    background: var(--light-bg);
    border-color: var(--primary);
}

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

.pagination-ellipsis {
    padding: 0 0.5rem;
    color: var(--text-secondary);
}

/* Favorites Button */
.btn-favorite {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.btn-favorite:hover {
    border-color: #f44336;
    background: #ffebee;
    color: #f44336;
}

.btn-favorite.active {
    background: #f44336;
    border-color: #f44336;
    color: white;
}

.btn-favorite.active:hover {
    background: #d32f2f;
    border-color: #d32f2f;
}

.btn-favorite .material-icons {
    font-size: 1.2rem;
}

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

/* Favorites Page */
.favorites-page {
    padding: 0;
}

/* Favorites Header */
.favorites-header {
    background: linear-gradient(135deg, #f44336 0%, #e91e63 100%);
    color: white;
    padding: 3rem 0;
}

.favorites-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.favorites-icon-large {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.favorites-icon-large .material-icons {
    font-size: 3.5rem;
}

.favorites-header-text {
    flex: 1;
}

.favorites-header-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.favorites-description {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0 0 1.5rem 0;
    line-height: 1.6;
}

.favorites-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Favorites Products */
.favorites-products {
    padding: 3rem 0;
    background: var(--light-bg);
}

.product-actions-favorites {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid var(--border);
}

.btn-remove-favorite {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-remove-favorite:hover {
    background: #ffebee;
    border-color: #f44336;
    color: #f44336;
}

.btn-remove-favorite .material-icons {
    font-size: 1.1rem;
}

/* Empty Favorites */
.empty-favorites {
    padding: 5rem 0;
    background: var(--light-bg);
}

.empty-favorites .empty-state {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.empty-favorites .empty-state .material-icons {
    font-size: 5rem;
    color: #f44336;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-favorites .empty-state h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 1rem 0;
}

.empty-favorites .empty-state p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 0 0.5rem 0;
}

.empty-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.empty-actions .btn-primary,
.empty-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.product-images img {
    width: 100%;
    border-radius: 8px;
}

.thumbnails {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
}

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

.product-info h1 {
    margin-bottom: 1rem;
}

.stock-info {
    margin: 1rem 0;
}

.in-stock {
    color: var(--primary);
}

.out-of-stock {
    color: var(--danger);
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.qty-selector input {
    width: 60px;
    padding: 0.5rem;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.qty-selector button {
    padding: 0.5rem 1rem;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
}

/* Cart */
/* Cart Page */
.cart-page {
    padding: 2rem 0;
}

.cart-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light);
}

.cart-header h1 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.cart-header .material-icons {
    color: var(--primary);
    font-size: 2.5rem;
}

.cart-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.empty-cart-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-cart-icon .material-icons {
    font-size: 4rem;
    color: var(--text-light);
}

.empty-cart h2 {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    color: var(--dark);
}

.empty-cart p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.cart-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
    align-items: start;
}

.cart-items-section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
}

.section-header-cart {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light);
}

.section-header-cart h2 {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark);
}

.section-header-cart .material-icons {
    color: var(--primary);
    font-size: 1.5rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-item-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 1px solid var(--light);
    border-radius: 12px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: white;
}

.cart-item-card:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
}

.cart-item-image {
    position: relative;
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: var(--light);
}

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

.cart-item-image:hover img {
    transform: scale(1.05);
}

.discount-badge-item {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--danger);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.item-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
}

.item-header h3 a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

.item-header h3 a:hover {
    color: var(--primary);
}

.btn-remove-item {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--light);
    color: var(--text-light);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    flex-shrink: 0;
}

.btn-remove-item:hover {
    background: var(--danger);
    color: white;
    transform: scale(1.1);
}

.btn-remove-item .material-icons {
    font-size: 1.2rem;
}

.item-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.item-brand .material-icons {
    font-size: 1rem;
}

.item-price-info {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.price-unit {
    color: var(--text-light);
    font-size: 0.85rem;
}

.item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light);
    flex-wrap: wrap;
}

.qty-control {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.qty-control label {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}

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

.qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--light);
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s;
}

.qty-btn:hover:not(:disabled) {
    background: var(--primary);
    color: white;
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-btn .material-icons {
    font-size: 1.1rem;
}

.qty-input-group input {
    width: 60px;
    height: 36px;
    border: none;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    background: white;
    outline: none;
}

.item-subtotal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.subtotal-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

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

.cart-continue-shopping {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light);
}

.cart-summary-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 2rem;
}

.cart-summary-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.summary-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 1.5rem;
    color: white;
}

.summary-header h2 {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.summary-header .material-icons {
    color: white;
    font-size: 1.5rem;
}

.summary-content {
    padding: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    font-size: 1rem;
}

.summary-row:not(:last-child) {
    border-bottom: 1px solid var(--light);
}

.summary-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    font-weight: 500;
}

.summary-label .material-icons {
    font-size: 1.1rem;
    color: var(--text-light);
}

.summary-value {
    font-weight: 600;
    color: var(--dark);
}

.summary-info {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
}

.summary-divider {
    height: 2px;
    background: var(--light);
    margin: 0.5rem 0;
}

.summary-total {
    padding: 1.5rem 0;
    border-top: 2px solid var(--light);
    border-bottom: none;
}

.summary-total .summary-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

.summary-total .summary-label .material-icons {
    color: var(--primary);
    font-size: 1.3rem;
}

.summary-total .summary-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
}

.summary-actions {
    margin-top: 1.5rem;
}

.summary-security {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light);
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.security-item .material-icons {
    font-size: 1.1rem;
    color: var(--primary);
}

.cart-benefits {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
}

.cart-benefits h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
}

.cart-benefits .material-icons {
    color: var(--primary);
    font-size: 1.3rem;
}

.cart-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cart-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text);
}

.cart-benefits li .material-icons {
    font-size: 1.1rem;
    color: var(--primary);
}

/* Checkout */
.checkout-page {
    padding: 0;
    background: var(--light-bg);
    min-height: calc(100vh - 200px);
}

.checkout-header {
    padding: 2rem 0;
    text-align: center;
    background: white;
    border-bottom: 1px solid var(--border);
}

.checkout-header h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.checkout-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.checkout-form {
    padding: 3rem 0;
}

.checkout-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Checkout Form Section */
.checkout-form-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.checkout-section {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-bg);
}

.section-header .material-icons {
    font-size: 1.5rem;
    color: var(--primary);
}

.section-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

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

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

.form-group-small {
    grid-column: span 1;
}

.input-with-button {
    display: flex;
    gap: 0.5rem;
}

.input-with-button input {
    flex: 1;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 48px;
}

.btn-icon:hover {
    background: var(--primary-dark);
}

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

.form-help {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-method-card {
    display: block;
    cursor: pointer;
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.3s;
}

.payment-method-card:hover {
    border-color: var(--primary);
    background: #f9f9f9;
}

.payment-method-card input[type="radio"] {
    display: none;
}

.payment-method-card input[type="radio"]:checked + .payment-method-content {
    color: var(--primary);
}

.payment-method-card:has(input[type="radio"]:checked) {
    border-color: var(--primary);
    background: #f0f8f0;
}

.payment-method-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-method-content .material-icons {
    font-size: 2rem;
    color: var(--primary);
}

.payment-method-content strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.payment-method-content small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.payment-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.payment-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #f0f8f0;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.payment-info-card .material-icons {
    color: var(--primary);
    font-size: 2rem;
    flex-shrink: 0;
}

.payment-info-card strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.payment-info-card p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Checkout Summary */
.checkout-summary-section {
    position: sticky;
    top: 100px;
    align-self: start;
}

.checkout-summary-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.checkout-summary-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-bg);
}

.checkout-summary-card .material-icons {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Order Items Summary */
.order-items-summary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.order-item-summary {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.order-item-summary .item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

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

.order-item-summary .item-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.order-item-summary .item-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0.25rem 0;
}

.order-item-summary .item-total {
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
    align-self: flex-start;
}

/* Coupon Section */
.coupon-section {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.coupon-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.coupon-header .material-icons {
    color: var(--primary);
}

.coupon-header h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.coupon-input-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.coupon-input-group input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
}

.coupon-input-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-apply-coupon {
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-apply-coupon:hover {
    background: var(--primary-dark);
}

.coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f0f8f0;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.coupon-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.coupon-info .material-icons {
    color: var(--primary);
    font-size: 1.5rem;
}

.coupon-info strong {
    display: block;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.coupon-info p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

.btn-remove-coupon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s;
}

.btn-remove-coupon:hover {
    background: #ffebee;
    color: var(--danger);
}

.coupon-help {
    display: block;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Summary Totals */
.summary-totals {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
}

.summary-row span:first-child {
    color: var(--text-secondary);
}

.summary-row span:last-child {
    font-weight: 500;
    color: var(--text);
}

.summary-row.discount-row .discount-value {
    color: var(--primary);
    font-weight: 600;
}

.summary-total {
    font-size: 1.25rem;
    font-weight: 700;
    padding-top: 1rem;
    border-top: 2px solid var(--border);
    margin-top: 0.5rem;
}

.summary-total .total-value {
    color: var(--primary);
    font-size: 1.5rem;
}

.free-shipping {
    color: var(--primary);
    font-weight: 600;
}

.shipping-info {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.shipping-info small {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.shipping-info .material-icons {
    font-size: 1rem;
    color: var(--primary);
}

/* Security Info */
.security-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.security-item .material-icons {
    font-size: 1.25rem;
    color: var(--primary);
}

/* Checkout Submit Button */
.btn-checkout-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.btn-checkout-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-checkout-submit .material-icons {
    font-size: 1.5rem;
}

.checkout-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.checkout-footer p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.checkout-footer .material-icons {
    font-size: 1rem;
}

.checkout-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

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

/* Contact Page */
.contact-page {
    padding: 0;
    background: var(--light-bg);
    min-height: calc(100vh - 200px);
}

.contact-header {
    padding: 2rem 0;
    text-align: center;
    background: white;
    border-bottom: 1px solid var(--border);
}

.contact-header h1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.contact-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    padding: 3rem 0;
    align-items: start;
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon .material-icons {
    font-size: 2rem;
    color: white;
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.contact-card-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.contact-link:hover {
    color: var(--primary-dark);
    gap: 0.75rem;
}

.contact-link .material-icons {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.contact-link:hover .material-icons {
    transform: translateX(4px);
}

/* Business Hours Card */
.business-hours-card,
.social-media-card,
.faq-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.business-hours-card .card-header,
.social-media-card .card-header,
.faq-card .card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-bg);
}

.business-hours-card .card-header .material-icons,
.social-media-card .card-header .material-icons,
.faq-card .card-header .material-icons {
    font-size: 1.5rem;
    color: var(--primary);
}

.business-hours-card .card-header h3,
.social-media-card .card-header h3,
.faq-card .card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--light-bg);
    border-radius: 8px;
}

.hours-item .day {
    font-weight: 500;
    color: var(--text);
}

.hours-item .time {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Social Media */
.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem;
    background: var(--light-bg);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
    font-weight: 500;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.social-link .material-icons {
    font-size: 1.5rem;
}

/* Contact Form Section */
.contact-form-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-form-card .card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-form-card .card-header .material-icons {
    font-size: 1.5rem;
    color: var(--primary);
}

.contact-form-card .card-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.form-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-form {
    margin-top: 1.5rem;
}

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

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form .form-group label {
    font-weight: 500;
    color: var(--text);
    font-size: 0.95rem;
}

.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

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

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

.form-actions {
    margin-top: 1.5rem;
}

.btn-contact-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-contact-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.btn-contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-contact-submit .material-icons {
    font-size: 1.5rem;
}

/* FAQ Section */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 2px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-item.active {
    border-color: var(--primary);
    background: #f0f8f0;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    cursor: pointer;
    user-select: none;
}

.faq-question .material-icons {
    color: var(--primary);
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question .material-icons {
    transform: rotate(180deg);
}

.faq-question strong {
    flex: 1;
    color: var(--text);
    font-size: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 1rem 1rem 1rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Blog Page */
.blog-page {
    padding: 0;
    background: var(--light-bg);
    min-height: calc(100vh - 200px);
}

.blog-header {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.blog-header-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.blog-header-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.blog-header-icon .material-icons {
    font-size: 3.5rem;
}

.blog-header-text {
    flex: 1;
}

.blog-header-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
}

.blog-description {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0;
    line-height: 1.6;
}

.blog-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    padding: 3rem 0;
    align-items: start;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.blog-widget {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.widget-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-bg);
}

.widget-header .material-icons {
    font-size: 1.5rem;
    color: var(--primary);
}

.widget-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.widget-content {
    margin-top: 1rem;
}

/* Blog Search */
.blog-search-form {
    display: flex;
    gap: 0.5rem;
}

.blog-search-form input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
}

.blog-search-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-search {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 48px;
}

.btn-search:hover {
    background: var(--primary-dark);
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--light-bg);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
}

.category-link:hover {
    background: var(--primary);
    color: white;
}

.category-link.active {
    background: var(--primary);
    color: white;
}

.category-name {
    font-weight: 500;
}

.category-count {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* Recent Posts List */
.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post-item {
    padding: 0;
}

.recent-post-link {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: var(--text);
    transition: all 0.3s;
}

.recent-post-link:hover {
    transform: translateX(4px);
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info {
    flex: 1;
    min-width: 0;
}

.recent-post-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: var(--text);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.recent-post-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.recent-post-date .material-icons {
    font-size: 1rem;
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border: none;
    padding: 1.5rem !important;
}

.newsletter-widget .widget-header {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-widget .widget-header .material-icons {
    font-size: 1.5rem;
    color: white;
}

.newsletter-widget .widget-header h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.newsletter-widget .widget-content {
    margin-top: 0;
}

.newsletter-widget .widget-content p {
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    font-size: 0.95rem;
    text-align: left;
    font-weight: 400;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form input {
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-family: inherit;
    transition: all 0.3s;
    width: 100%;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.25);
}

.btn-newsletter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: white;
    color: var(--primary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    background: #f8f8f8;
}

.btn-newsletter .material-icons {
    font-size: 1.2rem;
    color: var(--primary);
}

/* Blog Main */
.blog-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.post-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.post-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.post-category-badge .material-icons {
    font-size: 1rem;
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.post-meta .material-icons {
    font-size: 1rem;
}

.post-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 1rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-excerpt {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.post-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.post-author .material-icons {
    font-size: 1rem;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: gap 0.3s;
}

.post-link:hover .read-more {
    gap: 0.75rem;
}

.read-more .material-icons {
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.post-link:hover .read-more .material-icons {
    transform: translateX(4px);
}

/* Empty Blog */
.empty-blog {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.empty-blog .material-icons {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-blog h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 1rem 0;
}

.empty-blog p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin: 0 0 2rem 0;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Blog Post Page */
.blog-post-page {
    padding: 0;
    background: var(--light-bg);
    min-height: calc(100vh - 200px);
}

.blog-post-article {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin: 3rem 0;
}

.post-header {
    padding: 2rem;
    border-bottom: 1px solid var(--border);
}

.post-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-bg);
    border-radius: 20px;
    margin-bottom: 1rem;
}

.post-category .material-icons {
    font-size: 1rem;
    color: var(--primary);
}

.post-category a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.post-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.post-meta-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.meta-item .material-icons {
    font-size: 1.2rem;
    color: var(--primary);
}

.post-featured-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content-wrapper {
    padding: 3rem;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 2rem;
}

.post-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text);
    margin: 2rem 0 1rem 0;
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin: 1.5rem 0 0.75rem 0;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.75rem;
}

.post-footer {
    padding-top: 2rem;
    border-top: 2px solid var(--border);
    margin-top: 2rem;
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.post-tags .material-icons {
    color: var(--primary);
    font-size: 1.5rem;
}

.tags-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.5rem 1rem;
    background: var(--light-bg);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
}

.tag:hover {
    background: var(--primary);
    color: white;
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-label {
    font-weight: 500;
    color: var(--text);
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: var(--light-bg);
    border: none;
    border-radius: 50%;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.share-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.share-btn .material-icons {
    font-size: 1.2rem;
}

/* Related Posts Section */
.related-posts-section {
    margin: 3rem 0;
}

.related-posts-section .section-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

.related-posts-section .section-header .material-icons {
    font-size: 1.5rem;
    color: var(--primary);
}

.related-posts-section .section-header h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.related-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.related-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.related-post-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.related-post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--light-bg);
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.related-post-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 1rem 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.related-post-meta .material-icons {
    font-size: 1rem;
}

/* Form Groups - Generic (mantido para compatibilidade) */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
}

.form-group small {
    display: block;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Auth */
.auth-page {
    padding: 4rem 0;
    display: flex;
    justify-content: center;
}

.auth-form {
    max-width: 400px;
    width: 100%;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.auth-form h1 {
    margin-bottom: 2rem;
    text-align: center;
}

.auth-link {
    text-align: center;
    margin-top: 1rem;
}

.auth-link a {
    color: var(--primary);
    text-decoration: none;
}

/* Admin Login - Professional Design */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.admin-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.login-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1000px;
    width: 100%;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.login-card {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(76, 175, 80, 0.3);
}

.login-logo .material-icons {
    font-size: 3rem;
    color: white;
}

.login-header h1 {
    font-size: 1.75rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.login-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.login-form {
    margin-bottom: 1.5rem;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
    font-size: 0.9rem;
}

.login-form label .material-icons {
    font-size: 1.2rem;
    color: var(--primary);
}

.login-form input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.login-form input::placeholder {
    color: #999;
}

.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: transform 0.2s, box-shadow 0.3s;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-login .material-icons {
    font-size: 1.2rem;
}

.login-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--light);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--primary);
}

.back-link .material-icons {
    font-size: 1.1rem;
}

.login-decoration {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.login-decoration::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 20s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.decoration-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.decoration-logo {
    margin-bottom: 2rem;
}

.decoration-logo .material-icons {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.decoration-logo h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.decoration-content > p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.decoration-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s, background 0.3s;
}

.feature-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.2);
}

.feature-item .material-icons {
    font-size: 1.5rem;
}

.feature-item span:last-child {
    font-size: 1rem;
    font-weight: 500;
}

/* Admin */
.admin-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 100vh;
}

.admin-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light);
}

.admin-header h1 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.75rem;
    color: var(--dark);
    margin: 0;
}

.admin-header .material-icons {
    color: var(--primary);
    font-size: 2rem;
}

.admin-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Dashboard Page */
.dashboard-stats-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card-large {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.stat-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-large .material-icons {
    font-size: 2.5rem;
    color: white;
}

.stat-content-large {
    flex: 1;
}

.stat-content-large h3 {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number-large {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1;
}

.stat-subtitle {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.dashboard-stats-secondary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.dashboard-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.dashboard-section-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
    overflow: hidden;
}

.dashboard-section-card .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light);
}

.dashboard-section-card .section-header h2 {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark);
}

.dashboard-section-card .section-header .material-icons {
    color: var(--primary);
    font-size: 1.5rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

.btn-link .material-icons {
    font-size: 1.1rem;
}

.empty-state-small {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

.empty-state-small .material-icons {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--text-light);
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-item-mini {
    border: 1px solid var(--light);
    border-radius: 8px;
    padding: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.order-item-mini:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
}

.order-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.order-id-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.order-id-mini .material-icons {
    font-size: 1.2rem;
    color: var(--primary);
}

.status-badge-mini {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge-mini.status-pending {
    background: #fff3e0;
    color: #f57c00;
}

.status-badge-mini.status-processing {
    background: #e3f2fd;
    color: #1976d2;
}

.status-badge-mini.status-shipped {
    background: #e8f5e9;
    color: #388e3c;
}

.status-badge-mini.status-delivered {
    background: #c8e6c9;
    color: #2e7d32;
}

.status-badge-mini.status-cancelled {
    background: #ffebee;
    color: #d32f2f;
}

.order-item-body {
    margin-bottom: 0.75rem;
}

.order-customer-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.order-customer-mini .material-icons {
    font-size: 1rem;
    color: var(--text-light);
}

.order-details-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.order-details-mini .material-icons {
    font-size: 1rem;
}

.order-details-mini .separator {
    color: var(--border);
    margin: 0 0.25rem;
}

.order-item-actions {
    display: flex;
    justify-content: flex-end;
}

.btn-link-small {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-family: inherit;
}

.btn-link-small:hover {
    color: var(--primary-dark);
    background: rgba(76, 175, 80, 0.1);
}

.btn-link-small .material-icons {
    font-size: 1rem;
}

.top-products-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.top-product-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.top-product-item:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
}

.product-rank {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rank-number {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.product-info-mini {
    flex: 1;
}

.product-info-mini h4 {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.product-stats-mini {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.product-stats-mini .material-icons {
    font-size: 1rem;
}

.btn-icon-small {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: var(--light);
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s;
}

.btn-icon-small:hover {
    background: var(--primary);
    color: white;
}

.btn-icon-small .material-icons {
    font-size: 1.1rem;
}

/* Reports Page */
.reports-filters-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.reports-filters-card .card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 1.5rem;
    color: white;
}

.reports-filters-card .card-header h2 {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.reports-filters-card .card-header .material-icons {
    color: white;
    font-size: 1.5rem;
}

.report-filters-form {
    padding: 1.5rem;
}

.report-filters-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.report-filters-form .form-group label .material-icons {
    font-size: 1.2rem;
    color: var(--primary);
}

.report-filters-form input[type="date"] {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.report-filters-form input[type="date"]:focus {
    outline: none;
    border-color: var(--primary);
}

.form-actions-inline {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.form-actions-inline button,
.form-actions-inline a {
    white-space: nowrap;
}

/* Filtros de Relatórios - Nova Organização */
.filters-dates-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.filters-actions-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.filters-main-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filters-quick-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.quick-links-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    margin-right: 0.25rem;
}

.filters-quick-links .btn-link-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--primary);
    background: transparent;
    border: 1px solid var(--primary);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.filters-quick-links .btn-link-small:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .filters-actions-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .filters-quick-links {
        margin-left: auto;
    }
}

.reports-stats-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.reports-stats-secondary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.reports-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.top-products-table {
    overflow-x: auto;
}

.product-rank-small {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.orders-list-compact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.order-item-compact {
    border: 1px solid var(--light);
    border-radius: 8px;
    padding: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.order-item-compact:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
}

.order-compact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.order-id-compact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.order-id-compact .material-icons {
    font-size: 1.2rem;
    color: var(--primary);
}

.order-compact-body {
    margin-top: 0.5rem;
}

.order-compact-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.order-compact-info .material-icons {
    font-size: 1rem;
}

.order-compact-info .separator {
    color: var(--border);
    margin: 0 0.25rem;
}

.more-orders {
    text-align: center;
    padding: 1.5rem;
    border-top: 1px solid var(--light);
    margin-top: 1rem;
}

.more-orders p {
    margin: 0 0 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.stat-card h3 {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: normal;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
}


.admin-sidebar {
    background: var(--dark);
    color: white;
    padding: 2rem;
}

.sidebar-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar h2 {
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.btn-back-site {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
    justify-content: center;
}

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

.btn-back-site .material-icons {
    font-size: 1.2rem;
}

.admin-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.admin-sidebar a {
    color: white;
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.admin-content {
    padding: 2rem;
    background: var(--light);
}

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

.admin-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
}

.admin-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    min-width: 600px;
}

.admin-table th,
.admin-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.admin-table th {
    background: var(--dark);
    color: white;
}

.admin-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

/* Config Tabs */
.config-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--light);
    overflow-x: auto;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--text-light);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab-btn:hover {
    color: var(--primary);
    background: rgba(76, 175, 80, 0.05);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(76, 175, 80, 0.1);
}

.tab-btn .material-icons {
    font-size: 1.2rem;
}

.config-tab-content {
    display: none;
}

.config-tab-content.active {
    display: block;
    animation: fadeIn 0.3s;
}

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

.config-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.config-card .card-header {
    background: var(--light);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.config-card .card-header h2 {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark);
}

.config-card .card-header .material-icons {
    color: var(--primary);
    font-size: 1.5rem;
}

.config-card .admin-form {
    padding: 2rem;
    box-shadow: none;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.checkbox-label:hover {
    background: var(--light);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary);
}

.alert {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Carrossel Admin Styles */
.carousel-form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.carousel-list-section {
    margin-top: 2rem;
}

.carousel-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.carousel-image-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.carousel-image-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.carousel-image-card.inactive {
    opacity: 0.7;
}

.carousel-image-preview {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--light);
}

.carousel-image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inactive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
}

.inactive-overlay .material-icons {
    font-size: 2rem;
}

.carousel-edit-form {
    padding: 1.5rem;
}

.form-group-small {
    margin-bottom: 1rem;
}

.form-group-small label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--dark);
}

.form-group-small input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 0.9rem;
}

.form-group-small input:focus {
    outline: none;
    border-color: var(--primary);
}

.form-row-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.carousel-card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-danger {
    background: var(--danger);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-danger:hover {
    background: #d32f2f;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .carousel-images-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row-small {
        grid-template-columns: 1fr;
    }
    
    .carousel-card-actions {
        flex-direction: column;
    }
    
    .btn-small {
        width: 100%;
        justify-content: center;
    }
}

.alert-info {
    background: #e3f2fd;
    color: #1565c0;
    border-left: 4px solid #2196F3;
}

.alert-info .material-icons {
    color: #2196F3;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.alert-info strong {
    display: block;
    margin-bottom: 0.25rem;
}

/* Coupons Page */
.coupon-form-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
}

.coupon-form-card .card-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 1.5rem;
    color: white;
}

.coupon-form-card .card-header h2 {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.coupon-form-card .card-header .material-icons {
    color: white;
    font-size: 1.5rem;
}

.coupon-form-card .admin-form {
    padding: 2rem;
    box-shadow: none;
}

.coupon-form-card .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.coupon-form-card .form-group label .material-icons {
    font-size: 1.2rem;
    color: var(--primary);
}

.coupon-form-card .form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary {
    background: var(--light);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.coupons-section {
    margin-top: 2rem;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light);
}

.section-header h2 {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark);
}

.section-header .material-icons {
    color: var(--primary);
    font-size: 1.75rem;
}

.badge {
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.coupons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.coupon-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.coupon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.coupon-card.expired {
    opacity: 0.7;
    border-color: #e0e0e0;
}

.coupon-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.coupon-card.expired .coupon-header {
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
}

.coupon-code {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.coupon-code .material-icons {
    font-size: 1.5rem;
}

.status-badge {
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    background: rgba(255,255,255,0.3);
    color: white;
    border: 1px solid rgba(255,255,255,0.5);
}

.status-badge.expired {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.coupon-body {
    padding: 1.5rem;
}

.coupon-discount {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 8px;
}

.discount-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-block;
}

.discount-label {
    font-size: 1.25rem;
    color: var(--text-light);
    margin: 0 0.25rem;
}

.coupon-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    font-size: 0.9rem;
}

.info-item .material-icons {
    font-size: 1.1rem;
    color: var(--text-light);
}

.coupon-actions {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--light);
    border-top: 1px solid var(--border);
    justify-content: flex-end;
}

.btn-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: none;
    background: white;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.btn-icon:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

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

.btn-icon .material-icons {
    font-size: 1.2rem;
}

/* Customers Page */
.customers-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon .material-icons {
    font-size: 2rem;
    color: white;
}

.stat-content h3 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.stat-content p {
    margin: 0.25rem 0 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.customers-filters {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
}

.search-box .material-icons {
    color: var(--text-light);
    font-size: 1.5rem;
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    outline: none;
    color: var(--text);
}

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

.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.customer-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.customer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.customer-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.customer-avatar .material-icons {
    font-size: 2.5rem;
    color: white;
}

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

.customer-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customer-email {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.customer-email .material-icons {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.customer-body {
    padding: 1.5rem;
}

.customer-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light);
}

.customer-stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light);
    border-radius: 8px;
}

.customer-stat-item .material-icons {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.customer-stat-item div {
    display: flex;
    flex-direction: column;
}

.customer-stat-item strong {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.2;
}

.customer-stat-item span:last-child {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.customer-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    font-size: 0.9rem;
}

.detail-item .material-icons {
    font-size: 1.1rem;
    color: var(--text-light);
    flex-shrink: 0;
}

.customer-actions {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--light);
    border-top: 1px solid var(--border);
    justify-content: flex-end;
}

/* Orders Page */
.orders-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.orders-filters {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1rem;
    margin-bottom: 2rem;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text);
    background: var(--light);
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.9rem;
}

.filter-tab:hover {
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary);
}

.filter-tab.active {
    background: var(--primary);
    color: white;
}

.filter-tab .material-icons {
    font-size: 1.1rem;
}

.orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.5rem;
}

.order-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--primary);
}

.order-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.order-card[data-status="pending"] {
    border-left-color: #ff9800;
}

.order-card[data-status="processing"] {
    border-left-color: #2196F3;
}

.order-card[data-status="shipped"] {
    border-left-color: var(--primary);
}

.order-card[data-status="delivered"] {
    border-left-color: var(--primary-dark);
}

.order-card[data-status="cancelled"] {
    border-left-color: #f44336;
    opacity: 0.8;
}

.order-header {
    background: var(--light);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.order-id {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.order-id .material-icons {
    color: var(--primary);
    font-size: 1.5rem;
}

.status-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.status-pending {
    background: #fff3e0;
    color: #f57c00;
}

.status-badge.status-processing {
    background: #e3f2fd;
    color: #1976d2;
}

.status-badge.status-shipped {
    background: #e8f5e9;
    color: #388e3c;
}

.status-badge.status-delivered {
    background: #c8e6c9;
    color: #2e7d32;
}

.status-badge.status-cancelled {
    background: #ffebee;
    color: #d32f2f;
}

.order-body {
    padding: 1.5rem;
}

.order-customer {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light);
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.customer-info .material-icons {
    color: var(--primary);
    font-size: 1.5rem;
}

.customer-info strong {
    display: block;
    color: var(--dark);
    font-size: 1rem;
}

.customer-info p {
    margin: 0.25rem 0 0;
    color: var(--text-light);
    font-size: 0.85rem;
}

.order-items {
    margin-bottom: 1.5rem;
}

.order-items h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: var(--dark);
}

.order-items .material-icons {
    font-size: 1.2rem;
    color: var(--primary);
}

.order-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.order-items li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--light);
    border-radius: 6px;
    font-size: 0.9rem;
}

.item-name {
    flex: 1;
    color: var(--text);
}

.item-qty {
    color: var(--text-light);
    margin: 0 0.5rem;
    font-weight: 500;
}

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

.order-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light);
    border-radius: 8px;
}

.info-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text);
}

.info-row .material-icons {
    font-size: 1.1rem;
    color: var(--text-light);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.info-row span:last-child {
    flex: 1;
    word-break: break-word;
}

.order-total {
    text-align: right;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 700;
}

.order-actions {
    padding: 1rem 1.5rem;
    background: var(--light);
    border-top: 1px solid var(--border);
}

.status-form {
    width: 100%;
}

.status-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
    color: var(--text);
    cursor: pointer;
    transition: border-color 0.3s;
}

.status-select:focus {
    outline: none;
    border-color: var(--primary);
}

.status-select option {
    padding: 0.5rem;
}

/* Products Page */
.products-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.products-filters {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-end;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark);
}

.filter-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    background: white;
    color: var(--text);
    cursor: pointer;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 200px;
    background: var(--light);
    overflow: hidden;
}

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

.product-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    gap: 0.5rem;
}

.product-image .no-image .material-icons {
    font-size: 3rem;
}

.discount-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--danger);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.stock-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.stock-badge .material-icons {
    font-size: 1rem;
}

.stock-badge.stock-ok {
    background: rgba(76, 175, 80, 0.9);
    color: white;
}

.stock-badge.stock-low {
    background: rgba(255, 152, 0, 0.9);
    color: white;
}

.stock-badge.stock-out {
    background: rgba(244, 67, 54, 0.9);
    color: white;
}

.product-body {
    padding: 1.25rem;
}

.product-category {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.product-name {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0 0 1rem;
}

.product-brand .material-icons {
    font-size: 1rem;
}

.product-price {
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-old {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.product-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light);
}

.product-info .info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text);
}

.product-info .info-item .material-icons {
    font-size: 1rem;
    color: var(--text-light);
}

.product-actions {
    display: flex;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: var(--light);
    border-top: 1px solid var(--border);
    justify-content: flex-end;
}

/* Product Edit Form */
.product-form {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 2rem;
}

.form-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    border: 1px solid var(--light);
    border-radius: 8px;
    padding: 1.5rem;
    background: #fafafa;
}

.section-header-form {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light);
}

.section-header-form h2 {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark);
}

.section-header-form .material-icons {
    color: var(--primary);
    font-size: 1.5rem;
}

.product-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.product-form .form-group label .material-icons {
    font-size: 1.2rem;
    color: var(--primary);
}

.product-form input[type="text"],
.product-form input[type="number"],
.product-form textarea,
.product-form select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.product-form input:focus,
.product-form textarea:focus,
.product-form select:focus {
    outline: none;
    border-color: var(--primary);
}

.existing-images-section {
    margin-bottom: 1.5rem;
}

.existing-images-section h3 {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: var(--dark);
}

.images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.image-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border);
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.image-item:hover .image-overlay {
    opacity: 1;
}

.image-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--border);
    aspect-ratio: 1;
}

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

.preview-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 0.5rem;
    font-size: 0.75rem;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 4px;
}

.inline-form {
    display: inline;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h3,
.footer h4 {
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

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

.footer a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.footer a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Toast */
#toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background: var(--primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    animation: slideIn 0.3s;
}

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

/* Material Icons */
.material-icons {
    font-size: 24px;
    vertical-align: middle;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.5rem;
}

.menu-toggle .material-icons {
    font-size: 2rem;
}

/* Esconder elementos mobile no desktop */
.search-form-mobile,
.nav-actions-mobile {
    display: none !important;
}

/* Responsive - Mobile First Approach */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 15px;
    }
    
    /* Navbar Mobile */
    .navbar .container {
        flex-wrap: wrap;
        padding: var(--spacing-sm) var(--spacing-sm);
        gap: var(--spacing-xs);
        min-height: 70px;
    }
    
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 1;
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        padding: 0;
        background: transparent;
        border: none;
        color: var(--text);
        cursor: pointer;
        border-radius: var(--radius-md);
        transition: background var(--transition-base);
    }
    
    .menu-toggle:hover {
        background: var(--light-bg);
    }
    
    .menu-toggle .material-icons {
        font-size: 1.75rem;
    }
    
    .logo {
        order: 2;
        flex: 1;
        min-width: 0;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
    
    .logo-image {
        height: 45px;
        max-width: 180px;
        width: auto;
    }
    
    .nav-actions {
        order: 3;
        gap: var(--spacing-xs);
        flex-shrink: 0;
        display: flex;
        align-items: center;
    }
    
    .icon-btn,
    .cart-btn {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }
    
    .user-menu-btn {
        height: 44px;
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .user-menu-btn .user-name {
        display: none;
    }
    
    /* Esconder busca e botão entrar na primeira linha no mobile */
    .search-form {
        display: none;
    }
    
    .btn-small {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .cart-btn {
        padding: 0.25rem;
    }
    
    .cart-btn .material-icons {
        font-size: 1.4rem;
    }
    
    .icon-btn .material-icons {
        font-size: 1.3rem;
    }
    
    .nav-menu {
        display: none;
        order: 4;
        width: 100%;
        flex-direction: column;
        gap: 0;
        margin-top: 0;
        background: white;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        border-radius: 4px;
        padding: 0.5rem 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid var(--light);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        margin-top: 0;
        padding-left: 1rem;
        background: var(--light);
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: none;
        border: none;
        border-radius: 0;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown-toggle .material-icons {
        transition: transform 0.3s;
    }
    
    .dropdown.active .dropdown-toggle .material-icons {
        transform: rotate(180deg);
    }
    
    /* Barra de busca e botão entrar aparecem após o menu */
    .search-form-mobile {
        order: 5;
        width: 100%;
        margin-top: 0.5rem;
        display: none !important;
        gap: 0.5rem;
    }
    
    .nav-menu.active ~ .search-form-mobile {
        display: flex !important;
    }
    
    .search-form-mobile {
        height: 44px;
    }
    
    .search-form-mobile input {
        flex: 1;
        padding: 0.75rem 1rem;
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        font-size: 1rem;
        height: 44px;
        -webkit-appearance: none;
    }
    
    .search-form-mobile button {
        width: 44px;
        height: 44px;
        padding: 0;
        background: var(--primary);
        color: white;
        border: none;
        border-radius: var(--radius-md);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all var(--transition-base);
    }
    
    .search-form-mobile button:hover {
        background: var(--primary-dark);
    }
    
    .nav-actions-mobile {
        order: 6;
        width: 100%;
        display: none !important;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid var(--light);
    }
    
    .nav-menu.active ~ .nav-actions-mobile {
        display: flex !important;
    }
    
    .nav-actions-mobile .btn-small {
        width: auto;
    }
    
    /* User Menu Mobile */
    .nav-actions-mobile .user-menu {
        width: 100%;
    }
    
    .nav-actions-mobile .user-menu-btn {
        width: 100%;
        justify-content: center;
    }
    
    .nav-actions-mobile .user-menu-dropdown {
        position: fixed;
        top: auto;
        right: 1rem;
        left: 1rem;
        width: auto;
        min-width: auto;
        max-width: 100%;
        bottom: 1rem;
        box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .nav-actions-mobile .user-menu-btn .user-name {
        max-width: none;
    }
    
    /* Hero */
    /* Hero Section Mobile */
    .hero-section {
        padding: var(--spacing-xl) 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: var(--spacing-md);
        line-height: 1.6;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: var(--spacing-sm);
        width: 100%;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 1rem;
        min-height: 48px;
    }
    
    .hero-image {
        display: none;
    }
    
    /* Promo Banner Mobile */
    .promo-banner {
        padding: var(--spacing-lg) 0;
    }
    
    .promo-content {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .promo-item {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xs);
        padding: var(--spacing-sm);
    }
    
    .promo-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        margin: 0 auto;
    }
    
    .promo-icon .material-icons {
        font-size: 1.75rem;
    }
    
    .promo-text h3 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }
    
    .promo-text p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    /* Categories Mobile */
    .categories-section {
        padding: var(--spacing-xl) 0;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .category-card {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .category-icon {
        width: 70px;
        height: 70px;
        margin-bottom: var(--spacing-sm);
    }
    
    .category-icon .material-icons {
        font-size: 2.25rem;
    }
    
    .category-card h3 {
        font-size: 1rem;
        margin-bottom: var(--spacing-xs);
    }
    
    /* Section Header Mobile */
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header .material-icons {
        font-size: 1.5rem;
    }
    
    /* Products Section Mobile */
    .products-section {
        padding: var(--spacing-xl) 0;
    }
    
    /* Products Grid Mobile */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .product-card {
        border-radius: var(--radius-md);
    }
    
    .product-image-wrapper {
        height: 200px;
    }
    
    .product-info {
        padding: var(--spacing-sm);
    }
    
    .product-name {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: var(--spacing-xs);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .product-price {
        margin-top: var(--spacing-xs);
    }
    
    .product-price .current-price {
        font-size: 1.1rem;
    }
    
    .product-price .old-price {
        font-size: 0.85rem;
    }
    
    .product-actions-card {
        flex-direction: column;
        gap: var(--spacing-xs);
        padding: var(--spacing-sm);
    }
    
    .product-card .btn-add-cart {
        width: 100%;
        padding: var(--spacing-sm);
        min-height: 44px;
        font-size: 0.9rem;
    }
    
    .btn-favorite-icon {
        width: 44px;
        height: 44px;
        align-self: flex-end;
    }
    
    /* Benefits Mobile */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    /* Newsletter Mobile */
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-text {
        min-width: auto;
    }
    
    .newsletter-text h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        min-width: auto;
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
        justify-content: center;
    }
    
    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
        margin: 1rem 0;
    }
    
    .product-card img {
        height: 150px;
    }
    
    .product-card h3 {
        font-size: 0.9rem;
        padding: 0.75rem;
    }
    
    .current-price {
        font-size: 1rem;
    }
    
    /* Product Detail */
    .product-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-images {
        order: 1;
    }
    
    .product-info {
        order: 2;
    }
    
    .thumbnails {
        flex-wrap: wrap;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
    
    /* Cart */
    
    /* Checkout */
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Checkout Mobile */
    .checkout-header {
        padding: 1.5rem 0;
    }
    
    .checkout-header h1 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .checkout-form {
        padding: 1.5rem 0;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .checkout-summary-section {
        position: static;
    }
    
    .checkout-summary-card {
        position: static;
    }
    
    .checkout-section {
        padding: 1.5rem;
    }
    
    .section-header {
        margin-bottom: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.25rem;
    }
    
    /* Formulários Mobile */
    .form-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .form-group-full,
    .form-group-cep {
        grid-column: 1;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: var(--spacing-sm);
        font-size: 1rem;
        min-height: 44px;
        -webkit-appearance: none;
        border-radius: var(--radius-md);
    }
    
    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .form-actions {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .form-actions button,
    .form-actions .btn-primary,
    .form-actions .btn-secondary {
        width: 100%;
        min-height: 48px;
        font-size: 1rem;
    }
    
    .payment-methods {
        gap: 0.75rem;
    }
    
    .payment-method-card {
        padding: 0.875rem;
    }
    
    .payment-method-content {
        gap: 0.75rem;
    }
    
    .payment-method-content .material-icons {
        font-size: 1.5rem;
    }
    
    .order-items-summary {
        max-height: 250px;
    }
    
    .order-item-summary {
        padding: 0.875rem;
    }
    
    .order-item-summary .item-image {
        width: 50px;
        height: 50px;
    }
    
    .coupon-section {
        padding: 1rem;
    }
    
    .coupon-input-group {
        flex-direction: column;
    }
    
    .btn-apply-coupon {
        width: 100%;
    }
    
    .security-info {
        padding: 1rem;
    }
    
    .btn-checkout-submit {
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Contact Page Mobile */
    .contact-header {
        padding: 1.5rem 0;
    }
    
    .contact-header h1 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 0;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 1.25rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .contact-form .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form .form-group-full {
        grid-column: 1;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    /* Blog Mobile */
    .blog-header {
        padding: 2rem 0;
    }
    
    .blog-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .blog-header-icon {
        width: 80px;
        height: 80px;
    }
    
    .blog-header-icon .material-icons {
        font-size: 2.5rem;
    }
    
    .blog-header-text h1 {
        font-size: 1.75rem;
    }
    
    .blog-description {
        font-size: 1rem;
    }
    
    .blog-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem 0;
    }
    
    .blog-sidebar {
        position: static;
        order: 2;
    }
    
    .blog-main {
        order: 1;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .post-header h1 {
        font-size: 1.75rem;
    }
    
    .post-meta-header {
        gap: 1rem;
    }
    
    .post-featured-image {
        height: 300px;
    }
    
    .post-content-wrapper {
        padding: 1.5rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Auth */
    .auth-page {
        padding: 2rem 0;
    }
    
    .auth-form {
        padding: 1.5rem;
        margin: 0 15px;
    }
    
    /* Admin */
    .admin-layout {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar {
        position: fixed;
        left: -250px;
        top: 0;
        height: 100vh;
        z-index: 1001;
        transition: left 0.3s;
        overflow-y: auto;
    }
    
    .admin-sidebar.active {
        left: 0;
    }
    
    .admin-content {
        padding: 1rem;
        position: relative;
    }
    
    .admin-menu-toggle {
        display: block !important;
    }
    
    #admin-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
    }
    
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .admin-header h1 {
        font-size: 1.5rem;
    }
    
    /* Admin Table - Mobile Scroll */
    .admin-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .admin-table {
        min-width: 600px;
        font-size: 0.875rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .admin-form {
        padding: 1.5rem;
    }
    
    .config-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .tab-btn {
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
    }
    
    .tab-btn span:last-child {
        display: none;
    }
    
    .config-card .admin-form {
        padding: 1.5rem;
    }
    
    /* Coupons Responsive */
    .coupons-grid {
        grid-template-columns: 1fr;
    }
    
    .coupon-form-card .admin-form {
        padding: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions button {
        width: 100%;
    }
    
    .coupon-discount {
        padding: 1rem;
    }
    
    .discount-value {
        font-size: 2rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    /* Customers Responsive */
    .customers-stats {
        grid-template-columns: 1fr;
    }
    
    .customers-grid {
        grid-template-columns: 1fr;
    }
    
    .customer-stats {
        grid-template-columns: 1fr;
    }
    
    .customer-header {
        flex-direction: column;
        text-align: center;
    }
    
    .customer-info h3,
    .customer-email {
        white-space: normal;
        word-break: break-word;
    }
    
    /* Orders Responsive */
    .orders-stats {
        grid-template-columns: 1fr;
    }
    
    .orders-grid {
        grid-template-columns: 1fr;
    }
    
    .filter-tabs {
        flex-direction: column;
    }
    
    .filter-tab {
        width: 100%;
        justify-content: center;
    }
    
    .order-items li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .item-qty,
    .item-price {
        margin: 0;
    }
    
    /* Products Responsive */
    .products-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .products-header-content h1 {
        font-size: 2rem;
        justify-content: center;
    }
    
    .products-header-content h1 .material-icons {
        font-size: 2.5rem;
    }
    
    .products-description {
        font-size: 1rem;
    }
    
    .products-stats {
        justify-content: center;
    }
    
    .products-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-filters {
        position: static;
        max-height: none;
        margin-bottom: 1rem;
    }
    
    .active-filters {
        padding: 0.75rem;
    }
    
    .active-filters-badges {
        gap: 0.375rem;
    }
    
    .filter-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
    
    .filter-group-toggle {
        padding: 0.875rem;
    }
    
    .filter-content {
        padding: 0 0.875rem 0.875rem 0.875rem;
    }
    
    .filter-options-scroll {
        max-height: 150px;
    }
    
    .price-inputs-wrapper {
        gap: 0.75rem;
    }
    
    .products-main {
        padding: 1rem;
    }
    
    .products-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .product-form {
        padding: 1.5rem;
    }
    
    .form-section {
        padding: 1rem;
    }
    
    .images-grid,
    .image-preview-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    /* Dashboard Responsive */
    .dashboard-stats-main {
        grid-template-columns: 1fr;
    }
    
    .dashboard-stats-secondary {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-sections {
        grid-template-columns: 1fr;
    }
    
    .stat-card-large {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-icon-large {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon-large .material-icons {
        font-size: 2rem;
    }
    
    .stat-number-large {
        font-size: 2rem;
    }
    
    .order-details-mini {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .order-details-mini .separator {
        display: none;
    }
    
    /* Reports Responsive */
    .reports-stats-main {
        grid-template-columns: 1fr;
    }
    
    .reports-stats-secondary {
        grid-template-columns: 1fr;
    }
    
    .reports-sections {
        grid-template-columns: 1fr;
    }
    
    .form-actions-inline {
        flex-direction: column;
        width: 100%;
    }
    
    .form-actions-inline button,
    .form-actions-inline a {
        width: 100%;
    }
    
    .order-compact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .order-compact-info .separator {
        display: none;
    }
    
    /* Cart Responsive */
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-summary-section {
        position: static;
    }
    
    .cart-item-card {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
    
    .item-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .item-subtotal {
        align-items: flex-start;
        width: 100%;
    }
    
    .qty-control {
        width: 100%;
        justify-content: space-between;
    }
    
    .qty-input-group {
        flex: 1;
        max-width: 200px;
    }
    
    /* Footer */
    /* Footer Mobile */
    .footer {
        padding: var(--spacing-xl) 0 var(--spacing-md);
        margin-top: var(--spacing-xl);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }
    
    .footer h3,
    .footer h4 {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-sm);
    }
    
    .footer ul li {
        margin-bottom: var(--spacing-xs);
    }
    
    .footer-bottom {
        padding-top: var(--spacing-md);
        font-size: 0.9rem;
    }
    
    /* Buttons Mobile - Touch Friendly */
    .btn-primary, 
    .btn-secondary, 
    .btn-small {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 1rem;
        min-height: 48px;
        width: 100%;
    }
    
    .btn-small {
        min-height: 44px;
        width: auto;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    /* Toast Mobile */
    #toast-container {
        top: 70px;
        right: var(--spacing-sm);
        left: var(--spacing-sm);
        max-width: calc(100% - 2rem);
    }
    
    .toast {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.95rem;
    }
    
    .btn-block {
        padding: 0.875rem;
    }
    
    /* Toast */
    #toast-container {
        top: 70px;
        right: 10px;
        left: 10px;
    }
    
    .toast {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Admin Login */
    .admin-login {
        padding: 1rem;
        min-height: 100vh;
    }
    
    .login-container {
        grid-template-columns: 1fr;
        max-width: 100%;
        border-radius: 12px;
    }
    
    .login-decoration {
        display: none;
    }
    
    .login-card {
        padding: 2rem 1.5rem;
    }
    
    .login-logo {
        width: 60px;
        height: 60px;
    }
    
    .login-logo .material-icons {
        font-size: 2.5rem;
    }
    
    .login-header h1 {
        font-size: 1.5rem;
    }
    
    .login-form input {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .btn-login {
        padding: 0.875rem;
    }
    
    /* Stats Grid (Admin Dashboard) */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    /* Dashboard Sections */
    .dashboard-sections {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Product Page Breadcrumb */
    .breadcrumb {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    /* Category Page Mobile */
    .category-header {
        padding: 2rem 0;
    }
    
    .category-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .category-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .category-icon-large .material-icons {
        font-size: 2.5rem;
    }
    
    .category-header-text h1 {
        font-size: 1.75rem;
    }
    
    .category-description {
        font-size: 1rem;
    }
    
    .category-stats {
        justify-content: center;
    }
    
    .filters-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filters-left,
    .filters-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .sort-select {
        flex: 1;
    }
    
    .pagination {
        gap: 0.25rem;
    }
    
    .pagination-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .pagination-page {
        min-width: 35px;
        height: 35px;
        padding: 0 0.5rem;
        font-size: 0.875rem;
    }
    
    /* Favorites Page Mobile */
    .favorites-header {
        padding: 2rem 0;
    }
    
    .favorites-header-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .favorites-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .favorites-icon-large .material-icons {
        font-size: 2.5rem;
    }
    
    .favorites-header-text h1 {
        font-size: 1.75rem;
    }
    
    .favorites-description {
        font-size: 1rem;
    }
    
    .favorites-stats {
        justify-content: center;
    }
    
    .product-actions-favorites {
        flex-direction: column;
    }
    
    .btn-remove-favorite {
        width: 100%;
    }
    
    .empty-actions {
        flex-direction: column;
    }
    
    .empty-actions .btn-primary,
    .empty-actions .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .product-detail {
        gap: 2rem;
    }
    
    .checkout-content {
        gap: 2rem;
    }
    
    .admin-layout {
        grid-template-columns: 200px 1fr;
    }
    
    .admin-sidebar {
        padding: 1.5rem;
    }
    
    .sidebar-header {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
    }
    
    .admin-sidebar h2 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .btn-back-site {
        padding: 0.625rem 0.875rem;
        font-size: 0.85rem;
        width: auto;
        min-width: 44px;
    }
    
    .btn-back-site span:last-child {
        display: none;
    }
    
    .admin-content {
        padding: 1.5rem;
    }
}

/* Small Mobile - Telas muito pequenas */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .navbar .container {
        padding: var(--spacing-xs) var(--spacing-sm);
        min-height: 65px;
    }
    
    .logo-image {
        height: 40px;
        max-width: 140px;
    }
    
    .menu-toggle {
        width: 40px;
        height: 40px;
    }
    
    .menu-toggle .material-icons {
        font-size: 1.5rem !important;
    }
    
    .icon-btn,
    .cart-btn {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
    
    .user-menu-btn {
        height: 40px;
        padding: 0.5rem;
        font-size: 0.75rem;
    }
    
    /* Hero Small Mobile */
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    /* Promo Banner Small Mobile */
    .promo-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .promo-item {
        padding: var(--spacing-xs);
    }
    
    /* Categories Small Mobile */
    .categories-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    /* Products Grid Small Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .product-image-wrapper {
        height: 220px;
    }
    
    .product-name {
        font-size: 0.9rem;
    }
    
    .product-price .current-price {
        font-size: 1rem;
    }
    
    /* Section Header Small Mobile */
    .section-header h2 {
        font-size: 1.25rem;
    }
    
    .section-header .material-icons {
        font-size: 1.25rem;
    }
    
    /* Benefits Small Mobile */
    .benefits-grid {
        gap: var(--spacing-sm);
    }
    
    .benefit-card {
        padding: var(--spacing-md);
    }
    
    /* Footer Small Mobile */
    .footer {
        padding: var(--spacing-lg) 0 var(--spacing-sm);
    }
    
    .footer-grid {
        gap: var(--spacing-md);
    }
    
    /* Formulários Small Mobile */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Evita zoom no iOS */
    }
    
    /* Buttons Small Mobile */
    .btn-primary,
    .btn-secondary {
        font-size: 0.95rem;
        padding: var(--spacing-sm);
    }
    
    /* Tables Small Mobile */
    .admin-table {
        min-width: 500px;
        font-size: 0.8rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.5rem;
    }
    
    .thumb {
        width: 40px;
        height: 40px;
    }
}

/* Profile Page */
.profile-page {
    padding: 2rem 0;
    min-height: 60vh;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    color: white;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.profile-avatar .material-icons {
    font-size: 3rem;
    color: white;
}

.profile-welcome h1 {
    margin: 0 0 0.5rem 0;
    font-size: 1.75rem;
    color: white;
}

.profile-welcome p {
    margin: 0;
    opacity: 0.9;
    font-size: 1rem;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.stat-box .material-icons {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.stat-box h3 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark);
    line-height: 1;
}

.stat-box p {
    margin: 0.5rem 0 0 0;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.profile-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.profile-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
}

.profile-card.orders-card {
    grid-column: 1 / -1;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--light);
    background: var(--light);
}

.card-header h2 {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark);
}

.card-header .material-icons {
    color: var(--primary);
}

.btn-edit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-edit:hover {
    background: var(--primary-dark);
}

.btn-edit .material-icons {
    font-size: 1.2rem;
    color: white;
}

.card-content {
    padding: 1.5rem;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light);
}

.info-row:last-child {
    border-bottom: none;
}

.info-row .label {
    font-weight: 500;
    color: var(--text-light);
}

.info-row .value {
    color: var(--dark);
    text-align: right;
}

.text-muted {
    color: var(--text-light);
    font-style: italic;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.btn-link .material-icons {
    font-size: 1.2rem;
}

/* Orders List */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
}

.order-item {
    background: var(--light);
    border-radius: 8px;
    padding: 1.5rem;
    transition: box-shadow 0.3s;
}

.order-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.order-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    color: var(--dark);
}

.order-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.order-date .material-icons {
    font-size: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-processing {
    background: #cfe2ff;
    color: #084298;
}

.status-shipped {
    background: #d1e7dd;
    color: #0f5132;
}

.status-delivered {
    background: #d1e7dd;
    color: #0f5132;
}

.status-cancelled {
    background: #f8d7da;
    color: #842029;
}

.order-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.order-total {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-total .label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.order-total .value {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-state .material-icons {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.empty-state h3 {
    margin: 0 0 0.5rem 0;
    color: var(--dark);
}

.empty-state p {
    margin: 0 0 2rem 0;
    color: var(--text-light);
}

/* Responsive Profile */
@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .profile-avatar {
        width: 60px;
        height: 60px;
    }
    
    .profile-avatar .material-icons {
        font-size: 2.5rem;
    }
    
    .profile-welcome h1 {
        font-size: 1.5rem;
    }
    
    .profile-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-box {
        padding: 1.25rem;
    }
    
    .stat-box .material-icons {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-box h3 {
        font-size: 2rem;
    }
    
    .stat-box p {
        font-size: 0.9rem;
    }
    
    .profile-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .info-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .info-row .value {
        text-align: left;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions button {
        width: 100%;
    }
    
    .order-header {
        flex-direction: column;
    }
    
    .order-details {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Large Screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

