/* =============================================
   EFCOL PREMIUM DESIGN SYSTEM v2.0
   Marketplace Premium — Desktop First
   ============================================= */

/* =============================================
   1. DESIGN TOKENS
   ============================================= */
:root {
  /* Primary Brand */
  --efcol-primary: #b21f2a;
  --efcol-primary-light: #d31f1f;
  --efcol-primary-lighter: #fce4e6;
  --efcol-primary-dark: #741117;
  --efcol-primary-rgb: 178, 31, 42;

  /* Secondary Brand */
  --efcol-secondary: #f6b964;
  --efcol-secondary-light: #ffe27c;
  --efcol-secondary-dark: #d4943a;
  --efcol-secondary-lighter: #fff8ed;

  /* Neutrals */
  --efcol-white: #ffffff;
  --efcol-bg: #f8f9fb;
  --efcol-bg-alt: #f1f3f6;
  --efcol-bg-card: #ffffff;
  --efcol-border: #e9edf2;
  --efcol-border-light: #f0f2f5;
  --efcol-border-focus: #b21f2a;

  /* Text */
  --efcol-text-primary: #1a1a2e;
  --efcol-text-secondary: #4a4a6a;
  --efcol-text-muted: #8e8ea0;
  --efcol-text-inverse: #ffffff;

  /* Feedback */
  --efcol-success: #10b981;
  --efcol-success-light: #d1fae5;
  --efcol-warning: #f59e0b;
  --efcol-warning-light: #fef3c7;
  --efcol-error: #ef4444;
  --efcol-error-light: #fee2e2;
  --efcol-info: #3b82f6;

  /* Typography */
  --efcol-font-primary: 'League Spartan', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --efcol-font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font sizes */
  --efcol-text-xs: 0.75rem;
  --efcol-text-sm: 0.875rem;
  --efcol-text-base: 1rem;
  --efcol-text-lg: 1.125rem;
  --efcol-text-xl: 1.25rem;
  --efcol-text-2xl: 1.5rem;
  --efcol-text-3xl: 1.875rem;
  --efcol-text-4xl: 2.25rem;

  /* Spacing */
  --efcol-space-1: 0.25rem;
  --efcol-space-2: 0.5rem;
  --efcol-space-3: 0.75rem;
  --efcol-space-4: 1rem;
  --efcol-space-5: 1.25rem;
  --efcol-space-6: 1.5rem;
  --efcol-space-8: 2rem;
  --efcol-space-10: 2.5rem;
  --efcol-space-12: 3rem;
  --efcol-space-16: 4rem;
  --efcol-space-20: 5rem;

  /* Border Radius */
  --efcol-radius-sm: 6px;
  --efcol-radius-md: 10px;
  --efcol-radius-lg: 16px;
  --efcol-radius-xl: 20px;
  --efcol-radius-full: 9999px;

  /* Shadows */
  --efcol-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --efcol-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --efcol-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
  --efcol-shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
  --efcol-shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
  --efcol-shadow-card-hover: 0 12px 32px rgba(0, 0, 0, 0.1);
  --efcol-shadow-btn: 0 4px 14px rgba(178, 31, 42, 0.25);

  /* Transitions */
  --efcol-transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --efcol-transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --efcol-transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Gradients */
  --efcol-gradient-primary: linear-gradient(135deg, var(--efcol-primary) 0%, var(--efcol-primary-dark) 100%);
  --efcol-gradient-secondary: linear-gradient(135deg, var(--efcol-secondary) 0%, var(--efcol-secondary-dark) 100%);
  --efcol-gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --efcol-gradient-danger: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  --efcol-gradient-warning: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  --efcol-gradient-info: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);

  /* Section Backgrounds */
  --efcol-section-bg-1: #fff8ed;
  --efcol-section-bg-2: #fce4e6;

  /* Layout */
  --efcol-container-max: 1200px;
  --efcol-header-height: 70px;
}

/* =============================================
   2. TYPOGRAPHY
   ============================================= */
body {
  font-family: var(--efcol-font-body);
  font-size: var(--efcol-text-base);
  line-height: 1.6;
  color: var(--efcol-text-primary);
  background: var(--efcol-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--efcol-font-primary);
  font-weight: 700;
  line-height: 1.25;
  color: var(--efcol-text-primary);
}

h1, .h1 { font-size: var(--efcol-text-4xl); letter-spacing: -0.02em; }
h2, .h2 { font-size: var(--efcol-text-3xl); letter-spacing: -0.01em; }
h3, .h3 { font-size: var(--efcol-text-2xl); }
h4, .h4 { font-size: var(--efcol-text-xl); }
h5, .h5 { font-size: var(--efcol-text-lg); }
h6, .h6 { font-size: var(--efcol-text-base); }

p { color: var(--efcol-text-secondary); line-height: 1.7; }
small, .text-sm { font-size: var(--efcol-text-sm); }
.text-xs { font-size: var(--efcol-text-xs); }
.text-muted { color: var(--efcol-text-muted) !important; }
.text-primary-custom { color: var(--efcol-primary) !important; }
.font-heading { font-family: var(--efcol-font-primary); }

/* =============================================
   3. LAYOUT & CONTAINER
   ============================================= */
.efcol-container {
  max-width: var(--efcol-container-max);
  margin: 0 auto;
  padding: 0 var(--efcol-space-6);
  width: 100%;
}

@media (min-width: 1400px) {
  .efcol-container {
    max-width: 1320px;
  }
}

