/* ============================================
   VINCENT – SMALL IT COMPANY DESIGN
   Compact, approachable, personal
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Personal blog – warm, minimal */
  --primary: #292524;
  --primary-dark: #1c1917;
  --accent: #b45309;
  --accent-light: #d97706;
  --accent-muted: #fef3c7;
  --bg-light: #fafaf9;
  --bg-card: #ffffff;
  --text: #292524;
  --text-muted: #78716c;
  --border: #e7e5e4;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --space-xs: 0.4rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.5rem;
  --space-3xl: 3.5rem;
  --shadow-sm: 0 1px 3px rgba(28, 25, 23, 0.06);
  --shadow-md: 0 4px 12px rgba(28, 25, 23, 0.08);
  --shadow-lg: 0 10px 28px rgba(28, 25, 23, 0.1);
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg-light);
  font-weight: 500;
}

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

a:hover {
  text-decoration: none;
  color: var(--accent);
}

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

/* Override for product images */
.product-card img,
.product-image {
  max-width: 100% !important;
  width: 100% !important;
}

/* AGGRESSIVE Shipping Banner */
.shipping-banner {
  background: var(--primary);
  color: var(--accent-light);
  padding: 16px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(22, 34, 70, 0.4);
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.banner-icon {
  font-size: 16px;
}

.banner-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  margin-left: 10px;
  padding: 6px 14px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  border: none;
  transition: var(--transition);
}

.banner-link:hover {
  background: var(--accent-light);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

/* ---------- Header: light, blog-style ---------- */
.site-header {
  background: var(--bg-card);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--border);
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  gap: var(--space-md);
}

.logo-section {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: nowrap;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.logo {
  max-width: 56px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.logo-section h1 {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.company-tagline {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.search-bar {
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  pointer-events: none;
}

.search-input {
  padding: 8px 14px 8px 36px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.9rem;
  width: 220px;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--bg-light);
  color: var(--text);
  font-weight: 500;
}

.search-input::placeholder {
  color: var(--text-muted);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-card);
  box-shadow: 0 0 0 2px var(--accent-muted);
}

/* Navigation: inline with header, pill style */
.main-nav {
  border-top: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  gap: 4px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 8px 14px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: color var(--transition), background var(--transition);
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  background: var(--bg-light);
  color: var(--accent);
  text-decoration: none;
}

.nav-menu > li > a.active {
  color: var(--accent);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  display: none;
  z-index: 100;
}

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

.dropdown-menu li {
  position: relative;
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #333;
  font-size: 14px;
  border-bottom: 1px solid #f5f5f5;
}

.dropdown-menu a:hover {
  background-color: #f5f5f5;
}

/* Submenu */
.submenu {
  position: absolute;
  left: 100%;
  top: 0;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  display: none;
}

.has-submenu:hover .submenu {
  display: block;
}

.dropdown-arrow,
.submenu-arrow {
  font-size: 10px;
  margin-left: 5px;
}

/* Main Content */
.main-content {
  width: 100%;
  margin: 0;
  padding: 0;
}

.main-content .container {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-2xl);
}

.page-header {
  margin-bottom: var(--space-xl);
  padding: 0 var(--space-lg);
}

.page-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* ---------- Filter & Sort Bar (Products page, one row) ---------- */
.filter-sort-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
}

.filter-sort-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  min-width: 0;
}

.filter-sort-group:first-child {
  flex: 1;
  min-width: 200px;
}

.filter-sort-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: block;
}

.category-select,
.sort-select {
  padding: 12px 40px 12px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2378716c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.category-select {
  width: 100%;
  max-width: 280px;
}

.sort-select {
  width: 100%;
  min-width: 180px;
  max-width: 220px;
}

.category-select:hover,
.sort-select:hover {
  border-color: var(--text-muted);
}

.category-select:focus,
.sort-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
}

@media (max-width: 600px) {
  .filter-sort-bar {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-lg);
  }
  .filter-sort-group:first-child {
    min-width: 0;
  }
  .category-select {
    max-width: none;
  }
  .sort-select {
    max-width: none;
  }
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
  }
}

