:root {
    --ep-black: #0b0b0f;
    --ep-dark: #141417;
    --ep-gold: #e4ab24;
    --ep-gold-2: #f0b61b;
    --ep-blue: #2d5d94;
    --ep-blue-2: #406c9c;
    --ep-soft: #f6f7fb;
    --ep-text: #232323;
    --ep-muted: #6f7580;
    --ep-border: rgba(0, 0, 0, .08);
    --ep-shadow: 0 18px 55px rgba(0, 0, 0, .08);
    --ep-radius: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ep-text);
    background: #fff;
}

.topbar {
    background: linear-gradient(90deg, var(--ep-gold), var(--ep-gold-2));
    color: #fff;
    font-size: .95rem;
}

.topbar a {
    color: #fff;
    text-decoration: none;
}

.brandbar {
    background: linear-gradient(90deg, #0c0c10, #111116 35%, #151519 65%, #0c0c10);
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.brand-chip {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: .02em;
}

.brand-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(228, 171, 36, .25), rgba(228, 171, 36, .08));
    color: var(--ep-gold);
    box-shadow: inset 0 0 0 1px rgba(228, 171, 36, .18);
}

.navbar {
    --bs-navbar-padding-y: 1rem;
    background: #fff;
    border-bottom: 1px solid var(--ep-border);
}

.navbar .nav-link {
    font-weight: 600;
    color: #2d3440;
}

.btn-gold {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(135deg, var(--ep-gold), var(--ep-gold-2));
  border: 0;
  color: #fff;
  font-weight: 700;
  padding: .9rem 1.4rem;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(228,171,36,.24);
  transition: all .35s ease-in-out;
  z-index: 1;
}
.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0b0b0f;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s ease-in-out;
  z-index: -1;
}

.btn-gold:hover {
  color: #fff;
  border: 1px solid black;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,0,0,.20);
}
.btn-gold:hover::before {
  transform: scaleX(1);
}

.btn-outline-darksoft {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(8px);
  padding: .9rem 1.4rem;
  border-radius: 14px;
  font-weight: 600;
  transition: all .35s ease-in-out;
  z-index: 1;
}

.btn-outline-darksoft::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ep-gold), var(--ep-gold-2));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s ease-in-out;
  z-index: -1;
}

.btn-outline-darksoft:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(228,171,36,.24);
}

.btn-outline-darksoft:hover::before {
  transform: scaleX(1);
}
.brandbar-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.brandbar-logos {
  display: flex;
  flex-wrap: nowrap;
  gap: .75rem;
  align-items: center;
  justify-content: flex-start;
}

.brandbar-center-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height:100px;
}


.company-logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  height: 70px;
  padding: .45rem .65rem;
  /*border-radius: 18px;*/
  /*background: rgba(255,255,255,.04);*/
  /*border: 1px solid rgba(255,255,255,.08);*/
  text-decoration: none;
  transition: .25s ease;
  flex: 0 0 auto;
}

.company-logo-chip:hover {
  transform: translateY(-2px);
  /*background: rgba(255,255,255,.08);*/
}

.company-logo-chip img {
  max-height: 105px;
  max-width: 100%;
  width: 125px;
  object-fit: contain;
  display: block;
}


.brandbar-center-logo {
  text-align: center;
}

.group-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0;
}

.group-logo-link img {
  height: 150px;
  width: 225px;
  max-width: 225px;
  object-fit: contain;
  display: block;
}

.brandbar-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.btn-sm-header {
  padding: .85rem 1.1rem;
  font-size: .95rem;
  white-space: nowrap;
}

.navbar-brand {
  font-size: 1.35rem;
  color: #111827 !important;
  letter-spacing: -.02em;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.cart-btn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--ep-border);
  background: #fff;
  color: #243041;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
  transition: .25s ease;
}

.cart-btn:hover {
  color: #243041;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.cart-btn i {
  font-size: 1.2rem;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 22px;
  height: 22px;
  padding: 0 .35rem;
  border-radius: 999px;
  background: var(--ep-gold);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

@media (max-width: 1199.98px) {
  .brandbar-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brandbar-logos,
  .brandbar-actions,
  .brandbar-center-logo {
    justify-content: center;
  }

  .brandbar-logos {
    flex-wrap: wrap;
  }

  .group-logo-link img {
    height: 74px;
    max-width: 200px;
  }
}


@media (max-width: 991.98px) {
  .navbar-actions {
    margin-top: 1rem;
    justify-content: flex-start;
  }

  .company-logo-chip {
    min-width: 84px;
    min-height: 58px;
  }

  .group-logo-link img {
    max-height: 60px;
  }
  .company-logo-chip {
    width: 84px;
    height: 58px;
  }

  .group-logo-link img {
    height: 64px;
    max-width: 180px;
  }
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 115px 0 80px;
  background:
    linear-gradient(rgba(9, 18, 30, .76), rgba(9, 18, 30, .76)),
    url('../images/hero-bg.jpg') center center / cover no-repeat !important;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 340px;
  height: 340px;
  right: -80px;
  top: -60px;
  background: rgba(228, 171, 36, .10);
  filter: blur(10px);
}

.hero::after {
  width: 260px;
  height: 260px;
  left: -90px;
  bottom: -100px;
  background: rgba(64, 108, 156, .18);
  filter: blur(10px);
}

.hero-centered {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: .58rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.15rem;
  min-height: 46px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ep-gold);
  margin-right: .55rem;
  flex: 0 0 auto;
}

