/* ==========================================================================
   STYLE SHEET FOR BAOHOGIAPHU.COM
   Modern Layout & Component Styling
   ========================================================================== */

:root {
  --primary-color: #cc0000;
  --primary-hover: #b00000;
  --secondary-color: #f59e0b;
  --secondary-hover: #d97706;
  --dark-bg: #111827;
  --dark-surface: #1f2937;
  --light-bg: #f9fafb;
  --card-bg: #ffffff;
  --border-color: #e5e7eb;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --font-main: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --container-width: 1200px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.ps-container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* TOP BAR */
.ps-topbar {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
}

.ps-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.ps-topbar-notice {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.ps-topbar-notice marquee {
  color: var(--primary-color);
  font-weight: 500;
}

.ps-topbar-contact {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.ps-topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
}

.ps-topbar-contact a:hover {
  color: var(--primary-color);
}

/* HEADER CONTENT */
.ps-header {
  background: #ffffff;
  padding: 15px 0;
  border-bottom: 1px solid #f3f4f6;
}

.ps-header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.ps-logo {
  flex-shrink: 0;
}

.ps-logo img {
  max-height: 65px;
  width: auto;
  object-fit: contain;
}

.ps-search-wrap {
  flex: 1;
  max-width: 520px;
}

.ps-search-form {
  display: flex;
  align-items: center;
  position: relative;
  background: #f9fafb;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  overflow: hidden;
  transition: var(--transition);
}

.ps-search-form:focus-within {
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.15);
}

.ps-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text-main);
  outline: none;
}

.ps-search-btn {
  background: var(--primary-color);
  border: none;
  color: #ffffff;
  padding: 10px 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.ps-search-btn:hover {
  background: var(--primary-hover);
}

.ps-hotline-box {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.ps-hotline-icon {
  width: 44px;
  height: 44px;
  background: #fee2e2;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  animation: ps-pulse 2s infinite;
}

@keyframes ps-pulse {
  0% { box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(204, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(204, 0, 0, 0); }
}

.ps-hotline-info p {
  margin: 0;
  line-height: 1.2;
}

.ps-hotline-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
}

.ps-hotline-phone {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

/* NAVIGATION MENU */
.ps-nav-wrap {
  background: var(--primary-color);
  position: relative;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.ps-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.ps-nav-item {
  position: relative;
}

.ps-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.ps-nav-link:hover,
.ps-nav-item.active > .ps-nav-link {
  background: var(--primary-hover);
  color: #ffffff;
}

.ps-nav-link i.fa-chevron-down {
  font-size: 11px;
  transition: transform 0.2s;
}

.ps-nav-item:hover .ps-nav-link i.fa-chevron-down {
  transform: rotate(180deg);
}

.ps-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 110;
  border-top: 3px solid var(--primary-color);
}

.ps-nav-item:hover > .ps-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ps-submenu-item a {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  color: var(--text-main);
  font-weight: 500;
  transition: var(--transition);
  border-bottom: 1px solid #f9fafb;
}

.ps-submenu-item a:hover {
  background: #fef2f2;
  color: var(--primary-color);
  padding-left: 24px;
}

.ps-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 22px;
  padding: 12px 15px;
  cursor: pointer;
  align-items: center;
  gap: 8px;
}

.ps-mobile-nav {
  display: none;
  background: #ffffff;
  padding: 10px 0;
  border-top: 1px solid #e5e7eb;
}

.ps-mobile-nav.open {
  display: block;
}

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

.ps-mobile-nav li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  border-bottom: 1px solid #f3f4f6;
  text-transform: uppercase;
}

.ps-mobile-nav li a:hover {
  color: var(--primary-color);
  background: #fef2f2;
}

.ps-mobile-nav .ps-mobile-sub {
  padding-left: 20px;
  background: #f9fafb;
}

.ps-mobile-nav .ps-mobile-sub li a {
  text-transform: none;
  font-size: 13px;
  font-weight: 500;
}

/* HERO SLIDER */
.ps-hero-section {
  position: relative;
  background: #f3f4f6;
  overflow: hidden;
}

.ps-slider-container {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.ps-slide-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  z-index: 1;
}

.ps-slide-item.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.ps-slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  color: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
  font-size: 16px;
}

.ps-slider-arrow:hover {
  background: var(--primary-color);
  color: #ffffff;
}

.ps-slider-prev {
  left: 15px;
}

.ps-slider-next {
  right: 15px;
}

.ps-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.ps-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.ps-dot.active {
  background: #FFEB0D;
  width: 30px;
  border-radius: 8px;
}

.ps-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 60%, transparent 100%);
  display: flex;
  align-items: center;
}

.ps-slide-caption {
  max-width: 600px;
  color: #ffffff;
  padding: 20px;
  margin-left: 6%;
}

.ps-slide-tag {
  display: inline-block;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
}

