/* ============= Nairy Machinery — Products Pages ============= */

/* ---- Active nav ---- */
.nav-active { color: var(--primary) !important; }
.nav-active::after { width: 100% !important; }

/* ---- Shared header-solid (same as about/news) ---- */
.header-solid {
  position: sticky; top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6); margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color .25s; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: rgba(255,255,255,0.9); }
.breadcrumb svg { opacity: 0.5; }

/* ---- Page Hero base ---- */
.page-hero {
  position: relative; color: #fff;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.page-hero-bg { position: absolute; inset: 0; overflow: hidden; }
.page-hero-img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(22,25,31,0.92) 40%, rgba(22,25,31,0.6) 100%);
}
.page-hero-content {
  position: relative; z-index: 10;
  padding-top: 120px; padding-bottom: 56px; width: 100%;
}
.accent { color: var(--primary); }

/* ============= Products Hero ============= */
.prod-hero { min-height: 50vh; }

/* Category Quick-Jump Bar */
.prod-hero-cats {
  position: relative; z-index: 10;
  background: var(--steel); width: 100%;
}
.phc-list {
  display: flex; overflow-x: auto; scrollbar-width: none;
  gap: 0; padding: 0;
}
.phc-list::-webkit-scrollbar { display: none; }
.phc-item {
  display: flex; align-items: center; gap: 10px; white-space: nowrap;
  padding: 20px 28px;
  font-family: var(--font-display); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  border-bottom: 3px solid transparent;
  transition: all .25s;
}
.phc-item:hover { color: #fff; }
.phc-item.active { color: #fff; border-bottom-color: var(--primary); }
.phc-item svg { flex-shrink: 0; }

/* ============= Products Main Layout ============= */
.products-main { padding: 56px 0 80px; background: var(--background); }
.products-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px; align-items: start;
}
@media(max-width:1024px){
  .products-layout { grid-template-columns: 1fr; }
  .products-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media(max-width:640px){
  .products-sidebar { grid-template-columns: 1fr; }
}

/* ============= Sidebar ============= */
.products-sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }

.ps-widget {
  background: var(--card); border: 1px solid var(--border);
  padding: 24px;
}
.ps-widget-title {
  font-family: var(--font-display); font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--foreground); margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 2px solid var(--primary);
  display: inline-block;
}

/* Search */
.ps-search { display: flex; border: 1px solid var(--border); overflow: hidden; }
.ps-search-input {
  flex: 1; padding: 10px 14px; border: none; background: #fff;
  font-size: 13px; font-family: var(--font-sans); outline: none; color: var(--foreground); width: 85%;
}
.ps-search-btn {
  width: 15%; background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border: none; transition: background .25s;
}
.ps-search-btn:hover { background: var(--primary-hover); }

/* Category List */
.ps-cat-list { display: flex; flex-direction: column; gap: 2px; }
.ps-cat-btn {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 9px 0; font-size: 13px; color: var(--foreground);
  border-bottom: 1px solid var(--border); transition: color .25s;
  background: none; cursor: pointer; text-align: left;
}
.ps-cat-list > li:last-child .ps-cat-btn { border-bottom: none; }
.ps-cat-btn:hover { color: var(--primary); }
.ps-cat-list li.active button { color: var(--primary); font-weight: 600; }
.ps-cat-count {
  background: var(--muted); font-size: 11px; padding: 2px 7px;
  color: var(--muted-foreground); border-radius: 99px; flex-shrink: 0;
}
.ps-subcat { padding-left: 12px; margin-top: 4px; display: flex; flex-direction: column; gap: 0; }
.ps-subcat-btn {
  background: none; cursor: pointer; text-align: left; padding: 6px 0;
  font-size: 12px; color: var(--muted-foreground); border-bottom: 1px solid var(--border);
  transition: color .25s; width: 100%;
}
.ps-subcat-btn:hover { color: var(--primary); }

/* Checkboxes */
.ps-filter-group { display: flex; flex-direction: column; gap: 10px; }
.ps-checkbox {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--foreground); cursor: pointer;
}
.ps-checkbox input { display: none; }
.ps-check-mark {
  width: 16px; height: 16px; flex-shrink: 0;
  border: 1px solid var(--border); background: #fff; position: relative;
  transition: all .2s;
}
.ps-checkbox input:checked + .ps-check-mark {
  background: var(--primary); border-color: var(--primary);
}
.ps-checkbox input:checked + .ps-check-mark::after {
  content: ""; position: absolute; top: 2px; left: 5px;
  width: 5px; height: 8px; border: 2px solid #fff;
  border-top: none; border-left: none; transform: rotate(45deg);
}