.efcol-section {
  padding: var(--efcol-space-16) 0;
}

.efcol-section-sm {
  padding: var(--efcol-space-8) 0;
}

.efcol-section-lg {
  padding: var(--efcol-space-20) 0;
}

/* =============================================
   4. SECTION HEADERS
   ============================================= */
.efcol-section-header {
  text-align: center;
  margin-bottom: var(--efcol-space-10);
  position: relative;
}

.efcol-section-header h2 {
  font-size: var(--efcol-text-3xl);
  margin-bottom: var(--efcol-space-2);
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--efcol-primary), var(--efcol-primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.efcol-section-header h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--efcol-primary), var(--efcol-secondary), var(--efcol-primary));
  border-radius: 2px;
  margin: var(--efcol-space-3) auto 0;
}

.efcol-section-header p {
  color: var(--efcol-text-secondary);
  font-size: var(--efcol-text-lg);
  max-width: 600px;
  margin: var(--efcol-space-3) auto 0;
  font-weight: 400;
}

/* =============================================
   5. BUTTON SYSTEM
   ============================================= */
.efcol-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--efcol-space-2);
  font-family: var(--efcol-font-primary);
  font-weight: 600;
  font-size: var(--efcol-text-sm);
  line-height: 1;
  padding: 0.75rem 1.5rem;
  border: 2px solid transparent;
  border-radius: var(--efcol-radius-full);
  cursor: pointer;
  transition: var(--efcol-transition);
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
  position: relative;
  overflow: hidden;
}

.efcol-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--efcol-primary-rgb), 0.3);
}

.efcol-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary */
.efcol-btn-primary {
  background: var(--efcol-primary);
  color: var(--efcol-text-inverse);
  border-color: var(--efcol-primary);
  box-shadow: var(--efcol-shadow-btn);
}

.efcol-btn-primary:hover {
  background: var(--efcol-primary-dark);
  border-color: var(--efcol-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--efcol-primary-rgb), 0.35);
  color: var(--efcol-text-inverse);
  text-decoration: none;
}

.efcol-btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--efcol-shadow-btn);
}

/* Secondary / Outline */
.efcol-btn-outline {
  background: transparent;
  color: var(--efcol-primary);
  border-color: var(--efcol-primary);
}

.efcol-btn-outline:hover {
  background: var(--efcol-primary);
  color: var(--efcol-text-inverse);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Ghost */
.efcol-btn-ghost {
  background: transparent;
  color: var(--efcol-text-secondary);
  border-color: transparent;
}

.efcol-btn-ghost:hover {
  background: var(--efcol-bg-alt);
  color: var(--efcol-primary);
  text-decoration: none;
}

/* Gold / Secondary brand */
.efcol-btn-gold {
  background: var(--efcol-secondary);
  color: var(--efcol-text-primary);
  border-color: var(--efcol-secondary);
}

.efcol-btn-gold:hover {
  background: var(--efcol-secondary-dark);
  border-color: var(--efcol-secondary-dark);
  transform: translateY(-2px);
  color: var(--efcol-text-primary);
  text-decoration: none;
}

/* Sizes */
.efcol-btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--efcol-text-xs);
}

.efcol-btn-lg {
  padding: 1rem 2rem;
  font-size: var(--efcol-text-base);
}

.efcol-btn-block {
  width: 100%;
}

/* =============================================
   6. INPUT SYSTEM
   ============================================= */
.efcol-input {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--efcol-font-body);
  font-size: var(--efcol-text-base);
  color: var(--efcol-text-primary);
  background: var(--efcol-white);
  border: 2px solid var(--efcol-border);
  border-radius: var(--efcol-radius-md);
  transition: var(--efcol-transition);
  height: 48px;
}

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

.efcol-input:hover {
  border-color: #d0d5dd;
}

.efcol-input:focus {
  outline: none;
  border-color: var(--efcol-border-focus);
  box-shadow: 0 0 0 3px rgba(var(--efcol-primary-rgb), 0.1);
}

.efcol-input.error {
  border-color: var(--efcol-error);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.efcol-input.success {
  border-color: var(--efcol-success);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.efcol-input:disabled {
  background: var(--efcol-bg);
  color: var(--efcol-text-muted);
  cursor: not-allowed;
}

/* Input group */
.efcol-input-group {
  display: flex;
  align-items: center;
  position: relative;
}

.efcol-input-group .efcol-input {
  flex: 1;
}

.efcol-input-group .efcol-input-group-btn {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
}

/* Select */
select.efcol-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a4a6a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

/* Label */
.efcol-label {
  display: block;
  font-family: var(--efcol-font-primary);
  font-weight: 600;
  font-size: var(--efcol-text-sm);
  color: var(--efcol-text-primary);
  margin-bottom: var(--efcol-space-2);
}

/* =============================================
   7. CARD SYSTEM
   ============================================= */
.efcol-card {
  background: var(--efcol-bg-card);
  border-radius: var(--efcol-radius-lg);
  box-shadow: var(--efcol-shadow-card);
  border: 1px solid var(--efcol-border-light);
  transition: var(--efcol-transition);
}

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

.efcol-card-header {
  padding: var(--efcol-space-5) var(--efcol-space-6);
  border-bottom: 1px solid var(--efcol-border-light);
}

.efcol-card-body {
  padding: var(--efcol-space-6);
}

.efcol-card-footer {
  padding: var(--efcol-space-4) var(--efcol-space-6);
  border-top: 1px solid var(--efcol-border-light);
}

/* =============================================
   8. BADGE SYSTEM
   ============================================= */
.efcol-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--efcol-font-primary);
  font-weight: 600;
  font-size: var(--efcol-text-xs);
  padding: 3px 10px;
  border-radius: var(--efcol-radius-full);
  line-height: 1.4;
  white-space: nowrap;
}

