/* ==========================================================================
   BigWide International - Bright Modern E-Commerce Design System (big3)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Bright Modern E-Commerce Palette (Apple & Bellroy inspired) */
  --bg-main: #f8fafc;           /* Crisp Porcelain Off-White */
  --bg-surface: #ffffff;        /* Pure White Surface Cards */
  --bg-surface-elevated: #f1f5f9;/* Soft Slate Light */
  --bg-glass: rgba(255, 255, 255, 0.92);
  --bg-glass-card: rgba(255, 255, 255, 0.96);

  /* Modern Accents */
  --accent-leather: #b45309;     /* Rich Saddle Leather Cognac */
  --accent-leather-light: #d97706;
  --accent-leather-dark: #78350f;
  --accent-tan-bg: rgba(180, 83, 9, 0.08);

  /* Typography Colors */
  --text-primary: #0f172a;       /* Deep Charcoal Ink */
  --text-secondary: #475569;     /* Slate Muted */
  --text-muted: #64748b;
  --border-light: #e2e8f0;       /* Crisp Slate Border */
  --border-accent: rgba(180, 83, 9, 0.25);

  /* Functional Status Colors */
  --sale-red: #ef4444;
  --success-green: #059669;

  /* Elevation & Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 45px rgba(15, 23, 42, 0.12);
  --glow-leather: 0 0 25px rgba(180, 83, 9, 0.15);

  /* Layout Standards */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Modern Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-leather);
}

/* Headings */
h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.text-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #b45309 60%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

/* Modern Pill Buttons */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-amber {
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(180, 83, 9, 0.25);
}
.btn-amber:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(180, 83, 9, 0.4);
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.btn-glass {
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}
.btn-glass:hover {
  border-color: var(--accent-leather);
  color: var(--accent-leather);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: #059669;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.25);
}
.btn-whatsapp:hover {
  background: #047857;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
}

.btn-dark {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.3);
}
.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15, 23, 42, 0.45);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.top-notification-bar {
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.45rem 0;
  font-size: 0.8rem;
  color: #f1f5f9;
}
.notification-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.notification-offer-group {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.notification-actions-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.notification-phone {
  color: #fbbf24;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.notification-phone:hover {
  text-decoration: underline;
}
.currency-select-btn {
  padding: 0.2rem 0.6rem;
  font-size: 0.78rem;
}
.live-pill {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(245, 158, 11, 0.3);
  text-transform: uppercase;
}

.modern-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 2rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-leather) 0%, var(--accent-leather-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.3);
}
.brand-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}

/* Header Horizontal Navigation Menu (Attractive Pill Style) */
.header-nav-menu {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0.5rem;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.header-nav-menu a.nav-menu-link,
.header-nav-menu a.nav-menu-link:visited,
.header-nav-menu a.nav-menu-link:link {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b !important;
  text-decoration: none !important;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
  white-space: nowrap;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-nav-menu a.nav-menu-link:hover {
  color: var(--accent-leather) !important;
  background: rgba(180, 83, 9, 0.08);
  text-decoration: none !important;
}

.header-nav-menu a.nav-menu-link.active {
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
  color: #ffffff !important;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.25);
  text-decoration: none !important;
}

/* Compact Header Search Bar with Small Icon */
.header-search-bar {
  flex-grow: 1;
  max-width: 260px;
  position: relative;
}
.header-search-input {
  width: 100%;
  height: 38px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-pill);
  padding: 0 1rem 0 2.2rem;
  color: var(--text-primary);
  font-size: 0.8rem;
  outline: none;
  transition: all var(--transition-fast);
}
.header-search-input:focus {
  background: #ffffff;
  border-color: var(--accent-leather);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
}
.header-search-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.72rem;
  pointer-events: none;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}