.ps-slide-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 15px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.ps-slide-desc {
  font-size: 15px;
  margin-bottom: 25px;
  color: #e5e7eb;
}

.ps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.ps-btn-primary {
  background: var(--primary-color);
  color: #ffffff;
  border-color: var(--primary-color);
}

.ps-btn-primary:hover {
  background: var(--primary-hover);
  border-color: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(204, 0, 0, 0.3);
}

.ps-btn-yellow {
  background: #FFEB0D;
  color: #111827;
  border-color: #FFEB0D;
  font-weight: 700;
}

.ps-btn-yellow:hover {
  background: #fadb00;
  border-color: #fadb00;
  color: #111827;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 235, 13, 0.4);
}

/* SECTION HEADINGS */
.ps-section {
  padding: 50px 0;
}

.ps-section-title-wrap {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.ps-section-subtitle {
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.ps-section-title {
  color: var(--primary-color);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 10px 0;
  position: relative;
  display: inline-block;
}

.ps-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary-color);
  margin: 10px auto 0 auto;
  border-radius: 2px;
}

.ps-section-desc {
  max-width: 650px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--text-muted);
}

/* CATEGORY SHOWCASE GRID */
.ps-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ps-cat-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #ffffff;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  text-decoration: none;
}

.ps-cat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.ps-cat-img {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #f3f4f6;
}

.ps-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ps-cat-card:hover .ps-cat-img img {
  transform: scale(1.08);
}

.ps-cat-info {
  padding: 15px;
  text-align: center;
  background: #ffffff;
}

.ps-cat-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-main);
  margin: 0;
  transition: var(--transition);
}

.ps-cat-card:hover .ps-cat-name {
  color: var(--primary-color);
}

/* PRODUCT GRID & CARDS */
.ps-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.ps-product-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid #eeeeee;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.ps-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #fca5a5;
}

.ps-product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  z-index: 2;
  text-transform: uppercase;
}

.ps-product-thumb {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #fafafa;
}

.ps-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ps-product-card:hover .ps-product-thumb img {
  transform: scale(1.06);
}

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

.ps-product-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-main);
  margin: 0 0 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
  transition: var(--transition);
}

.ps-product-card:hover .ps-product-title {
  color: var(--primary-color);
}

.ps-product-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px dashed #f3f4f6;
}

.ps-product-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
}

.ps-product-btn {
  background: #fee2e2;
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  transition: var(--transition);
}

.ps-product-card:hover .ps-product-btn {
  background: var(--primary-color);
  color: #ffffff;
}

/* WHY CHOOSE US (ProSafety Style) */
.ps-why-section {
  background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
  color: #ffffff;
  padding: 65px 0;
  position: relative;
}

.ps-why-section .ps-section-subtitle {
  color: #FFEB0D;
  font-weight: 700;
  letter-spacing: 1px;
}

.ps-why-section .ps-section-title {
  color: #ffffff;
}

.ps-why-section .ps-section-title::after {
  background: #FFEB0D;
}

.ps-why-section .ps-section-desc {
  color: #fee2e2 !important;
}

.ps-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.ps-why-card {
  background: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.ps-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

.ps-why-icon-wrap {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px auto;
  border-radius: 50%;
  background: #fee2e2;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: var(--transition);
}

.ps-why-card:hover .ps-why-icon-wrap {
  background: var(--primary-color);
  color: #ffffff;
  transform: scale(1.08);
}

.ps-why-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #111827;
}

.ps-why-desc {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* CONSULTATION FORM */
.ps-consult-section {
  background: #f8fafc;
  padding: 60px 0;
}

.ps-consult-box {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 0;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.ps-consult-form-wrap {
  padding: 40px;
  background: #ffffff;
}

.ps-consult-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  margin: 0 0 8px 0;
  text-transform: uppercase;
}

.ps-consult-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.ps-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.ps-form-group {
  margin-bottom: 15px;
}

.ps-input, .ps-select, .ps-textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1px solid #d1d5db;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  color: var(--text-main);
  background: #ffffff;
  outline: none;
  transition: var(--transition);
}

.ps-input:focus, .ps-select:focus, .ps-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.ps-textarea {
  min-height: 90px;
  resize: vertical;
}

.ps-consult-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, #990000 100%);
  color: #ffffff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ps-consult-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.ps-consult-banner-title {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.ps-consult-banner-desc {
  font-size: 14px;
  color: #fee2e2;
  margin-bottom: 25px;
  line-height: 1.7;
}

.ps-consult-hotline-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ps-consult-hotline-icon {
  width: 48px;
  height: 48px;
  background: #ffffff;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.ps-consult-hotline-text p {
  margin: 0;
}

.ps-consult-hotline-text .phone {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

/* NEWS SECTION */
.ps-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.ps-news-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.ps-news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #fca5a5;
}

.ps-news-thumb {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f3f4f6;
}