.efcol-badge-primary {
  background: var(--efcol-primary);
  color: var(--efcol-text-inverse);
}

.efcol-badge-success {
  background: var(--efcol-success-light);
  color: #065f46;
}

.efcol-badge-warning {
  background: var(--efcol-warning-light);
  color: #92400e;
}

.efcol-badge-error {
  background: var(--efcol-error-light);
  color: #991b1b;
}

.efcol-badge-info {
  background: #dbeafe;
  color: #1e40af;
}

.efcol-badge-gold {
  background: var(--efcol-secondary);
  color: var(--efcol-text-primary);
}

/* =============================================
   9. PREMIUM HEADER
   ============================================= */
.efcol-header {
  background: linear-gradient(180deg, var(--efcol-bg) 0%, var(--efcol-white) 100%);
  border-top: 3px solid var(--efcol-primary);
  border-bottom: 1px solid var(--efcol-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

/* Logo */
.efcol-header-logo {
  display: flex;
  align-items: center;
  gap: var(--efcol-space-3);
  flex-shrink: 0;
  text-decoration: none;
}

.efcol-header-logo img {
  height: 36px;
  width: auto;
  display: block;
}

.efcol-header-logo span {
  font-family: var(--efcol-font-primary);
  font-weight: 700;
  font-size: var(--efcol-text-lg);
  color: var(--efcol-primary);
  letter-spacing: 0.5px;
}

.efcol-header-logo:hover {
  text-decoration: none;
  opacity: 0.9;
}

/* Search Bar */
.efcol-header-search {
  flex: 1;
  max-width: 520px;
  position: relative;
}

.efcol-header-search .efcol-input {
  height: 44px;
  padding-left: 44px;
  padding-right: 44px;
  border-radius: var(--efcol-radius-full);
  background: var(--efcol-bg);
  border-color: var(--efcol-border);
  font-size: var(--efcol-text-sm);
}

.efcol-header-search .efcol-input:focus {
  background: var(--efcol-white);
  border-color: var(--efcol-primary);
  box-shadow: 0 0 0 3px rgba(var(--efcol-primary-rgb), 0.08);
}

.efcol-header-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--efcol-text-muted);
  font-size: var(--efcol-text-sm);
  pointer-events: none;
}

/* Search Results Dropdown */
.efcol-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--efcol-white);
  border-radius: var(--efcol-radius-lg);
  box-shadow: var(--efcol-shadow-xl);
  border: 1px solid var(--efcol-border);
  z-index: 1001;
  display: none;
  overflow: hidden;
  animation: efcolFadeIn 0.15s ease;
}

.efcol-search-results.active {
  display: block;
}

.efcol-search-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--efcol-space-3) var(--efcol-space-4);
  border-bottom: 1px solid var(--efcol-border-light);
  background: var(--efcol-bg);
}