.icon-action-btn {
  position: relative;
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.icon-action-btn:hover {
  border-color: var(--accent-leather);
  color: var(--accent-leather);
  background: #ffffff;
}
.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--accent-leather);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.modern-hero {
  padding: 4rem 0 3rem 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(180, 83, 9, 0.06) 0%, var(--bg-main) 70%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-tan-bg);
  border: 1px solid var(--border-accent);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  color: var(--accent-leather);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.2rem;
  color: var(--text-primary);
}
.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 550px;
}

/* Hero Product Positioning Tag Pills */
.hero-products-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  max-width: 560px;
}
.product-tag-pill {
  background: #ffffff;
  border: 1px solid var(--border-light);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-fast);
}
.product-tag-pill:hover {
  border-color: var(--accent-leather);
  color: var(--accent-leather);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.12);
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-feature-pills {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
}
.feature-pill i {
  color: var(--accent-leather);
}

/* Hero Modern Product Stack Card */
.hero-card-stack {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  background: #ffffff;
}
.hero-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-floating-tag {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Interactive Category Icon Boxes Section
   ========================================================================== */
.category-icon-section {
  padding: 2.5rem 0;
  background: var(--bg-surface-elevated);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.category-top-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.filter-all-btn {
  font-size: 0.95rem;
  padding: 0.75rem 1.8rem;
  box-shadow: 0 4px 15px rgba(180, 83, 9, 0.25);
  transition: all var(--transition-fast);
}

.filter-all-btn.active {
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(180, 83, 9, 0.35);
}

.category-tagline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-leather);
}

.indicator-arrow {
  font-size: 0.85rem;
  color: var(--accent-leather);
  animation: bounce-arrow 1.8s infinite ease-in-out;
}

@keyframes bounce-arrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.category-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.category-icon-box {
  background: #ffffff !important;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  outline: none;
  color: var(--text-primary);
}

.category-icon-box:hover {
  transform: translateY(-4px);
  border-color: var(--accent-leather);
  box-shadow: var(--shadow-md), var(--glow-leather);
  background: #ffffff !important;
}

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(180, 83, 9, 0.08);
  color: var(--accent-leather);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  transition: all var(--transition-fast);
}

.category-icon-box:hover .icon-circle {
  background: var(--accent-leather);
  color: #ffffff;
}

.box-details {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.box-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  transition: color var(--transition-fast);
}

.category-icon-box:hover .box-title {
  color: var(--accent-leather);
}

.box-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.box-badge {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-pill);
  background: #f1f5f9;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.category-icon-box.active .box-badge {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

@media (max-width: 1200px) {
  .category-icon-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .category-icon-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Catalog Control Card & Tabs Header
   ========================================================================== */
.catalog-controls-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.catalog-tabs-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border-light);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.catalog-tabs-row::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.catalog-tab-btn {
  background: #f1f5f9;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.catalog-tab-btn:hover {
  background: #e2e8f0;
  color: var(--text-primary);
}

.catalog-tab-btn.active {
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
  color: #ffffff;
  border-color: var(--accent-leather);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.25);
}

.catalog-search-sort-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.catalog-search-wrap {
  position: relative;
  flex-grow: 1;
  max-width: 380px;
}

.catalog-search-field {
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1rem 0.6rem 2.6rem;
  color: var(--text-primary);
  font-size: 0.85rem;
  outline: none;
  transition: all var(--transition-fast);
}

.catalog-search-field:focus {
  background: #ffffff;
  border-color: var(--accent-leather);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
}

.catalog-search-wrap .search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.85rem;
}

.catalog-sort-dropdown {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 0.6rem 1.2rem;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: all var(--transition-fast);
}

.catalog-sort-dropdown:focus {
  border-color: var(--accent-leather);
  background: #ffffff;
}

/* ==========================================================================
   Product Grid Section
   ========================================================================== */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-top: 2rem;
}

.product-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-leather);
  box-shadow: var(--shadow-md), var(--glow-leather);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  background: #ffffff;
  overflow: hidden;
}
.product-media > a {
  display: block;
  width: 100%;
  height: 100%;
}
.product-img-primary, .product-img-secondary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.6s ease;
}
.product-img-secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.product-card:hover .product-img-secondary {
  opacity: 1;
}
.product-card:hover .product-img-primary {
  transform: scale(1.05);
}

