/* ER Engine — 2026 storefront redesign */
:root {
  --ee-ink: #0b1220;
  --ee-navy: #101d32;
  --ee-navy-2: #172945;
  --ee-blue: #244a7c;
  --ee-orange: #f47b20;
  --ee-orange-2: #ff9a47;
  --ee-paper: #ffffff;
  --ee-bg: #f3f6fa;
  --ee-line: #dfe6ee;
  --ee-muted: #667085;
  --ee-success: #16a36a;
  --ee-radius: 18px;
  --ee-shadow: 0 18px 55px rgba(15, 29, 50, .10);
}

html {
  scroll-behavior: smooth;
  background: var(--ee-bg);
}

body {
  background: var(--ee-bg) !important;
  color: var(--ee-ink) !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(244, 123, 32, .35) !important;
  outline-offset: 3px;
}

.container {
  width: min(1240px, calc(100% - 40px)) !important;
  max-width: 1240px !important;
}

/* Header */
.desktop .header-classic,
.desktop .header-classic .header {
  background: var(--ee-ink) !important;
}

.desktop .header-classic {
  position: relative;
  z-index: 110;
  box-shadow: 0 12px 40px rgba(2, 8, 23, .20);
}

.desktop .header-classic .top-bar {
  display: none !important;
}

.desktop .header-classic .mid-bar {
  min-height: 94px !important;
  padding: 12px max(24px, calc((100vw - 1240px) / 2)) !important;
  background:
    radial-gradient(circle at 10% 50%, rgba(244, 123, 32, .14), transparent 28%),
    var(--ee-ink) !important;
  border: 0 !important;
}

.desktop .desktop-logo-wrapper {
  min-width: 245px !important;
  padding-right: 28px !important;
}

.desktop #logo img {
  width: auto !important;
  max-width: 200px !important;
  max-height: 68px !important;
  object-fit: contain;
}

.desktop .desktop-search-wrapper {
  max-width: 610px !important;
  margin: 0 auto !important;
}

.desktop #search .header-search {
  min-height: 52px !important;
  overflow: hidden;
  background: rgba(255, 255, 255, .98) !important;
  border: 1px solid rgba(255, 255, 255, .14) !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .18) !important;
}

.desktop #search .search-input {
  height: 52px !important;
  padding: 0 18px !important;
  color: var(--ee-ink) !important;
  font-size: 15px !important;
}

.desktop #search .search-button {
  width: 58px !important;
  height: 52px !important;
  background: var(--ee-orange) !important;
  color: #fff !important;
  border: 0 !important;
}

.desktop .classic-cart-wrapper {
  gap: 10px;
}

.desktop .secondary-menu .top-menu-14 > .j-menu > li > a,
.desktop .default-cart-wrapper .cart-heading,
.desktop #notification-toggle {
  min-height: 48px !important;
  padding: 10px 14px !important;
  color: #fff !important;
  background: rgba(255, 255, 255, .08) !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 12px !important;
}

.desktop #cart-total,
.desktop .secondary-menu .links-text {
  color: #fff !important;
}

.desktop #notification-icon {
  margin-left: 0 !important;
}

.desktop .desktop-main-menu-wrapper {
  min-height: 54px !important;
  padding: 0 max(24px, calc((100vw - 1240px) / 2)) !important;
  background: var(--ee-navy) !important;
  border-top: 1px solid rgba(255, 255, 255, .07) !important;
  border-bottom: 3px solid var(--ee-orange) !important;
}

.desktop #main-menu > .j-menu {
  display: flex !important;
  justify-content: space-between;
  gap: 4px;
  width: 100%;
}

.desktop #main-menu > .j-menu > li {
  flex: 1 1 auto;
}

.desktop #main-menu > .j-menu > li > a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 51px !important;
  padding: 0 14px !important;
  color: #f7f9fc !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: .025em;
  text-align: center;
  border-radius: 9px 9px 0 0;
}

.desktop #main-menu > .j-menu > li:hover > a {
  color: #fff !important;
  background: rgba(244, 123, 32, .18) !important;
}

