.elementor-45 .elementor-element.elementor-element-1769215{--display:flex;--margin-top:-40px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-45 .elementor-element.elementor-element-612e649{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + -150px) 0px;padding:0px 0px 0px 0px;}.elementor-45 .elementor-element.elementor-element-aa09876{--display:flex;}/* Start custom CSS for html, class: .elementor-element-612e649 *//* PRODUCT PAGE – SCOPED CSS */

/* Base Reset: Apply the reset only within the product section */
.product-section * {
  box-sizing: border-box;
  font-family: "Inter", "Helvetica", Arial, sans-serif;
  letter-spacing: 0;
  color: #1A1A1A;
  margin: 0;
  padding: 0;
  line-height: 1.5; /* Resetting line-height to a safe value */
}

/* Base Container */
.product-section {
  /* You may want to define max-width or background here if the entire section has a specific style */
  background: #fff; 
}

/* HERO */
.product-section .product-hero {
  text-align: center;
  padding: 60px 20px;
  border-bottom: 2px solid #0A2540;
}

.product-section .product-hero h1 {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  border-bottom: 2px solid #FF7A00;
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 14px;
  color: #1A1A1A; /* Ensure color is specific */
}

.product-section .product-hero p {
  max-width: 820px;
  margin: 16px auto;
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.product-section .product-note-box {
  border: 1px solid #0A2540;
  padding: 15px;
  max-width: 750px;
  margin: 20px auto;
  background: #fff;
  font-size: 14px;
  color: #2b2b2b;
}

/* FILTER BAR */
.product-section .filter-bar {
  background: #0A2540;
  padding: 20px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.product-section .filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.product-section .filter-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  margin-right: 10px;
}

.product-section .filter-left .label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: #fff; /* Ensure label is white */
}

.product-section .filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Buttons */
.product-section .filter-buttons .btn {
  background: #fff;
  color: #0A2540;
  padding: 8px 18px;
  border: 1px solid #ddd;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.product-section .filter-buttons .btn.active {
  background: #FF7A00;
  color: #fff;
  border-color: #FF7A00;
}

/* PAGE CONTENT WRAPPER */
.product-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 18px;
}

/* PRODUCT GRID */
.product-section .product-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  margin-top: 10px;
}

/* CARD */
.product-section .product-card {
  border: 1px solid #DDDDDD;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* IMAGE BOX */
.product-section .product-image {
  background: #F4F4F4;
  aspect-ratio: 1/1;
  border-bottom: 1px solid #DDDDDD;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #888;
}

/* CONTENT */
.product-section .product-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 0 auto;
}

.product-section .product-category {
  font-size: 10px;
  text-transform: uppercase;
  color: #FF7A00;
  margin-bottom: 4px;
}

.product-section .product-title {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #0A2540;
  margin-bottom: 6px;
}

.product-section .product-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.45;
  margin-bottom: 6px;
}

/* SPECS */
.product-section .product-specs {
  border-top: 1px solid #E3E3E3;
  padding-top: 12px;
  font-size: 12px;
  color: #555;
}

.product-section .product-specs div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

/* CTA BUTTON */
.product-section .product-card .cta {
  margin-top: 12px;
  align-self: stretch;
  border: 1px solid #0A2540;
  background: #fff;
  color: #0A2540;
  padding: 10px;
  font-size: 13px;
  cursor: pointer;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.product-section .product-card .cta:hover {
  background: #FF7A00;
  color: #fff;
  border-color: #FF7A00;
}

/* CATEGORY SUMMARY */
.product-section .category-summary {
  padding: 60px 20px;
  background: #FAFAFA;
  border-top: 1px solid #ddd;
}

.product-section .category-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.product-section .category-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(4, 1fr);
}

.product-section .category-box {
  border: 1px solid #0A2540;
  padding: 20px;
  background: #fff;
}

.product-section .category-box h3 {
  font-size: 13px;
  text-transform: uppercase;
  padding-bottom: 8px;
  border-bottom: 1px solid #FF7A00;
  margin-bottom: 12px;
  color: #0A2540; /* Specific color */
}

.product-section .category-box p {
  font-size: 12px;
  color: #555;
}

/* CTA */
.product-section .cta-section {
  padding: 60px 20px;
  text-align: center;
  background: #0A2540;
  color: white;
  border-top: 4px solid #FF7A00;
}

.product-section .cta-section h2 {
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #fff; /* Specific color */
}

.product-section .cta-section p {
  color: #e6eef8;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.product-section .cta-section button {
  margin-top: 20px;
  padding: 12px 35px;
  background: #FF7A00;
  border: none;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s;
}

.product-section .cta-section button:hover {
  background: #e86d00;
}

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

@media (max-width: 768px) {
  .product-section .product-grid {
    grid-template-columns: repeat(1,1fr);
  }
  .product-section .category-grid {
    grid-template-columns: repeat(1,1fr);
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-1769215 */.product-specs > div {
  display: grid !important;
  grid-template-columns: 100px 1fr !important;
  align-items: start !important;
  gap: 10px !important;
}

.product-specs > div span:first-child {
  font-weight: 700;
  text-align: left;
}

.product-specs > div span:last-child {
  text-align: right;
}/* End custom CSS */