.efcol-search-results-count {
  font-size: var(--efcol-text-xs);
  font-weight: 600;
  color: var(--efcol-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.efcol-search-results-close {
  background: none;
  border: none;
  color: var(--efcol-text-muted);
  cursor: pointer;
  padding: 4px;
  border-radius: var(--efcol-radius-sm);
  transition: var(--efcol-transition-fast);
  line-height: 1;
}

.efcol-search-results-close:hover {
  background: var(--efcol-bg-alt);
  color: var(--efcol-primary);
}

.efcol-search-results-list {
  max-height: 400px;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.efcol-search-results-list::-webkit-scrollbar {
  width: 4px;
}

.efcol-search-results-list::-webkit-scrollbar-track {
  background: transparent;
}

.efcol-search-results-list::-webkit-scrollbar-thumb {
  background: var(--efcol-border);
  border-radius: 2px;
}

.efcol-search-item {
  display: flex;
  align-items: center;
  gap: var(--efcol-space-3);
  padding: var(--efcol-space-3) var(--efcol-space-4);
  text-decoration: none;
  color: var(--efcol-text-primary);
  border-bottom: 1px solid var(--efcol-border-light);
  transition: var(--efcol-transition-fast);
}

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

.efcol-search-item:hover {
  background: rgba(var(--efcol-primary-rgb), 0.03);
  text-decoration: none;
}

.efcol-search-item-img {
  width: 48px;
  height: 48px;
  border-radius: var(--efcol-radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--efcol-bg);
  border: 1px solid var(--efcol-border-light);
}

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

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

.efcol-search-item-title {
  font-family: var(--efcol-font-primary);
  font-weight: 600;
  font-size: var(--efcol-text-sm);
  color: var(--efcol-text-primary);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.efcol-search-item-price {
  font-weight: 700;
  font-size: var(--efcol-text-sm);
  color: var(--efcol-primary);
  margin-top: 2px;
}

.efcol-search-item-price-old {
  font-size: var(--efcol-text-xs);
  color: var(--efcol-text-muted);
  text-decoration: line-through;
  margin-left: 6px;
  font-weight: 400;
}

.efcol-search-item-arrow {
  color: var(--efcol-text-muted);
  font-size: var(--efcol-text-sm);
  transition: var(--efcol-transition-fast);
}

.efcol-search-item:hover .efcol-search-item-arrow {
  color: var(--efcol-primary);
  transform: translateX(3px);
}

.efcol-search-loading {
  padding: var(--efcol-space-6);
  text-align: center;
  color: var(--efcol-text-muted);
  font-size: var(--efcol-text-sm);
}

.efcol-search-empty {
  padding: var(--efcol-space-8) var(--efcol-space-4);
  text-align: center;
  color: var(--efcol-text-muted);
}

.efcol-search-empty i {
  font-size: 2rem;
  color: var(--efcol-border);
  margin-bottom: var(--efcol-space-2);
}

/* Header Actions */
.efcol-header-actions {
  display: flex;
  align-items: center;
  gap: var(--efcol-space-2);
  flex-shrink: 0;
}

/* Account dropdown wrapper */
.efcol-header-action-wrapper {
  position: relative;
}

.efcol-header-action-wrapper.dropdown.show .efcol-dropdown,
.efcol-header-action-wrapper .efcol-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Bootstrap's .show on .dropdown-menu also needs to unhide */
.efcol-dropdown.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Remove Bootstrap caret from header action toggles */
.efcol-header-action-wrapper .dropdown-toggle::after {
  display: none;
}

.efcol-header-action {
  display: flex;
  align-items: center;
  gap: var(--efcol-space-2);
  padding: var(--efcol-space-2) var(--efcol-space-3);
  border-radius: var(--efcol-radius-md);
  text-decoration: none;
  color: var(--efcol-text-secondary);
  font-family: var(--efcol-font-primary);
  font-weight: 600;
  font-size: var(--efcol-text-sm);
  transition: var(--efcol-transition-fast);
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
}

.efcol-header-action:hover {
  background: var(--efcol-bg);
  color: var(--efcol-primary);
  text-decoration: none;
}

.efcol-header-action i {
  font-size: 1.15rem;
}

.efcol-header-action .efcol-badge-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--efcol-primary);
  color: var(--efcol-text-inverse);
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: var(--efcol-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
}

/* Top bar */
.efcol-topbar {
  background: var(--efcol-primary);
  color: var(--efcol-text-inverse);
  font-size: var(--efcol-text-xs);
  padding: 6px 0;
}

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

.efcol-topbar-left {
  display: flex;
  align-items: center;
  gap: var(--efcol-space-2);
}

.efcol-topbar-left i {
  font-size: 0.8rem;
  color: var(--efcol-secondary);
}

.efcol-topbar-right {
  display: flex;
  align-items: center;
  gap: var(--efcol-space-4);
}

.efcol-topbar-social {
  display: flex;
  align-items: center;
  gap: var(--efcol-space-2);
}

.efcol-topbar-social a {
  color: var(--efcol-text-inverse);
  opacity: 0.8;
  transition: var(--efcol-transition-fast);
  font-size: 0.9rem;
}

.efcol-topbar-social a:hover {
  opacity: 1;
  color: var(--efcol-secondary);
}

/* Navigation */
.efcol-nav {
  background: linear-gradient(135deg, var(--efcol-primary-dark) 0%, var(--efcol-primary) 100%);
  border-bottom: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.efcol-nav-inner {
  display: flex;
  align-items: center;
  height: 44px;
  max-width: var(--efcol-container-max);
  margin: 0 auto;
  padding: 0 var(--efcol-space-6);
}

.efcol-nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.efcol-nav-item {
  position: relative;
}

.efcol-nav-link {
  display: flex;
  align-items: center;
  gap: var(--efcol-space-1);
  padding: 0 var(--efcol-space-4);
  height: 44px;
  font-family: var(--efcol-font-primary);
  font-weight: 500;
  font-size: var(--efcol-text-sm);
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: var(--efcol-transition-fast);
  position: relative;
  letter-spacing: 0.3px;
}

.efcol-nav-link:hover {
  color: var(--efcol-white);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
}

.efcol-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--efcol-space-4);
  right: var(--efcol-space-4);
  height: 2px;
  background: var(--efcol-secondary);
  transform: scaleX(0);
  transition: transform var(--efcol-transition-fast);
  border-radius: 1px 1px 0 0;
}

.efcol-nav-link:hover::after,
.efcol-nav-item.active .efcol-nav-link::after {
  transform: scaleX(1);
}

.efcol-nav-item.active .efcol-nav-link {
  color: var(--efcol-white);
  background: rgba(255, 255, 255, 0.08);
}

/* Dropdown */
.efcol-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--efcol-white);
  border-radius: var(--efcol-radius-md);
  box-shadow: var(--efcol-shadow-lg);
  border: 1px solid var(--efcol-border);
  padding: var(--efcol-space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--efcol-transition);
  z-index: 1000;
}

.efcol-nav-item:hover .efcol-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.efcol-dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--efcol-space-2);
  padding: var(--efcol-space-2) var(--efcol-space-3);
  font-family: var(--efcol-font-primary);
  font-size: var(--efcol-text-sm);
  color: var(--efcol-text-secondary);
  text-decoration: none;
  border-radius: var(--efcol-radius-sm);
  transition: var(--efcol-transition-fast);
}

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

.efcol-dropdown-divider {
  height: 1px;
  background: var(--efcol-border-light);
  margin: var(--efcol-space-1) var(--efcol-space-2);
}

/* =============================================
   10. PREMIUM FOOTER
   ============================================= */
