:root {
  --red: #e21b23;
  --red-dark: #b90f16;
  --ink: #111214;
  --muted: #676b72;
  --paper: #fff;
  --soft: #f5f6f7;
  --line: #e6e7e9;
  --black: #171717;
  --radius: 22px;
  --shadow: 0 20px 60px rgba(17, 18, 20, .08);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: auto;
}

.topbar {
  background: #111;
  color: #fff;
  font-size: 12px;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
}

.topbar a {
  color: #fff;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230, 231, 233, .8);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -.04em;
}

.brand-logo {
  height: 42px;
  border-radius: 12px;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900;
  position: relative;
  overflow: hidden;
}

.brand-logo:after {
  content: "";
  position: absolute;
  height: 42px;
  background: var(--red);
  transform: skewX(-22deg);
  right: 4px;
  top: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  color: #3e4248;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn,
.cart-btn,
.menu-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  height: 42px;
  padding: 0 13px;
  cursor: pointer;
}

.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.cart-count {
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 11px;
}

.menu-btn {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 12px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 25px rgba(226, 27, 35, .2);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-dark {
  background: green;
  color: #fff;
}

.btn-light {
  background: #fff;
  border: 1px solid var(--line);
  color: #111;
}

.hero {
  background: #f3f4f5;
  overflow: hidden;
}

.hero-grid {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 50px;
  padding: 75px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.hero h1 {
  font-size: clamp(35px, 6vw, 70px);
  line-height: 1.2;
  letter-spacing: 1.6px;
  margin: 12px 0 20px;
  max-width: 780px;
}

.hero h1 span {
  color: var(--red);
}

.hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 650px;
  margin: 0 0 30px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-note {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 32px;
  color: #555;
  font-size: 16px;
}

.hero-note strong {
  color: #111;
}

.hero-art {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-ring {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid #d9dbde;
}

.hero-ring:before,
.hero-ring:after {
  content: "";
  position: absolute;
  border: 1px solid #e1e2e4;
  border-radius: 50%;
}

.hero-ring:before {
  inset: 52px;
}

.hero-ring:after {
  inset: 112px;
}

.hero-printer {
  width: min(580px, 100%);
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, .12));
  position: relative;
  z-index: 2;
  padding: 0;
  box-shadow: 8px 8px 12px 12px rgba(17, 18, 20, .08);
}

.hero-label {
  position: absolute;
  right: 0;
  bottom: 45px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 15px 17px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  z-index: 3;
}

.hero-label small {
  display: block;
  color: #777;
  font-weight: 700;
}

.hero-label strong {
  display: block;
  font-size: 15px;
  margin-top: 3px;
}

.stats {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat {
  padding: 20px 18px;
  border-right: 2.5px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat b {
  display: block;
  font-size: 26px;
  letter-spacing: -.04em;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 95px 0
}

.section-soft {
  background: var(--soft)
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 42px
}

.kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase
}

.section h2 {
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -.055em;
  line-height: 1.03;
  margin: 9px 0 0
}

.section-head p {
  max-width: 500px;
  color: var(--muted);
  margin: 0
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.category {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .25s
}

.category:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow)
}

.category-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: #111;
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 900
}

.category h3 {
  font-size: 22px;
  letter-spacing: -.035em;
  margin: 18px 0 7px
}

.category p {
  font-size: 13px;
  color: var(--muted);
  margin: 0
}

.category .arrow {
  margin-top: 50px;
  color: var(--red);
  font-weight: 900
}

.product-toolbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px
}

.searchbox {
  flex: 1;
  min-width: 240px;
  position: relative
}

.searchbox input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 1px solid var(--line);
  border-radius: 13px;
  outline: none;
  background: #fff
}

.searchbox:before {
  content: "⌕";
  position: absolute;
  left: 16px;
  top: 8px;
  font-size: 25px;
  color: #777
}

.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap
}

.filter {
  padding: 11px 14px;
  border-radius: 11px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 800;
  font-size: 12px;
  cursor: pointer
}

.filter.active {
  background: #111;
  color: #fff;
  border-color: #111
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: .2s
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow)
}