/* New homepage */
.ee-home-shell {
  overflow: hidden;
}

.ee-hero {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  padding: 76px 0 68px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 34%, rgba(65, 112, 168, .42), transparent 24%),
    radial-gradient(circle at 12% 90%, rgba(244, 123, 32, .18), transparent 28%),
    linear-gradient(125deg, #07101f 0%, #101f36 50%, #172e4f 100%);
}

.ee-hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  opacity: .30;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to right, #000, transparent 78%);
  mask-image: linear-gradient(to right, #000, transparent 78%);
}

.ee-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, .98fr);
  gap: 40px;
  align-items: center;
}

.ee-hero__grid > div:first-child {
  grid-row: 1;
  grid-column: 1;
}

.ee-hero__grid > .ee-hero__visual {
  grid-row: 1;
  grid-column: 2;
}

.ee-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #ffd6b5;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ee-kicker::before {
  width: 36px;
  height: 3px;
  content: "";
  background: var(--ee-orange);
  border-radius: 10px;
}

.ee-hero h1 {
  max-width: 720px;
  margin: 0 0 22px;
  color: #fff !important;
  font-size: clamp(44px, 5vw, 72px) !important;
  font-weight: 900 !important;
  letter-spacing: -.045em;
  line-height: .98 !important;
}

.ee-hero h1 span {
  color: var(--ee-orange-2);
}

.ee-hero__lead {
  max-width: 650px;
  margin: 0 0 30px;
  color: #d7dfeb;
  font-size: 18px;
  line-height: 1.7;
}

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

.ee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 900;
}

.ee-btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.ee-btn--primary {
  color: #fff !important;
  background: var(--ee-orange);
  box-shadow: 0 14px 30px rgba(244, 123, 32, .28);
}

.ee-btn--primary:hover {
  background: #ff8b32;
}

.ee-btn--ghost {
  color: #fff !important;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .22);
}

.ee-btn--ghost:hover {
  background: rgba(255, 255, 255, .12);
}

.ee-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.ee-hero__trust li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #e6ebf2;
  font-size: 13px;
  font-weight: 700;
}

.ee-hero__trust li::before {
  display: grid;
  width: 22px;
  height: 22px;
  content: "✓";
  place-items: center;
  color: #fff;
  background: var(--ee-success);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
}

.ee-hero__visual {
  position: relative;
  display: grid;
  min-height: 455px;
  place-items: center;
}

.ee-hero__visual::before {
  position: absolute;
  width: 430px;
  height: 430px;
  content: "";
  background: radial-gradient(circle, rgba(70, 125, 188, .42), rgba(23, 41, 69, .04) 64%, transparent 68%);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 50%;
}

.ee-hero__visual::after {
  position: absolute;
  right: 3%;
  bottom: 2%;
  left: 3%;
  height: 55px;
  content: "";
  opacity: .45;
  background: rgba(0, 0, 0, .72);
  border-radius: 50%;
  filter: blur(22px);
}

.ee-hero__visual img {
  position: relative;
  z-index: 2;
  width: min(100%, 520px);
  max-height: 490px;
  object-fit: contain;
  filter: drop-shadow(0 28px 35px rgba(0,0,0,.42));
  transform: rotate(2deg);
}

.ee-hero__badge {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 18px;
  max-width: 210px;
  padding: 15px 18px;
  color: #fff;
  background: rgba(9, 19, 34, .80);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,.24);
  backdrop-filter: blur(12px);
}

.ee-hero__badge strong,
.ee-hero__badge span {
  display: block;
}