.product-card {
  border: 1px solid rgba(22, 34, 70, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.product-card img {
  width: 100% !important;
  max-width: 100% !important;
  height: 120px !important;
  object-fit: cover !important;
  display: block;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(180, 83, 9, 0.25);
}

.product-image {
  width: 100% !important;
  max-width: 100% !important;
  height: 120px;
  object-fit: cover;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  padding: 0;
  display: block;
  min-height: 120px;
  transition: transform 0.3s;
}

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

.product-info {
  padding: 15px;
}

.product-title {
  font-family: 'Syne', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  min-height: 44px;
  line-height: 1.4;
  text-align: left;
  letter-spacing: -0.01em;
}

.product-title a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

.product-title a:hover {
  color: var(--accent);
  text-decoration: none;
}

.product-price {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 10px;
  margin-top: 0;
}

.price-current {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.price-original {
  font-size: 14px;
  color: #9ca3af;
  text-decoration: line-through;
  margin-left: 8px;
}

.price-range {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.product-variants {
  margin-top: 10px;
}

.variant-select {
  width: 100%;
  padding: 6px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 13px;
  margin-bottom: 10px;
}


.sold-out-badge {
  display: inline-block;
  padding: 4px 8px;
  background-color: #f00;
  color: #fff;
  font-size: 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.page-link {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  color: #333;
  transition: all 0.3s;
}

.page-link:hover,
.page-link.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  font-weight: 600;
}

/* ---------- Footer: blog-style, light ---------- */
.site-footer {
  background: var(--bg-card);
  color: var(--text);
  padding: var(--space-2xl) var(--space-lg) var(--space-lg);
  margin-top: 0;
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-section h3 {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  color: var(--primary);
  letter-spacing: 0.02em;
}

.footer-section p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 500;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--accent);
  text-decoration: none;
}

.payment-methods {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-icon {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--space-lg);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  font-weight: 500;
}

.footer-legal {
  font-size: 0.85rem;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--accent);
  text-decoration: none;
}


.btn {
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: all 0.3s;
}

/* btn-primary / btn-secondary defined in hero section above */

/* ---------- Inner pages: editorial layout ---------- */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
}

.about-content,
.contact-content,
.faq-content {
  background: var(--bg-card);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(22, 34, 70, 0.08);
  box-shadow: var(--shadow-sm);
}

.page-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: var(--space-2xl);
  text-align: center;
  letter-spacing: -0.02em;
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--accent-muted);
  display: block;
  width: 100%;
}

.company-info {
  margin-bottom: 30px;
  text-align: center;
}

.company-name {
  font-size: 24px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.company-reg {
  font-size: 16px;
  color: #666;
  font-weight: 400;
}

.contact-details {
  margin-bottom: 40px;
  text-align: center;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 0;
}

.address-line {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.8;
}

.phone {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-top: 15px;
  margin-bottom: 10px;
}

.email {
  font-size: 16px;
  margin-top: 10px;
}

.email a {
  color: #333;
  text-decoration: underline;
}

.email a:hover {
  color: #000;
}

.about-description {
  line-height: 1.8;
}

.about-description p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

.about-description p:last-child {
  margin-bottom: 0;
}

/* FAQ Page Styles */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(22, 34, 70, 0.1);
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-question {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.faq-answer {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-left: 0;
}

/* Terms of Service Page Styles */
.terms-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.terms-content > p {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  text-align: left;
}

.last-updated {
  font-size: 14px;
  color: #666;
  font-style: italic;
  margin-bottom: 30px;
}

.terms-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
}

.terms-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-heading {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  margin-top: 30px;
}

.terms-section p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  text-align: left;
}

.terms-list {
  margin: 15px 0 20px 30px;
  padding-left: 20px;
}

.terms-list li {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.8;
  list-style-type: disc;
}

.terms-list li:last-child {
  margin-bottom: 0;
}

/* active state defined in main-nav above */

.dropdown-menu a.active,
.submenu a.active {
  background-color: #eff6ff;
  color: #1e3a8a;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu {
    flex-direction: column;
  }

  .nav-menu > li {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    box-shadow: none;
    border: none;
    border-top: 1px solid #e5e5e5;
  }

  .submenu {
    position: static;
    display: none;
    width: 100%;
    padding-left: 20px;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .about-content {
    padding: 20px;
  }

  .page-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .company-name {
    font-size: 20px;
  }

  .contact-details {
    padding: 20px;
  }

  .about-description p {
    font-size: 14px;
  }

  .faq-content {
    padding: 20px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 14px;
  }
}