.ps-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ps-news-card:hover .ps-news-thumb img {
  transform: scale(1.08);
}

.ps-news-date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(17, 24, 39, 0.85);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.ps-news-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ps-news-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-main);
  margin: 0 0 10px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--transition);
}

.ps-news-card:hover .ps-news-title {
  color: var(--primary-color);
}

.ps-news-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 15px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ps-news-more {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ps-news-card:hover .ps-news-more {
  gap: 9px;
}

/* PARTNERS SECTION */
.ps-partner-section {
  background: #ffffff;
  padding: 35px 0;
  border-top: 1px solid var(--border-color);
}

.ps-partner-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.ps-partner-item {
  font-weight: 700;
  color: #9ca3af;
  font-size: 15px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px dashed #e5e7eb;
  border-radius: var(--radius-sm);
  background: #f9fafb;
}

/* FOOTER */
.ps-footer {
  background: #111827;
  color: #cbd5e1;
  font-size: 14px;
}

.ps-newsletter-bar {
  background: var(--primary-color);
  padding: 30px 0;
  color: #ffffff;
}

.ps-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.ps-newsletter-title {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 5px 0;
}

.ps-newsletter-sub {
  font-size: 13.5px;
  color: #fee2e2;
  margin: 0;
}

.ps-newsletter-form {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  max-width: 460px;
}

.ps-newsletter-input {
  flex: 1;
  background: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 11px 20px;
  font-size: 14px;
  outline: none;
  color: var(--text-main);
}

.ps-newsletter-btn {
  background: #111827;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ps-newsletter-btn:hover {
  background: #000000;
}

.ps-footer-main {
  padding: 50px 0 35px 0;
}

.ps-footer-grid {
  display: grid;
  grid-template-columns: 3.5fr 2.5fr 2.5fr 3.5fr;
  gap: 30px;
}

.ps-footer-col-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 20px 0;
  position: relative;
  padding-bottom: 10px;
}

.ps-footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-color);
}

.ps-footer-info {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ps-footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  line-height: 1.5;
  color: #9ca3af;
}

.ps-footer-info li i {
  color: var(--primary-color);
  margin-top: 4px;
  font-size: 14px;
  flex-shrink: 0;
}

.ps-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

.ps-footer-links a {
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.ps-footer-links a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.ps-footer-links a i {
  font-size: 10px;
  color: var(--primary-color);
}

.ps-footer-map iframe {
  width: 100%;
  height: 170px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ps-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  font-size: 13px;
  color: #6b7280;
  text-align: center;
}

/* FLOATING ACTIONS */
.ps-float-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.ps-float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  color: #ffffff;
  font-size: 22px;
}

.ps-float-btn:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.ps-float-phone {
  background: var(--primary-color);
  animation: ps-pulse 1.8s infinite;
}

.ps-float-zalo {
  background: #0068ff;
}

/* BREADCRUMB */
.ps-breadcrumb-wrap {
  background: #f3f4f6;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
}

.ps-page-hero .ps-breadcrumb-wrap {
  background: transparent;
  padding: 0;
  border: none;
}

.ps-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  list-style: none;
  margin: 0;
  padding: 0;
}

.ps-breadcrumb li a {
  color: var(--text-muted);
}

.ps-breadcrumb li a:hover {
  color: var(--primary-color);
}

.ps-breadcrumb li.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ps-cat-grid,
  .ps-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .ps-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ps-topbar {
    display: none;
  }
  
  .ps-header-grid {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .ps-logo img {
    max-height: 48px;
  }
  
  .ps-hotline-box {
    display: none;
  }
  
  .ps-search-wrap {
    order: 3;
    max-width: 100%;
    width: 100%;
  }
  
  .ps-nav-menu {
    display: none;
  }
  
  .ps-mobile-toggle {
    display: flex;
  }
  
  .ps-slide-item img {
    height: 250px;
  }
  
  .ps-slide-title {
    font-size: 22px;
  }
  
  .ps-slide-desc {
    display: none;
  }
  
  .ps-cat-grid,
  .ps-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .ps-why-grid,
  .ps-news-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .ps-consult-box {
    grid-template-columns: 1fr;
  }
  
  .ps-form-grid {
    grid-template-columns: 1fr;
  }
  
  .ps-newsletter-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .ps-footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

@media (max-width: 480px) {
  .ps-product-thumb {
    height: 160px;
  }
  .ps-product-title {
    font-size: 13px;
    min-height: 36px;
  }
}


/* ==========================================================================
   HERO SIDE BANNERS (PROSAFETY STYLE)
   ========================================================================== */
.ps-hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
  align-items: stretch;
  padding: 15px 0;
}

