    /* Main Stylesheet for SEE Safety Equipment WordPress Theme */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=IBM+Plex+Mono:wght@400;500;600&family=Sarabun:wght@300;400;500;600;700&display=swap');

html, body {
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

.wrap-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--teal-deep);
  line-height: 1.2;
}

.mono-font {
  font-family: var(--font-mono);
}

/* Header & Navigation */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  width: 100%;
  box-sizing: border-box;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

nav.main-navigation {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav.main-navigation ul,
.nav-menu-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav.main-navigation a,
nav.main-navigation ul li a,
.nav-menu-list li a {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-deep);
  padding: 6px 0;
  position: relative;
}

nav.main-navigation a:hover,
nav.main-navigation a.active,
nav.main-navigation ul li a:hover,
nav.main-navigation ul li.current-menu-item a,
.nav-menu-list li.current-menu-item a {
  color: var(--teal);
}

nav.main-navigation a.active::after,
nav.main-navigation ul li.current-menu-item a::after,
.nav-menu-list li.current-menu-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.search-form-wrap {
  position: relative;
}

.search-input {
  background: #f1f5f9;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 8px 16px 8px 36px;
  font-size: 14px;
  width: 190px;
  transition: all 0.2s ease;
}

.search-input:focus {
  outline: none;
  background: var(--white);
  border-color: var(--teal);
  width: 240px;
  box-shadow: 0 0 0 3px rgba(19, 121, 131, 0.15);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
}

.btn-quote {
  background: var(--teal-cta);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 118, 140, 0.2);

  text-decoration: none;
}

.btn-quote:hover {
  background: var(--teal-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(12, 71, 80, 0.3);
  color: var(--white);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}

.lang-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--teal-deep);
  cursor: pointer;
  padding: 4px;
}

/* Mobile Drawer Navigation */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  background: rgba(10, 43, 48, 0.7);
  backdrop-filter: blur(6px);
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  display: flex;
  justify-content: flex-end;
}

.mobile-nav-drawer.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}

.mobile-drawer-close {
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}

.mobile-drawer-body {
  width: 310px;
  max-width: 85%;
  height: 100%;
  background: var(--white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 24px rgba(0,0,0,0.2);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  box-sizing: border-box;
}

.mobile-nav-drawer.active .mobile-drawer-body {
  transform: translateX(0);
}

.mobile-navigation-links,
.mobile-drawer-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.mobile-navigation-links a,
.mobile-drawer-body ul li a {
  color: var(--teal-deep);
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  display: block;
}
 .mobile-drawer-body ul li a  {
  display: flex;
 }

 div#mobileFilterContent .filter-box {
    border: 0;
    padding: 0;
    box-shadow: none;
}
/* Page Hero Banner */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, #e0f2fe 0%, #e6f4f4 50%, #f4f8f8 100%);
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.page-hero h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.page-hero p {
  font-size: 16px;
  color: #475569;
  margin-top: 6px;
  text-align: center;
}

/* Products Layout */
.products-page-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 40px 0 80px;
}

.mobile-filter-bar {
  display: none;
  margin-top: 20px;
}

.btn-mobile-filter {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--teal);
  color: var(--teal-deep);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.mobile-filter-drawer {
  position: fixed;
  inset: 0;
  background: rgba(10, 43, 48, 0.7);
  backdrop-filter: blur(6px);
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  display: flex;
  justify-content: flex-start;
}

.mobile-filter-drawer.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-filter-drawer .mobile-drawer-body {
  transform: translateX(-100%);
  width: 320px;
  max-width: 88%;
}

.mobile-filter-drawer.active .mobile-drawer-body {
  transform: translateX(0);
}

/* Sidebar Filter */
.sidebar-filter {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.filter-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  margin-bottom: 20px;
}

.filter-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
}

.filter-box h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.category-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.category-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
}

.category-item a:hover,
.category-item.active a,
.category-filter-btn.active {
  background: #f0fdfa;
  color: var(--teal);
  font-weight: 600;
}

.category-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.category-icon img,
.category-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.filter-group {
  margin-bottom: 18px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-group-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #475569;
  margin-bottom: 8px;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  accent-color: var(--teal);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-light);
}

.product-card-img {
  aspect-ratio: 1 / 1;
  background: #ffffff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #f1f5f9;
}

.product-card-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.product-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.view-details-link {
  font-size: 12.5px;
  font-weight: 600;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 4px;

  text-decoration: none;
}

.product-card:hover .view-details-link {
  color: var(--teal);
}

/* Product Detail Page */
.single-product-container {
  padding: 40px 0 80px;
}

.breadcrumb-trail {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 24px;
}

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

.single-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.single-product-gallery {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
      flex-direction: column;
}