/* Contact Us Page Styles */
.contact-content {
  background: var(--bg-card);
  padding: var(--space-3xl) var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 1000px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border);
}

.contact-header .page-title {
  margin-bottom: var(--space-sm);
}

.contact-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto var(--space-xl);
  line-height: 1.7;
}

.company-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: var(--space-sm) var(--space-md);
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.company-badge .company-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
}

.company-badge .company-reg {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Two-column layout: info left, form right */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-side-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.contact-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
  color: inherit;
}

.contact-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-muted);
  color: var(--accent);
  border-radius: var(--radius-sm);
}

.contact-card-body {
  min-width: 0;
}

.contact-card .contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-card .contact-value {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.contact-form-section .section-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: var(--space-lg);
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.contact-form .form-group {
  margin-bottom: 0;
}

.contact-form .form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg-card);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: var(--text-muted);
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-muted);
}

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

.contact-form .submit-btn {
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  align-self: flex-start;
}

.contact-form .submit-btn:hover {
  background: var(--accent-light);
  color: #fff;
  transform: translateY(-1px);
}

/* Legacy contact-item/contact-details-box (e.g. about-us) */
.contact-details-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.contact-item {
  padding: var(--space-lg);
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent);
}

.contact-label {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}

.contact-value a {
  color: #333;
  text-decoration: none;
}

.contact-value a:hover {
  text-decoration: underline;
  color: #000;
}

@media (max-width: 768px) {
  .contact-content {
    padding: var(--space-xl) var(--space-md);
  }

  .contact-header {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-xl);
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .contact-form-section .section-title {
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form .submit-btn {
    width: 100%;
    align-self: stretch;
  }
}

/* Home Page Styles */
.hero-banner {
  width: 100%;
  margin-bottom: 40px;
}

.banner-slider {
  position: relative;
  width: 100%;
}

.banner-slide {
  display: none;
  width: 100%;
}

.banner-slide.active {
  display: block;
}

.banner-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.shop-ease-section {
  margin: 60px 0;
  padding: 40px 20px;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s;
}

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

.category-card img {
  width: 100%;
  height: auto;
  display: block;
}

.category-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  padding: 30px 20px 20px;
  color: #fff;
  text-align: center;
}

.category-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #3b82f6;
}

.category-info p {
  font-size: 16px;
  margin-bottom: 10px;
}

.shop-link {
  display: inline-block;
  padding: 8px 20px;
  background-color: #3b82f6;
  color: #fff;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 14px;
}

.wholesaler-section {
  position: relative;
  margin: 60px 0;
  text-align: center;
}

.wholesaler-section img {
  width: 100%;
  height: auto;
}

.wholesaler-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.wholesaler-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.wholesaler-content h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #60a5fa;
}

.shop-now-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #3b82f6;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.shop-now-btn:hover {
  background-color: #2563eb;
  color: #fff;
}

.featured-products-section {
  margin: 60px 0;
  padding: 40px 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.view-all-link {
  color: #333;
  font-weight: 600;
  text-decoration: underline;
}

.view-all-link:hover {
  color: #3b82f6;
}

.bulk-purchase-section {
  position: relative;
  margin: 60px 0;
  text-align: center;
}

.bulk-purchase-section img {
  width: 100%;
  height: auto;
}

.bulk-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.bulk-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #60a5fa;
}

.bulk-content p {
  font-size: 20px;
  margin-bottom: 20px;
}

.contact-link {
  display: inline-block;
  padding: 12px 30px;
  background-color: #3b82f6;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 16px;
}

.video-section {
  margin: 60px 0;
}

.video-section img {
  width: 100%;
  height: auto;
}

/* Top Promotional Section */
.top-promo-section {
  margin: 20px 0 40px;
}

.promo-banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.promo-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.promo-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.promo-item:hover img {
  transform: scale(1.05);
}

.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s;
}