.hero-badge .badge-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(-18px);
  animation: badgeCharDown .36s ease forwards;
}

.hero-badge .badge-space {
  width: .30em;
}

@keyframes badgeCharDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2.7rem, 5.8vw, 5.2rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -.04em;
  max-width: 980px;
  margin: 0 auto;
  min-height: 1.2em;
  color: #fff;
}

.hero-title .gold {
  color: var(--ep-gold);
}

.hero-caret {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: #fff;
  margin-left: 6px;
  vertical-align: middle;
  animation: heroCaretBlink .8s infinite;
}

@keyframes heroCaretBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.hero p {
  color: rgba(255,255,255,.88);
  font-size: 1.08rem;
  line-height: 1.85;
  max-width: 760px;
}

.hero-search {
  padding: 1rem;
  border-radius: 24px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
}

.hero-search-centered {
  max-width: 1040px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

.hero-search .form-select,
.hero-search .form-control {
  min-height: 58px;
  border-radius: 16px;
  border: 0;
  box-shadow: none;
}

#heroProductSelect {
  max-height: 58px;
}

.stats-row {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.stats-row .stat {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
}

.stats-row .stat h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: .35rem;
  color: #fff;
}

@media (max-width: 991.98px) {
  .hero {
    padding: 92px 0 65px;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-search-centered,
  .stats-row {
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding: 78px 0 58px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-search {
    padding: .85rem;
  }
}

.section {
    padding: 88px 0;
}

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

.section-title-sm {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .94rem;
    padding: .5rem .85rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--ep-border);
    color: #1f2937;
    margin-bottom: 1rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .04);
}

.section-title-sm .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ep-gold);
}

.section h2 {
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 1rem;
}

.muted-text {
    color: var(--ep-muted);
    font-size: 1.06rem;
    line-height: 1.8;
}

.category-chip {
    background: #fff;
    border: 1px solid var(--ep-border);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .85rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
    transition: .3s ease;
}

.category-chip:hover,
.product-card:hover,
.type-card:hover,
.trust-card:hover,
.category-panel:hover {
    transform: translateY(-6px);
    box-shadow: var(--ep-shadow);
}

.category-chip-icon,
.type-icon,
.trust-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ep-blue);
    background: linear-gradient(135deg, rgba(64, 108, 156, .14), rgba(228, 171, 36, .12));
    flex: 0 0 auto;
    font-size: 1.45rem;
}

.category-chip h6,
.type-card h6,
.product-card h6,
.category-panel h5,
.trust-card h6 {
    margin: 0;
    font-weight: 700;
}

.type-card,
.product-card,
.trust-card,
.category-panel {
    background: #fff;
    border: 1px solid var(--ep-border);
    border-radius: 24px;
    padding: 1.4rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .05);
    transition: .3s ease;
    height: 100%;
}

.product-card .product-thumb {
    height: 180px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .7), transparent 30%),
        linear-gradient(135deg, rgba(228, 171, 36, .92), rgba(64, 108, 156, .7));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.product-card .product-thumb::after {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .22);
    right: 12px;
    bottom: -20px;
}

.meta {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-bottom: .85rem;
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .38rem .7rem;
    border-radius: 999px;
    background: #f7f8fb;
    border: 1px solid var(--ep-border);
    font-size: .82rem;
    color: #46505f;
    font-weight: 600;
}

.price {
    font-size: 1.32rem;
    font-weight: 800;
    color: var(--ep-blue);
}

.price small {
    color: var(--ep-muted);
    font-size: .88rem;
    font-weight: 600;
}

.category-panel {
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.category-panel::before {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(228, 171, 36, .15), transparent 65%);
    border-radius: 50%;
}

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

.list-check li {
    display: flex;
    gap: .85rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-weight: 600;
}

.list-check i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 171, 36, .16);
    color: var(--ep-gold);
    flex: 0 0 auto;
    margin-top: 2px;
}

.feature-box {
    background: #0d0e12;
    color: #fff;
    border-radius: 28px;
    padding: 2rem;
    min-height: 100%;
    box-shadow: 0 22px 55px rgba(0, 0, 0, .16);
}

