/* =========================================================
              PRODUCTS AREA (SIDEBAR + GRID)
============================================================ */
.products-area{
  background: #fff;
  margin-top: 2rem;
  padding: 26px 0 70px;
}

.products-area__wrap{
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
}

/* Types of Parts Spare parts */
.parts-sidebar{
  position: sticky;
  top: 120px;
  align-self: start;
  background: #ffffff;
  border-radius: 5px;
  padding: 18px 8px 16px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  color: rgba(17,24,39,0.85);
}

/* Header */
.parts-sidebar__header{
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.parts-sidebar__title{
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: #0f172a;
}

/* Accordion list */
.parts-accordion{
  max-height: 520px; /* like original */
  overflow: auto;
  padding-right: 6px;
}

/* slim scrollbar */
.parts-accordion::-webkit-scrollbar{ width: 8px; }
.parts-accordion::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,0.20);
  border-radius: 999px;
}
.parts-accordion::-webkit-scrollbar-track{
  background: rgba(0,0,0,0.15);
  border-radius: 999px;
}

/* Top-level item */
.parts-item{
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.parts-item:last-child{
  border-bottom: none;
}

.parts-item__btn{
  width: 100%;
  border: 0;
  background: transparent;
  padding: 14px 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: inherit;
}

.parts-item__name{
  font-weight: 400;
  font-size: 14px;
  text-align: left; 
}

.parts-item__name a{
  color: #0f172a;
}

.parts-item__meta{
  margin-top: 4px;
  font-size: 12px;
  text-align: left;
  color: rgba(15,23,42,0.55);
}

.parts-toggle{
  width: 22px;
  height: 22px;
  display: grid;
  font-size: 16px;
  font-weight: 500;
  color: rgba(15,23,42,0.45);
  transition: background 150ms ease, color 150ms ease;
}

.parts-toggle::before{
  content: "+";
}

.parts-item.is-open .parts-toggle{
  color: #0f172a;
}

.parts-item.is-open .parts-toggle::before{
  content: "−";
}


/* Panel */
.parts-item__panel{
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
  padding: 0 6px;
}

.parts-item.is-open .parts-item__panel{
  max-height: 260px; /* enough for children */
  padding-bottom: 12px;
  overflow: auto;
}


/* Sublist container */
.parts-sublist{
  background: #f8fafc;
  padding: 10px 0;
  border: 1px solid rgba(0,0,0,0.06);
}

/* Subitems */
.parts-subitem{
  width: 100%;
  border: 0;
  background: transparent;
  padding: 10px 14px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(15,23,42,0.85);
  cursor: pointer;
}

.parts-subitem + .parts-subitem{
  border-top: 1px solid rgba(0,0,0,0.06);
}

.parts-subitem:hover{
  background: rgba(0,0,0,0.04);
}

.parts-subitem.is-active{
  background: rgba(15,23,42,0.08);
  font-weight: 400;
}

.parts-subitem .count{
  color: rgba(17,24,39,0.45);
  font-size: 12px;
  font-weight: 600;
}

/* Clear button */
.parts-clear{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  width: 100%;
  height: 44px;
  border-radius: 0 0 5px 5px;
  border: 1px solid rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.02);
  color: #0f172a;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.parts-clear:hover{
  background: rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 900px){
  .parts-sidebar{
    display: none;
    /*position: relative;
    top: auto;*/
  }
  .parts-accordion{ max-height: none; }
}

/*  Parts sidebar scrollbar  */
.parts-item__panel{
  scrollbar-width: thin;                 /* Firefox */
  scrollbar-color: rgba(0,0,0,.35) transparent;
}

/* Chrome / Edge / Safari */
.parts-item__panel::-webkit-scrollbar{
  width: 6px;                            /* reduce width */
}

.parts-item__panel::-webkit-scrollbar-track{
  background: transparent;
}

.parts-item__panel::-webkit-scrollbar-thumb{
  background-color: rgba(0,0,0,.35);
  border-radius: 8px;
}

.parts-item__panel::-webkit-scrollbar-thumb:hover{
  background-color: rgba(0,0,0,.55);
}


/* Main */
.products-main{
  min-width: 0;
}

.products-topbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: rgba(17,24,39,0.60);
  font-size: 13px;
}

.products-sort{
  display: flex;
  align-items: center;
  gap: 10px;
}

.products-sort select{
  border: 1px solid rgba(0,0,0,0.10);
  border-radius: 5px;
  height: 40px;
  padding: 0 12px;
  background: #fff;
  color: rgba(17,24,39,0.75);
}

/* Grid */
.products-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.p-card{
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 5px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.p-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.10);
}

