/* =============================================================================
   TARAGUM.COM - Main Stylesheet
   ============================================================================= */

/* ---------------------------------------------------------------------------
   CSS Variables
   --------------------------------------------------------------------------- */
:root {
  --color-primary: #1B4332;
  --color-secondary: #40916C;
  --color-accent: #D4A017;
  --color-accent-light: #F8E16C;
  --color-dark: #0D1B0F;
  --color-light: #F4F9F4;
  --color-gray: #6B7280;
  --color-gray-light: #E5E7EB;
  --color-white: #FFFFFF;
  --color-danger: #DC2626;
  --color-success: #16A34A;
  --color-warning: #D97706;
  --color-info: #2563EB;
  --color-border: #D1FAE5;
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --transition: all 0.3s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: var(--transition);
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ---------------------------------------------------------------------------
   Buttons
   --------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: #B8860B;
  color: var(--color-white);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-admin {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.btn-admin:hover {
  background: linear-gradient(135deg, #c82333, #a71d2a);
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.5);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--color-secondary);
  color: var(--color-secondary);
}

.btn-outline:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.btn-link {
  background: none;
  color: var(--color-secondary);
  padding: 0.5rem;
}

.btn-link:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ---------------------------------------------------------------------------
   Forms
   --------------------------------------------------------------------------- */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-dark);
}

.form-label.required::after {
  content: " *";
  color: var(--color-danger);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  background-color: var(--color-white);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(64, 145, 108, 0.1);
}

.form-control::placeholder {
  color: var(--color-gray);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--color-secondary);
}

.form-check-label {
  font-size: 0.95rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.form-error {
  color: var(--color-danger);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-success {
  color: var(--color-success);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* ---------------------------------------------------------------------------
   Header
   --------------------------------------------------------------------------- */
.site-header {
  background-color: var(--color-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-top {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-contact {
  display: flex;
  gap: 1.5rem;
}

.header-contact span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-social {
  display: flex;
  gap: 1rem;
}

.header-social a {
  color: var(--color-white);
  opacity: 0.8;
  transition: var(--transition);
}

.header-social a:hover {
  opacity: 1;
}

.header-main {
  padding: 1rem 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.logo-accent {
  color: var(--color-accent);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.main-nav a {
  color: var(--color-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-menu {
  position: relative;
}

.user-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  color: var(--color-dark);
}

.premium-badge {
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-sm);
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  display: none;
  padding: 0.5rem 0;
}

.user-menu:hover .user-dropdown {
  display: block;
}

.user-dropdown a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-dark);
}

.user-dropdown a:hover {
  background-color: var(--color-light);
  color: var(--color-primary);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-primary);
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-gray-light);
  padding: 1rem;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--color-dark);
  border-bottom: 1px solid var(--color-gray-light);
}

.mobile-nav a:hover {
  background-color: var(--color-light);
}

/* ---------------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  margin-top: auto;
}

.footer-main {
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-logo .logo-text {
  color: var(--color-white);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  color: var(--color-white);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-social a:hover {
  opacity: 1;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.newsletter {
  margin-top: 1.5rem;
}

.newsletter h5 {
  color: var(--color-white);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
}

.newsletter-form .btn {
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
}

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

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.footer-legal a:hover {
  color: var(--color-white);
}

/* ---------------------------------------------------------------------------
   Hero Section
   --------------------------------------------------------------------------- */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: var(--color-white);
  padding: 6rem 0;
  text-align: center;
}

.hero h1 {
  color: var(--color-white);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero .btn-primary {
  background-color: var(--color-accent);
}

.hero .btn-outline {
  border-color: var(--color-white);
  color: var(--color-white);
}

.hero .btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
}

/* ---------------------------------------------------------------------------
   Stats Bar
   --------------------------------------------------------------------------- */
.stats-bar {
  background-color: var(--color-light);
  padding: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--color-gray);
  margin: 0;
  font-weight: 500;
}

/* ---------------------------------------------------------------------------
   Cards
   --------------------------------------------------------------------------- */
.card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: var(--transition);
}

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

.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-text {
  color: var(--color-gray);
  margin-bottom: 1rem;
}

.card-footer {
  padding: 1rem 1.5rem;
  background-color: var(--color-light);
  border-top: 1px solid var(--color-border);
}