.efcol-footer {
  background: linear-gradient(180deg, var(--efcol-primary-dark) 0%, #4a0a0e 100%);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--efcol-space-16) 0 var(--efcol-space-8);
  position: relative;
}

.efcol-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--efcol-primary), var(--efcol-secondary), var(--efcol-primary), var(--efcol-secondary));
  background-size: 300% 100%;
  animation: efcolGradientMove 4s ease infinite;
}

@keyframes efcolGradientMove {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.efcol-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--efcol-space-10);
  max-width: var(--efcol-container-max);
  margin: 0 auto;
  padding: 0 var(--efcol-space-6);
}

.efcol-footer-brand img {
  height: 40px;
  margin-bottom: var(--efcol-space-4);
}

.efcol-footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--efcol-text-sm);
  line-height: 1.7;
  max-width: 340px;
}

.efcol-footer-social {
  display: flex;
  gap: var(--efcol-space-3);
  margin-top: var(--efcol-space-5);
}

.efcol-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--efcol-radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: var(--efcol-secondary);
  font-size: 1.1rem;
  transition: var(--efcol-transition);
  text-decoration: none;
}

.efcol-footer-social a:hover {
  background: var(--efcol-primary);
  color: var(--efcol-text-inverse);
  transform: translateY(-3px);
  text-decoration: none;
}

.efcol-footer-title {
  font-family: var(--efcol-font-primary);
  font-weight: 700;
  font-size: var(--efcol-text-base);
  color: var(--efcol-text-inverse);
  margin-bottom: var(--efcol-space-5);
  position: relative;
  padding-bottom: var(--efcol-space-3);
}

.efcol-footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--efcol-primary);
  border-radius: 1px;
}

.efcol-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.efcol-footer-links li {
  margin-bottom: var(--efcol-space-2);
}

.efcol-footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--efcol-text-sm);
  text-decoration: none;
  transition: var(--efcol-transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--efcol-space-1);
}

.efcol-footer-links a:hover {
  color: var(--efcol-secondary);
  text-decoration: none;
  transform: translateX(3px);
}

.efcol-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: var(--efcol-space-10);
  padding-top: var(--efcol-space-6);
  text-align: center;
  max-width: var(--efcol-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--efcol-space-6);
  padding-right: var(--efcol-space-6);
}

.efcol-footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: var(--efcol-text-xs);
  margin: 0;
}

/* Mobile Services Section */
.efcol-section-sm {
  background: linear-gradient(135deg, var(--efcol-section-bg-1), var(--efcol-section-bg-2)) !important;
}

.efcol-section-sm .block-6 {
  background: var(--efcol-white);
  border-radius: var(--efcol-radius-lg);
  border: 1px solid var(--efcol-border-light);
  margin: 0 4px;
  transition: var(--efcol-transition);
}

.efcol-section-sm .block-6:hover {
  transform: translateY(-2px);
  box-shadow: var(--efcol-shadow-card-hover);
}

.efcol-section-sm .block-6 .icon span {
  color: var(--efcol-primary) !important;
  font-size: 2rem !important;
}

.efcol-section-sm .block-6 .heading {
  font-family: var(--efcol-font-primary);
  font-weight: 700;
  font-size: var(--efcol-text-xs) !important;
  color: var(--efcol-primary) !important;
}

.efcol-section-sm .block-6 p {
  font-size: var(--efcol-text-xs) !important;
  color: var(--efcol-text-secondary);
}

/* EFCol Choose / Divider Section */
.efcol-section.ftco-choose .choose-wrap {
  position: relative;
}

.efcol-section.ftco-choose .divider-one {
  position: relative;
  min-height: 400px;
}

.efcol-section.ftco-choose .divider-one .text {
  background: linear-gradient(0deg, rgba(178,31,42,0.85) 0%, rgba(116,17,23,0.6) 100%);
  border-radius: var(--efcol-radius-lg);
  padding: var(--efcol-space-8) !important;
  backdrop-filter: blur(4px);
}

.efcol-section.ftco-choose .divider-one .text h2 {
  color: var(--efcol-secondary) !important;
}

.efcol-section.ftco-choose .divider-one .text .subheading {
  color: var(--efcol-secondary-light) !important;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: var(--efcol-text-sm);
}

.efcol-section.ftco-choose .divider-one .text .btn-black {
  background: var(--efcol-secondary);
  color: var(--efcol-text-primary);
  border: none;
  border-radius: var(--efcol-radius-full);
  font-weight: 700;
  transition: var(--efcol-transition);
}

.efcol-section.ftco-choose .divider-one .text .btn-black:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(246, 185, 100, 0.4);
  background: var(--efcol-secondary-dark);
}

/* Services Section */
.ftco-services .block-6 {
  background: var(--efcol-white);
  border-radius: var(--efcol-radius-lg);
  border: 1px solid var(--efcol-border-light);
  transition: var(--efcol-transition);
  height: 100%;
}

.ftco-services .block-6:hover {
  transform: translateY(-4px);
  box-shadow: var(--efcol-shadow-card-hover);
  border-color: var(--efcol-secondary-light);
}

.ftco-services .block-6 .icon {
  background: linear-gradient(135deg, var(--efcol-primary-lighter), var(--efcol-secondary-lighter));
  width: 80px;
  height: 80px;
  border-radius: var(--efcol-radius-full);
  transition: var(--efcol-transition);
}

.ftco-services .block-6:hover .icon {
  background: linear-gradient(135deg, var(--efcol-primary), var(--efcol-primary-dark));
  color: var(--efcol-text-inverse) !important;
}