.ps-hero-main {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.ps-hero-main .ps-slide-item {
  height: 100%;
  min-height: 420px;
}

.ps-hero-main .ps-slide-item img {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.ps-hero-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ps-side-banner {
  flex: 1;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: block;
}

.ps-side-banner img {
  width: 100%;
  height: 100%;
  min-height: 195px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ps-side-banner:hover img {
  transform: scale(1.08);
}

.ps-side-banner-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px 20px;
  color: #ffffff;
}

.ps-side-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--secondary-color);
  color: #111827;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.ps-side-banner-content h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 4px 0;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.ps-side-banner-content p {
  font-size: 13px;
  margin: 0;
  color: #e2e8f0;
}

/* ==========================================================================
   PAGE HERO & BREADCRUMBS
   ========================================================================== */
.ps-page-hero {
  background: linear-gradient(135deg, #990000 0%, #cc0000 60%, #dc2626 100%);
  color: #ffffff;
  padding: 42px 0 36px;
  position: relative;
}

.ps-page-hero-title {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 8px 0;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ps-page-hero-desc {
  font-size: 15px;
  color: #fee2e2;
  margin: 0;
  max-width: 720px;
  line-height: 1.5;
}

.ps-breadcrumb-light {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  list-style: none;
  margin: 0 0 14px 0;
  padding: 0;
}

.ps-breadcrumb-light a {
  color: #ffffff;
}

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

.ps-breadcrumb-light .active {
  color: var(--secondary-color);
  font-weight: 600;
}

/* ==========================================================================
   CATEGORY TABS (FILTER BAR)
   ========================================================================== */
.ps-cat-tabs-wrap {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
  margin-bottom: 30px;
}

.ps-cat-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ps-cat-tab {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 13.5px;
  font-weight: 600;
  background: #f3f4f6;
  color: var(--text-main);
  border: 1px solid #e5e7eb;
  transition: var(--transition);
}

.ps-cat-tab:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: var(--primary-color);
}

.ps-cat-tab.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(204, 0, 0, 0.25);
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.ps-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 40px 0 20px;
  list-style: none;
  padding: 0;
}

.ps-pagination li a,
.ps-pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border-color);
  background: #ffffff;
  color: var(--text-main);
  transition: var(--transition);
}

.ps-pagination li a:hover {
  background: #fee2e2;
  border-color: #fca5a5;
  color: var(--primary-color);
}

.ps-pagination li.active span,
.ps-pagination li.active a {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

.ps-pagination li.disabled span {
  color: var(--text-light);
  background: #f9fafb;
  cursor: not-allowed;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */
.ps-detail-section {
  padding: 40px 0 60px;
  background: #ffffff;
}

.ps-detail-grid {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 50px;
}

.ps-detail-gallery {
  position: sticky;
  top: 20px;
}

.ps-detail-main-img {
  width: 100%;
  height: 420px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: #fafafa;
  box-shadow: var(--shadow-sm);
}

.ps-detail-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ps-detail-info h1 {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.ps-detail-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 12px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.ps-detail-price-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 22px;
}

.ps-detail-price-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}

.ps-detail-price-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
}

.ps-detail-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.ps-detail-highlights li {
  padding: 6px 0;
  font-size: 14.5px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
}

.ps-detail-highlights li i {
  color: var(--primary-color);
  font-size: 16px;
}

.ps-detail-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 25px;
}

.ps-detail-btn-hotline {
  background: var(--primary-color);
  color: #ffffff;
  padding: 13px 26px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.ps-detail-btn-hotline:hover {
  background: var(--primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(204, 0, 0, 0.3);
}

.ps-detail-btn-zalo {
  background: #0068ff;
  color: #ffffff;
  padding: 13px 26px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.ps-detail-btn-zalo:hover {
  background: #0052cc;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 104, 255, 0.3);
}

.ps-detail-box-support {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.ps-specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0 25px;
  font-size: 14px;
}

.ps-specs-table th,
.ps-specs-table td {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  text-align: left;
}

.ps-specs-table th {
  background: #f8fafc;
  font-weight: 700;
  width: 30%;
  color: var(--text-main);
}

/* ==========================================================================
   POST / ARTICLE DETAIL PAGE
   ========================================================================== */
.ps-post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  padding: 40px 0 60px;
}

.ps-post-main {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.ps-post-heading {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--text-main);
  margin: 0 0 14px 0;
}

.ps-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
  padding-bottom: 18px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.ps-post-meta i {
  color: var(--primary-color);
  margin-right: 5px;
}

.ps-post-body {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
}

.ps-post-body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin: 28px 0 12px;
  border-left: 4px solid var(--primary-color);
  padding-left: 12px;
}

.ps-post-body h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 20px 0 10px;
  color: var(--text-main);
}

.ps-post-body p {
  margin-bottom: 16px;
}

.ps-post-body img {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  border-radius: var(--radius-sm);
  margin: 18px auto;
  box-shadow: var(--shadow-sm);
}