.ee-hero__badge strong {
  margin-bottom: 3px;
  color: var(--ee-orange-2);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ee-hero__badge span {
  font-size: 13px;
  line-height: 1.45;
}

.ee-brand-section {
  padding: 72px 0 62px;
  background: var(--ee-paper);
}

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

.ee-section-heading__eyebrow {
  margin: 0 0 9px;
  color: var(--ee-orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ee-section-heading h2 {
  margin: 0;
  color: var(--ee-ink) !important;
  font-size: clamp(30px, 3.2vw, 46px) !important;
  font-weight: 900 !important;
  letter-spacing: -.035em;
}

.ee-section-heading > p {
  max-width: 480px;
  margin: 0;
  color: var(--ee-muted);
  line-height: 1.65;
}

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

.ee-brand-card[data-brand="hyundai"] {
  --ee-brand: #002c5f;
}

.ee-brand-card[data-brand="kia"] {
  --ee-brand: #05141f;
}

.ee-brand-card[data-brand="volkswagen"] {
  --ee-brand: #001e50;
}

.ee-brand-card[data-brand="ford"] {
  --ee-brand: #003478;
}

.ee-brand-card[data-brand="nissan"] {
  --ee-brand: #c3002f;
}

.ee-brand-card[data-brand="peugeot"] {
  --ee-brand: #1c4f8a;
}

.ee-brand-card {
  --ee-brand: var(--ee-navy);
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 180px;
  padding: 26px;
  overflow: hidden;
  color: var(--ee-ink) !important;
  background: linear-gradient(145deg, #fff 0%, #f4f7fb 100%);
  border: 1px solid var(--ee-line);
  border-radius: var(--ee-radius);
  box-shadow: 0 12px 32px rgba(15, 29, 50, .06);
}

.ee-brand-card::before {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--ee-brand), var(--ee-orange));
  transform: scaleX(.18);
  transform-origin: left;
  transition: transform .28s ease;
}

.ee-brand-card::after {
  position: absolute;
  z-index: -1;
  right: -38px;
  bottom: -50px;
  width: 150px;
  height: 150px;
  content: "";
  background: linear-gradient(135deg, rgba(36, 74, 124, .08), rgba(244, 123, 32, .18));
  border-radius: 50%;
}

.ee-brand-card:hover {
  color: var(--ee-ink) !important;
  border-color: color-mix(in srgb, var(--ee-brand) 42%, #dfe6ee);
  box-shadow: var(--ee-shadow);
  transform: translateY(-4px);
  text-decoration: none;
}

.ee-brand-card:hover::before {
  transform: scaleX(1);
}

.ee-brand-card > .ee-brand-card__mark {
  display: grid;
  width: 56px;
  height: 52px;
  margin-top: 0;
  margin-bottom: 24px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--ee-brand), var(--ee-ink));
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(11, 18, 32, .16);
  transition: transform .25s ease, box-shadow .25s ease;
}

.ee-brand-card:hover > .ee-brand-card__mark {
  box-shadow: 0 14px 30px rgba(11, 18, 32, .22);
  transform: translateY(-2px) scale(1.04);
}

.ee-brand-card__mark img {
  display: block;
  width: 38px;
  height: 38px;
  margin: 0;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ee-brand-card strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 18px;
  font-weight: 900;
}

.ee-brand-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 6px;
  color: var(--ee-muted);
  font-size: 13px;
}

.ee-brand-card__arrow {
  position: absolute !important;
  z-index: 2 !important;
  right: 22px;
  bottom: 20px;
  display: grid !important;
  width: 36px;
  height: 36px;
  margin: 0 !important;
  place-items: center;
  color: #fff !important;
  background: var(--ee-orange);
  border-radius: 50%;
  font-size: 18px !important;
  transition: transform .22s ease, background-color .22s ease;
}

.ee-brand-card:hover .ee-brand-card__arrow {
  background: var(--ee-brand);
  transform: translateX(3px);
}

/* Hide the previous home composition; keep live product modules. */
.route-common-home .grid-row-top-1,
.route-common-home .grid-row-top-5,
.route-common-home .grid-row-top-9,
.route-common-home .grid-row-top-10 {
  display: none !important;
}

.route-common-home #top {
  background: var(--ee-bg);
}

.route-common-home .grid-row-top-6,
.route-common-home .grid-row-top-8 {
  width: min(1240px, calc(100% - 40px)) !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 64px 0 18px !important;
  background: transparent !important;
}

.route-common-home .grid-row-top-8 {
  padding-top: 20px !important;
  padding-bottom: 70px !important;
}