.ftco-services .block-6:hover .icon span {
  color: var(--efcol-text-inverse) !important;
}

.ftco-services .block-6 .heading {
  font-family: var(--efcol-font-primary);
  font-weight: 700;
  color: var(--efcol-text-primary);
}

.ftco-services .block-6 p {
  color: var(--efcol-text-secondary);
  font-size: var(--efcol-text-sm);
}

.efcol-footer-bottom a {
  color: var(--efcol-secondary);
  text-decoration: none;
}

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

/* =============================================
   11. PRODUCT CARDS — PREMIUM MARKETPLACE
   ============================================= */
.efcol-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--efcol-space-6);
}

.efcol-product-card {
  background: var(--efcol-bg-card);
  border-radius: var(--efcol-radius-lg);
  border: 1px solid var(--efcol-border-light);
  overflow: hidden;
  transition: var(--efcol-transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

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

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

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

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

.efcol-product-badges {
  position: absolute;
  top: var(--efcol-space-3);
  left: var(--efcol-space-3);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.efcol-product-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--efcol-font-primary);
  font-weight: 700;
  font-size: var(--efcol-text-xs);
  padding: 4px 10px;
  border-radius: var(--efcol-radius-full);
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.efcol-product-badge-discount {
  background: var(--efcol-primary);
  color: var(--efcol-text-inverse);
}

.efcol-product-badge-promo {
  background: #fef3c7;
  color: #92400e;
}

.efcol-product-badge-shipping {
  background: var(--efcol-success);
  color: var(--efcol-text-inverse);
}

.efcol-product-badge-event {
  background: #1a1a2e;
  color: var(--efcol-text-inverse);
}

.efcol-product-info {
  padding: var(--efcol-space-4) var(--efcol-space-5) var(--efcol-space-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.efcol-product-title {
  font-family: var(--efcol-font-primary);
  font-weight: 600;
  font-size: var(--efcol-text-base);
  color: var(--efcol-text-primary);
  line-height: 1.35;
  margin-bottom: var(--efcol-space-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}

.efcol-product-title a {
  color: inherit;
  text-decoration: none;
}

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

.efcol-product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--efcol-space-2);
  font-size: var(--efcol-text-xs);
  color: var(--efcol-text-muted);
}

.efcol-product-rating i {
  color: #f59e0b;
  font-size: 0.75rem;
}

.efcol-product-pricing {
  margin-top: auto;
  margin-bottom: var(--efcol-space-3);
}

.efcol-product-price {
  font-family: var(--efcol-font-primary);
  font-weight: 800;
  font-size: var(--efcol-text-xl);
  color: var(--efcol-primary);
  line-height: 1.2;
  display: block;
}

.efcol-product-price-old {
  font-family: var(--efcol-font-primary);
  font-weight: 500;
  font-size: var(--efcol-text-sm);
  color: var(--efcol-text-muted);
  text-decoration: line-through;
  display: inline-block;
  margin-right: var(--efcol-space-2);
}

.efcol-product-installment {
  font-size: var(--efcol-text-xs);
  color: var(--efcol-text-muted);
  margin-top: 4px;
}

.efcol-product-installment strong {
  color: var(--efcol-text-secondary);
  font-weight: 600;
}

.efcol-product-actions {
  display: flex;
  gap: var(--efcol-space-2);
  margin-top: auto;
}

.efcol-product-actions .efcol-btn {
  flex: 1;
  font-size: var(--efcol-text-xs);
  padding: 0.6rem 1rem;
}

/* =============================================
   12. BREADCRUMB
   ============================================= */
.efcol-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--efcol-space-2);
  font-family: var(--efcol-font-primary);
  font-size: var(--efcol-text-sm);
  color: var(--efcol-text-muted);
  padding: var(--efcol-space-3) 0;
  list-style: none;
  margin: 0;
}

.efcol-breadcrumb li {
  display: flex;
  align-items: center;
  gap: var(--efcol-space-2);
}

.efcol-breadcrumb li + li::before {
  content: '/';
  color: var(--efcol-text-muted);
  opacity: 0.4;
  font-size: var(--efcol-text-xs);
}

.efcol-breadcrumb a {
  color: var(--efcol-text-muted);
  text-decoration: none;
  transition: var(--efcol-transition-fast);
}

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

.efcol-breadcrumb .active {
  color: var(--efcol-text-primary);
  font-weight: 600;
}

/* =============================================
   13. PAGINATION
   ============================================= */
.efcol-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--efcol-space-1);
  margin-top: var(--efcol-space-10);
}

.efcol-pagination a,
.efcol-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--efcol-radius-md);
  font-family: var(--efcol-font-primary);
  font-weight: 600;
  font-size: var(--efcol-text-sm);
  color: var(--efcol-text-secondary);
  text-decoration: none;
  transition: var(--efcol-transition-fast);
  border: 1px solid transparent;
}

.efcol-pagination a:hover {
  background: var(--efcol-bg);
  color: var(--efcol-primary);
  border-color: var(--efcol-border);
  text-decoration: none;
}

.efcol-pagination .active {
  background: var(--efcol-primary);
  color: var(--efcol-text-inverse);
  border-color: var(--efcol-primary);
  box-shadow: 0 2px 8px rgba(var(--efcol-primary-rgb), 0.25);
}

.efcol-pagination .disabled {
  opacity: 0.3;
  pointer-events: none;
}