.card-top-badges {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}
.badge-chip {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.badge-discount {
  background: var(--sale-red);
  color: white;
}
.badge-hot {
  background: var(--accent-leather);
  color: #ffffff;
}

.card-quick-buy {
  position: absolute;
  bottom: 0.8rem;
  left: 0.8rem;
  right: 0.8rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition-fast);
  z-index: 3;
}
.product-card:hover .card-quick-buy {
  transform: translateY(0);
  opacity: 1;
}

.product-body {
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.product-cat {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--accent-leather);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.product-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.8rem;
}
.price-current {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
}
.price-old {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 0.4rem;
}

/* ==========================================================================
   Monogram Studio Widget (Bright Clean)
   ========================================================================== */
.monogram-section {
  background: #f1f5f9;
  border-y: 1px solid var(--border-light);
}

.monogram-container {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.tag-preview-box {
  background: radial-gradient(circle, #f8fafc 0%, #e2e8f0 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.leather-tag-graphic {
  width: 220px;
  height: 140px;
  background: linear-gradient(135deg, #7c4a27 0%, #4a2811 100%);
  border-radius: 14px;
  border: 2px dashed #a0673d;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.2);
  position: relative;
}

.tag-initials-text {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.foil-deboss-effect {
  color: #1e0f06;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.15), 0 -2px 3px rgba(0, 0, 0, 0.95);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.form-input-pill {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
}
.form-input-pill:focus {
  border-color: var(--accent-leather);
  background: #ffffff;
}

/* Prominent Attractive Foil Style Toggle Cards */
.mono-style-group {
  display: flex;
  gap: 1rem;
}

.mono-style-card {
  flex: 1;
  background: #ffffff;
  border: 2px solid var(--border-light);
  border-radius: 14px;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  text-align: left;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  outline: none;
}

.mono-style-card:hover {
  border-color: var(--accent-leather);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.mono-style-card.active {
  border-color: var(--accent-leather);
  background: var(--accent-tan-bg);
  box-shadow: 0 4px 15px rgba(180, 83, 9, 0.2);
}

.style-card-icon {
  font-size: 1.4rem;
}

.style-card-text {
  display: flex;
  flex-direction: column;
}

.style-card-text strong {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-primary);
}

.style-card-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Why Choose Us / Craftsmanship Showcase Section
   ========================================================================== */
.craftsmanship-section {
  background: var(--bg-surface-elevated);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.craftsmanship-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.craft-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.craft-feature-item {
  display: flex;
  gap: 1.2rem;
  background: #ffffff;
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}
.craft-feature-item:hover {
  transform: translateY(-2px);
  border-color: var(--accent-leather);
}

.craft-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--accent-tan-bg);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  color: var(--accent-leather);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.craft-text h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  letter-spacing: 0.04em;
}
.craft-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Visual Collage */
.collage-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  position: relative;
}
.collage-img-1 {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}
.collage-img-2 {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}

/* ==========================================================================
   Global B2B Wholesale Lead Capture Section
   ========================================================================== */
.wholesale-section {
  background: var(--bg-main);
}

.wholesale-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3.5rem 3rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
  box-shadow: var(--shadow-md);
}

.wholesale-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.wholesale-benefits li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.92rem;
  color: var(--text-primary);
}
.wholesale-benefits i {
  color: var(--accent-leather);
  font-size: 1.1rem;
}

.wholesale-form-container {
  background: var(--bg-surface-elevated);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.form-group-sm {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.form-group-sm label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: all var(--transition-fast);
}

.form-input-card:focus {
  border-color: var(--accent-leather);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
}

/* ==========================================================================
   Global Client Reviews Section
   ========================================================================== */
.reviews-section {
  background: var(--bg-surface-elevated);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.review-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-leather);
  box-shadow: var(--shadow-md), var(--glow-leather);
}