.route-common-home .module-blocks-367 {
  margin-bottom: 24px !important;
}

.route-common-home .module-blocks-367 .block-content {
  color: var(--ee-orange) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: .14em;
}

.route-common-home .module-blocks-367 .block-content::after {
  display: block;
  margin-top: 7px;
  content: "Yeni eklenen motor seçenekleri";
  color: var(--ee-ink);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -.035em;
  text-transform: none;
}

/* Product cards */
.main-products.product-grid,
.route-common-home .module-products-362 .product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.main-products.product-grid > .product-layout,
.route-common-home .module-products-362 .product-grid > .product-layout {
  width: auto !important;
  min-width: 0 !important;
  padding: 0 !important;
}

.product-thumb {
  height: 100%;
  overflow: hidden !important;
  background: var(--ee-paper) !important;
  border: 1px solid var(--ee-line) !important;
  border-radius: var(--ee-radius) !important;
  box-shadow: 0 8px 28px rgba(15, 29, 50, .055) !important;
}

.product-thumb:hover {
  border-color: rgba(244, 123, 32, .52) !important;
  box-shadow: var(--ee-shadow) !important;
  transform: translateY(-5px);
}

.product-thumb .image {
  min-height: 290px !important;
  padding: 18px !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, #fff 0%, #f3f6fa 66%, #edf1f6 100%) !important;
}

.product-thumb .image .product-img,
.product-thumb .image .product-img > div {
  height: 100% !important;
}

.product-thumb .image img {
  width: 100% !important;
  height: 260px !important;
  max-height: 260px !important;
  object-fit: contain !important;
  transition: transform .35s ease !important;
}

.product-thumb:hover .image img.img-first {
  transform: scale(1.035);
}

.product-thumb .quickview-button,
.product-thumb .rating.no-rating,
.product-thumb .description,
.has-zero-price .product-thumb .price,
.has-zero-price .product-thumb .buttons-wrapper,
.has-zero-price .product-thumb .extra-group {
  display: none !important;
}

.product-thumb .caption {
  display: flex !important;
  flex-direction: column;
  min-height: 190px;
  padding: 21px !important;
}

.product-thumb .name {
  min-height: 50px;
  margin: 0 0 10px !important;
}

.product-thumb .name a {
  color: var(--ee-ink) !important;
  font-size: 15px !important;
  font-weight: 850 !important;
  line-height: 1.45 !important;
}

.has-zero-price .product-thumb .caption::before {
  display: block;
  margin: 0 0 14px;
  content: "Fiyat ve uyumluluk için iletişime geçin";
  color: var(--ee-muted);
  font-size: 12px;
  line-height: 1.45;
}

.product-thumb #urunuincele {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100% !important;
  min-height: 44px;
  margin-top: auto !important;
  padding: 0 15px !important;
  color: #fff !important;
  background: var(--ee-navy) !important;
  border: 0 !important;
  border-radius: 10px !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

.product-thumb #urunuincele::after {
  content: "→";
  color: var(--ee-orange-2);
  font-size: 18px;
}

.product-thumb #urunuincele:hover {
  background: var(--ee-orange) !important;
}

.product-thumb #urunuincele:hover::after {
  color: #fff;
}

.module-products.carousel-mode {
  padding: 30px 24px 38px !important;
  background: var(--ee-navy) !important;
  border-radius: 24px !important;
}

.module-products.carousel-mode .product-thumb {
  border-color: rgba(255,255,255,.10) !important;
}

/* Local SEO and FAQ */
.route-common-home .er-local-seo {
  width: min(1240px, calc(100% - 40px)) !important;
  max-width: 1240px !important;
  margin: 0 auto 72px !important;
  padding: 42px !important;
  color: var(--ee-ink) !important;
  background: var(--ee-paper) !important;
  border: 1px solid var(--ee-line) !important;
  border-left: 6px solid var(--ee-orange) !important;
  border-radius: 22px !important;
  box-shadow: var(--ee-shadow) !important;
}

