/* ============================================
   XUTA — PAGES STYLESHEET
   Account, Buy/Order, Search Overlay
   ============================================ */

/* === ACTIVE NAV BUTTON === */
.nav-actions .active-nav {
  background: var(--blue);
  color: var(--white) !important;
  border-radius: 50%;
}

/* ==============================
   ACCOUNT PAGE
   ============================== */
.account-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: var(--off-white);
}
.account-container {
  width: 100%;
  max-width: 460px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  animation: fadeInUp 0.5s ease;
}
.account-tabs {
  display: flex;
  background: var(--grey-100);
  border-radius: var(--radius-sm);
  padding: 4px;
  margin-bottom: 32px;
}
.tab-btn {
  flex: 1;
  padding: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey-500);
  border-radius: 4px;
  transition: var(--transition);
  text-align: center;
}
.tab-btn.active {
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow-sm);
}
.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.3s ease; }
.form-header { margin-bottom: 28px; }
.form-header h1 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.form-header p {
  color: var(--grey-500);
  font-size: 0.9rem;
}

/* === SHARED FORM STYLES === */
.form-group {
  margin-bottom: 18px;
  flex: 1;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-300);
}
.form-group textarea { resize: vertical; }
.form-row {
  display: flex;
  gap: 14px;
}
.password-field {
  position: relative;
}
.password-field input { padding-right: 44px; }
.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--grey-500);
  padding: 4px;
}
.toggle-password:hover { color: var(--black); }
.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-size: 0.85rem;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--grey-700);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}
.forgot-link {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.85rem;
}
.forgot-link:hover { text-decoration: underline; }

/* Buttons */
.btn-primary {
  width: 100%;
  padding: 14px 24px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,86,219,0.3);
}
.form-divider {
  display: flex;
  align-items: center;
  margin: 24px 0;
  color: var(--grey-300);
  font-size: 0.82rem;
}
.form-divider::before, .form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--grey-200);
}
.form-divider span { padding: 0 16px; }
.switch-text {
  text-align: center;
  font-size: 0.9rem;
  color: var(--grey-500);
}
.switch-btn {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.switch-btn:hover { color: var(--blue-dark); }

/* ==============================
   DIRECT BUY / ORDER PAGE
   ============================== */
.buy-page {
  padding: 30px 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.buy-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.buy-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--grey-500);
  margin-bottom: 24px;
}
.buy-breadcrumb a { color: var(--blue); font-weight: 500; }
.buy-breadcrumb a:hover { text-decoration: underline; }
.buy-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
}

/* Signup Suggestion Banner */
.signup-suggestion {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #eef4ff, #f0f6ff);
  border: 1px solid rgba(26,86,219,0.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 28px;
  position: relative;
}
.suggestion-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.suggestion-text strong { font-size: 0.9rem; color: var(--black); }
.suggestion-text p { font-size: 0.8rem; color: var(--grey-500); margin-top: 2px; }
.suggestion-btn {
  background: var(--blue);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.suggestion-btn:hover { background: var(--blue-dark); }
.suggestion-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 0.85rem;
  color: var(--grey-500);
  line-height: 1;
}

/* Form Sections */
.form-section {
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--grey-100);
}
.form-section:last-of-type { border-bottom: none; }
.form-section-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.step-number {
  width: 28px;
  height: 28px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Quantity Control */
.qty-control {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 40px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--grey-700);
  background: var(--grey-100);
  transition: var(--transition);
}
.qty-btn:hover { background: var(--grey-200); }
.qty-control input {
  width: 50px;
  text-align: center;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
  -moz-appearance: textfield;
}
.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Payment Options */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.payment-option {
  cursor: pointer;
}
.payment-option input { display: none; }
.payment-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.payment-option input:checked + .payment-card {
  border-color: var(--blue);
  background: rgba(26,86,219,0.04);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.08);
}
.payment-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.payment-card strong { font-size: 0.9rem; display: block; }
.payment-card small { color: var(--grey-500); font-size: 0.78rem; }

/* Order Button */
.btn-order {
  margin-top: 20px;
  padding: 16px 24px;
  font-size: 1.05rem;
}

/* Order Summary Sidebar */
.order-summary {
  position: relative;
}
.summary-sticky {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.summary-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.summary-product {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}
.summary-product-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--grey-100);
  flex-shrink: 0;
}
.summary-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.summary-product-name {
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 4px;
}
.summary-product-detail {
  color: var(--grey-500);
  font-size: 0.82rem;
}
.summary-divider {
  height: 1px;
  background: var(--grey-100);
  margin: 14px 0;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.summary-total {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--blue);
  margin-top: 8px;
}
.summary-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px;
  background: var(--grey-100);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--grey-700);
}