/* Sidebar CTA */
.ps-cta-widget { background: var(--steel-deep); border-color: var(--steel); }
.ps-cta-inner { display: flex; flex-direction: column; gap: 10px; color: #fff; }
.ps-cta-inner svg { color: var(--primary); }
.ps-cta-inner h4 { font-family: var(--font-display); font-size: 1rem; color: #fff; }
.ps-cta-inner p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ============= Toolbar ============= */
.products-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border);
  margin-bottom: 28px; flex-wrap: wrap;
}
.pt-count { font-size: 13px; color: var(--muted-foreground); }
.pt-count strong { color: var(--foreground); }
.pt-right { display: flex; align-items: center; gap: 16px; }
.pt-sort { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted-foreground); }
.pt-select {
  border: 1px solid var(--border); background: #fff; padding: 6px 10px;
  font-family: var(--font-display); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.06em; outline: none; cursor: pointer; color: var(--foreground);
}
.pt-view-toggle { display: flex; border: 1px solid var(--border); overflow: hidden; }
.ptv-btn {
  width: 36px; height: 34px; display: flex; align-items: center; justify-content: center;
  color: var(--muted-foreground); border-right: 1px solid var(--border); transition: all .2s;
}
.ptv-btn:last-child { border-right: none; }
.ptv-btn:hover { background: var(--muted); color: var(--foreground); }
.ptv-btn.active { background: var(--primary); color: #fff; }

/* ============= Product Grid ============= */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.prod-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); background: #fff;
  overflow: hidden; transition: border-color .3s, box-shadow .3s, transform .3s;
}
.prod-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-industrial);
  transform: translateY(-4px);
}

.prod-card-img-wrap {
  position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--muted);
}
.prod-card-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.prod-card:hover .prod-card-img { transform: scale(1.06); }

.prod-cat-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: #fff;
  font-family: var(--font-display); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.12em;
  padding: 4px 10px;
}

.prod-card-overlay {
  position: absolute; inset: 0;
  background: rgba(22,25,31,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .3s;
}
.prod-card:hover .prod-card-overlay { opacity: 1; }
.prod-view-btn {
  font-family: var(--font-display); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: #fff; padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.6);
  transition: all .25s;
}
.prod-view-btn:hover { background: var(--primary); border-color: var(--primary); }

.prod-card-body {
  padding: 20px 22px; display: flex; flex-direction: column; flex: 1;
}
.prod-card-title {
  font-family: var(--font-display); font-size: 1rem;
  text-transform: uppercase; color: var(--foreground); margin-bottom: 4px;
  transition: color .25s;
  text-align: center;
  padding: 15px 0;
}
.prod-card:hover .prod-card-title { color: var(--primary); }
.prod-card-model { font-size: 11px; color: var(--muted-foreground); margin-bottom: 14px; }

.prod-card-specs {
  display: flex; flex-direction: column; gap: 6px; flex: 1;
  border-top: 1px solid var(--border); padding-top: 12px; margin-bottom: 16px;
}
.prod-card-specs li { display: flex; justify-content: space-between; font-size: 12px; }
.spec-key { color: var(--muted-foreground); }
.spec-val { color: var(--foreground); font-weight: 600; font-family: var(--font-display); font-size: 12px; }

.prod-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px; padding-top: 12px; border-top: 1px solid var(--border);
}
.prod-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--primary); transition: gap .25s;
}
.prod-card:hover .prod-card-link { gap: 10px; }
.prod-quote-btn {
  font-family: var(--font-display); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 6px 12px; background: var(--muted);
  color: var(--foreground); border: 1px solid var(--border);
  transition: all .25s; white-space: nowrap;
}
.prod-quote-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ---- List view ---- */
.prod-grid-list { grid-template-columns: 1fr; }
.prod-grid-list .prod-card { flex-direction: row; }
.prod-grid-list .prod-card-img-wrap { width: 220px; flex-shrink: 0; aspect-ratio: auto; }
.prod-grid-list .prod-card-body { padding: 24px 28px; }
.prod-grid-list .prod-card-specs { flex-direction: row; flex-wrap: wrap; gap: 12px; }
.prod-grid-list .prod-card-specs li { flex: 1; min-width: 120px; flex-direction: column; gap: 2px; }
@media(max-width:640px){
  .prod-grid-list .prod-card { flex-direction: column; }
  .prod-grid-list .prod-card-img-wrap { width: 100%; }
}