.efcol-pagination .prev,
.efcol-pagination .next {
  width: auto;
  padding: 0 var(--efcol-space-4);
  gap: var(--efcol-space-1);
}

/* =============================================
   14. SHOP FILTERS SIDEBAR
   ============================================= */
.efcol-sidebar {
  background: var(--efcol-white);
  border-radius: var(--efcol-radius-lg);
  border: 1px solid var(--efcol-border-light);
  overflow: hidden;
}

.efcol-sidebar-section {
  padding: var(--efcol-space-5);
  border-bottom: 1px solid var(--efcol-border-light);
}

.efcol-sidebar-section:last-child {
  border-bottom: none;
}

.efcol-sidebar-title {
  font-family: var(--efcol-font-primary);
  font-weight: 700;
  font-size: var(--efcol-text-sm);
  color: var(--efcol-text-primary);
  margin-bottom: var(--efcol-space-3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.efcol-sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.efcol-sidebar-links li {
  margin-bottom: var(--efcol-space-1);
}

.efcol-sidebar-links a {
  display: flex;
  align-items: center;
  padding: var(--efcol-space-2) var(--efcol-space-3);
  border-radius: var(--efcol-radius-sm);
  font-size: var(--efcol-text-sm);
  color: var(--efcol-text-secondary);
  text-decoration: none;
  transition: var(--efcol-transition-fast);
}

.efcol-sidebar-links a:hover {
  background: rgba(var(--efcol-primary-rgb), 0.04);
  color: var(--efcol-primary);
  text-decoration: none;
}

.efcol-sidebar-links a.active {
  background: rgba(var(--efcol-primary-rgb), 0.08);
  color: var(--efcol-primary);
  font-weight: 600;
}

/* =============================================
   15. PAGE HEADER / HERO
   ============================================= */
.efcol-page-header {
  background: var(--efcol-bg);
  padding: var(--efcol-space-12) 0;
  text-align: center;
  border-bottom: 1px solid var(--efcol-border-light);
}

.efcol-page-header h1 {
  font-size: var(--efcol-text-4xl);
  margin-bottom: var(--efcol-space-2);
}

.efcol-page-header p {
  color: var(--efcol-text-muted);
  font-size: var(--efcol-text-lg);
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   16. BANNER / SLIDER
   ============================================= */
.efcol-banner {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-shadow: var(--efcol-shadow-lg);
  position: relative;
  background: var(--efcol-primary-dark);
}

.efcol-banner .owl-carousel {
  overflow: hidden;
}

.efcol-banner .slider-item {
  overflow: hidden;
  position: relative;
}

.efcol-banner .slider-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--efcol-primary), var(--efcol-secondary), var(--efcol-primary));
  z-index: 5;
}

/* Desktop: content container stays centered, background is full-bleed */
@media (min-width: 769px) {
  .efcol-banner .owl-carousel.home-slider .slider-item .slider-text .one-forth {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 1200px;
    margin: 0 auto;
  }
}

/* Inner content area with proper spacing */
.efcol-banner .slider-item .slider-text .one-forth .text {
  max-width: 560px;
}

.efcol-banner .slider-item .slider-text .btn-custom {
  background: linear-gradient(135deg, var(--efcol-secondary), var(--efcol-secondary-dark));
  color: var(--efcol-text-primary);
  padding: 12px 28px;
  border-radius: var(--efcol-radius-full);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--efcol-transition);
  box-shadow: 0 4px 15px rgba(246, 185, 100, 0.3);
  text-decoration: none;
}

.efcol-banner .slider-item .slider-text .btn-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246, 185, 100, 0.4);
  text-decoration: none;
  color: var(--efcol-text-primary);
}

.efcol-banner .slider-item .slider-text .subheading {
  background: linear-gradient(135deg, var(--efcol-primary), var(--efcol-primary-dark));
  color: var(--efcol-text-inverse);
  padding: 4px 14px;
  border-radius: var(--efcol-radius-full);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  font-weight: 600;
}

/* Mobile banner adjustments */
@media (max-width: 768px) {
  .efcol-banner {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

/* =============================================
   17. LOADING SPINNER
   ============================================= */
.efcol-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--efcol-border);
  border-top-color: var(--efcol-primary);
  border-radius: 50%;
  animation: efcolSpin 0.7s linear infinite;
  margin: var(--efcol-space-8) auto;
}

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

/* =============================================
   18. ANIMATIONS
   ============================================= */
@keyframes efcolFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes efcolSlideIn {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}

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

.efcol-animate-in {
  animation: efcolFadeInUp 0.4s ease forwards;
}

.efcol-animate-stagger > * {
  opacity: 0;
  animation: efcolFadeInUp 0.4s ease forwards;
}

.efcol-animate-stagger > *:nth-child(1) { animation-delay: 0.05s; }
.efcol-animate-stagger > *:nth-child(2) { animation-delay: 0.1s; }
.efcol-animate-stagger > *:nth-child(3) { animation-delay: 0.15s; }
.efcol-animate-stagger > *:nth-child(4) { animation-delay: 0.2s; }
.efcol-animate-stagger > *:nth-child(5) { animation-delay: 0.25s; }
.efcol-animate-stagger > *:nth-child(6) { animation-delay: 0.3s; }
.efcol-animate-stagger > *:nth-child(7) { animation-delay: 0.35s; }
.efcol-animate-stagger > *:nth-child(8) { animation-delay: 0.4s; }

/* =============================================
   19. ALERT SYSTEM
   ============================================= */