.review-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.25rem;
}

.review-quote {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-accent);
}

.alphabet-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-leather) 0%, #d97706 100%);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(180, 83, 9, 0.25);
  flex-shrink: 0;
}

.author-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
}

.author-location {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   Frequently Asked Questions (FAQ Accordion)
   ========================================================================== */
.faq-section {
  background: var(--bg-main);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

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

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  cursor: pointer;
  outline: none;
  gap: 1rem;
}

.faq-chevron {
  font-size: 0.85rem;
  color: var(--accent-leather);
  transition: transform var(--transition-fast);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  background: #f8fafc;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-light);
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Executive RFQ Lead Capture Section
   ========================================================================== */
.rfq-contact-section {
  background: var(--bg-surface-elevated);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.rfq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: start;
}

.rfq-tagline {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--accent-leather);
  font-weight: 800;
  letter-spacing: 0.14em;
  display: block;
  margin-bottom: 0.4rem;
}

.rfq-headline {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.rfq-subtext {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.rfq-contact-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.rfq-contact-item i {
  color: var(--accent-leather);
  font-size: 1.1rem;
  width: 24px;
}

.rfq-contact-item:hover {
  color: var(--accent-leather);
}

.rfq-form-col {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.rfq-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.rfq-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.rfq-input-group.full-width {
  grid-column: 1 / -1;
}

.rfq-input-group label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rfq-input-field, .rfq-select-field {
  background: #f8fafc;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: all var(--transition-fast);
}

.rfq-input-field:focus, .rfq-select-field:focus {
  background: #ffffff;
  border-color: var(--accent-leather);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
}

/* ==========================================================================
   Luxury 3-Tier Footer Architecture
   ========================================================================== */
.luxury-footer {
  background: #0b0f19;
  color: #f8fafc;
}

/* Tier 1: Top Contact Bar */
.footer-top-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.8rem 0;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-top-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.footer-top-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(217, 119, 6, 0.15);
  border: 1px solid rgba(217, 119, 6, 0.3);
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.top-item-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  display: block;
  font-weight: 700;
}

.top-item-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
}

/* Tier 2: Main Body Grid */
.footer-main-body {
  padding: 4rem 0 3rem 0;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.brand-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-icon-btn:hover {
  background: #d97706;
  color: #ffffff;
  border-color: #d97706;
}

.newsletter-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 300px;
}

.newsletter-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #d97706;
}

.newsletter-form {
  display: flex;
}

.newsletter-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  padding: 0.6rem 0.9rem;
  color: #ffffff;
  font-size: 0.85rem;
  outline: none;
}

.newsletter-submit-btn {
  background: #d97706;
  color: #ffffff;
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0 1.1rem;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.newsletter-submit-btn:hover {
  background: #b45309;
}

.footer-links-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links-col a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition-fast);
}

.footer-links-col a:hover {
  color: #f59e0b;
}

/* Tier 3: Bottom Legal Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: #64748b;
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

.legal-nav-links {
  display: flex;
  gap: 1.5rem;
}

.legal-nav-links a {
  color: #64748b;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
}

.legal-nav-links a:hover {
  color: #ffffff;
}

.sec-badge {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #94a3b8;
}

/* ==========================================================================
   Modern Shopping Cart Drawer
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-fast);
}
.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -460px;
  width: 440px;
  max-width: 100vw;
  height: 100vh;
  background: #ffffff;
  border-left: 1px solid var(--border-light);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right var(--transition-smooth);
  box-shadow: -10px 0 30px rgba(15, 23, 42, 0.15);
}
.cart-drawer.active {
  right: 0;
}

.cart-drawer-header {
  padding: 1.4rem 1.6rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shipping-bar-wrap {
  padding: 0.8rem 1.6rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.bar-track {
  height: 6px;
  background: #e2e8f0;
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-top: 0.4rem;
}
.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-leather), var(--accent-leather-light));
  width: 0%;
  transition: width 0.4s ease;
}

.cart-items-list {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item-row {
  display: flex;
  gap: 1rem;
  background: #f8fafc;
  padding: 0.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.cart-item-thumb {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.cart-drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-light);
  background: #f8fafc;
}

/* Floating Action Trigger */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
  transition: transform var(--transition-fast);
}
.float-btn:hover {
  transform: scale(1.1);
}