.ps-post-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ps-widget {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.ps-widget-title {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-main);
  margin: 0 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ps-widget-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ps-widget-list li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--border-color);
  font-size: 14px;
}

.ps-widget-list li:last-child {
  border-bottom: none;
}

.ps-widget-list li a {
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
}

.ps-widget-list li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

/* ==========================================================================
   STATIC PROSE PAGES
   ========================================================================== */
.ps-prose {
  background: #ffffff;
  padding: 40px 0 60px;
}

.ps-prose-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.ps-prose-card h2 {
  font-size: 22px;
  margin: 28px 0 12px;
  color: var(--primary-color);
}

.ps-prose-card h2:first-child {
  margin-top: 0;
}

.ps-prose-card p,
.ps-prose-card li {
  color: #374151;
  line-height: 1.75;
  font-size: 15.5px;
}

.ps-prose-card ul {
  padding-left: 20px;
  margin: 8px 0 16px;
}

.ps-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.ps-info-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px;
}

.ps-info-item strong {
  display: block;
  color: var(--primary-color);
  margin-bottom: 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.ps-steps {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.ps-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
}

.ps-step-num {
  flex: 0 0 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.ps-contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.ps-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 12px;
}

/* ==========================================================================
   LEGACY CRAWLED PAGES ADAPTER (PROSAFETY THEME INJECTION)
   ========================================================================== */
.main_content {
  width: 100% !important;
  max-width: var(--container-width) !important;
  margin: 25px auto 40px !important;
  padding: 0 15px !important;
}

.main_content .right {
  width: 100% !important;
  float: none !important;
}

article {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 25px 0;
  line-height: 1.8;
  color: #374151;
}

article h1 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 18px;
  line-height: 1.35;
}

article h2 {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 24px 0 10px;
}

.tieude_giua {
  text-align: center !important;
  margin: 20px 0 30px !important;
  border: none !important;
  background: none !important;
}

.tieude_giua div {
  display: inline-block !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  color: #111827 !important;
  text-transform: uppercase !important;
  position: relative !important;
  padding-bottom: 10px !important;
  background: none !important;
}

.tieude_giua div::after {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 60px !important;
  height: 3px !important;
  background: var(--primary-color) !important;
  border-radius: 2px !important;
}

.wap_sanpham_tc .grid-container {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.wap_sanpham_tc .item {
  background: #ffffff !important;
  border-radius: 10px !important;
  border: 1px solid #e5e7eb !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06) !important;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
}

.wap_sanpham_tc .item:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 20px rgba(204, 0, 0, 0.15) !important;
  border-color: #fca5a5 !important;
}

.wap_sanpham_tc .sp_img {
  width: 100% !important;
  height: 220px !important;
  overflow: hidden !important;
  background: #f8fafc !important;
  margin: 0 !important;
}

.wap_sanpham_tc .sp_img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.4s ease !important;
}

.wap_sanpham_tc .item:hover .sp_img img {
  transform: scale(1.06) !important;
}

.wap_sanpham_tc .blocksp {
  padding: 14px !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.wap_sanpham_tc .sp_name {
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  margin: 0 0 8px 0 !important;
}

.wap_sanpham_tc .sp_name a {
  color: #1f2937 !important;
  text-decoration: none !important;
}

.wap_sanpham_tc .item:hover .sp_name a {
  color: var(--primary-color) !important;
}

.wap_sanpham_tc .sp_gia {
  margin-top: auto !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--primary-color) !important;
}

.wap_news_bv .list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.box_news {
  background: #ffffff !important;
  border-radius: 10px !important;
  border: 1px solid #e5e7eb !important;
  overflow: hidden !important;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06) !important;
  transition: all 0.3s ease !important;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
}

.box_news:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
}

.box_news > a:first-child img {
  width: 100% !important;
  max-width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
  float: none !important;
  margin: 0 !important;
}

.box_news h3 {
  padding: 14px 16px 6px !important;
  margin: 0 !important;
}

.box_news h3 a {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #111827 !important;
  line-height: 1.4 !important;
}

.box_news:hover h3 a {
  color: var(--primary-color) !important;
}

.box_news .mota {
  padding: 0 16px 12px !important;
  font-size: 13.5px !important;
  color: #4b5563 !important;
  line-height: 1.6 !important;
  flex: 1 !important;
}

.box_news .xemthem {
  margin: 0 16px 16px auto !important;
  background: #fee2e2 !important;
  color: var(--primary-color) !important;
  font-weight: 700 !important;
  padding: 5px 14px !important;
  border-radius: 20px !important;
  border: none !important;
  float: none !important;
  display: inline-block !important;
  box-shadow: none !important;
}

.box_news .xemthem:hover {
  background: var(--primary-color) !important;
  color: #ffffff !important;
}

/* CRAWLED PAGE TOPBAR ADAPTER */
.wap_thongtin {
  background: var(--primary-color) !important;
  color: #ffffff !important;
  padding: 6px 0 !important;
  font-size: 13px !important;
}

