/* ================================================================
   FLIRTYFLUFFERS — MODERN DESIGN LAYER
   Betűtípus és UI modernizáció | Nem módosítja a színváltozókat
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&display=swap');

/* ================================================================
   1. GLOBÁLIS TYPOGRAPHY RESET
   ================================================================ */

*,
*::before,
*::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6,
.page-title h1,
.bs_title_white h3,
.bs_title_black h3,
.bs_title_white h4,
.bs_title_black h4,
.product-title a,
.overview .product-name h1,
.bs_product_name_detail_page h1,
.news-head,
.post-head,
.fieldset .title,
.section .title,
.write-review,
.footer-block .title {
  font-family: 'Syne', sans-serif;
  letter-spacing: 0.02em;
}

/* Navigation + UI elemek */
.top-menu > li > a,
.header-links span,
.header-links a,
.header-menu > ul > li > a,
.button-1,
.button-2,
.bs_primary_button,
.bs_secondary_button,
.bs_add_to_cart_button,
.overview .bs_add_to_cart_button,
.cart-footer .checkout-button,
.product-box-add-to-cart-button,
.menu-toggle,
input[type="button"],
input[type="submit"],
input[type="reset"],
button,
.pager li a,
.pager li span,
.block .title {
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.04em;
}

/* ================================================================
   2. HEADINGS STÍLUSOK
   ================================================================ */

h1 { font-size: clamp(26px, 3.5vw, 48px); font-weight: 600; line-height: 1.15; }
h2 { font-size: clamp(20px, 2.8vw, 36px); font-weight: 600; line-height: 1.25; }
h3 { font-size: clamp(16px, 2vw, 26px); font-weight: 500; line-height: 1.35; }
h4 { font-size: clamp(14px, 1.8vw, 22px); font-weight: 500; line-height: 1.4; }