/* Toast Alerts */
.toast-wrap {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.toast-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* ==========================================================================
   Product Detail Page (PDP) & B2B Tiered Quantity Pricing Layout
   ========================================================================== */
.pdp-section {
  padding: 2.5rem 0 4.5rem 0;
  background: var(--bg-main);
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.pdp-gallery-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.pdp-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.pdp-thumbs-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.pdp-thumb-img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border-light);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.pdp-thumb-img.active, .pdp-thumb-img:hover {
  border-color: var(--accent-leather);
  transform: scale(1.04);
}

.pdp-content-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.pdp-breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.pdp-breadcrumb a {
  color: var(--accent-leather);
  text-decoration: none;
  font-weight: 600;
}

.pdp-cat-line {
  font-size: 0.82rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.pdp-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.25;
  margin-bottom: 0.8rem;
}

.pdp-price-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.pdp-price-old {
  font-size: 1.15rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 600;
}

.pdp-price-current {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
}

.pdp-shipping-tag {
  font-size: 0.88rem;
  color: #059669;
  font-weight: 700;
}

.pdp-spec-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  margin-bottom: 1.8rem;
  color: var(--text-primary);
}

.pdp-spec-list div {
  line-height: 1.5;
}

.pdp-spec-list strong {
  color: var(--text-secondary);
  display: inline-block;
  min-width: 140px;
}

/* Specifications Table (Reference Image 3 Format) */
.specs-table {
  width: 100%;
  margin-top: 1rem;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.specs-table td {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-light);
}
.specs-table tr:last-child td {
  border-bottom: none;
}
.specs-table td:first-child {
  font-weight: 800;
  color: #475569;
  width: 40%;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.specs-table td:last-child {
  color: #0f172a;
  font-weight: 700;
}

.text-center {
  text-align: center !important;
}

/* B2B Tiered Quantity Pricing Boxes (Reference Image 2) */
.b2b-tier-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 1.8rem 0;
}

.b2b-tier-box {
  background: #ffffff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.9rem 0.6rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.b2b-tier-box:hover, .b2b-tier-box.active {
  border-color: #0284c7;
  background: #f0f9ff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.12);
}

.b2b-tier-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-primary);
  display: block;
}

.b2b-tier-qty {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 600;
  margin-top: 0.2rem;
  display: block;
}

/* Quantity Input & Primary Add To Cart Row */
.pdp-action-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.pdp-qty-input {
  width: 70px;
  height: 48px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  outline: none;
  background: #ffffff;
}