/* Order Success */
.order-success {
  text-align: center;
  padding: 60px 20px;
}
.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #16a34a;
  color: white;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: fadeInUp 0.5s ease;
}
.order-success h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.order-success p { color: var(--grey-700); font-size: 1.05rem; max-width: 450px; margin: 0 auto 8px; }
.order-success .success-sub { color: var(--grey-500); font-size: 0.9rem; }

/* ==============================
   SEARCH OVERLAY
   ============================== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  animation: fadeIn 0.2s ease;
}
.search-overlay.open { display: flex; }
.search-box {
  width: 90%;
  max-width: 640px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  animation: fadeInUp 0.3s ease;
}
.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--grey-100);
}
.search-input-wrap svg { color: var(--grey-500); flex-shrink: 0; }
.search-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--black);
}
.search-input-wrap input::placeholder { color: var(--grey-300); }
.search-close {
  font-size: 0.8rem;
  color: var(--grey-500);
  padding: 6px 12px;
  border-radius: 4px;
  background: var(--grey-100);
  font-weight: 600;
}
.search-close:hover { background: var(--grey-200); }
.search-results {
  max-height: 400px;
  overflow-y: auto;
  padding: 12px;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}
.search-result-item:hover { background: var(--grey-100); }
.search-result-item img {
  width: 50px;
  height: 50px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--grey-100);
}
.search-result-item .sr-info { flex: 1; }
.search-result-item .sr-name { font-weight: 600; font-size: 0.9rem; display: block; }
.search-result-item .sr-brand { color: var(--grey-500); font-size: 0.78rem; }
.search-result-item .sr-price { font-weight: 700; color: var(--blue); font-size: 0.9rem; }
.search-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--grey-500);
}
.search-empty svg { margin-bottom: 12px; }
.search-hint {
  padding: 16px 24px;
  font-size: 0.78rem;
  color: var(--grey-500);
  border-top: 1px solid var(--grey-100);
  text-align: center;
}

/* ==============================
   AUTH MESSAGES & PROFILE
   ============================== */
.auth-message {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 18px;
  animation: fadeIn 0.3s ease;
}
.auth-message.error {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.auth-message.success {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}

/* User Profile Card */
.user-profile-card {
  text-align: center;
  padding: 32px 20px;
  margin-bottom: 24px;
}
.profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-heading);
}
.profile-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.profile-email {
  color: var(--grey-500);
  font-size: 0.9rem;
  margin-bottom: 2px;
}
.profile-phone {
  color: var(--grey-500);
  font-size: 0.82rem;
}

/* Profile Menu */
.profile-menu {
  margin-bottom: 24px;
}
.profile-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  transition: var(--transition);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--black);
}
.profile-menu-item:hover {
  background: var(--grey-100);
  border-color: var(--blue);
}
.profile-menu-item span { flex: 1; }
.profile-menu-item svg:first-child { color: var(--blue); }
.profile-menu-item svg:last-child { color: var(--grey-300); }

/* Sign Out Button */
.btn-signout {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  background: none;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--grey-700);
  cursor: pointer;
  transition: var(--transition);
}
.btn-signout:hover {
  border-color: #ef4444;
  color: #ef4444;
  background: #fef2f2;
}

/* ==============================
   RESPONSIVE — PAGES
   ============================== */
/* ==============================
   SHOP PAGES (Men / Women)
   ============================== */
.shop-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.men-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #334155 100%);
}
.women-hero {
  background: linear-gradient(135deg, #4a1942 0%, #6b2fa0 40%, #8b5cf6 100%);
}
.shop-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.05)"/></svg>') repeat;
  background-size: 40px 40px;
}
.shop-hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.6s ease;
}
.shop-hero-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}
.shop-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.shop-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

/* Color Dots on product cards */
.color-dots {
  display: flex;
  gap: 6px;
  margin: 6px 0 8px;
}
.color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--grey-200);
  cursor: pointer;
  transition: var(--transition);
}
.color-dot:hover { transform: scale(1.2); }
.color-dot.active {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(26,86,219,0.3);
}

/* Nav active indicator */
.nav-active { color: var(--blue) !important; }
.nav-active::after { width: 100% !important; }

/* Empty shop state */
.empty-shop {
  text-align: center;
  padding: 80px 20px;
  color: var(--grey-500);
}
.empty-shop svg { margin-bottom: 16px; opacity: 0.4; }
.empty-shop h3 { font-size: 1.2rem; color: var(--black); margin-bottom: 8px; }
.empty-shop p { font-size: 0.9rem; }

/* ==============================
   RESPONSIVE — PAGES
   ============================== */