.p-card__img{
  display: block;
  background: #fff;
  padding: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.p-card__img img{
  width: 100%;
  height: 170px;
  object-fit: contain;
  display: block;
}

.p-card__body{
  padding: 14px 16px 16px;
}

.p-card__title{
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  color: rgba(17,24,39,0.88);
}

.p-card__meta{
  margin: 0 0 12px;
  font-size: 12px;
  text-align: center;
  color: rgba(17,24,39,0.60);
}

.p-card__cta{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #cdd3d7;
  height: 40px;
  width: 100%;
  border-radius: 5px;
  background: #02243d;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: transform 150ms ease, background 150ms ease;
}

.p-card__cta:hover{
  background: #df0024;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 900px){
  .parts-sidebar{
    display: none;
    /*position: relative;
    top: auto;*/
  }
  .p-card__img{padding: 5px;}
  .p-card__img img{height: auto;}
  .p-card__cta{height: 25px; font-size: 12px; font-weight: 500;}
  .p-card__meta{margin: 0 0 8px; font-size: 10px;}
  .parts-accordion{ max-height: none; }
}

/* Pagination */
.products-pagination{
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.pg{
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.10);
  display: grid;
  place-items: center;
  text-decoration: none;
  color: rgba(17,24,39,0.55);
  background: #fff;
}

.pg--active{
  background: #e11d48;
  border-color: #e11d48;
  color: #fff;
}

/* Responsive */
@media (max-width: 1100px){
  .products-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px){
  .products-area__wrap{
    grid-template-columns: 1fr;
  }
  .filter-sidebar{
    position: relative;
    top: auto;
  }
}

/*@media (max-width: 560px){
  .products-grid{ grid-template-columns: 1fr; }
}*/

/* ================= Products Hero ================= */
.products-hero{
  position:  relative; /*this helps to contain the overlay*/
  width: 100%;
  height: 620px; /* adjust hero height if needed */
  background-image: url("/assets/images/product-hero-img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 15%;
  background-color: #101318;
}

.products-hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(16, 19, 24, 0.22),
    rgba(16, 19, 24, 0.15)
  );
  pointer-events: none;
}

/* ================================================
                    CATEGORY SLIDER
=================================================== */

.cat-slider{
  background: #ffffff;
  padding: 38px 0 46px;
}

.cat-slider__row{
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  gap: 18px;
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
}

/* viewport */
.cat-slider__viewport{
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 4px 0;
  scrollbar-width: none;
}
.cat-slider__viewport::-webkit-scrollbar{ display:none; }

.cat-slider__track{
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 6px 4px;
}

/* NAV buttons (outlined rounded rectangle) */
.cat-slider__nav{
  width: 44px;
  height: 68px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.25);
  background: #fff;
  color: rgba(0,0,0,0.45);
  display: grid;
  place-items: center;
  transition: background 150ms ease, transform 150ms ease, color 150ms ease, border-color 150ms ease;
}
.cat-slider__nav:hover{
  background: rgba(0,0,0,0.03);
  color: rgba(0,0,0,0.65);
  border-color: rgba(0,0,0,0.35);
  transform: translateY(-1px);
}
.cat-slider__nav i{ font-size: 18px; }

/* Cards (taller, rounded, thin border) */
.cat-card{
  flex: 0 0 auto;
  width: 150px;
  height: 150px;

  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.28);

  text-decoration: none;
  color: #111827;

  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  align-items: center;
  margin: 8px 0;
  padding: 16px 14px 14px;

  /* very subtle shadow like figma */
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);

  transform: scale(1);   /* no zoom by default (figma screenshot shows uniform) */
  opacity: 1;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.cat-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}

/* Image placement */
.cat-card__img{
  width: 100%;
  height: 92px;
  display: grid;
  place-items: center;
}

.cat-card__img img{
  max-width: 110px;
  max-height: 82px;
  width: auto;
  height: auto;
  display: block;
}

/* Label style like screenshot */
.cat-card__label{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
  color: #111827;
}

/* OPTIONAL: If you still want a "highlight" on the centered card (subtle) */
.cat-card.is-active{
  border-color: rgba(0,0,0,0.50);
  transform: scale(1.22);
}

/* Mobile tweaks */
@media (max-width: 768px){
  .cat-slider{ padding: 26px 0 34px; }
  .cat-slider__row{ grid-template-columns: 42px 1fr 42px; gap: 12px; }
  .cat-slider__track{ gap: 18px; }
  .cat-card{ width: 135px; height: 140px; border-radius: 16px; }
  .cat-slider__nav{ width: 40px; height: 60px; }
}

/* =========================
   BRAND LOGO STRIP
========================= */
.brand-strip{
  background: #fff;
  padding: 2px 0 14px;
}

.brand-strip__wrap{
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 18px;
}