.feature-mini {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ep-gold), var(--ep-gold-2));
    color: #fff;
    font-size: 1.55rem;
    margin-bottom: 1rem;
}

.trust-card {
    text-align: left;
}

.cta-band {
    background: linear-gradient(135deg, #20446b, #365f8d 55%, #182839 100%);
    color: #fff;
    border-radius: 34px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-band::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    right: -80px;
    top: -120px;
    border-radius: 50%;
    background: rgba(228, 171, 36, .14);
}

.footer {
    background: #090a0d;
    color: rgba(255, 255, 255, .85);
    border-radius: 34px 34px 0 0;
    margin-top: 90px;
}

.footer a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
}

.footer-brand {
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: 1rem;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    padding: .7rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .12);
    margin-bottom: .9rem;
}

.social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .14);
    margin-right: .45rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .7);
}

@media (max-width: 991.98px) {
    .hero-visual {
        min-height: 400px;
        margin-top: 2rem;
    }

    .showcase {
        width: min(360px, 88%);
    }

    .section {
        padding: 72px 0;
    }

    .cta-band {
        padding: 2rem;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 2.35rem;
    }

    .hero-search {
        padding: .9rem;
    }

    .stats-row .stat h3 {
        font-size: 2rem;
    }

    .footer {
        border-radius: 24px 24px 0 0;
    }
}

.category-chip {
    background: #fff;
    border: 1px solid var(--ep-border);
    border-radius: 18px;
    padding: 1rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .85rem;
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
    transition: .3s ease;
}

.ticker-wrap {
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    width: max-content;
    gap: 1rem;
    animation: ticker-scroll 28s linear infinite;
    will-change: transform;
    padding: .35rem 0;
}

.ticker-wrap:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    flex: 0 0 auto;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.rfq-section {
    background: linear-gradient(135deg, #16314e 0%, #254d78 55%, #101922 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.rfq-section::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(228, 171, 36, 0.14);
}

.rfq-section::after {
    content: "";
    position: absolute;
    left: -80px;
    bottom: -120px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.rfq-panel,
.rfq-form-card {
    position: relative;
    z-index: 2;
    border-radius: 28px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .18);
}

.rfq-feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.rfq-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, .86);
    font-weight: 500;
}

.rfq-feature-list i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 171, 36, .18);
    color: var(--ep-gold);
    flex: 0 0 auto;
    margin-top: 2px;
}

.rfq-form-card .form-control,
.rfq-form-card .form-select {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .96);
    box-shadow: none;
}

.rfq-form-card textarea.form-control {
    min-height: 120px;
    resize: none;
}

.rfq-products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

.rfq-product-item {
    position: relative;
}

.rfq-product-item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.rfq-product-label {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .95rem 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    color: #fff;
    cursor: pointer;
    transition: .25s ease;
    min-height: 100%;
}

.rfq-product-label:hover {
    transform: translateY(-2px);
    border-color: rgba(228, 171, 36, .45);
}

.rfq-product-label i {
    color: var(--ep-gold);
    font-size: 1.15rem;
    margin-top: 2px;
}

.rfq-product-item input:checked+.rfq-product-label {
    background: rgba(228, 171, 36, .16);
    border-color: rgba(228, 171, 36, .55);
    box-shadow: 0 10px 24px rgba(228, 171, 36, .14);
}

.rfq-product-name {
    font-weight: 700;
    line-height: 1.35;
    display: block;
}

.rfq-product-meta {
    display: block;
    font-size: .82rem;
    color: rgba(255, 255, 255, .72);
    margin-top: .2rem;
}

.rfq-selected-box {
    border-radius: 16px;
    background: rgba(0, 0, 0, .16);
    border: 1px dashed rgba(255, 255, 255, .18);
    padding: 1rem;
}

.rfq-selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-top: .75rem;
}

.rfq-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .75rem;
    border-radius: 999px;
    background: rgba(228, 171, 36, .16);
    border: 1px solid rgba(228, 171, 36, .35);
    color: #fff;
    font-size: .84rem;
    font-weight: 600;
}

.rfq-tag button {
    background: transparent;
    border: 0;
    color: #fff;
    line-height: 1;
    padding: 0;
    font-size: .9rem;
}

@media (max-width: 991.98px) {
    .rfq-products-grid {
        grid-template-columns: 1fr;
    }
}

a.btn.btn-light.border.flex-fill,
a.btn.btn-soft.flex-fill {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 14px;
  font-weight: 600;
  transition: all .35s ease-in-out;
  z-index: 1;
}

a.btn.btn-light.border.flex-fill {
  background: #fff;
  color: #2d3440;
  border: 1px solid var(--ep-border);
}

a.btn.btn-soft.flex-fill {
  background: #f6f7fb;
  color: #2d3440;
  border: 1px solid var(--ep-border);
}