.product-image {
  background: #ffffff;
  padding: 22px;
  position: relative
}

.product-image img {
  width: 100%;
  height: 230px;
  object-fit: contain
}

.badge {
  position: absolute;
  left: 16px;
  top: 16px;
  background: #111;
  color: #fff;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em
}

.product-body {
  padding: 20px
}

.product-body h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -.035em
}

.product-body p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  min-height: 42px
}

.product-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px
}

.chip {
  background: #f2f3f4;
  padding: 7px 9px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 850
}

.card-actions {
  display: flex;
  gap: 8px
}

.card-actions .btn {
  flex: 1;
  padding: 11px 10px;
  font-size: 12px
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.service {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  min-height: 230px
}

.service-num {
  font-size: 12px;
  font-weight: 900;
  color: var(--red)
}

.service h3 {
  font-size: 23px;
  letter-spacing: -.04em;
  margin: 35px 0 10px
}

.service p {
  color: var(--muted);
  font-size: 14px;
  margin: 0
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch
}

.feature-panel {
  border-radius: 28px;
  background: #111;
  color: #fff;
  padding: 48px;
  min-height: 420px;
  position: relative;
  overflow: hidden
}

.feature-panel:after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  right: -100px;
  bottom: -130px
}

.feature-panel h2 {
  max-width: 560px;
  font-size: 48px;
  letter-spacing: -.055em;
  line-height: 1.02;
  margin: 15px 0
}

.feature-panel p {
  color: #bbb;
  max-width: 500px
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px
}

.feature-list div {
  border-top: 1px solid #333;
  padding-top: 11px;
  font-size: 13px
}

.contact-card {
  background: #f3f4f5;
  border-radius: 28px;
  padding: 40px
}

.contact-card h3 {
  font-size: 28px;
  margin: 0 0 8px;
  letter-spacing: -.04em
}

.contact-card p {
  color: var(--muted);
  margin-top: 0
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px
}

.field.full {
  grid-column: 1/-1
}

.field label {
  font-size: 12px;
  font-weight: 850
}

.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 11px;
  padding: 12px 13px;
  outline: none
}

.field textarea {
  min-height: 120px;
  resize: vertical
}

.footer {
  background: #cbcbcb;
  color: red;
  padding: 60px 0 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px
}
.footer .brand {
  width: 280px;
  height: 42px;
  top: -10px;
  position: relative;
}

.footer p,
.footer a {
  color:#111;
  font-size: 13px
}

.footer h4 {
  margin: 0 0 14px
}

.footer-bottom {
  border-top: 1px solid red;
  margin-top: 45px;
  padding-top: 18px;
  color: red;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 20px
}
/* ---------- Legal Pages (Privacy Policy, Terms & Conditions) ---------- */

.legal-section {
    background: #fff;
    color: red;
    padding: 160px 10% 100px;
    line-height: 1.8;
    font-family: "Poppins", sans-serif;
}

.legal-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 3.2rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2.5rem;
    letter-spacing: 1px;
    border-left: 5px solid #000;
    padding-left: 15px;
}

.legal-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #000;
}

.legal-section p,
.legal-section li {
    font-size: 1.6rem;
    color: #444;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 2rem;
    list-style-type: disc;
}

.legal-section li {
    margin-bottom: 0.8rem;
}

.legal-section a {
    color: #000;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.legal-section a:hover {
    color: #555;
}


/* ---------- Legal Pages Mobile ---------- */

@media (max-width: 768px) {

    .legal-section {
        padding: 120px 6% 70px;
    }

    .legal-title {
        font-size: 2.4rem;
        margin-bottom: 2rem;
        padding-left: 12px;
        border-left-width: 4px;
    }

    .legal-section h2 {
        font-size: 1.7rem;
        margin-top: 2.5rem;
    }

    .legal-section p,
    .legal-section li {
        font-size: 1.4rem;
        line-height: 1.7;
    }

    .legal-section ul {
        margin-left: 1.5rem;
    }
}


/* ---------- Small Mobile Devices ---------- */