/* viewport */
.brand-strip__viewport{
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.brand-strip__viewport::-webkit-scrollbar{ display: none; }

.brand-strip__track{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  padding: 6px 2px;
}

/* logos */
.brand-logo{
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  height: 45px;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 150ms ease, transform 150ms ease;
}
.brand-logo:hover{
  opacity: 0.8;
  transform: translateY(-1px);
}

.brand-logo img{
  height: 45px;           /* matches the screenshot scale */
  width: auto;
  display: block;
  filter: grayscale(100%);
  opacity: 0.9;
}

/* nav buttons (subtle) */
.brand-strip__nav{
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  color: rgba(0,0,0,0.35);
  display: grid;
  place-items: center;
  transition: background 150ms ease, color 150ms ease, transform 150ms ease, border-color 150ms ease;
}
.brand-strip__nav:hover{
  background: rgba(0,0,0,0.03);
  color: rgba(0,0,0,0.55);
  border-color: rgba(0,0,0,0.22);
  transform: translateY(-1px);
}
.brand-strip__nav i{ font-size: 16px; }

/* divider line below */
.brand-strip__divider{
  width: min(1280px, calc(100% - 56px));
  margin: 10px auto 0;
  height: 1px;
  background: rgba(0,0,0,0.08);
}

/* responsive */
@media (max-width: 768px){
  .brand-strip{ padding: 18px 0 10px; }
  .brand-strip__wrap{
    width: min(1280px, calc(100% - 32px));
    grid-template-columns: 38px 1fr 38px;
    gap: 12px;
  }
  .brand-strip__track{ gap: 34px; }
  .brand-logo{ height: 40px; }
  .brand-logo img{ height: 20px; }
}

/* =========================
   BREADCRUMB + SEARCH BAR
========================= */
.product-tools{
  background: #fff;
  padding: 5px 0 6px;
}

.product-tools__wrap{
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
}

/* Breadcrumb */
.product-breadcrumb{
  margin: 0 0 14px;
}

.product-breadcrumb__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: rgba(17,24,39,0.55);
}

.product-breadcrumb__list a{
  color: rgba(17,24,39,0.55);
  text-decoration: none;
  transition: color 150ms ease;
}
.product-breadcrumb__list a:hover{
  color: rgba(17,24,39,0.85);
}

.product-breadcrumb__list .sep{
  color: rgba(17,24,39,0.35);
  margin-right: 2px;
}

.product-breadcrumb__list .current{
  color: rgba(17,24,39,0.85);
  font-weight: 600;
}