.wap_thongtin .thongtin {
  max-width: var(--container-width) !important;
  margin: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 15px !important;
}

.wap_thongtin marquee {
  color: #ffffff !important;
  font-size: 13px !important;
}

.wap_thongtin .mxh_top {
  display: none !important;
}

.wap_thongtin .email {
  color: #ffffff !important;
  font-weight: 500 !important;
}

.wap_thongtin .email a {
  color: #ffffff !important;
}

/* CRAWLED PAGE HEADER ADAPTER */
.header {
  background: #ffffff !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid #f3f4f6 !important;
}

.header .wap_1200.flexhd {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  max-width: var(--container-width) !important;
  margin: auto !important;
  padding: 0 15px !important;
}

.header a.logo {
  width: auto !important;
  max-height: 60px !important;
  display: flex !important;
  align-items: center !important;
}

.header a.logo img {
  max-height: 55px !important;
  width: auto !important;
  object-fit: contain !important;
}

.header .banner {
  text-align: center !important;
  flex: 1 !important;
  margin: 0 20px !important;
}

.header .banner img {
  display: none !important;
}

.header .banner div {
  font-size: 15px !important;
  font-weight: 800 !important;
  color: var(--primary-color) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

.header .hotline {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: #fef2f2 !important;
  border: 1px solid #fee2e2 !important;
  border-radius: 8px !important;
  padding: 6px 14px !important;
  width: auto !important;
}

.header .hotline .lefthl {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 11px !important;
  text-transform: uppercase !important;
  color: #6b7280 !important;
  font-weight: 600 !important;
}

.header .hotline .lefthl img {
  width: 22px !important;
  height: 22px !important;
}

.header .hotline .righthl p {
  font-weight: 800 !important;
  font-size: 14px !important;
  color: var(--primary-color) !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

/* CRAWLED PAGE MENU ADAPTER */
.wap_menu {
  background: var(--primary-color) !important;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
  height: auto !important;
  min-height: 48px !important;
  line-height: normal !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 99 !important;
}

.wap_menu .menu {
  max-width: var(--container-width) !important;
  margin: auto !important;
  padding: 0 15px !important;
}

.wap_menu .menu ul {
  display: flex !important;
  flex-wrap: wrap !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: center !important;
  float: none !important;
}

.wap_menu .menu ul li {
  float: none !important;
  position: relative !important;
}

.wap_menu .menu ul li a {
  color: #ffffff !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  padding: 14px 16px !important;
  display: block !important;
  text-decoration: none !important;
  font-family: var(--font-family) !important;
  transition: background 0.2s !important;
  background: none !important;
}

.wap_menu .menu ul li a:hover,
.wap_menu .menu ul li a.active {
  background: rgba(0,0,0,0.15) !important;
}

.wap_menu .menu ul li ul {
  background: #ffffff !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
  border-radius: 8px !important;
  border-top: 3px solid var(--primary-color) !important;
  padding: 8px 0 !important;
  min-width: 240px !important;
}

.wap_menu .menu ul li ul li a {
  color: #374151 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  padding: 10px 18px !important;
  border-bottom: 1px solid #f3f4f6 !important;
}

.wap_menu .menu ul li ul li a:hover {
  background: #fef2f2 !important;
  color: var(--primary-color) !important;
}

/* CRAWLED PAGE FOOTER ADAPTER */
.wap_footer {
  background: #111827 !important;
  color: #9ca3af !important;
  padding: 45px 0 25px 0 !important;
  margin: 0 !important;
}

.wap_footer .footer {
  max-width: var(--container-width) !important;
  margin: auto !important;
  padding: 0 15px !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 30px !important;
}

.wap_footer #main_footer {
  width: auto !important;
  flex: 1 1 300px !important;
  margin: 0 !important;
  float: none !important;
}

.wap_footer #main_footer .ten {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  margin-bottom: 15px !important;
}

.wap_footer #main_footer ul li {
  color: #9ca3af !important;
  margin-bottom: 10px !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  font-size: 13.5px !important;
}

.wap_footer a {
  color: #9ca3af !important;
}

.wap_footer a:hover {
  color: #ffffff !important;
}

.wap_footer #fanpage-foot {
  width: auto !important;
  flex: 1 1 300px !important;
  margin: 0 !important;
  float: none !important;
}