@media (max-width: 480px) {

    .legal-section {
        padding: 100px 5% 60px;
    }

    .legal-title {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }

    .legal-section h2 {
        font-size: 1.5rem;
    }

    .legal-section p,
    .legal-section li {
        font-size: 1.3rem;
    }
}

.page-hero {
  background: #f3f4f5;
  padding: 75px 0
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 70px);
  letter-spacing: -.06em;
  line-height: 1;
  margin: 15px 0
}

.page-hero p {
  max-width: 700px;
  color: var(--muted);
  font-size: 17px
}

.breadcrumb {
  font-size: 12px;
  color: #777
}

.breadcrumb a:hover {
  color: var(--red)
}

.detail {
  padding: 70px 0
}

.detail-top {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 55px;
  align-items: start
}

.detail-visual {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid var(--line);
  padding: 30px;
  position: sticky;
  top: 110px
}

.detail-visual img {
  width: 100%;
  height: 450px;
  object-fit: contain
}

.detail-info .kicker {
  margin-top: 10px
}

.detail-info h1 {
  font-size: clamp(42px, 5vw, 64px);
  letter-spacing: -.06em;
  line-height: 1.0;
  margin: 10px 0 18px
}

.detail-info .lead {
  color: var(--muted);
  font-size: 17px
}

.spec-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 28px 0
}

.spec-pill {
  background: #f4f5f6;
  border-radius: 14px;
  padding: 15px
}

.spec-pill b {
  display: block;
  font-size: 18px
}

.spec-pill span {
  font-size: 11px;
  color: #777
}

.detail-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 26px 0
}

.tabs {
  border-top: 1px solid var(--line);
  margin-top: 65px;
  padding-top: 35px
}

.tabs-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px
}

.tabs h2 {
  font-size: 34px;
  letter-spacing: -.05em
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.feature-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px
}

.feature-card b {
  display: block;
  margin-bottom: 6px
}

.feature-card span {
  font-size: 12px;
  color: var(--muted)
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px
}

.spec-table tr {
  border-bottom: 1px solid var(--line)
}

.spec-table td {
  padding: 13px 0;
  vertical-align: top
}

.spec-table td:first-child {
  color: #777;
  width: 40%
}

.source-note {
  font-size: 11px;
  color: #888;
  margin-top: 22px
}

.source-note a {
  color: #555;
  text-decoration: underline
}

.quote-drawer {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: min(390px, calc(100% - 36px));
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 25px 80px rgba(0, 0, 0, .18);
  border-radius: 22px;
  padding: 20px;
  z-index: 100;
  display: none
}

.quote-drawer.open {
  display: block
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.drawer-head h3 {
  margin: 0
}

.quote-items {
  max-height: 220px;
  overflow: auto;
  margin: 14px 0
}

.quote-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px
}

.remove {
  color: var(--red);
  cursor: pointer;
  font-weight: 800
}

.whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #25D366;
  color: #fff;
  width: 59px;
  height: 59px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  z-index: 80;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .2)
}

.empty {
  padding: 40px;
  text-align: center;
  border: 1px dashed #ccc;
  border-radius: 18px;
  color: #777;
  grid-column: 1/-1
}

.notice {
  background: #fff6f6;
  border: 1px solid #f4c6c8;
  color: #7e2024;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 13px;
  margin: 18px 0
}