.page-title h1 {
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Section title dekorációk refinement */
.bs_title_white h3,
.bs_title_black h3 {
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bs_title_white h4,
.bs_title_black h4 {
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ================================================================
   3. HEADER MODERNIZÁCIÓ
   ================================================================ */

/* Header wrapper — letisztult, glass effect a sticky-n */
.header {
  backdrop-filter: blur(0px);
  transition: backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

/* Header upper — taglines, selectors */
.header-upper {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* Logo */
.header-logo a img {
  transition: opacity 0.25s ease;
}
.header-logo a:hover img {
  opacity: 0.8;
}

/* Header links — ikonok, kosár, wishlist */
.header-links a,
.header-links span {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

/* Cart qty badge */
.header-links a.ico-cart .cart-qty,
.header-links a.ico-wishlist .wishlist-qty {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  line-height: 16px;
}

/* Search box */
.search-box input.search-box-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em;
  border-radius: 0;
  transition: border-color 0.25s ease;
}

/* ================================================================
   4. NAVIGÁCIÓ MODERNIZÁCIÓ
   ================================================================ */

/* Desktop nav */
.header-menu > ul > li > a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  position: relative;
  transition: color 0.25s ease, transform 0.25s ease;
}

/* Hover underline animáció */
.header-menu > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.header-menu > ul > li > a:hover::after {
  transform: scaleX(1);
}

/* Dropdown sublist */
.header-menu .sublist {
  border-radius: 0;
  border-top: 2px solid currentColor;
}
.header-menu .sublist > li > a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 10px 20px;
  transition: padding-left 0.2s ease, background 0.2s ease;
}
.header-menu .sublist li:hover > a {
  padding-left: 28px;
}

/* ================================================================
   5. GOMBOK MODERNIZÁCIÓ
   ================================================================ */

/* Primary button */
.bs_primary_button,
.button-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 0;
  padding: 12px 24px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

/* Secondary button */
.bs_secondary_button,
.button-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 0;
  padding: 12px 24px;
  transition: all 0.25s ease;
}

/* Add to cart button */
.overview .bs_add_to_cart_button,
.variant-overview .bs_add_to_cart_button {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 0;
  height: 48px;
  padding: 0 32px;
  transition: all 0.3s ease;
}

/* Checkout button */
.cart-footer .checkout-button {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Product grid add to cart */
.bs_item_box_buttons .product-box-add-to-cart-button {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

/* Pager */
.pager li a,
.pager li span {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* View all link */
.block .view-all a,
.bs_border_button {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

/* ================================================================
   6. PRODUCT CARDS MODERNIZÁCIÓ
   ================================================================ */

/* Grid — szoros, 8px gap */
.item-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 8px !important;
  width: 100% !important;
  float: none !important;
}

/* Item box reset */
.item-grid .item-box {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
  background: transparent;
  transition: none;
  border-radius: 5px;
  overflow: hidden;
}

/* Kártya maga */
.item-grid .item-box .product-item {
  background: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

/* ── KÉP TERÜLET ── */
.item-grid .item-box .picture {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #f7f9f8;
}

.item-grid .item-box .picture a {
  display: block;
  width: 100%;
  height: 100%;
}

.item-grid .item-box .picture a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.item-grid .item-box:hover .picture a img {
  transform: scale(1.08);
}

/* Pink overlay hover-on */
.item-grid .item-box .picture::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 18, 190, 0.12);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 1;
}
.item-grid .item-box:hover .picture::after {
  opacity: 1;
}

/* Gombok overlay — alulról csúszik be */
.bs_item_box_buttons {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  top: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 14px 12px !important;
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transform: translateY(100%) !important;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  z-index: 2;
}
.item-grid .item-box:hover .bs_item_box_buttons {
  transform: translateY(0) !important;
}

/* ── DETAILS TERÜLET ── */
.item-grid .item-box .details {
  padding: 12px 14px 16px;
}

/* Termék név */
.item-grid .item-box .product-title {
  margin: 0 0 6px;
}
.item-grid .item-box .product-title a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
  color: #1a1a1a;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.item-grid .item-box .product-title a:hover {
  color: #ff12be;
}

/* Leírás elrejtése — nem kell a gridben */
.item-grid .item-box .description {
  display: none;
}

/* Tax/shipping info elrejtése — gridben zavaró */
.item-grid .item-box .tax-shipping-info,
.item-grid .item-box .base-price-pangv {
  display: none;
}

/* Ár + értékelés sor */
.item-grid .item-box .bs_group_price_ratingstar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}

/* Ár */
.item-grid .item-box .prices {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.item-grid .item-box .price.actual-price {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  letter-spacing: 0;
}
.item-grid .item-box .price.old-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(0,0,0,0.35);
  text-decoration: line-through;
}

/* Értékelés */
.item-grid .item-box .product-rating-box .rating {
  height: 3px;
  width: 60px;
  background: rgba(0,0,0,0.1);
}
.item-grid .item-box .product-rating-box .rating > div {
  height: 100%;
  background: #ff12be;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .item-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 640px) {
  .item-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
  }
  .item-grid .item-box .details {
    padding: 8px 10px 12px;
  }
  .item-grid .item-box .price.actual-price {
    font-size: 14px;
  }
}

/* ================================================================
   7. PRODUCT DETAIL MODERNIZÁCIÓ
   ================================================================ */

/* Termék név */
.overview .product-name h1,
.bs_product_name_detail_page h1 {
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

/* Termék ár */
.overview .product-price,
.variant-overview .product-price {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
}

/* Overview panel */
.overview {
  border-radius: 0;
}

/* Attributes */
.bs_procuct_each_attribute .bs_product_attrubute_label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ================================================================
   8. CATEGORY / SECTION TITLES
   ================================================================ */

/* Home section title dekorációk refinement */
.bs_title_white h3::before,
.bs_title_black h3::before {
  height: 1px;
  width: 40%;
}

/* Sub-category title */
.bs_home_category_item .title a,
.bs_sub_category_item .title a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ================================================================
   9. FORMS MODERNIZÁCIÓ
   ================================================================ */

.bs_input_area input[type="text"],
.bs_input_area input[type="email"],
.bs_input_area input[type="tel"],
.bs_input_area input[type="password"],
.bs_input_area textarea,
.bs_input_area select {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: border-color 0.25s ease;
}

.bs_input_field .bs_text_label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  transition: border-color 0.25s ease;
}

/* ================================================================
   10. BREADCRUMB
   ================================================================ */

.breadcrumb li * {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ================================================================
   11. FOOTER MODERNIZÁCIÓ
   ================================================================ */

.footer {
  font-family: 'DM Sans', sans-serif;
}

.footer-block .title {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bs_footer_link .footer-block .list li a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 28px;
  transition: all 0.2s ease;
}

.footer-lower,
.footer-powered-by,
.footer-info {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.03em;
}

/* Newsletter */
.bs_newsletter_title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.bs_newsletter-subscribe-button,
.newsletter-subscribe-button {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

/* Social link hálózat */
.footer-block.follow-us .networks li {
  transition: transform 0.2s ease, opacity 0.2s ease;
  border-radius: 5px;
  overflow: hidden;
}
.footer-block.follow-us .networks li:hover {
  transform: translateY(-3px);
  opacity: 0.85;
}

/* Newsletter subscribe box */
.bs_newsletter .newsletter-subscribe-button,
.bs_newsletter-subscribe-button {
  border-radius: 0 5px 5px 0 !important;
}
.bs_newsletter input[type="email"],
.newsletter-email {
  border-radius: 5px 0 0 5px !important;
}

/* Footer subscribe box külső wrapper */
.bs_footer_subscribe_box {
  border-radius: 5px;
}

/* ================================================================
   12. LOADING SCREEN (scroll-animation kapcsolódó)
   ================================================================ */

.ff-loading-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 500;
  letter-spacing: 12px;
}

/* ================================================================
   13. SCROLL ANIMATION SZÖVEG OVERLAY
   ================================================================ */

.ff-text-block {
  font-family: 'DM Sans', sans-serif;
}

.ff-text-block .ff-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
}

.ff-text-block h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.ff-text-block p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.8;
}

