@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=IBM+Plex+Mono:wght@400;500;600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --color-alabaster: #F5F2EC;
  --color-charcoal-stone: #2A2622;
  --color-wet-slate: #47585C;
  --color-antique-brass: #A67C42;
  --color-warm-ivory: #EFE9DD;
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-radius: 0px !important; /* Strict sharp edge rule */
}

body {
  background-color: var(--color-alabaster);
  color: var(--color-charcoal-stone);
  font-family: var(--font-body);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header Styling */
.header-nav {
  background-color: var(--color-charcoal-stone);
  color: var(--color-warm-ivory);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(71, 88, 92, 0.3);
  transition: all 0.3s ease;
}

.header-nav.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid var(--color-antique-brass);
}

.header-container {
  max-w-7xl;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.brand-icon {
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--color-antique-brass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-antique-brass);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}

.brand-title {
  font-family: var(--font-display);
  color: var(--color-warm-ivory);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.brand-subtitle {
  color: var(--color-antique-brass);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-links a:hover {
  color: var(--color-antique-brass);
}

/* Buttons */
.btn-primary, .btn-showroom {
  padding: 1rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid var(--color-antique-brass);
}

.btn-primary {
  background-color: var(--color-antique-brass);
  color: #FFFFFF !important;
}

.btn-primary:hover {
  background-color: #8c6836;
}

.btn-showroom {
  background-color: transparent;
  color: var(--color-alabaster) !important;
}

.btn-showroom:hover {
  background-color: rgba(166, 124, 66, 0.1);
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
}

.hero-bg-container {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-charcoal-stone) 0%, rgba(42, 38, 34, 0.7) 50%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-subtitle {
  color: var(--color-antique-brass);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-display);
  color: var(--color-alabaster);
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero-divider {
  width: 40px;
  height: 2px;
  background-color: var(--color-antique-brass);
  margin-bottom: 1.5rem;
}

.hero-desc {
  color: rgba(245, 242, 236, 0.9);
  font-size: 0.9rem;
  max-width: 20rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.hero-ctas {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  max-width: 32rem;
}

/* Collection Cards with Image Overlays */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0 1.5rem;
}

.collection-card {
  position: relative;
  height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  color: #FFFFFF;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.4s ease;
}

.collection-card:hover {
  transform: translateY(-5px);
}

.collection-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(20,20,20,0.85) 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.collection-card:hover::before {
  opacity: 0.9;
}

.collection-badge {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  background-color: var(--color-antique-brass);
  border-radius: 50% !important; /* Circle badge for category icon */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.collection-content {
  position: relative;
  z-index: 2;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}

.collection-card:hover .collection-content {
  transform: translateY(0);
}

.collection-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.collection-subtitle {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

/* AI Visualizer Banner */
.visualizer-card {
  background-color: var(--color-warm-ivory);
  border: 1px solid rgba(71, 88, 92, 0.25);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.visualizer-btn {
  background-color: var(--color-wet-slate);
  color: #FFFFFF !important;
  padding: 0.85rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Why Choose Us Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.why-item {
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(71, 88, 92, 0.2);
}

.why-item:last-child {
  border-right: none;
}

/* Bottom Navigation Bar for Mobile */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: var(--color-charcoal-stone);
  border-top: 1px solid rgba(71, 88, 92, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 100;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #94a3b8;
  text-decoration: none;
}

.bottom-nav-item.active {
  color: var(--color-antique-brass);
}

.bottom-nav-center {
  position: relative;
  top: -16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.quotation-circle {
  width: 56px;
  height: 56px;
  background-color: var(--color-antique-brass);
  border-radius: 50% !important; /* Floating circle icon */
  border: 4px solid var(--color-alabaster);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.4rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* Utility Helpers */
.max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.max-w-6xl { max-width: 72rem; margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-2xl { max-width: 42rem; margin-left: auto; margin-right: auto; }
.max-w-xl { max-width: 36rem; margin-left: auto; margin-right: auto; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

@media (max-width: 768px) {
  .nav-links, .desktop-icons { display: none !important; }
  
  /* Hero Mobile */
  .hero-section { min-height: 500px; }
  .hero-content { padding: 3rem 1.5rem; }
  .hero-title { font-size: 2.8rem; }
  .hero-overlay { background: linear-gradient(180deg, rgba(42,38,34,0.4) 0%, rgba(42,38,34,0.8) 100%); }
  .hero-ctas { flex-direction: column; max-width: 100%; width: 100%; gap: 0.75rem; }
  .btn-primary, .btn-showroom { width: 100%; }

  /* Collections Mobile Carousel */
  .collections-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    gap: 0.75rem;
    padding: 0 1.5rem;
  }
  .collections-grid::-webkit-scrollbar { display: none; }
  .collection-card {
    min-width: 260px;
    height: 300px;
    scroll-snap-align: start;
  }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-item:nth-child(2) { border-right: none; }
  .why-item { border-bottom: 1px solid rgba(71, 88, 92, 0.2); }
  
  .visualizer-card { flex-direction: column; align-items: flex-start; }
  .visualizer-btn { width: 100%; justify-content: space-between; }
}

@media (min-width: 769px) {
  .mobile-menu-btn { display: none !important; }
}

/* Mobile Menu Styles */
.mobile-menu-btn, .close-menu-btn {
  background: none;
  border: none;
  color: var(--color-warm-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: var(--color-charcoal-stone);
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-content {
  flex: 1;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-nav-links a:hover {
  color: var(--color-antique-brass);
}

/* Shared admin/public layout helpers */
.admin-card, .panel, .surface-card { background: #fff; border: 1px solid rgba(71,88,92,0.2); box-shadow: 0 10px 30px rgba(0,0,0,0.03); padding: 1rem; }
.section-title { font-family: var(--font-display); font-size: 1.35rem; margin: 0 0 0.35rem; color: var(--color-charcoal-stone); }
.section-subtitle { color: var(--color-wet-slate); margin: 0 0 0.25rem; line-height: 1.5; }
.eyebrow { font-family: var(--font-display); font-style: italic; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--color-antique-brass); }
.products-grid { display:grid; gap:1rem; grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-2 { display:grid; gap:1rem; grid-template-columns: 1.25fr 0.75fr; }
.form-grid { display:grid; gap:0.8rem; }
.form-block { display:grid; gap:0.35rem; }
.form-block label { font-size:0.75rem; color:var(--color-wet-slate); font-weight:700; text-transform:uppercase; letter-spacing:0.08em; }
.form-block input, .form-block select, .form-block textarea { width:100%; padding:0.8rem 0.9rem; border:1px solid rgba(71,88,92,0.2); background:#fff; color:var(--color-charcoal-stone); }
.btn-primary, .btn-outline { display:inline-flex; align-items:center; justify-content:center; gap:0.4rem; padding:0.8rem 1rem; border:1px solid transparent; font-size:0.78rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; cursor:pointer; }
.btn-primary { background: var(--color-antique-brass); color:#fff; }
.btn-outline { background:transparent; color:var(--color-charcoal-stone); border-color:var(--color-charcoal-stone); }
.flash { padding:0.9rem 1rem; margin-bottom:1rem; border:1px solid rgba(71,88,92,0.2); }
.flash-success { background:#f2f9ee; color:#2f5a25; }
.flash-error { background:#fff2f2; color:#903e3e; }

/* Admin shell polish */
.site-shell { min-height:100vh; background:linear-gradient(180deg, rgba(245,242,236,0.95) 0%, rgba(239,233,221,0.95) 100%); }
.page-shell { max-width: 1440px; margin: 0 auto; padding: 1rem; }
.site-header { background: var(--color-charcoal-stone); color: var(--color-warm-ivory); border-bottom: 1px solid rgba(71,88,92,0.25); position:sticky; top:0; z-index:10; }
.header-inner { max-width: 1440px; margin: 0 auto; padding: 0.9rem 1rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.brand-block { display:flex; align-items:center; gap:0.7rem; }
.brand-mark { display:grid; place-items:center; width:2.2rem; height:2.2rem; border:1px solid var(--color-antique-brass); color:var(--color-antique-brass); font-family:var(--font-display); font-weight:700; }
.brand-text { display:flex; flex-direction:column; line-height:1.02; }
.brand-text strong { font-family:var(--font-display); letter-spacing:0.12em; }
.brand-text span { color: var(--color-antique-brass); font-size:0.7rem; letter-spacing:0.12em; text-transform:uppercase; }
.header-actions { display:flex; align-items:center; gap:0.6rem; }
.user-pill { display:inline-flex; align-items:center; gap:0.35rem; padding:0.45rem 0.7rem; border:1px solid rgba(255,255,255,0.14); background:rgba(255,255,255,0.05); text-transform:uppercase; letter-spacing:0.08em; font-size:0.72rem; color:var(--color-warm-ivory); }
.icon-link { padding:0.55rem 0.85rem; border:1px solid rgba(255,255,255,0.17); color:var(--color-warm-ivory); background:rgba(255,255,255,0.04); text-transform:uppercase; letter-spacing:0.08em; font-size:0.75rem; }
.admin-shell-grid { display:grid; grid-template-columns: 280px minmax(0,1fr); gap:1rem; align-items:start; }
.admin-main { display:grid; gap:1rem; }
.admin-sidebar { color: var(--color-warm-ivory); }
.sidebar-card { background: var(--color-charcoal-stone); padding:1rem; border:1px solid rgba(255,255,255,0.08); box-shadow: 0 14px 40px rgba(0,0,0,0.08); }
.admin-sidebar .eyebrow { color: var(--color-antique-brass); }
.admin-sidebar a { display:block; padding:0.65rem 0.75rem; margin-bottom:0.35rem; color:rgba(255,255,255,0.84); }
.admin-sidebar a:hover, .admin-sidebar a.active { background:rgba(255,255,255,0.08); color:white; }
.dashboard-stack { display:grid; gap:1rem; }
.company-card { background: linear-gradient(135deg, var(--color-charcoal-stone) 0%, var(--color-wet-slate) 100%); color: var(--color-warm-ivory); border:1px solid rgba(255,255,255,0.08); }
.company-card .section-title, .company-card .section-subtitle { color: inherit; }
.company-card__content { display:flex; justify-content:space-between; gap:1rem; align-items:flex-start; flex-wrap:wrap; }
.company-card__details { display:grid; gap:0.3rem; font-size:0.9rem; color:rgba(255,255,255,0.86); }
.metric-card { background: linear-gradient(180deg, #ffffff 0%, #fbf7f0 100%); }
.list-stack { display:grid; gap:0.65rem; margin-top:0.8rem; }
.list-row { display:flex; justify-content:space-between; align-items:center; gap:0.75rem; padding:0.75rem 0; border-bottom:1px solid rgba(71,88,92,0.14); }
.list-row:last-child { border-bottom:none; }
.pill { display:inline-flex; align-items:center; padding:0.38rem 0.6rem; background:rgba(166,124,66,0.14); color:var(--color-antique-brass); font-size:0.76rem; font-weight:700; text-transform:uppercase; letter-spacing:0.08em; }
.text-right { text-align:right; }
@media (max-width: 900px) {
  .admin-shell-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
  .products-grid { grid-template-columns: 1fr; }
  .company-card__content { flex-direction:column; }
  .list-row { flex-direction:column; align-items:flex-start; }
  .text-right { text-align:left; }
}

/* ============================================================
   TAILWIND-COMPATIBLE UTILITY LAYER
   All utility classes used by admin panel blade templates.
   ============================================================ */

/* --- Display & Position --- */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.block { display: block; }
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.group { position: relative; }

/* --- Flexbox --- */
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }

/* --- Grid --- */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }

/* --- Gap --- */
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }

/* --- Padding --- */
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }

/* --- Margin --- */
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }

/* --- Space Between Children --- */
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* --- Sizing --- */
.w-4 { width: 1rem; }
.w-20 { width: 5rem; }
.w-full { width: 100%; }
.h-4 { height: 1rem; }
.h-20 { height: 5rem; }
.h-32 { height: 8rem; }
.h-full { height: 100%; }
.min-w-full { min-width: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-md { max-width: 28rem; margin-left: auto; margin-right: auto; }

/* --- Typography --- */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-mono { font-family: 'IBM Plex Mono', ui-monospace, SFMono-Regular, monospace; }
.uppercase { text-transform: uppercase; }
.underline { text-decoration: underline; }
.text-left { text-align: left; }
.text-center { text-align: center; }

/* --- Text Colors --- */
.text-white { color: #ffffff; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-800 { color: #1e293b; }
.text-slate-900 { color: #0f172a; }
.text-amber-700 { color: #b45309; }
.text-amber-800 { color: #92400e; }
.text-emerald-600 { color: #059669; }
.text-emerald-800 { color: #065f46; }
.text-rose-600 { color: #e11d48; }
.text-rose-800 { color: #9f1239; }
.text-\[\#2A2622\] { color: #2A2622; }
.text-\[\#47585C\] { color: #47585C; }
.text-\[\#A67C42\] { color: #A67C42; }

/* --- Background Colors --- */
.bg-white { background-color: #ffffff; }
.bg-slate-50 { background-color: #f8fafc; }
.bg-slate-100 { background-color: #f1f5f9; }
.bg-slate-800 { background-color: #1e293b; }
.bg-red-600 { background-color: #dc2626; }
.bg-green-600 { background-color: #16a34a; }
.bg-amber-100 { background-color: #fef3c7; }
.bg-amber-700 { background-color: #b45309; }
.bg-emerald-100 { background-color: #d1fae5; }
.bg-rose-100 { background-color: #ffe4e6; }
.bg-\[\#2A2622\] { background-color: #2A2622; }
.bg-\[\#A67C42\] { background-color: #A67C42; }

/* --- Borders --- */
.border { border-width: 1px; border-style: solid; border-color: #e2e8f0; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: #e2e8f0; }
.border-t { border-top-width: 1px; border-top-style: solid; border-top-color: #e2e8f0; }
.border-slate-200 { border-color: #e2e8f0; }
.border-slate-300 { border-color: #cbd5e1; }
.rounded { border-radius: 0.375rem !important; }
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; }
.divide-slate-200 > * + * { border-top-color: #e2e8f0; }

/* --- Effects --- */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.outline-none { outline: none; }
.transition { transition-property: color, background-color, border-color, box-shadow; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.object-cover { object-fit: cover; }

/* --- Hover States --- */
.hover\:bg-slate-50:hover { background-color: #f8fafc; }
.hover\:bg-slate-900:hover { background-color: #0f172a; }
.hover\:bg-red-700:hover { background-color: #b91c1c; }
.hover\:bg-amber-800:hover { background-color: #92400e; }
.hover\:bg-\[\#141211\]:hover { background-color: #141211; }
.hover\:bg-\[\#8f6733\]:hover { background-color: #8f6733; }
.hover\:underline:hover { text-decoration: underline; }

/* --- Focus States --- */
.focus\:border-\[\#A67C42\]:focus { border-color: #A67C42; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px; }
.focus\:ring-\[\#A67C42\]:focus { --ring-color: #A67C42; box-shadow: 0 0 0 2px #A67C42; }
.focus\:ring-\[\#A67C42\]\/20:focus { box-shadow: 0 0 0 3px rgba(166, 124, 66, 0.2); }

/* --- Responsive: md (768px+) --- */
@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:items-end { align-items: flex-end; }
  .md\:justify-between { justify-content: space-between; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

/* --- Responsive: lg (1024px+) --- */
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
}