/* ============= Pagination ============= */
.pagination {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 48px;
}
.page-btn {
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); font-family: var(--font-display); font-size: 13px;
  color: var(--foreground); transition: all .25s;
}
.pagination .page-num{border: 1px solid #ddd; display: block; padding: 7px 15px;}
.page-num-current{background: #c00; color: #fff;}
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.page-btn.page-prev, .page-btn.page-next { background: var(--muted); }

/* ============= Solutions Strip ============= */
.solutions-strip { background: var(--steel-deep); padding: 56px 0; }
.ss-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.ss-text { flex: 1; min-width: 280px; }
.ss-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============= Footer ============= */
.footer { background: var(--steel-deep); color: #fff; padding: 64px 0 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 48px; }
@media(max-width:768px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media(max-width:480px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-heading { font-family: var(--font-display); font-size: 12px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color .25s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.3); }


/* =====================================================================
   PRODUCT DETAIL PAGE
   ===================================================================== */

/* ---- Product Hero ---- */
.product-hero {
  position: relative; min-height: 50vh;
  background: var(--steel-deep); color: #fff;
  display: flex; align-items: flex-end;
}
.product-hero-nr{min-height: 35vh;}
.product-hero-content { padding-top: 120px; padding-bottom: 48px; }

/* ---- Product Layout ---- */
.product-layout {
  display: grid; grid-template-columns: 1fr 400px;
  gap: 56px; align-items: start;
  padding: 64px 0 80px;
}
@media(max-width:1100px){ .product-layout{ grid-template-columns: 1fr 340px; } }
@media(max-width:1024px){ .product-layout{ grid-template-columns: 1fr; } }

/* ---- Gallery ---- */
.product-gallery { position: sticky; top: 100px; }
.gallery-main {
  position: relative; aspect-ratio: 4/3;
  overflow: hidden; background: var(--muted); margin-bottom: 12px;
}
.gallery-main-img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; }
.gallery-thumb {
  width: 72px; height: 56px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; flex-shrink: 0; transition: border-color .2s;
}
.gallery-thumb:hover { border-color: var(--primary); }
.gallery-thumb.active { border-color: var(--primary); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---- Product Info ---- */
.product-info { min-width: 0; }

.product-badge-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.product-badge {
  font-family: var(--font-display); font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.15em;
  padding: 4px 12px; border: 1px solid;
}
.product-badge-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.product-badge-outline { color: var(--primary); border-color: var(--primary); }

.product-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.1;
  font-weight: 700; text-transform: uppercase; margin-bottom: 6px;
}
.product-model { font-size: 13px; color: var(--muted-foreground); margin-bottom: 20px; }

.product-desc { font-size: 0.95rem; color: var(--muted-foreground); line-height: 1.75; margin-bottom: 28px; }

/* Rating / reviews row */
.product-meta-row {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 16px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.product-star { color: #f59e0b; font-size: 13px; display: flex; align-items: center; gap: 4px; }
.product-meta-divider { width: 1px; height: 16px; background: var(--border); }
.product-meta-item { font-size: 12px; color: var(--muted-foreground); }
.product-meta-item strong { color: var(--foreground); }

/* Key Specs */
.key-specs-title {
  font-family: var(--font-display); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--muted-foreground); margin-bottom: 14px;
}
.key-specs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  margin-bottom: 28px;
}
.key-spec-item {
  background: var(--card); padding: 16px 18px;
  display: flex; flex-direction: column; gap: 4px;
}
.ks-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-foreground); }
.ks-value { font-family: var(--font-display); font-size: 1rem; color: var(--foreground); font-weight: 600; }

/* Actions */
.product-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.product-actions .btn { flex: 1; min-width: 160px; justify-content: center; }
.btn-dark { background: var(--steel-deep); color: #fff; }
.btn-dark:hover { background: var(--steel); }

/* Download row */
.product-downloads { display: flex; flex-direction: column; gap: 8px; }
.dl-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border: 1px solid var(--border);
  font-size: 13px; color: var(--foreground); transition: border-color .25s, background .25s;
}
.dl-item:hover { border-color: var(--primary); background: rgba(200,38,44,0.04); }
.dl-item svg { color: var(--primary); flex-shrink: 0; }
.dl-item span { flex: 1; }
.dl-size { font-size: 11px; color: var(--muted-foreground); }

/* ============= Product Introduction Section (all content visible) ============= */
.product-intro-section { padding: 0 0 80px; }

.intro-block {
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.intro-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.intro-block-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--foreground);
  padding-left: 16px;
  border-left: 4px solid var(--primary);
  margin-bottom: 28px;
}