@media(max-width:1000px) {
  .nav-links {
    display: none
  }

  .menu-btn {
    display: block
  }

  .hero-grid,
  .detail-top,
  .tabs-grid,
  .split {
    grid-template-columns: 1fr
  }

  .hero {
    overflow: visible
  }

  .hero-grid {
    padding: 55px 0
  }

  .hero-art {
    min-height: 430px
  }

  .detail-visual {
    position: static
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .service-grid {
    grid-template-columns: 1fr 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:650px) {
  .container {
    width: min(var(--max), calc(100% - 28px))
  }

  .topbar .container {
    display: none
  }

  .nav {
    height: 68px
  }

  .nav-actions .btn {
    display: none
  }

  .hero h1 {
    font-size: 48px
  }

  .hero-grid {
    min-height: auto
  }

  .hero-art {
    min-height: 340px
  }

  .hero-ring {
    width: 330px;
    height: 330px
  }

  .hero-label {
    right: 0;
    bottom: 0
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr
  }

  .stat {
    border-bottom: 1px solid var(--line)
  }

  .category-grid,
  .product-grid,
  .service-grid {
    grid-template-columns: 1fr
  }

  .section {
    padding: 75px 0
  }

  .section-head {
    display: block
  }

  .section-head p {
    margin-top: 16px
  }

  .feature-panel {
    padding: 30px
  }

  .feature-panel h2 {
    font-size: 38px
  }

  .feature-list,
  .feature-cards,
  .form-grid {
    grid-template-columns: 1fr
  }

  .field.full {
    grid-column: auto
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .footer-bottom {
    display: block
  }

  .footer-bottom span {
    display: block;
    margin-top: 7px
  }

  .detail-info h1 {
    font-size: 45px
  }

  .spec-pills {
    grid-template-columns: 1fr 1fr
  }

  .spec-table td:first-child {
    width: 45%
  }
}
/* =========================================================
   HOMEPAGE FEATURED PRODUCTS
   Center carousel with side-card previews
========================================================= */

.featured-products-wrap {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.featured-products {
  position: relative;
  width: 100%;
  max-width: 1180px;
  height: 470px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.featured-product {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 700px;
  height: 390px;

  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;

  padding: 28px;

  display: grid;
  grid-template-columns: 44% 56%;
  align-items: center;

  box-shadow: 0 18px 50px rgba(17, 18, 20, .08);

  opacity: 0;
  pointer-events: none;

  transform: translate(-50%, -50%) scale(.72);

  transition:
    transform .55s cubic-bezier(.22, .61, .36, 1),
    opacity .45s ease,
    filter .45s ease;

  z-index: 1;
}


/* =========================================================
   ACTIVE CENTER CARD
========================================================= */

.featured-product.featured-active,
.featured-product.is-active {
  transform: translate(-50%, -50%) scale(1);

  opacity: 1;

  z-index: 10;

  pointer-events: auto;

  box-shadow:
    0 28px 70px rgba(17, 18, 20, .14);
}


/* =========================================================
   PREVIOUS CARD
========================================================= */

.featured-product.featured-prev-card {
  transform:
    translate(calc(-50% - 390px), -50%)
    scale(.76);

  opacity: .42;

  z-index: 3;

  pointer-events: none;

  filter: saturate(.75);
}


/* =========================================================
   NEXT CARD
========================================================= */

.featured-product.featured-next-card {
  transform:
    translate(calc(-50% + 390px), -50%)
    scale(.76);

  opacity: .42;

  z-index: 3;

  pointer-events: none;

  filter: saturate(.75);
}


/* =========================================================
   SIDE CARD CONTENT
   Keep cards visible but prevent text clutter
========================================================= */

.featured-product.featured-prev-card .featured-product-content,
.featured-product.featured-next-card .featured-product-content {
  opacity: .30;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.featured-product-image {
  width: 100%;
  height: 310px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 10px;
}

.featured-product-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;

  filter:
    drop-shadow(0 18px 20px rgba(0, 0, 0, .10));

  transition: transform .45s ease;
}

.featured-product.featured-active .featured-product-image img,
.featured-product.is-active .featured-product-image img {
  transform: scale(1.06);
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.featured-product-content {
  padding: 10px 15px 10px 30px;

  transition: opacity .4s ease;
}

.featured-product-tag {
  display: inline-flex;

  background: #111;
  color: #fff;

  padding: 7px 12px;

  border-radius: 999px;

  font-size: 10px;
  font-weight: 900;

  letter-spacing: .02em;

  margin-bottom: 16px;
}

.featured-product-content h3 {
  margin: 0 0 16px;

  font-size: 32px;
  line-height: 1.08;

  letter-spacing: -.045em;
}

.featured-product-content p {
  margin: 0 0 18px;

  color: var(--muted);

  font-size: 13px;
  line-height: 1.55;

  max-width: 350px;
}


/* =========================================================
   META / SPEED
========================================================= */

.featured-product-meta {
  display: flex;
  gap: 7px;

  flex-wrap: wrap;

  margin-bottom: 22px;
}

.featured-product-meta span {
  display: inline-flex;

  background: #f2f3f4;

  padding: 8px 11px;

  border-radius: 8px;

  font-size: 11px;
  font-weight: 850;
}


/* =========================================================
   BUTTONS
========================================================= */

.featured-product-actions {
  display: flex;
  gap: 10px;

  flex-wrap: wrap;
}

.featured-product-actions .btn {
  padding: 11px 15px;

  font-size: 12px;
}


/* =========================================================
   LEFT / RIGHT ARROWS
========================================================= */

.featured-arrow {
  position: absolute;

  top: 50%;

  width: 48px;
  height: 48px;

  border: 1px solid var(--line);
  border-radius: 50%;

  background: #fff;
  color: #111;

  display: grid;
  place-items: center;

  font-size: 22px;
  font-weight: 800;

  cursor: pointer;

  z-index: 50;

  transform: translateY(-50%);

  box-shadow: 0 8px 25px rgba(0, 0, 0, .06);

  transition:
    background .2s ease,
    color .2s ease,
    box-shadow .2s ease;
}

.featured-arrow:hover {
  background: #111;
  color: #fff;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, .15);
}

.featured-prev {
  left: 10px;
}

.featured-next {
  right: 10px;
}


/* =========================================================
   DOTS
========================================================= */

.featured-dots {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 7px;

  margin-top: 4px;
}

.featured-dots button {
  width: 8px;
  height: 8px;

  padding: 0;

  border: 0;

  border-radius: 999px;

  background: #d0d1d3;

  cursor: pointer;

  transition:
    width .25s ease,
    background .25s ease;
}

.featured-dots button.active {
  width: 28px;

  background: var(--red);
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:1000px) {

  .featured-products-wrap {
    height: 500px;
  }

  .featured-products {
    height: 450px;
  }

  .featured-product {
    width: 600px;
    height: 370px;

    grid-template-columns: 43% 57%;
  }

  .featured-product.featured-prev-card {
    transform:
      translate(calc(-50% - 300px), -50%)
      scale(.73);
  }

  .featured-product.featured-next-card {
    transform:
      translate(calc(-50% + 300px), -50%)
      scale(.73);
  }

  .featured-product-image {
    height: 280px;
  }

  .featured-product-content h3 {
    font-size: 27px;
  }

  .featured-prev {
    left: 0;
  }

  .featured-next {
    right: 0;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:650px) {

  .featured-products-wrap {
    height: 590px;
    overflow: hidden;
  }

  .featured-products {
    height: 550px;
  }

  .featured-product {
    width: calc(100% - 48px);
    height: 500px;

    padding: 18px;

    display: flex;
    flex-direction: column;

    transform:
      translate(-50%, -50%)
      scale(.8);
  }

  .featured-product.featured-active,
  .featured-product.is-active {
    transform:
      translate(-50%, -50%)
      scale(1);
  }

  .featured-product.featured-prev-card {
    transform:
      translate(calc(-50% - 75%), -50%)
      scale(.72);

    opacity: .25;
  }

  .featured-product.featured-next-card {
    transform:
      translate(calc(-50% + 75%), -50%)
      scale(.72);

    opacity: .25;
  }

  .featured-product-image {
    width: 100%;
    height: 250px;

    padding: 5px;
  }

  .featured-product-content {
    width: 100%;

    padding: 12px 3px 3px;
  }

  .featured-product-tag {
    margin-bottom: 9px;
  }

  .featured-product-content h3 {
    font-size: 24px;

    margin-bottom: 12px;
  }

  .featured-product-content p {
    font-size: 12px;

    margin-bottom: 12px;
  }

  .featured-product-meta {
    margin-bottom: 14px;
  }

  .featured-product-actions {
    width: 100%;
  }

  .featured-product-actions .btn {
    flex: 1;
  }

  .featured-arrow {
    width: 40px;
    height: 40px;

    font-size: 18px;
  }

  .featured-prev {
    left: 0;
  }

  .featured-next {
    right: 0;
  }
}