@media (max-width: 768px) {
  .account-container { padding: 28px 20px; }
  .form-header h1 { font-size: 1.5rem; }
  .form-row { flex-direction: column; gap: 0; }
  .buy-page { padding: 20px 16px 60px; }
  .buy-container { grid-template-columns: 1fr; gap: 24px; }
  .order-summary { order: -1; }
  .summary-sticky { position: static; }
  .buy-title { font-size: 1.5rem; }
  .signup-suggestion { flex-wrap: wrap; }
  .suggestion-btn { width: 100%; text-align: center; }
  .search-overlay { padding-top: 60px; }
  .shop-hero { height: 260px; }
  .shop-hero h1 { font-size: 1.8rem; }
}

/* ============================================
   XUTA LEATHER BRANDING & LUXURY THEME
   ============================================ */
:root {
  --leather-dark: #1c130e;
  --leather-darker: #0d0806;
  --leather-chocolate: #2b1d15;
  --leather-gold: #d4af37;
  --leather-gold-light: #f7e7c4;
  --leather-cream: #dfd5c6;
}

/* 1. Homepage Banner Section */
.leather-banner-section {
  background: radial-gradient(circle at center, var(--leather-chocolate) 0%, var(--leather-darker) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 24px;
  color: #ffffff;
  text-align: center;
  border-top: 1px solid #3d2a1f;
  border-bottom: 1px solid #3d2a1f;
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 100px rgba(0,0,0,0.8), var(--shadow-lg);
}
.leather-banner-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(212,175,55,0.05) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.6;
}
.leather-banner-title {
  font-family: 'Playfair Display', 'Outfit', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--leather-gold-light);
  text-shadow: 0 4px 10px rgba(0,0,0,0.8);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.leather-banner-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  color: var(--leather-gold);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  font-weight: 600;
  text-transform: uppercase;
}
.leather-banner-desc {
  max-width: 640px;
  margin: 0 auto 36px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--leather-cream);
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.leather-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #c5a059 0%, #b38f46 100%);
  color: var(--leather-darker) !important;
  padding: 16px 36px;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  border: 1px solid var(--leather-gold);
  cursor: pointer;
}
.leather-banner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.35);
  background: var(--leather-gold-light);
}

/* 2. Featured & Landing Grid Header Styles */
.leather-title-gold {
  color: var(--leather-gold-light) !important;
  font-family: 'Playfair Display', 'Outfit', serif;
  letter-spacing: 1px;
}

/* 3. Leather Landing Page (Hero, Categories, Filters) */
.leather-hero {
  background: linear-gradient(135deg, var(--leather-darker) 0%, var(--leather-dark) 50%, #2f2118 100%) !important;
  height: 400px;
}
.leather-hero::before {
  opacity: 0.35;
  background-image: radial-gradient(rgba(212, 175, 55, 0.1) 1.5px, transparent 0) !important;
  background-size: 30px 30px !important;
}

/* Category Filter Chips/Cards */
.leather-categories-wrap {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 4px 24px;
  margin-bottom: 30px;
  scrollbar-width: none; /* Firefox */
}
.leather-categories-wrap::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.leather-cat-card {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  padding: 8px;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-100);
  background: var(--white);
  min-width: 100px;
  text-align: center;
}
.leather-cat-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--grey-100);
  border: 1.5px solid var(--grey-200);
}
.leather-cat-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-700);
}
.leather-cat-card:hover,
.leather-cat-card.active {
  border-color: var(--leather-gold);
  background: #fbf9f5;
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.leather-cat-card.active span {
  color: var(--leather-dark);
  font-weight: 700;
}
.leather-cat-card.active img {
  border-color: var(--leather-gold);
}

/* Leather Page Filters layout */
.leather-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background: #fdfcfa;
  border: 1px solid #f2edd8;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  align-items: center;
  justify-content: space-between;
}
.leather-filter-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.leather-filter-select {
  padding: 8px 16px;
  border: 1px solid #e5dcb9;
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 0.88rem;
  color: var(--grey-700);
  outline: none;
  cursor: pointer;
}
.leather-filter-select:focus {
  border-color: var(--leather-gold);
}

/* Luxury Card details for product cards */
.leather-product-card {
  border: 1px solid #efeae0 !important;
  background: #ffffff !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.leather-product-card:hover {
  border-color: var(--leather-gold) !important;
  box-shadow: 0 12px 30px rgba(43, 29, 21, 0.12) !important;
}

/* Pagination luxury theme */
.leather-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}
.leather-page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--grey-200);
  background: var(--white);
  color: var(--grey-700);
  font-weight: 600;
  transition: var(--transition);
}
.leather-page-btn:hover,
.leather-page-btn.active {
  background: var(--leather-dark);
  color: #ffffff;
  border-color: var(--leather-dark);
}
.leather-page-btn.active {
  background: linear-gradient(135deg, var(--leather-chocolate), var(--leather-darker));
  border-color: var(--leather-chocolate);
}