.route-common-home .er-local-seo h2 {
  color: var(--ee-ink) !important;
  font-weight: 900 !important;
  letter-spacing: -.025em;
}

.route-common-home .er-local-seo__contact {
  background: var(--ee-navy) !important;
  border-radius: 16px !important;
}

.route-common-home .er-local-seo__contact h2 {
  color: #fff !important;
}

.route-common-home .er-local-seo__contact a {
  background: var(--ee-orange) !important;
  border-color: var(--ee-orange) !important;
}

.route-common-home .er-local-seo__faq article {
  border: 1px solid var(--ee-line);
  box-shadow: none !important;
}

/* Breadcrumbs and page titles */
.breadcrumb {
  display: flex !important;
  flex-wrap: wrap;
  gap: 7px;
  width: min(1240px, calc(100% - 40px)) !important;
  max-width: 1240px !important;
  margin: 22px auto 10px !important;
  padding: 0 !important;
  color: var(--ee-muted) !important;
  background: transparent !important;
}

.breadcrumb > li > a,
.breadcrumb > li {
  color: var(--ee-muted) !important;
  font-size: 12px !important;
}

.title.page-title,
#content > h1 {
  margin: 28px 0 30px !important;
  color: var(--ee-ink) !important;
  font-size: clamp(30px, 3.6vw, 48px) !important;
  font-weight: 900 !important;
  letter-spacing: -.035em;
  line-height: 1.12 !important;
}

/* Category pages */
.route-product-category #product-category,
.route-product-category #content {
  background: transparent !important;
}

.route-product-category #product-category {
  padding-top: 16px;
  padding-bottom: 72px;
}

.route-product-category .products-filter {
  margin: 0 0 28px !important;
  padding: 13px 16px !important;
  background: var(--ee-paper) !important;
  border: 1px solid var(--ee-line) !important;
  border-radius: 14px !important;
  box-shadow: 0 6px 20px rgba(15, 29, 50, .05);
}

.route-product-category .products-filter select,
.route-product-category .products-filter button {
  border-radius: 9px !important;
}

.route-product-category .pagination {
  margin-top: 34px !important;
}

.route-product-category .pagination > li > a,
.route-product-category .pagination > li > span {
  min-width: 38px;
  min-height: 38px;
  margin: 0 3px;
  color: var(--ee-ink) !important;
  background: #fff !important;
  border: 1px solid var(--ee-line) !important;
  border-radius: 9px !important;
}

.route-product-category .pagination > .active > span {
  color: #fff !important;
  background: var(--ee-orange) !important;
  border-color: var(--ee-orange) !important;
}

/* Product detail */
.route-product-product #product-product {
  padding-top: 18px !important;
  padding-bottom: 76px !important;
}

.route-product-product .product-info {
  display: grid !important;
  grid-template-columns: minmax(0, 1.06fr) minmax(390px, .94fr);
  gap: 46px !important;
  align-items: start;
}

.route-product-product .product-left,
.route-product-product .product-right {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.route-product-product .product-right {
  position: static !important;
  z-index: auto !important;
}

.route-product-product .product-image {
  padding: 28px !important;
  overflow: hidden;
  background: var(--ee-paper) !important;
  border: 1px solid var(--ee-line) !important;
  border-radius: 22px !important;
  box-shadow: var(--ee-shadow) !important;
}

.route-product-product .product-image img {
  max-height: 560px !important;
  object-fit: contain !important;
}

.route-product-product .product-details {
  position: static !important;
  top: auto !important;
  margin: 0 !important;
  padding: 30px !important;
  background: var(--ee-paper) !important;
  border: 1px solid var(--ee-line) !important;
  border-radius: 22px !important;
  box-shadow: var(--ee-shadow) !important;
}

.route-product-product .product-details .title.page-title,
.route-product-product #content .page-title {
  margin: 0 0 20px !important;
  color: var(--ee-ink) !important;
  font-family: Inter, "Segoe UI", Arial, sans-serif !important;
  font-size: clamp(25px, 3vw, 38px) !important;
  font-weight: 900 !important;
  letter-spacing: -.03em;
  line-height: 1.18 !important;
}