a.btn.btn-light.border.flex-fill::before,
a.btn.btn-soft.flex-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--ep-gold), var(--ep-gold-2));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .4s ease-in-out;
  z-index: -1;
}

a.btn.btn-light.border.flex-fill:hover,
a.btn.btn-soft.flex-fill:hover {
  color: #fff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(228, 171, 36, .24);
}

a.btn.btn-light.border.flex-fill:hover::before,
a.btn.btn-soft.flex-fill:hover::before {
  transform: scaleX(1);
}

.cart-side-wrap{
    display: flex;
    justify-content: end;
    align-items: end;
    flex-direction: column;
    gap: 15px;
}
@media (max-width: 991.98px) {
    .cart-side-wrap{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }
    .cart-side-wrap .qty-box{
        min-width: 100px;
    }
    .cart-side-wrap .price,
    .cart-side-wrap .line-total{
        font-size:1rem;
    }
}


.product-offer-badge {
    position: absolute;
    width: 100px;
    height: 40px;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .45rem .8rem;
    border-radius: 999px;
    color: #fff;
    font-size: .85rem;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
  }

.product-offer-badge.sale {
background: linear-gradient(135deg, var(--ep-gold), var(--ep-gold-2));
}

.product-offer-badge.hot {
    background: linear-gradient(135deg, #d94b4b, #f07a2f);
}

.product-offer-badge.limited {
    background: linear-gradient(135deg, #f0b61b, #d79b0d);
}
@media (max-width: 575.98px) {
    .product-offer-badge {
      top: .85rem;
      left: .85rem;
      font-size: .68rem;
      padding: .4rem .7rem;
    }

}

/*promo bar sticky top*/
.promo-strip {
  position: relative;
  z-index: 1055;
  background: linear-gradient(135deg, #16314e 0%, #254d78 55%, #101922 100%);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .10);
  transition: transform .25s ease, box-shadow .25s ease;
}
.promo-strip.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1055;
}

.promo-strip-placeholder {
  display: none;
}

.promo-strip-placeholder.active {
  display: block;
}

/* because navbar is also sticky-top */

.navbar.sticky-top {
    top: 0;
  z-index: 1050;
}

.promo-strip-inner {
  min-height: 56px;
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: .75rem;
}

.promo-slider {
  position: relative;
  min-height: 56px;
  overflow: hidden;
}

.promo-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .35s ease;
  padding: .4rem 0;
  white-space: nowrap;
}

.promo-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.promo-slide p {
  margin: 0;
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.4;
}

.promo-slide a {
  color: var(--ep-gold);
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  flex: 0 0 auto;
}

.promo-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .34rem .7rem;
  border-radius: 999px;
  background: rgba(228, 171, 36, .16);
  border: 1px solid rgba(228, 171, 36, .28);
  color: var(--ep-gold);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .05em;
  white-space: nowrap;
  flex: 0 0 auto;
}

.promo-nav {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: .25s ease;
}

.promo-nav:hover {
  background: rgba(228, 171, 36, .16);
  border-color: rgba(228, 171, 36, .26);
  color: var(--ep-gold);
}
@media (max-width: 767.98px) {
  .promo-strip.is-fixed + .navbar.sticky-top,
  .promo-strip.is-fixed ~ .navbar.sticky-top {
    top: 92px;
  }
}

@media (max-width: 575.98px) {
  .promo-strip.is-fixed + .navbar.sticky-top,
  .promo-strip.is-fixed ~ .navbar.sticky-top {
    top: 104px;
  }
}

@media (max-width: 767.98px) {
  .promo-strip-inner {
    min-height: 92px;
    grid-template-columns: 34px 1fr 34px;
    gap: .35rem;
  }

  .promo-slider {
    min-height: 92px;
  }

  .promo-slide {
    min-height: 92px;
    flex-direction: column;
    gap: .18rem;
    padding: .45rem 0;
    white-space: normal;
  }

  .promo-tag {
    display: inline-flex;
    font-size: .6rem;
    padding: .22rem .5rem;
    max-width: 100%;
  }

  .promo-slide p {
    font-size: .82rem;
    line-height: 1.22;
    white-space: normal;
    max-width: 100%;
    margin: 0;
    padding: 0 .15rem;
  }

  .promo-slide a {
    display: inline-block;
    font-size: .74rem;
    line-height: 1;
  }

  .promo-nav {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .navbar.sticky-top {
    top: 92px;
  }
}

@media (max-width: 575.98px) {
  .promo-strip-inner {
    min-height: 104px;
  }

  .promo-slider,
  .promo-slide {
    min-height: 104px;
  }

  .promo-slide p {
    font-size: .78rem;
  }

  .promo-slide a {
    font-size: .7rem;
  }

  .promo-tag {
    font-size: .56rem;
    padding: .2rem .45rem;
  }

  .navbar.sticky-top {
    top: 104px;
  }
}