/* ---------------------------------------------------------------------------
   Supplier Cards
   --------------------------------------------------------------------------- */
.supplier-card {
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background-color: var(--color-white);
  transition: var(--transition);
}

.supplier-card:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
}

.supplier-card.premium {
  border: 2px solid var(--color-accent);
  position: relative;
}

.supplier-card.premium::before {
  content: 'Premium';
  position: absolute;
  top: -1px;
  right: -1px;
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 0 var(--radius-md) 0 var(--radius-md);
}

.supplier-logo {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-bottom: 1rem;
}

.supplier-name {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.supplier-country {
  color: var(--color-gray);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.supplier-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
}

.badge-kosher { background-color: #E0F2FE; color: #0369A1; }
.badge-halal { background-color: #DCFCE7; color: #166534; }
.badge-iso { background-color: #F3E8FF; color: #7C3AED; }
.badge-haccp { background-color: #FFEDD5; color: #C2410C; }
.badge-verified { background-color: var(--color-success); color: var(--color-white); }

/* ---------------------------------------------------------------------------
   Product Cards
   --------------------------------------------------------------------------- */
.product-card {
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--color-white);
  transition: var(--transition);
}

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

.product-image {
  position: relative;
  height: 200px;
  background-color: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image img {
  max-height: 100%;
  object-fit: contain;
}

.product-grade {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-sm);
}

.product-body {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.product-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.product-spec {
  color: var(--color-gray);
}

.product-spec strong {
  color: var(--color-dark);
}

.product-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.product-supplier {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-gray);
}

/* ---------------------------------------------------------------------------
   Sections
   --------------------------------------------------------------------------- */
.section {
  padding: 4rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto;
}

.section-title {
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
}

/* ---------------------------------------------------------------------------
   Grid Layouts
   --------------------------------------------------------------------------- */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

/* ---------------------------------------------------------------------------
   Pagination
   --------------------------------------------------------------------------- */
.pagination {
  margin-top: 3rem;
}

.pagination ul {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 0.5rem;
  padding: 0;
}

.pagination a,
.pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-md);
  color: var(--color-dark);
  font-weight: 500;
}

.pagination a:hover {
  background-color: var(--color-light);
  border-color: var(--color-secondary);
}

.pagination .current {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-white);
}

.pagination .disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ---------------------------------------------------------------------------
   Breadcrumb
   --------------------------------------------------------------------------- */
.breadcrumb {
  background-color: var(--color-light);
  padding: 1rem 0;
}

.breadcrumb ol {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}

.breadcrumb li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--color-gray);
}

.breadcrumb a {
  color: var(--color-gray);
}

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

/* ---------------------------------------------------------------------------
   Alerts
   --------------------------------------------------------------------------- */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.alert-success {
  background-color: #DCFCE7;
  color: #166534;
  border: 1px solid #86EFAC;
}

.alert-danger {
  background-color: #FEE2E2;
  color: #991B1B;
  border: 1px solid #FCA5A5;
}

.alert-warning {
  background-color: #FEF3C7;
  color: #92400E;
  border: 1px solid #FCD34D;
}

.alert-info {
  background-color: #DBEAFE;
  color: #1E40AF;
  border: 1px solid #93C5FD;
}

/* ---------------------------------------------------------------------------
   Tables
   --------------------------------------------------------------------------- */
.table-responsive {
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-gray-light);
}

.table th {
  background-color: var(--color-light);
  font-weight: 600;
  color: var(--color-primary);
}

.table tbody tr:hover {
  background-color: var(--color-light);
}

/* ---------------------------------------------------------------------------
   Tabs
   --------------------------------------------------------------------------- */
.tabs {
  display: flex;
  border-bottom: 2px solid var(--color-gray-light);
  margin-bottom: 2rem;
}

.tab {
  padding: 1rem 1.5rem;
  color: var(--color-gray);
  font-weight: 500;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}

.tab:hover {
  color: var(--color-secondary);
}

.tab.active {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
}

