/* ============================================================
   AMARANTLA | Admin + Frontend Styles
   ============================================================ */

:root {
  --primary: #7fad39;
  --primary-dark: #6a8f2e;
  --primary-light: #8fbf4a;
  --heading: #111111;
  --heading-2: #252525;
  --normal: #1c1c1c;
  --para: #6f6f6f;
  --text-light: #b2b2b2;
  --white: #ffffff;
  --black: #000000;
  --bg: #f5f5f5;
  --bg-2: #F3F6FA;
  --border: #ebebeb;
  --border-1: #e1e1e1;
  --red: #dd2222;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  --font: 'Cairo', sans-serif;
  --font-display: 'Cairo', sans-serif;
  --amaranth: #7fad39;
  --amaranth-50: #f0f7e6;
  --amaranth-100: #e0efcc;
  --amaranth-200: #c1df99;
  --amaranth-300: #a2cf66;
  --amaranth-400: #83bf33;
  --amaranth-500: #7fad39;
  --amaranth-600: #6b9430;
  --amaranth-700: #5a7d28;
  --amaranth-800: #4a6621;
  --amaranth-900: #3a501a;
  --amaranth-light: #a2cf66;
  --amaranth-dark: #4a6621;
  --amaranto: #7fad39;
  --gold-50: #fff8e6;
  --shadow-glow-amaranth: 0 0 20px rgba(127,173,57,0.3);
}

body { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
::selection { background: var(--primary); color: white; }

/* ===== ADMIN SIDEBAR (renamed to avoid catalog conflict) ===== */
.admin-sidebar {
  width: 250px;
  min-width: 250px;
  background: #222;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.admin-sidebar::-webkit-scrollbar { width: 3px; }
.admin-sidebar::-webkit-scrollbar-track { background: transparent; }
.admin-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); }

.admin-sidebar .sidebar-brand {
  padding: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.admin-sidebar .sidebar-brand-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}

.admin-sidebar .sidebar-brand-text {
  font-size: 18px;
  font-weight: 700;
  color: white;
}

.admin-sidebar .sidebar-brand-small {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-top: -2px;
  font-weight: 400;
}

.admin-sidebar .sidebar-nav { padding: 12px; flex: 1; }
.admin-sidebar .sidebar-section { margin-bottom: 16px; }

.admin-sidebar .sidebar-section-title {
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 0 12px;
  margin-bottom: 8px;
  letter-spacing: 2px;
  font-weight: 700;
}

.admin-sidebar .sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 2px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.admin-sidebar .sidebar-link:hover { color: white; background: rgba(255,255,255,0.05); }

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

.admin-sidebar .sidebar-link i { font-size: 14px; width: 20px; text-align: center; }

.admin-sidebar .sidebar-footer {
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.admin-sidebar .main-content {
  margin-left: 250px;
  flex: 1;
  padding: 30px;
  min-height: 100vh;
  background: var(--bg);
}

.app-content-header { margin-bottom: 24px; }
.app-content-header h3 { color: var(--normal); font-weight: 700; }

/* ===== ADMIN COMPONENTS ===== */
.admin-dashboard { font-size: 14px; }

.admin-dashboard .card {
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.admin-dashboard .card:hover { box-shadow: var(--shadow-md); }

.admin-dashboard .card-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
}

.admin-dashboard .card-header h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--normal);
}

.admin-dashboard .stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
}

.admin-dashboard .stat-icon {
  width: 50px;
  height: 50px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  flex-shrink: 0;
}

.admin-dashboard .stat-value { font-size: 24px; font-weight: 700; color: var(--normal); line-height: 1.2; }
.admin-dashboard .stat-label { font-size: 14px; color: var(--para); font-weight: 400; }

.quick-btn {
  background: var(--white);
  padding: 16px 12px;
  text-align: center;
  text-decoration: none;
  color: var(--normal);
  transition: all 0.3s;
  display: block;
  cursor: pointer;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quick-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.quick-btn i { font-size: 28px; margin-bottom: 8px; display: block; }

.admin-products { font-size: 14px; }
.admin-products .table { margin-bottom: 0; }

.admin-products .table thead th {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--normal);
  font-weight: 700;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  padding: 14px 16px;
}

.admin-products .table tbody td {
  padding: 14px 16px;
  vertical-align: middle;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--para);
}

.admin-products .table tbody tr:hover td { background: var(--bg); }

.product-thumb { width: 50px; height: 50px; object-fit: cover; }

.product-thumb-placeholder {
  width: 50px; height: 50px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 20px;
}

.btn-amaranth, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  padding: 10px 28px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 700;
  background: var(--primary);
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  line-height: 1.2;
}