/* ================================================================
   14. PRODUCT SELECTORS, SORTING
   ================================================================ */

.product-selectors span {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.product-selectors select {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
}

/* ================================================================
   15. PRICE RANGES, LABELS
   ================================================================ */

.overview .tax-shipping-info,
.variant-overview .tax-shipping-info {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.overview .availability .label,
.overview .additional-details .label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ================================================================
   16. NOTIFICATIONS, ALERTS
   ================================================================ */

.bar-notification .content {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.eu-cookie-bar-notification {
  font-family: 'DM Sans', sans-serif;
}

/* ================================================================
   17. TABLES (Cart, Order)
   ================================================================ */

.cart th,
.data-table th {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cart td,
.data-table td {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}

/* ================================================================
   18. SIDEBAR BLOCK
   ================================================================ */

.block .title {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.block .list a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.02em;
  transition: all 0.2s ease;
}

/* ================================================================
   19. MINI CART (FLYOUT)
   ================================================================ */

.mini-shopping-cart .name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.mini-shopping-cart .count {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.03em;
}

.mini-shopping-cart .totals {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
}

.mini-shopping-cart .totals strong {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

/* ================================================================
   20. ABOUT SECTION — három blokk, kép-szöveg váltakozó
   ================================================================ */

.ff-about-section {
  background: #fff;
  padding: 80px 0 40px;
}

.ff-about-block {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto 0;
}

.ff-about-block:nth-child(even) {
  flex-direction: row-reverse;
}

/* Kép oldal */
.ff-about-image {
  flex: 1 1 50%;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  background: #fdf0f9;
}

.ff-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ff-about-block:hover .ff-about-image img {
  transform: scale(1.04);
}

/* Dekorációs szám a kép sarkában */
.ff-about-image::after {
  content: attr(data-num);
  position: absolute;
  bottom: 20px;
  right: 24px;
  font-family: 'Syne', sans-serif;
  font-size: 80px;
  font-weight: 800;
  color: rgba(255, 18, 190, 0.15);
  line-height: 1;
  pointer-events: none;
}

/* Szöveg oldal */
.ff-about-text {
  flex: 1 1 50%;
  padding: 56px 72px;
  position: relative;
}

.ff-about-block:nth-child(1) .ff-about-text { background: #fff; }
.ff-about-block:nth-child(2) .ff-about-text { background: #fff9fd; }
.ff-about-block:nth-child(3) .ff-about-text { background: #fff; }

/* Kis label */
.ff-about-label {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #ff12be;
  margin-bottom: 20px;
}

/* Cím */
.ff-about-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: #0d0d0d;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.ff-about-title em {
  font-style: italic;
  color: #ff12be;
}

/* Szöveg */
.ff-about-body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(0,0,0,0.55);
  font-weight: 300;
  max-width: 440px;
}

/* Elválasztó vonal a cím alatt */
.ff-about-title::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: #ff12be;
  margin: 16px 0 0;
}

@media (max-width: 900px) {
  .ff-about-block,
  .ff-about-block:nth-child(even) {
    flex-direction: column;
  }
  .ff-about-image {
    min-height: 280px;
    width: 100%;
  }
  .ff-about-text {
    padding: 36px 28px;
  }
  .ff-about-body {
    max-width: 100%;
  }
}

/* ================================================================
   21. GLOBAL TRANSITIONS — minden hover gyorsabb, simább
   ================================================================ */

a {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.bs_service_box {
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ================================================================
   21. REVIEW SECTION
   ================================================================ */

.product-review-item .review-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.write-review .review-rating label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* ================================================================
   22. ORDER PROGRESS
   ================================================================ */

.order-progress a {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ================================================================
   23. MOBILE MENU
   ================================================================ */

.menu-toggle {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slinky-menu a {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* ================================================================
   24. PRODUCT SPECS TABLE
   ================================================================ */

.product-specs-box td {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.6;
}

.product-specs-box tbody tr td:first-child {
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 12px;
  text-transform: uppercase;
}

/* ================================================================
   25. FELNŐTT KORHATÁR POPUP (Head.cshtml)
   ================================================================ */

/* A JS által generált popup-ot is modernizáljuk inline override-dal,
   de itt adjuk hozzá a körülötte lévő szöveg fontot */
body,
body * {
  font-family: 'DM Sans', sans-serif;
}

/* Az ikonok megtartják a saját font-family-jüket */
.linearicons,
[class^="linearicons-"],
[class*=" linearicons-"],
.l-icon,
.icon,
[class^="bs-"],
[class*=" bs-"] {
  font-family: 'Linearicons', 'BlackShopIcon' !important;
}