/* ---------------------------------------------------------------------------
   Responsive
   --------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-actions .btn-link,
  .header-actions .btn-secondary {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav.active {
    display: block;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .grid-2,
  .grid-3,
  .grid-4,
  .grid-6 {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-item h3 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 0;
  }
  
  .hero h1 {
    font-size: 1.5rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------------------
   Utility Classes
   --------------------------------------------------------------------------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }

.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }
.align-items-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* ---------------------------------------------------------------------------
   2026 Refresh Layer
   --------------------------------------------------------------------------- */
.site-2026 {
  --color-primary: #0f3d3f;
  --color-secondary: #1f7a72;
  --color-accent: #f59e0b;
  --color-accent-light: #fcd34d;
  --color-dark: #0b1320;
  --color-light: #f4f8f8;
  --color-gray: #4b5563;
  --color-border: #dbe7ea;
  --font-heading: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Manrope', 'Segoe UI', sans-serif;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-sm: 0 6px 16px rgba(15, 61, 63, 0.08);
  --shadow-md: 0 14px 32px rgba(11, 19, 32, 0.10);
  --shadow-lg: 0 20px 48px rgba(11, 19, 32, 0.14);
}

body.site-2026 {
  background:
    radial-gradient(circle at 15% -10%, rgba(31, 122, 114, 0.10), transparent 38%),
    radial-gradient(circle at 85% 0%, rgba(245, 158, 11, 0.09), transparent 32%),
    linear-gradient(180deg, #f8fbfc 0%, #f2f7f8 40%, #f6fbfb 100%);
}

body.site-2026 .site-header {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15, 61, 63, 0.08);
  box-shadow: 0 8px 24px rgba(11, 19, 32, 0.08);
}

body.site-2026 .header-main {
  padding: 0.9rem 0;
}

body.site-2026 .logo-text {
  letter-spacing: 0.04em;
}

body.site-2026 .main-nav a {
  font-weight: 600;
  letter-spacing: 0.01em;
}

body.site-2026 .hero {
  position: relative;
  overflow: hidden;
  padding: 7rem 0 6.5rem;
  background:
    radial-gradient(circle at 15% 20%, rgba(252, 211, 77, 0.30), transparent 38%),
    radial-gradient(circle at 80% 0%, rgba(56, 189, 161, 0.24), transparent 42%),
    linear-gradient(140deg, #0f3d3f 0%, #176162 48%, #1f7a72 100%);
}

body.site-2026 .hero::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -120px;
  bottom: -160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(1px);
}

body.site-2026 .hero::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -70px;
  top: -70px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.20);
}

body.site-2026 .hero .container {
  position: relative;
  z-index: 1;
}

body.site-2026 .hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

body.site-2026 .hero p {
  max-width: 720px;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

body.site-2026 .btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

body.site-2026 .btn-primary {
  background: linear-gradient(135deg, #f59e0b 0%, #ea8c04 100%);
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.28);
}

body.site-2026 .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(245, 158, 11, 0.36);
}

body.site-2026 .btn-outline {
  border-width: 1.5px;
}

body.site-2026 .stats-bar {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(15, 61, 63, 0.08);
  border-bottom: 1px solid rgba(15, 61, 63, 0.08);
}

body.site-2026 .section {
  padding: clamp(2.5rem, 6vw, 4.8rem) 0;
}

body.site-2026 .card,
body.site-2026 .product-card,
body.site-2026 .supplier-card {
  border: 1px solid rgba(15, 61, 63, 0.09);
  box-shadow: 0 12px 30px rgba(11, 19, 32, 0.08);
}

body.site-2026 .card:hover,
body.site-2026 .product-card:hover,
body.site-2026 .supplier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(11, 19, 32, 0.13);
}

body.site-2026 .section-title::after {
  width: 86px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f59e0b 0%, #fcd34d 100%);
}

body.site-2026 .table th {
  background: #edf5f5;
}

body.site-2026 .site-footer {
  position: relative;
  background:
    radial-gradient(circle at 88% -22%, rgba(252, 211, 77, 0.14), transparent 40%),
    linear-gradient(160deg, #0f3d3f 0%, #0c3234 100%);
}

body.site-2026 .footer-main {
  padding-top: 4.6rem;
}

@media (max-width: 768px) {
  body.site-2026 .header-actions {
    gap: 0.5rem;
  }

  body.site-2026 .hero {
    padding-top: 5.2rem;
    padding-bottom: 4.8rem;
  }
}