.route-product-product .product-info.has-zero-price .product-price-group {
  display: none !important;
}

.ee-product-contact {
  margin: 22px 0 !important;
  padding: 22px !important;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 123, 32, .24), transparent 36%),
    var(--ee-navy) !important;
  border-radius: 16px !important;
}

.ee-product-contact__label {
  display: block;
  margin-bottom: 5px;
  color: var(--ee-orange-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ee-product-contact strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 19px;
  line-height: 1.35;
}

.ee-product-contact p {
  margin: 0 0 14px;
  color: #dce4ef;
  font-size: 13px;
  line-height: 1.6;
}

.ee-product-contact__actions {
  display: flex;
  gap: 9px;
}

.ee-product-contact__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 15px;
  color: #fff !important;
  background: var(--ee-orange);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 900;
}

.ee-product-contact__actions a + a {
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
}

.route-product-product .product-info.has-zero-price .button-group-page {
  display: none !important;
}

.route-product-product .nav-tabs {
  display: flex !important;
  gap: 8px;
  margin-top: 46px !important;
  border: 0 !important;
}

.route-product-product .nav-tabs > li > a {
  padding: 12px 18px !important;
  color: var(--ee-muted) !important;
  background: #fff !important;
  border: 1px solid var(--ee-line) !important;
  border-radius: 10px !important;
  font-weight: 800 !important;
}

.route-product-product .nav-tabs > li.active > a {
  color: #fff !important;
  background: var(--ee-navy) !important;
  border-color: var(--ee-navy) !important;
}

.route-product-product .tab-content {
  padding: 30px !important;
  background: #fff !important;
  border: 1px solid var(--ee-line) !important;
  border-radius: 0 16px 16px !important;
  line-height: 1.75;
}

/* Forms and buttons */
.btn {
  border-radius: 10px !important;
  font-weight: 800 !important;
}

.btn-primary,
.btn-cart {
  background: var(--ee-orange) !important;
  border-color: var(--ee-orange) !important;
}

.form-control {
  min-height: 44px;
  border-color: var(--ee-line) !important;
  border-radius: 10px !important;
  box-shadow: none !important;
}

.form-control:focus {
  border-color: var(--ee-orange) !important;
  box-shadow: 0 0 0 3px rgba(244, 123, 32, .12) !important;
}

/* Footer */
footer {
  position: relative;
  overflow: hidden;
  color: #cbd5e1 !important;
  background:
    radial-gradient(circle at 92% 16%, rgba(36, 74, 124, .34), transparent 27%),
    var(--ee-ink) !important;
  border-top: 4px solid var(--ee-orange);
}

footer::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: .20;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 100% 34px;
}

footer .grid-row-3,
footer .grid-row-4 {
  width: min(1240px, calc(100% - 40px)) !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 56px 0 34px !important;
  background: transparent !important;
}

footer .grid-row-4 {
  padding-top: 20px !important;
  padding-bottom: 24px !important;
  border-top: 1px solid rgba(255,255,255,.10);
}

footer .grid-cols {
  gap: 30px;
}