.promo-item:hover .promo-overlay {
  opacity: 1;
}

.promo-btn {
  background-color: #3b82f6;
  color: #fff;
  padding: 12px 30px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 16px;
}

.credits-banner {
  text-align: center;
  padding: 15px 20px;
  background-color: #eff6ff;
  margin-top: 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.credits-banner p {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.credits-banner small {
  font-size: 12px;
  color: #666;
}

/* Top Category Section */
.top-category-section {
  margin: 80px 0;
  padding: 60px 20px;
  background: linear-gradient(to bottom, #fff, #FFFEF5);
}

.top-category-container {
  max-width: 1400px;
  margin: 0 auto;
}

.top-category-section .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 20px;
}

.top-category-section .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #3b82f6, #2563eb);
  border-radius: 2px;
}

.top-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.top-category-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f0f0f0;
}

.top-category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.25);
  border-color: #3b82f6;
}

.category-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.category-image-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f8f8f8;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.top-category-card:hover .category-image {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.top-category-card:hover .category-overlay {
  opacity: 1;
}

.category-content {
  padding: 25px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: background-color 0.3s ease;
}

.top-category-card:hover .category-content {
  background: linear-gradient(to right, #eff6ff, #fff);
}

.category-title {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0;
  transition: color 0.3s ease;
}

.top-category-card:hover .category-title {
  color: #3b82f6;
}

.category-arrow {
  font-size: 24px;
  font-weight: 700;
  color: #3b82f6;
  transition: all 0.3s ease;
  display: inline-block;
}

.top-category-card:hover .category-arrow {
  transform: translateX(8px);
  color: #2563eb;
}

/* Wholesale Section Home */
.wholesale-section-home {
  margin: 60px 0;
}

.wholesale-banner {
  margin-bottom: 40px;
}

.wholesale-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.wholesale-content-section {
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.wholesale-content-section > h2 {
  font-size: 32px;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

.wholesale-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

/* Business Services Section */
.business-services-section {
  margin: 60px 0;
  padding: 40px 20px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s;
}

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

.service-card img {
  width: 100%;
  height: auto;
  display: block;
}

.service-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 30px 20px 20px;
  color: #fff;
  text-align: center;
}

.service-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #60a5fa;
}

.service-info p {
  font-size: 16px;
  margin-bottom: 15px;
}

.service-link {
  display: inline-block;
  padding: 10px 25px;
  background-color: #3b82f6;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  font-size: 14px;
  transition: background-color 0.3s;
}

.service-link:hover {
  background-color: #2563eb;
  color: #fff;
}

@media (max-width: 768px) {
  .category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .promo-banner {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .top-category-section {
    padding: 40px 15px;
    margin: 40px 0;
  }
  
  .top-category-section .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  
  .top-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .category-image-wrapper {
    height: 200px;
  }
  
  .category-content {
    padding: 20px 15px;
  }
  
  .category-title {
    font-size: 16px;
  }
  
  .category-arrow {
    font-size: 20px;
  }
  
  .service-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .wholesaler-content h3 {
    font-size: 24px;
  }
  
  .bulk-content h2 {
    font-size: 24px;
  }
  
  .section-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .wholesale-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .wholesale-content-section > h2 {
    font-size: 24px;
  }
}

/* ============================================
   MODERN INDEX PAGE REDESIGN STYLES
   ============================================ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ---------- Hero: small company – compact, friendly ---------- */
.hero-section {
  position: relative;
  min-height: auto;
  padding: var(--space-2xl) var(--space-lg);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f5f5f4 0%, #e7e5e4 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: none;
  opacity: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 360px);
  align-items: center;
  gap: var(--space-2xl);
}

.hero-content {
  max-width: 640px;
  color: var(--text);
}

.hero-side {
  display: flex;
  justify-content: flex-end;
}

.hero-side-card {
  width: 100%;
  max-width: 340px;
  padding: var(--space-lg);
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.hero-side-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--primary);
}

.hero-side-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.hero-side-address {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: var(--space-sm);
}

.hero-side-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md) 0;
  display: grid;
  gap: 6px;
}

.hero-side-list li {
  font-size: 0.85rem;
  color: var(--text);
  padding-left: 1.25rem;
  position: relative;
}