/* Searchbar layout */
.product-searchbar{
  display: grid;
  grid-template-columns: 150px 1fr 180px 56px;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

/* Common block style */
.psb{
  position: relative;
  background: #f7f7f7;
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  padding: 0 4px;
  height: 54px;
}

/* Remove double borders between blocks */
.psb--input{ border-left: 0; border-right: 0; background:#fff; }
.psb--right{ border-left: 0; background:#fff; }

.psb--left{
  border-radius: 4px 0 0 4px;
}

.psb select{
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(17,24,39,0.75);
  appearance: none;
  padding-right: 22px;
}

.psb--right select{
  font-weight: 500;
  letter-spacing: 0;
}

.psb i{
  position: absolute;
  right: 12px;
  color: rgba(0,0,0,0.35);
  pointer-events: none;
  font-size: 12px;
}

/* Input */
.psb--input input{
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: rgba(17,24,39,0.85);
}

.psb--input input::placeholder{
  color: rgba(17,24,39,0.35);
}

/* Submit button */
.psb-btn{
  height: 54px;
  border: 0;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  border-radius: 0 4px 4px 0;
  transition: transform 150ms ease, background 150ms ease;
}

.psb-btn:hover{
  background: #000;
  transform: translateY(-1px);
}

.psb-btn i{ font-size: 16px; }

/* Responsive */
@media (max-width: 900px){
  .product-tools__wrap{ width: min(1280px, calc(100% - 32px)); }

  .product-searchbar{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .psb, .psb-btn{
    border-radius: 6px;
    border-left: 1px solid rgba(0,0,0,0.08) !important;
    border-right: 1px solid rgba(0,0,0,0.08) !important;
  }

  .psb--input{ border-left: 1px solid rgba(0,0,0,0.08); border-right: 1px solid rgba(0,0,0,0.08); }
  .psb-btn{ width: 100%; }
}

/* =========================
   Product Searchbar Dropdown (All Systems)
   ========================= */

/* container */
.product-searchbar .psb--left{
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0; 
}

/* the <select> itself */
.product-searchbar .psb--left select{
  width: 100%;
  height: 48px;
  padding: 0 4px 0 6px;     /* space for chevron */
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 5px 0 0 5px;
  background: rgba(255, 255, 255, 0.9);
  color: rgba(17, 24, 39, 0.92);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  /* subtle depth */
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
  transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease, background .2s ease;
}

/* hover */
.product-searchbar .psb--left select:hover{
  border-color: rgba(17, 24, 39, 0.22);
  box-shadow: 0 14px 34px rgba(0,0,0,0.10);
}

/* focus */
.product-searchbar .psb--left select:focus{
  outline: none;
  border-color: rgba(10, 102, 194, 0.55);
  box-shadow: 0 0 0 4px rgba(10, 102, 194, 0.14), 0 14px 34px rgba(0,0,0,0.10);
}

/* chevron icon placement */
.product-searchbar .psb--left i.fa-chevron-down{
  position: absolute;
  right: 16px;
  pointer-events: none;
  font-size: 12px;
  opacity: .65;
}

/* Optional: make the opened list look cleaner in supporting browsers */
.product-searchbar .psb--left select option{
  font-weight: 600;
  text-transform: none; /* keep options readable */
}

/* Mobile: reduce height a bit */
@media (max-width: 576px){
  .product-searchbar .psb--left select{
    height: 44px;
    border-radius: 10px;
  }
}

/* =========================
   PRODUCTS FAQ SECTION
========================= */
.products-faq{
  background: #fff;
  padding: 70px 0 90px;
}

.products-faq__wrap{
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  gap: 48px;
  align-items: stretch;
}

/* Left panel */
.faq-intro{
  position: relative;
  min-height: 430px;
  background-color: #f4f7fb;
  background-image: url("/assets/images/products-faq.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  border-radius: 10px;
  padding: 42px 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.faq-intro__content{
  position: relative;
  z-index: 2;
  max-width: 360px;
}


.faq-intro__content h2{
  font-size: 28px;
  line-height: 1.2;
  margin: 0 0 14px;
  font-weight: 800;
  color: #0f172a;
}

.faq-intro__content p{
  font-size: 14px;
  color: rgba(15,23,42,0.65);
  margin: 0 0 10px;
}

.faq-intro__small{
  margin-top: 14px;
  font-size: 13px;
}

.faq-intro__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #0f172a;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
}

.faq-intro__image img{
  max-height: 240px;
  width: auto;
  display: block;
}

/* Right panel (accordion) */
.faq-list{
  display: flex;
  flex-direction: column;
}

.faq-item{
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.faq-question{
  width: 100%;
  padding: 18px 0;
  background: none;
  border: 0;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-icon{
  width: 16px;
  height: 16px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after{
  content: "";
  position: absolute;
  background: #0f172a;
}

.faq-icon::before{
  width: 16px;
  height: 2px;
  top: 7px;
  left: 0;
}

.faq-icon::after{
  width: 2px;
  height: 16px;
  left: 7px;
  top: 0;
  transition: opacity 200ms ease;
}

/* Answer */
.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height 260ms ease;
}

.faq-answer p{
  margin: 0 0 18px;
  font-size: 14px;
  color: rgba(15,23,42,0.7);
  line-height: 1.6;
}

/* Open state */
.faq-item.is-open .faq-answer{
  max-height: 200px;
}

.faq-item.is-open .faq-icon::after{
  opacity: 0;
}

/* Responsive */
@media (max-width: 900px){
  .products-faq__wrap{
    grid-template-columns: 1fr;
  }
  .faq-intro{
    background-image: none;
    padding: 32px 24px;
    min-height: auto;
    text-align: center;
    justify-content: center;
  }
  .faq-intro__image{
    display: none;
  }
}

/* ========================================
                 NEWSLETTER
=========================================== */
.newsletter{
  background: #e6e6e6;
  padding: 56px 0;
}

.newsletter__wrap{
  width: min(1280px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.newsletter__title{
  margin: 0 0 10px;
  font-size: 32px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.newsletter__title span{
  color: #e11d48; /* VIP red */
}

.newsletter__desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(15,23,42,0.65);
  max-width: 520px;
}

/* Right side */
.newsletter__form{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 5px;
  padding: 2px;
}

.newsletter__form input{
  height: 40px;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0 10px;
  font-size: 13px;
  color: rgba(15,23,42,0.9);
}

.newsletter__form input::placeholder{
  color: rgba(15,23,42,0.45);
}

.newsletter__form button{
  height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 5px;
  background: #e11d48;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease;
}

.newsletter__form button:hover{
  background: #c0163d;
  transform: translateY(-1px);
}

.newsletter__fineprint{
  margin: 10px 0 0;
  font-size: 11px;
  color: rgba(15,23,42,0.55);
}

.newsletter__fineprint a{
  color: rgba(15,23,42,0.75);
  font-weight: 700;
  text-decoration: none;
}

.newsletter__fineprint a:hover{
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px){
  .newsletter{ padding: 44px 0; }
  .newsletter__wrap{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .newsletter__title{ font-size: 26px; }
}