/* Specs table */
.spec-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.spec-table thead tr { background: var(--steel-deep); color: #fff; }
.spec-table thead th {
  font-family: var(--font-display); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 14px 20px; text-align: left;
}
.spec-table tbody tr { border-bottom: 1px solid var(--border); transition: background .2s; }
.spec-table tbody tr:hover { background: var(--muted); }
.spec-table tbody td { padding: 12px 20px; color: var(--foreground); }
.spec-table tbody td:first-child { color: var(--muted-foreground); font-size: 13px; width: 30%; }

/* Features list */
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
  width: 44px; height: 44px; background: rgba(200,38,44,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--primary);
}
.feature-item h4 { font-family: var(--font-display); font-size: 1rem; margin-bottom: 4px; }
.feature-item p { font-size: 13px; color: var(--muted-foreground); line-height: 1.6; }

/* Application grid */
.app-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media(max-width:640px){ .app-grid{ grid-template-columns: repeat(2, 1fr); } }
.app-card {
  position: relative; height: 180px; overflow: hidden;
  background: var(--steel-deep);
}
.app-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; transition: all .5s; }
.app-card:hover img { opacity: 0.4; transform: scale(1.05); }
.app-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px; background: linear-gradient(to top, rgba(22,25,31,0.85), transparent);
  font-family: var(--font-display); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.1em; color: #fff;
}

/* ============= Related Products ============= */
.related-products-section { padding: 64px 0; background: var(--muted); }
.rp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; gap: 16px; flex-wrap: wrap; }
.rp-head h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 20px; }

/* ============= Inquiry Floating CTA ============= */
.inquiry-sidebar {
  position: sticky; top: 100px;
  background: var(--steel-deep); padding: 28px;
  border-top: 4px solid var(--primary);
}
.inquiry-sidebar h3 { font-size: 1.1rem; color: #fff; margin-bottom: 6px; }
.inquiry-sidebar p { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 20px; line-height: 1.6; }
.inquiry-form { display: flex; flex-direction: column; gap: 12px; }
.iq-field label {
  display: block; font-family: var(--font-display); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5); margin-bottom: 6px;
}
.iq-field input, .iq-field select, .iq-field textarea {
  width: 100%; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12); color: #fff;
  padding: 10px 14px; font-family: var(--font-sans); font-size: 13px;
  outline: none; transition: border-color .25s;
}
.iq-field input::placeholder, .iq-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.iq-field input:focus, .iq-field select:focus, .iq-field textarea:focus { border-color: var(--primary); }
.iq-field select option { background: var(--steel-deep); color: #fff; }
.iq-submit {
  width: 100%; background: var(--primary); color: #fff;
  font-family: var(--font-display); font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 14px; cursor: pointer; border: none;
  transition: background .25s;
}
.iq-submit:hover { background: var(--primary-hover); }
.iq-guarantee {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 8px;
}
.iq-guarantee svg { flex-shrink: 0; color: rgba(255,255,255,0.3); }

/* ============= Product Detail Layout ============= */
.product-detail-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 48px; align-items: start; padding: 56px 0 80px;
}
.product_content_info{width: 100%; overflow: hidden;}
.product_images{width: 100%; margin-bottom: 20px;}
.product_images img{width: 100%;}
.content_nr{line-height: 1.7; color: #333; margin-top: 20px;}
.content_nr img{max-width: 100%; display:initial}
.specifications_cs table{width: 100%; text-align: center;}
.specifications_cs table td{border: 1px solid #ddd!important; padding: 5px 8px; font-size: 14px!important;}
.specifications_cs table td p{font-size: 14px!important; border: none!important;}
@media(max-width:1024px){ .product-detail-layout{ grid-template-columns: 1fr; } }
@media(max-width:768px){
    .products-sidebar{position: static;}
    .prolist_categories{display: none;}
    .ps-cta-widget, .prolist_search{display: none;}
    .container{width: 100%;}
    .products-sidebar{display: none;}
    .products-content{width: 100%; overflow: hidden;}
}