.btn-amaranth:hover, .btn-primary:hover { background: var(--primary-dark); color: #ffffff; }

.btn-outline-primary, .btn-outline-amaranth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  padding: 9px 26px;
  color: var(--primary);
  text-transform: uppercase;
  font-weight: 700;
  background: transparent;
  border: 2px solid var(--primary);
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  line-height: 1.2;
}

.btn-outline-primary:hover, .btn-outline-amaranth:hover { background: var(--primary); color: #ffffff; }

.btn-outline-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  padding: 9px 26px;
  color: var(--para);
  text-transform: uppercase;
  font-weight: 700;
  background: transparent;
  border: 2px solid var(--border);
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  line-height: 1.2;
}

.btn-outline-secondary:hover { background: var(--bg); color: var(--normal); border-color: var(--border-1); }

.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding: 10px 28px;
  color: var(--normal);
  font-weight: 700;
  background: var(--bg);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-light:hover { background: var(--border); color: var(--normal); }

.btn-sm { padding: 7px 18px; font-size: 12px; }
.btn-lg { padding: 15px 40px; font-size: 16px; }

.badge {
  font-weight: 700;
  padding: 4px 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.badge-admin, .badge-amaranth { background: var(--primary); color: white; }
.badge-supervisor, .badge-gold { background: #222; color: white; }
.badge-editor { background: #0d9488; color: white; }
.badge-user { background: var(--bg); color: var(--para); }
.badge-pendiente { background: #FEF3C7; color: #92400E; }
.badge-procesando { background: #DBEAFE; color: #1E40AF; }
.badge-enviado { background: #D1FAE5; color: #065F46; }
.badge-entregado { background: #10B981; color: white; }
.badge-cancelado { background: #FEE2E2; color: #991B1B; }

.form-control, .form-select {
  width: 100%;
  height: 46px;
  border: 1px solid var(--border);
  font-size: 16px;
  color: var(--normal);
  padding-left: 20px;
  font-family: var(--font);
  background: var(--white);
  transition: all 0.3s;
}

.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: none; }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { height: auto; min-height: 100px; padding-top: 12px; resize: vertical; }

.form-label {
  font-size: 16px;
  color: var(--normal);
  margin-bottom: 8px;
  display: block;
  font-weight: 600;
}

.form-check-input:checked { background-color: var(--primary); border-color: var(--primary); }
.input-group-text { background: var(--bg); border: 1px solid var(--border); color: var(--para); padding: 10px 16px; }

.table { width: 100%; border-collapse: collapse; }
.table thead tr { border-bottom: 1px solid var(--border); }

.table thead th {
  font-size: 16px;
  font-weight: 700;
  color: var(--normal);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.table tbody tr td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  font-size: 16px;
  color: var(--para);
}

.table tbody tr:hover td { background: var(--bg); }
.table-light { background: var(--bg); }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.card:hover { box-shadow: var(--shadow-md); }

.card-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
}

.card-header h3, .card-header h5 { font-weight: 700; color: var(--normal); font-size: 18px; }
.card-body { padding: 20px; }

.card-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
}

.alert {
  border: none;
  padding: 15px 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success { background: #d4edda; color: #155724; border-left: 4px solid #28a745; }
.alert-danger  { background: #f8d7da; color: #721c24; border-left: 4px solid #dc3545; }
.alert-warning { background: #fff3cd; color: #856404; border-left: 4px solid #ffc107; }
.alert-info    { background: #d1ecf1; color: #0c5460; border-left: 4px solid #17a2b8; }

.modal-content { border: none; box-shadow: var(--shadow-lg); }

.modal-header {
  background: var(--primary);
  color: white;
  border: none;
  padding: 16px 24px;
  display: flex;
  align-items: center;
}

.modal-header .modal-title { font-weight: 700; font-size: 18px; color: white; }
.modal-header small { color: rgba(255,255,255,0.8); font-size: 13px; display: block; }
.modal-header .btn-close { filter: brightness(0) invert(1); }
.modal-body { padding: 24px; }
.modal-footer { border-top: 1px solid var(--border); padding: 16px 24px; }

.breadcrumb { font-size: 14px; }
.breadcrumb-item a { color: var(--para); }
.breadcrumb-item.active { color: var(--primary); font-weight: 700; }
.breadcrumb-item + .breadcrumb-item::before { color: var(--text-light); }

.pagination { display: flex; gap: 0; }

.pagination .page-link {
  display: inline-block;
  width: 36px;
  height: 36px;
  border: 1px solid var(--text-light);
  font-size: 14px;
  color: var(--text-light);
  font-weight: 700;
  line-height: 34px;
  text-align: center;
  margin-right: -1px;
  transition: all 0.3s;
  text-decoration: none;
  background: var(--white);
}

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

.login-card, .auth-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
}

.auth-logo {
  width: 80px; height: 80px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.auth-logo i { font-size: 32px; color: white; }

.text-muted { color: var(--para) !important; }
.text-amaranth, .text-primary { color: var(--primary) !important; }
.text-gold { color: #d4a017 !important; }
.text-gradient-amaranth { color: var(--primary); }
.text-gradient-gold { color: #d4a017; }
.bg-amaranth { background: var(--primary) !important; }
.bg-gold { background: #d4a017 !important; }
.bg-soft, .bg-warm { background: var(--bg); }

.empty-state {
  text-align: center;
  padding: 60px 20px;
}

.empty-state i { font-size: 48px; color: var(--text-light); margin-bottom: 20px; }
.empty-state h4 { color: var(--normal); margin-bottom: 10px; }
.empty-state p { color: var(--para); max-width: 400px; margin: 0 auto 20px; }

.summary-card { background: var(--bg); padding: 30px; }
.summary-card h5 { font-weight: 700; color: var(--normal); font-size: 20px; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; padding: 10px 0; font-size: 16px; color: var(--para); border-bottom: 1px solid var(--border); }
.summary-total { font-size: 18px; font-weight: 700; color: var(--primary); border-top: 1px solid var(--border); margin-top: 10px; padding-top: 15px; }

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
  transition: all 0.3s;
}

.review-card:hover { box-shadow: var(--shadow-md); }

.review-avatar {
  width: 50px; height: 50px; min-width: 50px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  font-weight: 700;
}

.star-rating { display: inline-flex; gap: 3px; }
.star-rating i { color: #EDBB0E; font-size: 14px; }
.star-rating i.empty { color: var(--border); }

.progress { background: var(--border); height: 6px; }
.progress-bar { background: var(--primary); }

.btn-icon-edit {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--para);
  font-size: 14px;
  transition: all 0.3s;
  text-decoration: none;
}

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

.btn-icon-delete {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--red);
  font-size: 14px;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-icon-delete:hover { background: var(--red); border-color: var(--red); color: white; }

.stock-high { background: #d1fae5; color: #065f46; }
.stock-low { background: #fef3c7; color: #92400e; }
.stock-out { background: #fee2e2; color: #dc2626; }

.skeleton {
  background: linear-gradient(90deg, var(--border) 25%, var(--bg) 50%, var(--border) 75%);
  background-size: 200px 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
}

@keyframes skeleton-loading {
  0% { background-position: -200px 0; }
  100% { background-position: calc(200px + 100%) 0; }
}

.card-admin-products { background: var(--white); border: 1px solid var(--border); }

.nav-tabs { border-bottom: 1px solid var(--border); }

.nav-tabs .nav-link {
  border: none;
  color: var(--para);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s;
}

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

.nav-tabs .nav-link.active {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  background: transparent;
}

.dropdown-menu {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 5px 0;
}

.dropdown-item {
  font-size: 14px;
  color: var(--normal);
  padding: 8px 16px;
  transition: all 0.3s;
}

.dropdown-item:hover { background: var(--bg); color: var(--primary); }

.section-divider { width: 80px; height: 4px; background: var(--primary); margin: 0 auto 24px; }
select.form-control, select.form-select { appearance: auto; }
.img-preview { width: 60px; height: 60px; object-fit: cover; border: 1px solid var(--border); }

.price-range-wrap .price-range {
  height: 8px;
  border-radius: 4px;
  background: #ebebeb;
  margin: 20px 0 10px;
}
.price-range-wrap .price-range .ui-slider-range {
  background: #7fad39;
}
.price-range-wrap .price-range .ui-slider-handle {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #7fad39;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  outline: none;
  top: -5px;
}
.price-range-wrap .range-slider .price-input {
  position: relative;
  text-align: center;
}
.price-range-wrap .range-slider .price-input input {
  max-width: 40%;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 6px 10px;
  background: #fff;
  color: #333;
  font-size: 14px;
  text-align: center;
  display: inline-block;
  margin: 0 4px;
}

/* ===== ABOUT PAGE ===== */
.about-hero-premium {
  background: linear-gradient(135deg, #4a6621 0%, #7fad39 50%, #8fbf4a 100%);
  color: white;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.about-hero-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.about-hero-premium h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
}

.about-hero-premium p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.about-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.about-badge-premium img {
  height: 24px;
  filter: brightness(0) invert(1);
}

.historia-section {
  padding: 80px 0;
  background: var(--white);
}

.historia-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--normal);
  margin-bottom: 24px;
}

.historia-content h2 i { color: var(--primary); }

.historia-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--para);
  margin-bottom: 16px;
}

.historia-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.historia-stat-card {
  background: var(--bg);
  padding: 24px;
  text-align: center;
  border-radius: var(--radius-md);
}

.historia-stat-card .stat-number {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
}

.historia-stat-card .stat-label {
  display: block;
  font-size: 14px;
  color: var(--para);
  margin-top: 4px;
}

.video-timeline-section {
  padding: 80px 0;
  background: var(--bg);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}

.video-timeline-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--normal);
  margin-bottom: 12px;
}

.video-timeline-section > .container > .text-center > p {
  color: var(--para);
  max-width: 500px;
  margin: 0 auto 48px;
}

.video-timeline-item {
  margin-bottom: 48px;
}

.video-wrapper-modern {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.video-wrapper-modern iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-content-modern h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--normal);
  margin-bottom: 12px;
}

.video-content-modern p {
  color: var(--para);
  line-height: 1.7;
}

.video-step-modern {
  display: inline-block;
  font-size: 14px;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.proceso-section {
  padding: 80px 0;
  background: var(--white);
}

.proceso-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--normal);
  margin-bottom: 12px;
}

.proceso-section > .container > .text-center > p {
  color: var(--para);
  max-width: 500px;
  margin: 0 auto 48px;
}

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

.process-card-modern {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s;
}

.process-card-modern:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.process-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

.process-body {
  padding: 20px;
}

.process-step {
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.process-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--normal);
  margin-bottom: 8px;
}

.process-body p {
  font-size: 14px;
  color: var(--para);
  line-height: 1.6;
  margin: 0;
}

.cta-historia {
  padding: 80px 0;
  background: linear-gradient(135deg, #7fad39, #4a6621);
  color: white;
}

.cta-historia h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 12px;
}

.cta-historia p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 24px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  background: white;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.btn-cta:hover {
  background: var(--amaranth-900);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: linear-gradient(135deg, #4a6621, #7fad39);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.contact-hero h1 {
  font-size: 42px;
  font-weight: 900;
}

.contact-hero p {
  font-size: 18px;
  opacity: 0.9;
}

.contact-info-card {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
}

.contact-info-card i {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-info-card h5 {
  font-weight: 700;
  color: var(--normal);
  margin-bottom: 8px;
}

.contact-info-card p {
  color: var(--para);
  margin: 0;
}

.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px;
}

.contact-form-wrapper h3 {
  font-weight: 700;
  color: var(--normal);
  margin-bottom: 24px;
}

/* ===== FAVORITES PAGE ===== */
.favorites-page .favorites-header {
  margin-bottom: 30px;
}

.favorites-page .favorites-header h2 {
  font-weight: 800;
  color: var(--normal);
}

/* ===== CHECKOUT FIXES ===== */
.checkout__input select.form-control,
.checkout__input select {
  height: 46px;
  border: 1px solid #e1e1e1;
  padding: 0 20px;
  font-size: 16px;
  color: #1c1c1c;
  background: white;
}

.checkout__input select:focus {
  border-color: #7fad39;
  outline: none;
}

.checkout .checkout__input .checkout__input__add {
  margin-bottom: 0;
}

/* ===== ADMIN CONTENT FIX ===== */
.main-content {
  margin-left: 250px;
  flex: 1;
  padding: 30px;
  min-height: 100vh;
  background: var(--bg);
}

/* ===== FAVORITES PAGE ===== */
.page-header {
  background: linear-gradient(135deg, #4a6621, #7fad39);
  padding: 60px 0 40px;
}

.page-section-alt {
  padding: 60px 0;
  background: var(--bg);
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}

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

.product-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--bg);
}

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

.product-card-price {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .admin-sidebar { width: 56px; min-width: 56px; }
  .admin-sidebar .sidebar-brand { padding: 12px 8px; justify-content: center; }
  .admin-sidebar .sidebar-brand-text,
  .admin-sidebar .sidebar-brand-small,
  .admin-sidebar .sidebar-section-title,
  .admin-sidebar .sidebar-link span { display: none; }
  .admin-sidebar .sidebar-link { justify-content: center; padding: 12px 4px; font-size: 0; }
  .admin-sidebar .sidebar-link i { font-size: 18px; width: auto; }
  .admin-sidebar .sidebar-footer a { justify-content: center; font-size: 0; padding: 8px 4px; }
  .admin-sidebar .sidebar-footer a i { font-size: 16px; }
  .main-content { margin-left: 56px; padding: 15px; }
  .process-grid-modern { grid-template-columns: repeat(2, 1fr); }
  .historia-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-content { padding: 15px; }
  .admin-dashboard .stat-value { font-size: 20px; }
  .about-hero-premium h1 { font-size: 32px; }
  .process-grid-modern { grid-template-columns: 1fr 1fr; }
  .historia-content h2 { font-size: 28px; }
  .video-timeline-section h2 { font-size: 28px; }
}

@media (max-width: 576px) {
  .btn-amaranth, .btn-primary { padding: 10px 20px; font-size: 12px; }
  .process-grid-modern { grid-template-columns: 1fr; }
  .historia-stats { grid-template-columns: 1fr; }
}