@media (max-width: 1024px) {
  .ps-hero-grid {
    grid-template-columns: 1fr;
  }
  .ps-hero-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .ps-detail-grid {
    grid-template-columns: 1fr;
  }
  .ps-post-layout {
    grid-template-columns: 1fr;
  }
  .wap_sanpham_tc .grid-container {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .ps-hero-side {
    grid-template-columns: 1fr;
  }
  .wap_sanpham_tc .grid-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .wap_news_bv .list {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .ps-contact-grid {
    grid-template-columns: 1fr;
  }
  .ps-detail-actions {
    flex-direction: column;
  }
  .ps-detail-actions a {
    width: 100%;
    justify-content: center;
  }
}

/* STATS/ACHIEVEMENTS COUNTER */
.ps-stats-section {
  background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
  padding: 45px 0;
  position: relative;
  overflow: hidden;
}

.ps-stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><circle cx="40" cy="40" r="1" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
  pointer-events: none;
}

.ps-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.ps-stat-item {
  text-align: center;
  color: #ffffff;
  padding: 15px;
}

.ps-stat-icon {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 12px;
  display: block;
}

.ps-stat-number {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.ps-stat-number span {
  color: var(--secondary-color);
  font-size: 24px;
}

.ps-stat-label {
  font-size: 14px;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* PROCESS STEPS */
.ps-process-section {
  background: #ffffff;
  padding: 60px 0;
}

.ps-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  counter-reset: step;
}

.ps-process-step {
  text-align: center;
  position: relative;
  padding: 30px 20px;
  background: #f9fafb;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.ps-process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.ps-process-step::before {
  counter-increment: step;
  content: '0' counter(step);
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 15px auto;
  position: relative;
  z-index: 2;
}

.ps-process-step:hover::before {
  background: var(--secondary-color);
  color: #111;
}

.ps-process-icon {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 12px;
  display: block;
}

.ps-process-step:hover .ps-process-icon {
  color: var(--secondary-color);
}

.ps-process-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 8px 0;
  text-transform: uppercase;
}

.ps-process-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* HERO GRID (prosafety style: main + side banners) */
.ps-hero-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 10px;
  padding: 10px 0;
}

.ps-hero-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.ps-hero-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ps-side-banner {
  position: relative;
  flex: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: block;
}

.ps-side-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ps-side-banner:hover img {
  transform: scale(1.05);
}

.ps-side-banner-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
}

.ps-side-banner-content h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 4px 0 2px;
}

.ps-side-banner-content p {
  font-size: 12px;
  margin: 0;
  color: #e5e7eb;
}

.ps-side-tag {
  display: inline-block;
  background: var(--secondary-color);
  color: #111;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
}

/* PARTNER SECTION */
.ps-partner-section {
  background: #f3f4f6;
  padding: 40px 0;
}

.ps-partner-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ps-partner-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.6;
  transition: var(--transition);
}

.ps-partner-item:hover {
  opacity: 1;
  color: var(--primary-color);
}

.ps-partner-item i {
  font-size: 22px;
  color: var(--text-light);
}

.ps-partner-item:hover i {
  color: var(--primary-color);
}

/* PAGE HERO for listing pages */
.ps-page-hero {
  background: linear-gradient(135deg, #111827 0%, #1e293b 100%);
  color: #ffffff;
  padding: 35px 0 30px;
}

.ps-page-hero-title {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 10px 0 8px;
}

.ps-page-hero-desc {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
}

.ps-breadcrumb-light {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #94a3b8;
}

.ps-breadcrumb-light a {
  color: #94a3b8;
}

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

.ps-breadcrumb-light .active {
  color: #ffffff;
  font-weight: 600;
}

/* CATEGORY FILTER TABS */
.ps-cat-tabs-wrap {
  background: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 0;
}

.ps-cat-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.ps-cat-tab {
  display: block;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}

.ps-cat-tab:hover,
.ps-cat-tab.active {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
  background: #fef2f2;
}

/* NEWS GRID & CARDS */
.ps-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.ps-news-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.ps-news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: #fca5a5;
}

.ps-news-thumb {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: block;
}

.ps-news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ps-news-card:hover .ps-news-thumb img {
  transform: scale(1.06);
}

.ps-news-date {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--primary-color);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.ps-news-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.ps-news-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ps-news-title a {
  color: var(--text-main);
}

.ps-news-card:hover .ps-news-title a {
  color: var(--primary-color);
}

.ps-news-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 12px 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.ps-news-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.ps-news-more:hover {
  color: var(--primary-hover);
  gap: 8px;
}

/* PAGINATION */
.ps-pagination {
  list-style: none;
  padding: 0;
  margin: 40px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.ps-pagination li a,
.ps-pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  color: var(--text-main);
  background: #fff;
}

.ps-pagination li a:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.ps-pagination li.active span {
  background: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.ps-pagination li.disabled span {
  opacity: 0.4;
  cursor: default;
}

/* NEWSLETTER */
.ps-newsletter-bar {
  background: linear-gradient(135deg, var(--primary-color) 0%, #b00000 100%);
  padding: 30px 0;
}

.ps-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.ps-newsletter-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}

.ps-newsletter-sub {
  font-size: 13px;
  color: #fee2e2;
  margin: 4px 0 0 0;
}

.ps-newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
  max-width: 420px;
  width: 100%;
}