footer .module-title {
  margin-bottom: 18px !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

footer a,
footer .links-text {
  color: #b9c5d6 !important;
}

footer a:hover,
footer a:hover .links-text {
  color: var(--ee-orange-2) !important;
}

footer .module-body > li {
  margin-bottom: 9px;
}

.whatsapp-box,
.whatsapp-btn {
  background: var(--ee-success) !important;
  box-shadow: 0 12px 28px rgba(22, 163, 106, .30) !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .main-products.product-grid,
  .route-common-home .module-products-362 .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ee-hero__grid {
    grid-template-columns: 1fr 430px;
  }
}

@media (max-width: 1024px) {
  .mobile .header-classic,
  .mobile .mobile-header,
  .mobile .mobile-bar {
    background: var(--ee-ink) !important;
  }

  .mobile .mobile-bar {
    min-height: 68px !important;
    padding: 8px 14px !important;
    border-bottom: 3px solid var(--ee-orange) !important;
    box-shadow: 0 8px 28px rgba(2, 8, 23, .22) !important;
  }

  .mobile .mobile-logo-wrapper img {
    max-height: 52px !important;
    object-fit: contain;
  }

  .mobile .mobile-bar button,
  .mobile .mobile-bar a,
  .mobile #notification-toggle {
    color: #fff !important;
  }

  .ee-hero {
    min-height: auto;
    padding: 58px 0;
  }

  .ee-hero__grid {
    grid-template-columns: 1fr 390px;
  }

  .ee-hero h1 {
    font-size: 48px !important;
  }

  .ee-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-product-product .product-info {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  .container,
  .breadcrumb,
  .route-common-home .grid-row-top-6,
  .route-common-home .grid-row-top-8,
  .route-common-home .er-local-seo,
  footer .grid-row-3,
  footer .grid-row-4 {
    width: min(100% - 24px, 1240px) !important;
  }

  .ee-hero {
    padding: 44px 0 28px;
  }

  .ee-hero__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ee-hero__grid > div:first-child,
  .ee-hero__grid > .ee-hero__visual {
    grid-row: auto;
    grid-column: 1;
  }

  .ee-kicker {
    margin-bottom: 15px;
  }

  .ee-hero h1 {
    font-size: clamp(38px, 12vw, 52px) !important;
  }

  .ee-hero__lead {
    font-size: 16px;
  }

  .ee-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ee-btn {
    width: 100%;
  }

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

  .ee-hero__visual {
    min-height: 330px;
  }

  .ee-hero__visual::before {
    width: 310px;
    height: 310px;
  }

  .ee-hero__visual img {
    max-height: 330px;
  }

  .ee-hero__badge {
    right: 4px;
    bottom: 0;
  }

  .ee-brand-section {
    padding: 50px 0;
  }

  .ee-section-heading {
    display: block;
  }

  .ee-section-heading > p {
    margin-top: 12px;
  }

  .ee-brand-grid {
    grid-template-columns: 1fr;
  }

  .ee-brand-card {
    min-height: 146px;
  }

  .route-common-home .grid-row-top-6 {
    padding-top: 50px !important;
  }

  .main-products.product-grid,
  .route-common-home .module-products-362 .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-thumb .image {
    min-height: 210px !important;
    padding: 10px !important;
  }

  .product-thumb .image img {
    height: 195px !important;
    max-height: 195px !important;
  }

  .product-thumb .caption {
    min-height: 190px;
    padding: 15px !important;
  }

  .product-thumb .name {
    min-height: 62px;
  }

  .product-thumb .name a {
    font-size: 13px !important;
  }

  .route-common-home .er-local-seo {
    margin-bottom: 50px !important;
    padding: 24px !important;
  }

  .route-common-home .er-local-seo__intro,
  .route-common-home .er-local-seo__faq {
    grid-template-columns: 1fr !important;
  }

  .route-product-product #product-product {
    width: min(100% - 24px, 1240px) !important;
  }

  .route-product-product .product-image {
    padding: 14px !important;
  }

  .route-product-product .product-details {
    margin-top: 14px !important;
    padding: 22px !important;
  }

  .route-product-product .product-details .title.page-title,
  .route-product-product #content .page-title {
    font-size: 27px !important;
  }

  .ee-product-contact__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .route-product-product .nav-tabs {
    overflow-x: auto;
  }

  .route-product-product .nav-tabs > li > a {
    white-space: nowrap;
  }

  .route-product-product .tab-content {
    padding: 20px !important;
  }

  footer .grid-row-3 {
    padding-top: 38px !important;
  }
}

@media (max-width: 420px) {
  .main-products.product-grid,
  .route-common-home .module-products-362 .product-grid {
    grid-template-columns: 1fr;
  }

  .product-thumb .image {
    min-height: 285px !important;
  }

  .product-thumb .image img {
    height: 270px !important;
    max-height: 270px !important;
  }

  .product-thumb .caption {
    min-height: 175px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