.pdp-add-cart-btn {
  flex-grow: 1;
  height: 48px;
  background: #0284c7;
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.pdp-add-cart-btn:hover {
  background: #0369a1;
}

.pdp-secondary-actions {
  display: flex;
  gap: 0.8rem;
}

.pdp-secondary-actions .btn-pill {
  flex: 1;
  justify-content: center;
  padding: 0.75rem;
  font-size: 0.85rem;
}

/* Floating Fixed Contact Stack (WhatsApp & Phone) */
.floating-contact-stack {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 999;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-fast);
  text-decoration: none !important;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.float-btn:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.float-whatsapp {
  background: #25d366 !important;
  color: #ffffff !important;
}

.float-whatsapp i {
  color: #ffffff !important;
  font-size: 1.5rem;
}

.float-phone {
  background: var(--accent-leather) !important;
  color: #ffffff !important;
}

.float-phone i {
  color: #ffffff !important;
  font-size: 1.2rem;
}

/* ==========================================================================
   Comprehensive Responsive Layout System (Mobile, Tablet, Desktop)
   ========================================================================== */

/* ─── Top Notification Bar Responsive (Hidden on Mobile & Tablet) ─── */
@media (max-width: 992px) {
  .top-notification-bar {
    display: none !important;
  }
}

/* ─── Mobile Menu Toggle & Drawer Base Styles ─── */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu-drawer {
  display: none;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  padding: 1.2rem 1.5rem;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}
.mobile-menu-drawer.active {
  display: block;
  animation: slideDownNav 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.mobile-nav-link {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary) !important;
  text-decoration: none !important;
  border-radius: var(--radius-sm);
  background: #f8fafc;
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: var(--accent-tan-bg);
  color: var(--accent-leather) !important;
  border-color: var(--border-accent);
}
.mobile-nav-link i {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── Modern Sticky Header Responsive ─── */
@media (max-width: 992px) {
  .modern-header {
    padding: 0.2rem 0;
  }
  .header-inner {
    height: 60px;
    gap: 0.6rem;
    justify-content: space-between;
  }
  .brand-logo {
    gap: 0.5rem;
  }
  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    border-radius: 8px;
  }
  .brand-title {
    font-size: 1.15rem;
  }
  .header-search-bar {
    display: none !important;
  }
  .header-nav-menu {
    display: none !important; /* Replaced by hamburger menu on mobile */
  }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    background: #ffffff;
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
  }
  .mobile-menu-toggle:hover {
    border-color: var(--accent-leather);
    color: var(--accent-leather);
  }
}

@media (max-width: 576px) {
  .header-actions .btn-whatsapp {
    display: none;
  }
}

/* ─── Hero Section Centered (iPad & Mobile) ─── */
@media (max-width: 992px) {
  .modern-hero {
    padding: 3rem 0;
  }
  .hero-grid {
    grid-template-columns: 1fr !important;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-grid > div:first-child {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-pill-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-title {
    font-size: 2.6rem !important;
    line-height: 1.15;
    text-align: center;
  }
  .hero-subtitle {
    font-size: 0.95rem !important;
    max-width: 620px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
  }
  .hero-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-feature-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
  }
  .feature-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-primary);
    background: #ffffff;
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.95rem !important;
  }
  .hero-cta-group {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .hero-cta-group .btn-pill {
    width: 100%;
    justify-content: center;
  }
  .hero-feature-pills {
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
  }
  .feature-pill {
    width: 100%;
    max-width: 320px;
  }
}

/* ─── Category Icon Cards Section ─── */
@media (max-width: 992px) {
  .category-top-header {
    margin-bottom: 1.2rem;
  }
  .category-icon-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }
}
@media (max-width: 576px) {
  .category-icon-grid {
    grid-template-columns: 1fr !important;
    gap: 0.8rem;
  }
}

/* ─── Catalog Section & Controls ─── */
@media (max-width: 992px) {
  .catalog-controls-card {
    padding: 1.2rem;
  }
  .catalog-tabs-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.6rem;
    margin-left: 0;
    margin-right: 0;
  }
  .catalog-tabs-row::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }
  .catalog-tab-btn {
    flex-shrink: 0;
    padding: 0.45rem 1rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 640px) {
  .catalog-search-sort-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }
  .catalog-search-wrap {
    max-width: 100%;
    width: 100%;
  }
  .catalog-search-sort-row > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
  }
  .catalog-sort-dropdown {
    width: 100%;
  }
  #catalog-item-count {
    text-align: center;
    display: block;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 576px) {
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ─── Craftsmanship / Art of Master Leathercraft Section ─── */
@media (max-width: 992px) {
  .craftsmanship-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }
  .collage-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .collage-img-1 {
    height: 260px;
  }
  .collage-img-2 {
    height: 200px;
    margin-top: 20px;
  }
}
@media (max-width: 576px) {
  .craft-feature-item {
    padding: 1rem;
    gap: 0.8rem;
  }
  .craft-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1.1rem;
  }
  .collage-wrap {
    grid-template-columns: 1fr;
  }
  .collage-img-2 {
    margin-top: 0;
    height: 220px;
  }
}