.ps-newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 30px 0 0 30px;
  font-size: 14px;
  outline: none;
}

.ps-newsletter-btn {
  padding: 12px 22px;
  background: var(--secondary-color);
  color: #111;
  border: none;
  border-radius: 0 30px 30px 0;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.ps-newsletter-btn:hover {
  background: var(--secondary-hover);
}

/* FOOTER */
.ps-footer {
  background: #111827;
  color: #d1d5db;
}

.ps-footer-main {
  padding: 50px 0;
}

.ps-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
}

.ps-footer-col-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  position: relative;
  padding-bottom: 12px;
}

.ps-footer-col-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 2px;
}

.ps-footer-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ps-footer-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13.5px;
  color: #9ca3af;
  line-height: 1.5;
}

.ps-footer-info li i {
  color: var(--primary-color);
  margin-top: 3px;
  flex-shrink: 0;
}

.ps-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.ps-footer-links li a {
  font-size: 13.5px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ps-footer-links li a:hover {
  color: var(--secondary-color);
  padding-left: 4px;
}

.ps-footer-links li a i {
  font-size: 10px;
  color: var(--primary-color);
}

.ps-footer-map iframe {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: var(--radius-sm);
}

.ps-footer-bottom {
  background: #0f172a;
  padding: 15px 0;
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* FLOATING ACTIONS */
.ps-float-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ps-float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.ps-float-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.ps-float-phone {
  background: var(--primary-color);
  animation: ps-pulse 2s infinite;
}

.ps-float-zalo {
  background: #0068ff;
}

#toptop {
  width: 50px !important;
  height: 50px !important;
  line-height: 50px !important;
  text-align: center !important;
  position: fixed !important;
  bottom: 140px !important;
  right: 20px !important;
  cursor: pointer !important;
  background: #ffffff !important;
  transition: var(--transition, all 0.3s ease) !important;
  z-index: 999 !important;
  border-radius: 50% !important;
  transform: rotate(-90deg) !important;
  font-size: 50px !important;
  color: #df001f !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
}

#toptop i {
  margin-left: -1px;
  margin-top: -1px;
  display: block;
}

#toptop:hover {
  transform: rotate(-90deg) scale(1.1) !important;
}

@media (max-width: 460px) {
  #toptop {
    bottom: 140px !important;
    right: 20px !important;
  }
}

/* FORM ELEMENTS */
.ps-input,
.ps-select,
.ps-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-main);
  background: #ffffff;
  outline: none;
  transition: var(--transition);
  font-family: var(--font-main);
}

.ps-input:focus,
.ps-select:focus,
.ps-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.08);
}

.ps-textarea {
  min-height: 100px;
  resize: vertical;
}

.ps-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.ps-form-group {
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .ps-hero-grid { grid-template-columns: 1fr; }
  .ps-hero-side { flex-direction: row; }
  .ps-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .ps-product-grid { grid-template-columns: repeat(3, 1fr); }
  .ps-why-grid { grid-template-columns: repeat(2, 1fr); }
  .ps-footer-grid { grid-template-columns: 1fr 1fr; }
  .ps-process-grid { grid-template-columns: repeat(2, 1fr); }
  .ps-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .ps-header-grid { flex-wrap: wrap; }
  .ps-search-wrap { max-width: 100%; order: 3; width: 100%; }
  .ps-hotline-box { display: none; }
  .ps-nav-menu { display: none; }
  .ps-mobile-toggle { display: flex; }
  .ps-topbar-notice { display: none; }
  .ps-cat-grid { grid-template-columns: repeat(2, 1fr); }
  .ps-product-grid { grid-template-columns: repeat(2, 1fr); }
  .ps-news-grid { grid-template-columns: 1fr; }
  .ps-why-grid { grid-template-columns: 1fr; }
  .ps-consult-box { grid-template-columns: 1fr; }
  .ps-footer-grid { grid-template-columns: 1fr; }
  .ps-newsletter-inner { flex-direction: column; text-align: center; }
  .ps-newsletter-form { max-width: 100%; }
  .ps-form-grid { grid-template-columns: 1fr; }
  .ps-slide-title { font-size: 22px; }
  .ps-section-title { font-size: 22px; }
  .ps-hero-side { flex-direction: column; }
  .ps-process-grid { grid-template-columns: 1fr 1fr; }
  .ps-stats-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
  .ps-stat-number { font-size: 28px; }
  .ps-page-hero-title { font-size: 20px; }
  .ps-cat-tabs { gap: 0; }
  .ps-cat-tab { padding: 10px 12px; font-size: 12px; }
}

@media (max-width: 480px) {
  .ps-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ps-product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .ps-process-grid { grid-template-columns: 1fr; }
  .ps-stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ps-stat-number { font-size: 24px; }
  .ps-slide-title { font-size: 18px; }
  .ps-hero-side { display: none; }
}