.hero-side-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-side-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: var(--accent-muted);
  border: 1px solid var(--border);
  transition: background var(--transition), transform var(--transition);
}

.hero-side-link:hover {
  text-decoration: none;
  color: var(--primary);
  background: var(--bg-light);
  transform: translateY(-1px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--accent-muted);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  letter-spacing: 0.02em;
  color: var(--text);
}

.badge-icon {
  font-size: 1rem;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
  color: var(--primary);
}

.hero-description {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  max-width: 480px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border-radius: var(--radius-sm);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--accent-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

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

.btn-secondary:hover {
  background: var(--bg-light);
  border-color: var(--text-muted);
  color: var(--primary);
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1rem;
}

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

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-stats {
  display: flex;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 2px;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---------- Category Section: compact, scannable ---------- */
.category-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-light);
}

.section-header-modern {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title-modern {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
}

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

.category-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.category-card-modern {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: var(--space-lg);
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(22, 34, 70, 0.08);
  box-shadow: var(--shadow-sm);
}

.category-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(180, 83, 9, 0.25);
}

.category-icon-wrapper {
  margin-bottom: var(--space-md);
}

.category-icon {
  font-size: 2.5rem;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, var(--bg-light) 0%, #eeece6 100%);
}

.polymer-icon,
.manufacturing-icon,
.wholesale-icon,
.industrial-icon,
.consultancy-icon,
.electrical-icon {
  background: linear-gradient(145deg, var(--accent-muted) 0%, rgba(180, 83, 9, 0.06) 100%);
}

.category-title-modern {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.category-desc-modern {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.category-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition), color var(--transition);
}

.category-link-modern:hover {
  color: var(--primary);
  gap: 12px;
  text-decoration: none;
}

.category-link-modern span {
  transition: transform var(--transition);
}

.category-link-modern:hover span {
  transform: translateX(4px);
}

/* ---------- Featured Products ---------- */
.featured-products-section-modern {
  padding: var(--space-2xl) 0;
  background: #fff;
}

.view-all-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap var(--transition), color var(--transition);
}

.view-all-link-modern:hover {
  color: var(--primary);
  gap: 12px;
  text-decoration: none;
}

.view-all-link-modern span {
  transition: transform var(--transition);
}

.view-all-link-modern:hover span {
  transform: translateX(4px);
}

.featured-products-section-modern .section-header-modern,
.services-section-modern .section-header-modern {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
  text-align: left;
}

/* ---------- Services Section ---------- */
.services-section-modern {
  padding: var(--space-2xl) 0;
  background: var(--bg-light);
}

.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.service-card-modern {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: var(--space-lg);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(22, 34, 70, 0.08);
  box-shadow: var(--shadow-sm);
}

.service-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(180, 83, 9, 0.2);
}

.service-icon-modern {
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.service-title-modern {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.service-desc-modern {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.service-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition), color var(--transition);
}

.service-link-modern:hover {
  color: var(--primary);
  gap: 12px;
  text-decoration: none;
}

.service-link-modern span {
  transition: transform var(--transition);
}

.service-link-modern:hover span {
  transform: translateX(4px);
}

/* ---------- CTA Section: blog-style strip ---------- */
.cta-section {
  padding: var(--space-2xl) 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  color: var(--text);
}

.cta-content {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.02em;
  color: var(--primary);
}

.cta-description {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
  font-weight: 500;
}

.cta-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Responsive: new layout ---------- */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hero-side {
    justify-content: flex-start;
  }

  .hero-side-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .header-top {
    flex-wrap: wrap;
  }

  .nav-menu {
    width: 100%;
    justify-content: center;
  }

  .hero-section {
    padding: var(--space-xl) var(--space-md);
  }

  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .section-title-modern {
    font-size: 1.5rem;
  }
  
  .hero-stats {
    gap: var(--space-xl);
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .category-grid-modern,
  .services-grid-modern {
    grid-template-columns: 1fr;
  }
  
  .featured-products-section-modern .section-header-modern,
  .services-section-modern .section-header-modern {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
  
  .search-input {
    width: 160px;
  }
  
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}