.single-product-gallery img {
  max-height: 440px;
  object-fit: contain;
}

.single-product-info h1 {
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 20px;
}

.product-section-title {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-deep);
  margin-bottom: 12px;
}

.product-description-text {
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 28px;
}

.product-description-text p {
  margin-top: 0;
  margin-bottom: 1.2em;
}

.product-description-text ul,
.product-description-text ol {
  margin-top: 0;
  margin-bottom: 1.2em;
  padding-left: 20px;
}

.product-description-text li {
  margin-bottom: 6px;
  list-style: disc;
}

.product-meta-list {
  list-style: none;
  margin-bottom: 32px;
}

.product-meta-item {
  display: flex;
  gap: 8px;
  font-size: 14.5px;
  padding: 6px 0;
  color: #334155;
}

.product-meta-label {
  font-weight: 600;
  color: var(--ink);
}

.product-actions-bar {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

/* Carousel / You May Also Like Section */
.related-products-section {
  padding: 64px 0 40px;
  border-top: 1px solid var(--line);
  margin-top: 60px;
}

.related-section-header {
  text-align: center;
  margin-bottom: 36px;
}

.related-section-header h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--teal-cta);
  letter-spacing: 0.06em;
}

.carousel-controls-wrapper {
  position: relative;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--ink);
  transition: all 0.2s ease;
}

.carousel-nav-btn:hover {
  background: #fff;
  color: var(--white);
  border-color: var(--teal-cta);
}

.carousel-nav-prev { left: -20px; }
.carousel-nav-next { right: -20px; }

/* Call to Action Banner */
.cta-banner-section {
  background: var(--teal-banner);
  color: var(--white);
  padding: 50px 0;
  margin-top: 60px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-banner-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.cta-banner-content p {
  font-size: 16px;
  color: #e0f2fe;
  max-width: 600px;
}

.btn-cta-white {
  background: var(--white);
  color: var(--teal-banner);
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);

  text-decoration: none;
}

.btn-cta-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Site Footer */
footer.site-footer {
  background: #062125;
  color: #94a3b8;
  padding: 60px 0 30px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand-tagline {
  font-size: 13.5px;
  color: #cbd5e1;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.footer-menu-links a,
.footer-menu-links li a {
  color: #94a3b8;
}

.footer-menu-links a:hover,
.footer-menu-links li a:hover {
  color: var(--white);
}

.social-icons-row {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.2s ease;
}

.social-icon-btn:hover {
  background: var(--teal-cta);
  transform: translateY(-2px);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

/* Modal Popup */
.quote-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10, 43, 48, 0.7);
  backdrop-filter: blur(6px);
  z-index: 999999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.quote-modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 92%;
  max-width: 520px;
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  position: relative;
  transform: scale(0.95);
  transition: transform 0.25s ease;
  box-sizing: border-box;
}

.quote-modal-backdrop.active .quote-modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
}

.modal-form-group {
  margin-bottom: 16px;
}

.modal-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.modal-form-group input,
.modal-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
}

.modal-form-group input:focus,
.modal-form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.page-hero .wrap-container h1 {
    margin: 0 auto;
    text-align: center;
}
/* Comprehensive Responsive Breakpoints */
@media (max-width: 1024px) {
  .categories-6-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .trust-4-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 992px) {
  nav.main-navigation,
  .desktop-search,
  .desktop-quote,
  .desktop-sidebar-filter {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: block !important;
  }

  .mobile-filter-bar {
    display: block !important;
  }

  .products-page-layout {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }

  .single-product-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .single-product-gallery img {
    max-height: 320px;
  }

  .about-2-grid {
    grid-template-columns: 1fr !important;
  }

  .stats-4-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .stats-4-grid > div {
    border-right: none !important;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px !important;
  }

  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .page-hero h1 {
    font-size: 32px;
  }
}

@media (max-width: 640px) {
  .categories-6-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .trust-4-grid {
    grid-template-columns: 1fr !important;
  }

  .stats-4-grid {
    grid-template-columns: 1fr !important;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-card-title {
    font-size: 14px;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom-bar {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .quote-modal-card {
    padding: 20px;
  }
}

/* --- Responsive Custom Page Layouts --- */
.about-page-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.legal-container-card {
  padding: 48px;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  line-height: 1.8;
}

@media (max-width: 992px) {
  .about-page-layout,
  .contact-page-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
    .about-page-layout, .contact-page-layout,
    .single-product-layout,
    .breadcrumb-trail {
        max-width: calc(100% - 30px);
        margin: 0 auto;
    }
    .breadcrumb-trail {margin:0 10px 20px 10px;}
    .header-inner {
      padding: 10px 14px;
  }
}

@media (max-width: 640px) {
  .legal-container-card {
    padding: 24px 20px;
  }
}