.efcol-alert {
  display: flex;
  align-items: flex-start;
  gap: var(--efcol-space-3);
  padding: var(--efcol-space-4);
  border-radius: var(--efcol-radius-md);
  font-size: var(--efcol-text-sm);
  border: 1px solid transparent;
}

.efcol-alert i {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.efcol-alert-warning {
  background: var(--efcol-warning-light);
  border-color: #fde68a;
  color: #92400e;
}

.efcol-alert-warning i {
  color: var(--efcol-warning);
}

.efcol-alert-error {
  background: var(--efcol-error-light);
  border-color: #fecaca;
  color: #991b1b;
}

.efcol-alert-error i {
  color: var(--efcol-error);
}

.efcol-alert-success {
  background: var(--efcol-success-light);
  border-color: #a7f3d0;
  color: #065f46;
}

.efcol-alert-success i {
  color: var(--efcol-success);
}

/* =============================================
   20. SEPARATOR / DIVIDER
   ============================================= */
.efcol-divider {
  height: 1px;
  background: var(--efcol-border-light);
  margin: var(--efcol-space-6) 0;
  border: none;
}

.efcol-divider-section {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--efcol-border), transparent);
  margin: 0;
  border: none;
}

/* =============================================
   21. OVERRIDES FOR EXISTING BOOTSTRAP/LEGACY
   ============================================= */

/* Override navbar-brand in header to work with our new system */
.efcol-header .navbar-brand {
  display: none;
}

/* Hide old mobile menu when desktop */
@media (min-width: 992px) {
  .menu-mobile {
    display: none !important;
  }
  .container.d-sm-none.py-1 {
    display: none !important;
  }
  .container-fluid.d-sm-none.d-md-block {
    display: block !important;
  }
}

/* Hide old footer when desktop */
@media (min-width: 992px) {
  .footer-mobile {
    display: none !important;
  }
  .ftco-footer.bg-efcol.d-sm-none {
    display: none !important;
  }
  .pesquisa-mobile {
    display: none !important;
  }
}

/* Hide old desktop header sections when new header is present */
.efcol-header ~ .container-fluid.d-sm-none.d-md-block {
  display: none !important;
}

.efcol-header ~ .container.d-sm-none.py-1 {
  display: none !important;
}

/* =============================================
   22. HERO BREAD (shop page banner)
   ============================================= */
.efcol-hero-bread {
  position: relative;
  padding: var(--efcol-space-12) 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.efcol-hero-bread::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.efcol-hero-bread .efcol-container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.efcol-hero-bread h1 {
  color: var(--efcol-text-inverse);
  font-size: var(--efcol-text-4xl);
  margin-bottom: var(--efcol-space-2);
}

.efcol-hero-bread .efcol-breadcrumb {
  justify-content: center;
}

.efcol-hero-bread .efcol-breadcrumb a,
.efcol-hero-bread .efcol-breadcrumb li + li::before {
  color: rgba(255,255,255,0.7);
}

.efcol-hero-bread .efcol-breadcrumb a:hover {
  color: var(--efcol-secondary);
}

.efcol-hero-bread .efcol-breadcrumb .active {
  color: var(--efcol-text-inverse);
}

/* =============================================
   23. RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .efcol-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 992px) {
  .efcol-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--efcol-space-4);
  }

  .efcol-section {
    padding: var(--efcol-space-10) 0;
  }

  .efcol-header-search {
    max-width: 320px;
  }

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

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

  .efcol-header-inner {
    padding: 0 var(--efcol-space-4);
    gap: var(--efcol-space-3);
  }

  .efcol-header-search {
    display: none;
  }

  .efcol-section-header h2 {
    font-size: var(--efcol-text-2xl);
  }

  .efcol-container {
    padding: 0 var(--efcol-space-4);
  }

  .efcol-header-action span {
    display: none;
  }
}

@media (max-width: 480px) {
  .efcol-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

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

  .efcol-product-title {
    font-size: var(--efcol-text-sm);
  }

  .efcol-product-price {
    font-size: var(--efcol-text-lg);
  }
}

/* =============================================
   24. UTILITY CLASSES
   ============================================= */
.efcol-rounded { border-radius: var(--efcol-radius-md); }
.efcol-rounded-lg { border-radius: var(--efcol-radius-lg); }
.efcol-rounded-xl { border-radius: var(--efcol-radius-xl); }
.efcol-rounded-full { border-radius: var(--efcol-radius-full); }
.efcol-shadow { box-shadow: var(--efcol-shadow-card); }
.efcol-shadow-lg { box-shadow: var(--efcol-shadow-lg); }
.efcol-border { border: 1px solid var(--efcol-border); }
.efcol-border-light { border: 1px solid var(--efcol-border-light); }
.efcol-bg-white { background: var(--efcol-white); }
.efcol-bg-light { background: var(--efcol-bg); }
.efcol-bg-alt { background: var(--efcol-bg-alt); }
.efcol-text-primary { color: var(--efcol-text-primary); }
.efcol-text-secondary { color: var(--efcol-text-secondary); }
.efcol-text-muted { color: var(--efcol-text-muted); }
.efcol-text-brand { color: var(--efcol-primary); }
.efcol-gap-1 { gap: var(--efcol-space-1); }
.efcol-gap-2 { gap: var(--efcol-space-2); }
.efcol-gap-3 { gap: var(--efcol-space-3); }
.efcol-gap-4 { gap: var(--efcol-space-4); }
.efcol-gap-6 { gap: var(--efcol-space-6); }