/* ─── Wholesale & Monogram Sections ─── */
@media (max-width: 992px) {
  .wholesale-card {
    grid-template-columns: 1fr !important;
    padding: 2rem 1.5rem;
    gap: 2rem;
  }
  .monogram-container {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .rfq-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem;
  }
}

.mono-style-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
@media (max-width: 576px) {
  .mono-style-group {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
}

/* ─── Reviews / Testimonials Grid ─── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}
@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ─── Luxury Footer Responsive Layout ─── */
@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  .brand-desc {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* Split footer link columns into 2 side-by-side columns on mobile */
  .footer-main-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem 1rem !important;
  }
  .footer-brand-col {
    grid-column: 1 / -1 !important;
    margin-bottom: 0.5rem !important;
  }
  .footer-links-col {
    margin-bottom: 0.5rem !important;
  }
  .footer-links-col h4 {
    font-size: 0.82rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    color: #fbbf24 !important;
    margin-bottom: 0.6rem !important;
  }
  .footer-links-col ul {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.45rem !important;
  }
  .footer-links-col ul li a {
    font-size: 0.85rem !important;
    color: #cbd5e1 !important;
    line-height: 1.4 !important;
  }
  .footer-main-body {
    padding: 2.2rem 0 2rem 0 !important;
  }
  .footer-bottom-flex {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}

/* ─── Comprehensive Mobile Responsive Overhaul (max-width: 768px) ─── */
@media (max-width: 768px) {
  html, body {
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
  }

  .section-padding {
    padding: 2.5rem 0 !important;
  }

  /* Monogram Studio Mobile Fixes */
  .monogram-container {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    padding: 1.5rem 1.2rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .monogram-container h2 {
    font-size: 1.6rem !important;
    line-height: 1.25 !important;
  }

  .tag-preview-box {
    padding: 2.5rem 1rem !important;
  }

  .form-input-pill {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* RFQ / Tell Us What You Need Mobile Layout Fixes */
  .rfq-contact-section {
    padding: 2.5rem 0 4rem 0 !important;
    width: 100% !important;
    overflow: hidden !important;
  }

  .rfq-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .rfq-info-col {
    width: 100% !important;
    box-sizing: border-box !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .rfq-headline {
    font-size: 1.85rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.8rem !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .rfq-subtext {
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.5rem !important;
    word-break: break-word !important;
  }

  .wholesale-benefits li {
    font-size: 0.88rem !important;
    line-height: 1.4 !important;
    word-break: break-word !important;
  }

  .rfq-form-col {
    padding: 1.5rem 1.2rem !important;
    border-radius: var(--radius-md) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .rfq-form-grid {
    grid-template-columns: 1fr !important; /* Forces 1-column vertical stacking for ALL fields on mobile */
    gap: 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .rfq-input-group {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .rfq-input-field,
  .rfq-select-field {
    width: 100% !important;
    box-sizing: border-box !important;
    font-size: 0.88rem !important;
    padding: 0.7rem 0.9rem !important;
  }

  /* Floating Contact Stack Positioning & Clearances */
  .floating-contact-stack {
    bottom: 0.8rem !important;
    right: 0.8rem !important;
    gap: 0.5rem !important;
    z-index: 9999 !important;
  }

  .float-btn {
    width: 42px !important;
    height: 42px !important;
    font-size: 1.05rem !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
  }

  /* Add margin bottom to form buttons to ensure floating buttons don't obscure inputs */
  #rfq-main-form button[type="submit"] {
    margin-bottom: 1rem !important;
  }
}

/* ==========================================================================
   Header Dropdown Menu Navigation Styles (Desktop & Mobile)
   ========================================================================== */
.nav-dropdown-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-wrap .dropdown-arrow {
  font-size: 0.65rem;
  margin-left: 0.35rem;
  transition: transform var(--transition-fast);
}

.nav-dropdown-wrap:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.nav-dropdown-wrap:hover > .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.6rem 1.2rem;
  color: var(--text-primary);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active {
  background: rgba(217, 119, 6, 0.08);
  color: var(--accent-leather);
}

/* ─── Multi-Level Flyout Submenu Styles (Level 2+) ─── */
.nav-sub-dropdown-wrap {
  position: relative;
  display: block;
}

.nav-dropdown-item.nav-has-children {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sub-dropdown-arrow {
  font-size: 0.65rem;
  margin-left: 0.6rem;
  color: var(--text-muted);
  transition: transform var(--transition-fast);
}

.nav-sub-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 200px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.5rem 0;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateX(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1005;
}

.nav-sub-dropdown-wrap:hover > .nav-sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.nav-sub-dropdown-wrap:hover > .nav-dropdown-item .sub-dropdown-arrow {
  color: var(--accent-leather);
  transform: translateX(3px);
}

.nav-sub-dropdown-item {
  display: block;
  padding: 0.55rem 1.2rem;
  color: var(--text-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.nav-sub-dropdown-item:hover,
.nav-sub-dropdown-item.active {
  background: rgba(217, 119, 6, 0.08);
  color: var(--accent-leather);
}

/* ─── Mobile Multi-Level Submenus ─── */
.mobile-dropdown-group {
  padding-left: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 0.2rem;
  margin-bottom: 0.4rem;
}

.mobile-nav-sublink {
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary) !important;
  text-decoration: none !important;
  border-radius: var(--radius-sm);
  background: #ffffff;
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.mobile-nav-sublink:hover,
.mobile-nav-sublink.active {
  background: var(--accent-tan-bg);
  color: var(--accent-leather) !important;
  border-color: var(--border-accent);
}

.mobile-nav-sublink-level2 {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem 0.5rem 1.4rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-secondary) !important;
  text-decoration: none !important;
  border-left: 2px solid var(--border-accent);
  margin-left: 1.2rem;
  margin-top: 0.15rem;
  margin-bottom: 0.15rem;
  transition: all var(--transition-fast);
}

.mobile-nav-sublink-level2:hover,
.mobile-nav-sublink-level2.active {
  color: var(--accent-leather) !important;
  border-left-color: var(--accent-leather);
}

/* ─── WP Editor Product Description Table Styling ─── */
.pdp-description table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0;
  font-size: 0.95rem;
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.pdp-description table td,
.pdp-description table th {
  padding: 1rem 1.4rem !important;
  border-bottom: 1px solid var(--border-light) !important;
  border-right: 1px solid var(--border-light) !important;
  text-align: left !important;
  vertical-align: middle !important;
  line-height: 1.6 !important;
}

.pdp-description table td p,
.pdp-description table th p {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.6 !important;
}

.pdp-description table td:last-child,
.pdp-description table th:last-child {
  border-right: none !important;
}

.pdp-description table tr:last-child td {
  border-bottom: none !important;
}

.pdp-description table td:first-child,
.pdp-description table th:first-child {
  font-weight: 800 !important;
  color: var(--text-primary) !important;
  background: rgba(248, 250, 252, 0.85) !important;
  width: 32% !important;
  text-align: left !important;
  padding-left: 1.4rem !important;
}

/* Product Description Paragraph & Formatting */
.pdp-description p,
.pdp-short-desc p {
  margin-bottom: 1.1rem !important;
  line-height: 1.75 !important;
}

.pdp-description p:last-child,
.pdp-short-desc p:last-child {
  margin-bottom: 0 !important;
}

.pdp-description ul,
.pdp-description ol {
  margin: 1rem 0 1.2rem 1.5rem !important;
  padding-left: 0.5rem !important;
}

.pdp-description li {
  margin-bottom: 0.5rem !important;
  line-height: 1.65 !important;
}


