@charset "UTF-8";
/* ================================================
   SoundMart Custom Stylesheet
   Brand colors: Black #000000, Red #cc3333, White #ffffff
   Accent: #8b5cf6
   ================================================ */
/* ================================================================
   SCSS VARIABLES
   ================================================================ */
/* ================================================================
   1. CSS VARIABLES
   ================================================================ */
:root {
  --brand-black: #000000;
  --brand-red: #cc3333;
  --accent: #8b5cf6;
  --gray-3: #dee2e6;
  --gray-5: #e7eaf3;
  --card-bg: #f3f3f3;
  --text-dark: #1f1f1f;
}

/* ================================================================
   2. TYPOGRAPHY
   ================================================================ */
/*
 * Heading types for HTML modules:
 *
 *  1. Module heading (36px, underline):
 *     <div class="d-flex align-items-center border-bottom border-color-1 mb-4">
 *       <h2 class="section-title section-title__full mb-0 pb-2">Title</h2>
 *     </div>
 *
 *  2. Decorated heading (36px, red underline decoration):
 *     <div class="text-center mb-4">
 *       <h2 class="decorated-title">Title</h2>
 *     </div>
 *
 *  3. Welcome / notice heading (24px, centered):
 *     <h2 class="home-welcome">Title</h2>
 */
.section-title {
  font-size: 36px !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  line-height: 46px !important;
}

.decorated-title {
  font-size: 36px !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  line-height: 46px !important;
  display: inline-block !important;
  background-image: linear-gradient(0deg, var(--brand-red) 100%, var(--brand-red) 100%) !important;
  background-repeat: repeat-x !important;
  background-position: 0 36px !important;
  background-size: 2px 8px !important;
  padding-bottom: 8px !important;
}

h1, .h1 {
  font-size: 52px !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  line-height: 66px !important;
}

.home-welcome {
  display: block !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: inherit !important;
  text-align: center;
  margin-bottom: 0 !important;
  padding-top: 22px !important;
  padding-bottom: 8px !important;
}

h4, .h4 {
  font-size: 1.1rem !important;
}

a {
  color: var(--text-dark) !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

a:hover {
  color: var(--accent) !important;
}

p {
  color: var(--text-dark) !important;
}

@media (min-width: 1200px) {
  body {
    font-size: 16px !important;
  }
}
::selection {
  background-color: var(--accent);
  color: #ffffff;
}

/* ================================================================
   3. LAYOUT
   ================================================================ */
.container {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 767px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1432px !important;
  }
}
@media (max-width: 767px) {
  #column-left {
    order: 2;
  }
  #column-right {
    order: 3;
  }
}
/* ================================================================
   4. COLORS & BRAND OVERRIDES
   ================================================================ */
.bg-primary {
  background-color: var(--brand-black) !important;
}

.text-primary {
  color: var(--brand-red) !important;
}

.border-primary {
  border-color: var(--brand-red) !important;
}

.divider-dark {
  border-color: #333333 !important;
}

.section-title::after,
.section-title__full::after {
  background-color: var(--brand-red) !important;
}

.cart-count,
#cart-count {
  background-color: var(--brand-red) !important;
}

@media (min-width: 1200px) {
  .cart-count, #cart-count {
    left: 18px !important;
    top: 14px !important;
  }
}
.input-group.rounded-pill {
  border-color: #444444 !important;
}

.input-group.rounded-pill input::placeholder {
  color: #444444 !important;
  opacity: 1;
}

.input-group.rounded-pill .form-control {
  border-radius: 50rem 0 0 50rem !important;
}

.input-group.rounded-pill .form-control:focus {
  box-shadow: none !important;
  border-color: transparent !important;
}

/* ================================================================
   5. BUTTONS
   ================================================================ */
.btn-primary {
  background-color: var(--brand-black) !important;
  border-color: var(--brand-black) !important;
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 24px !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active {
  background-color: var(--brand-red) !important;
  border-color: var(--brand-red) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 11px rgba(119, 131, 143, 0.35) !important;
  text-decoration: none !important;
}

.btn-soft-secondary {
  background-color: #f0f0f0 !important;
  border-color: transparent !important;
  color: var(--text-dark) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 24px !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  box-shadow: none !important;
}

.btn-soft-secondary:hover,
.btn-soft-secondary:focus,
.btn-soft-secondary:active {
  background-color: #d9d9d9 !important;
  border-color: transparent !important;
  color: var(--text-dark) !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.btn-danger {
  background-color: var(--brand-red) !important;
  border-color: var(--brand-red) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger:active {
  background-color: var(--brand-black) !important;
  border-color: var(--brand-black) !important;
  box-shadow: none !important;
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  color: #000000 !important;
  text-decoration: none !important;
}

.btn-text-link:hover,
.btn-text-link:focus {
  color: var(--accent) !important;
  text-decoration: underline !important;
}

.btn-text-link i {
  font-size: 16px;
  line-height: 1;
}

.cart-totals-block .btn-soft-secondary {
  width: auto !important;
}

.cart-table .btn-primary {
  min-width: 200px !important;
}

.cart-remove-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--gray-3) !important;
  border-radius: 50%;
  line-height: 1;
  font-size: 20px !important;
  transition: border-color 0.15s, color 0.15s;
}
.cart-remove-btn:hover {
  border-color: #dc3545 !important;
  color: #dc3545 !important;
}

.cart-table .product-row-total span {
  font-size: 20px;
  font-weight: 600;
}

#cart-totals-tbody th,
#cart-totals-tbody .amount {
  font-size: 20px;
  font-weight: 600;
}

#cart-totals-tbody tr:last-child th,
#cart-totals-tbody tr:last-child .amount {
  font-size: 28px !important;
  font-weight: 700 !important;
  line-height: 36px;
}

/* ================================================================
   6. ALERTS
   ================================================================ */
.alert {
  background-color: #f5f5f5 !important;
  border: none !important;
  border-left: 4px solid var(--brand-red) !important;
  border-radius: 0 !important;
  color: var(--text-dark) !important;
}

/* ================================================================
   7. HEADER
   ================================================================ */
@media (min-width: 1200px) {
  #header .py-xl-4.bg-white {
    padding-top: 1.2rem !important;
    padding-bottom: 1.2rem !important;
  }
}
.u-header-topbar__nav-link {
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  color: #cccccc !important;
}

.u-header-topbar__nav-link:hover {
  color: #ffffff !important;
}

.u-header-topbar__nav-item + .u-header-topbar__nav-item-border::before,
.u-header-topbar__nav-item + .u-header-topbar__nav-item-border-single > div::before {
  color: #666666 !important;
}

.u-header-topbar .list-inline-item > span.position-relative {
  display: inline-block;
  vertical-align: middle;
}

#header .u-header-topbar .row > div:first-child {
  padding-left: 16px !important;
}

#header .u-header-topbar .row > div:last-child {
  padding-right: 16px !important;
}

.u-header__navbar--wide.navbar-expand-md .u-header__navbar-nav .nav-item + .nav-item .u-header__nav-link {
  border-left-color: #333333 !important;
}

.u-header__nav-link {
  color: #ffffff !important;
}

.u-header__nav-link:hover {
  color: var(--brand-red) !important;
}

.header-shortcut-link {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  color: var(--text-dark) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.header-shortcut-link i {
  font-size: 24px !important;
  color: var(--text-dark) !important;
  transition: color 0.2s ease;
}

.header-shortcut-link:hover,
.header-shortcut-link:hover i {
  color: var(--accent) !important;
}

.u-header__navbar-brand-default {
  max-height: 40px !important;
  width: auto !important;
  transition: transform 0.3s ease;
}

.u-header__navbar-brand-default:hover {
  transform: scale(1.04);
}

.u-hamburger__inner,
.u-hamburger__inner::before,
.u-hamburger__inner::after {
  background-color: var(--brand-black) !important;
}

@media (max-width: 1199px) {
  .py-2.py-xl-4.bg-white.border-bottom {
    background-color: var(--brand-black) !important;
    border-bottom-color: #333333 !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }
  .header-logo-col {
    padding-left: 6px !important;
    padding-right: 6px !important;
  }
  .u-hamburger__inner,
  .u-hamburger__inner::before,
  .u-hamburger__inner::after {
    background-color: #ffffff !important;
  }
  .ec-shopping-bag {
    color: #ffffff !important;
  }
  .d-xl-none .ec-shopping-bag {
    font-size: 28px !important;
  }
  .u-header__navbar-brand-default {
    max-height: 25px !important;
  }
  .cart-count {
    width: 19px !important;
    height: 19px !important;
    font-size: 10px !important;
    line-height: 19px !important;
    left: 14px !important;
    top: 9px !important;
  }
}
/* ================================================================
   8. FOOTER — BASE
   ================================================================ */
footer {
  margin-top: 15px;
}

footer .container {
  max-width: 1432px !important;
}

/* ================================================================
   9. PRODUCT CARDS (grid view — homepage)
   ================================================================ */
.prodcut-price .font-size-22 {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  line-height: 30px !important;
}

.product-item {
  border: none !important;
}

.products-group .product-item {
  border-right: none !important;
  border-left: none !important;
}

.product-item::after {
  border-right: none !important;
  display: none !important;
}

.product-item__inner {
  padding: 4px !important;
}

.product-item__outer:hover {
  box-shadow: none !important;
  transform: none !important;
}

.product-item__inner:hover {
  box-shadow: none !important;
}

.product-item__footer {
  display: none !important;
}

.product-item__body .d-block {
  overflow: hidden;
  padding: 4%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
}

.subcategories-grid .product-item__body .d-block {
  padding: 18%;
}

.product-item__body .d-block img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease !important;
}

.product-item__body .d-block:hover img {
  transform: scale(1.05) !important;
}

@media (min-width: 1200px) {
  .product-item:hover .product-item__inner:not(.remove-prodcut-hover) {
    position: relative !important;
    box-shadow: none !important;
    z-index: auto !important;
  }
}
.prodcut-price ins {
  font-size: 28px !important;
  color: var(--brand-red) !important;
}

.prodcut-price del {
  font-size: 15px !important;
}

.prodcut-price .position-relative {
  margin-top: 26px;
}

.product-item__title a {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: var(--text-dark) !important;
  line-height: 22px !important;
}

/* ================================================================
   10. CAROUSEL MODULE
   ================================================================ */
/* guard срещу FOUC преди Slick да инициализира слайдера (7 колони desktop / 3 mobile) */
.mod-carousel:not(.slick-initialized) {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.mod-carousel:not(.slick-initialized) > div {
  width: 14.2857142857%;
}

@media (max-width: 767px) {
  .mod-carousel:not(.slick-initialized) > div {
    width: 33.3333333333%;
  }
}
.mod-carousel-box {
  border-color: var(--gray-5) !important;
  aspect-ratio: 2/1;
}

.mod-carousel-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease !important;
}

.mod-carousel-box:hover img {
  transform: scale(1.05) !important;
}

.mod-carousel-item {
  margin: 8px;
}

.mod-carousel-wrap {
  position: relative;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

/* Стрелките са absolute деца директно на .js-slick-carousel (Slick's appendArrows target),
   но той носи Bootstrap .position-static — без this override биха се "изплъзнали" нагоре
   към произволния следващ позициониран родител (различен по височина във всеки модул). */
.js-slick-carousel.position-static {
  position: relative !important;
}

.mod-carousel-prev,
.mod-carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-black);
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0;
  /* !important нужен: побеждава electro/vendor/slick/_slick.scss
     ".u-slick.slick-initialized .js-next, .js-prev { opacity: 1; }",
     което иначе държи стрелките постоянно видими след init, без значение от hover. */
  opacity: 0 !important;
  transition: background 0.2s ease;
}
.mod-carousel-prev:hover,
.mod-carousel-next:hover {
  background: var(--brand-red);
}
.mod-carousel-prev.slick-disabled,
.mod-carousel-next.slick-disabled {
  cursor: not-allowed;
  pointer-events: none;
}

.mod-carousel-wrap:hover .mod-carousel-prev,
.mod-carousel-wrap:hover .mod-carousel-next,
.u-slick:hover .mod-carousel-prev,
.u-slick:hover .mod-carousel-next {
  opacity: 1 !important;
  /* transition само тук => fade-in само при появяване, изчезването остава мигновено */
  transition: opacity 0.25s ease, background 0.2s ease;
}

.u-slick:hover .mod-carousel-prev.slick-disabled,
.u-slick:hover .mod-carousel-next.slick-disabled {
  opacity: 0.3 !important;
}

.mod-carousel-prev {
  left: -24px;
}

.mod-carousel-next {
  right: -24px;
}

/* Продуктови carousel-и: същите кръгли бутони, но вътре в границите (без overflow-hidden clip) */
.u-slick .mod-carousel-prev {
  left: 8px;
}

.u-slick .mod-carousel-next {
  right: 8px;
}

.mod-carousel-wrap .u-slick__pagination {
  margin-top: 24px !important;
}

@media (max-width: 767px) {
  .mod-carousel-wrap {
    padding-left: 0;
    padding-right: 0;
  }
  .mod-carousel-item {
    margin: 10px 6px;
  }
  .mod-carousel-prev,
  .mod-carousel-next {
    display: none !important;
  }
}
/* ================================================================
   11. BANNER GRID
   ================================================================ */
.promo-grid {
  display: grid;
  grid-template-columns: 600px 260px 1fr 1fr;
  grid-template-rows: 290px 290px;
  gap: 12px;
}

.promo-grid__a {
  grid-column: 1;
  grid-row: 1/3;
}

.promo-grid__b {
  grid-column: 2;
  grid-row: 1/3;
}

.promo-grid__c {
  grid-column: 3/5;
  grid-row: 1;
}

.promo-grid__de {
  grid-column: 3/5;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.promo-grid__d {
  height: 100%;
}

.promo-grid__e {
  height: 100%;
}

.promo-grid a {
  display: block;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.promo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-grid a::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 13%, rgba(255, 255, 255, 0.26) 30%, rgba(255, 255, 255, 0.54) 50%, rgba(255, 255, 255, 0.27) 61%, rgba(255, 255, 255, 0) 72%);
  position: absolute;
  left: -100%;
  top: -150%;
  transform: skew(-50deg);
  transition: all 1.5s;
  z-index: 1;
}

.promo-grid a:hover::before {
  left: 100%;
  top: 100%;
}

@media (max-width: 1199px) {
  .promo-grid {
    grid-template-columns: 400px 175px 1fr 1fr;
    grid-template-rows: 195px 195px;
  }
  .promo-grid__de {
    gap: 8px;
  }
}
@media (max-width: 767px) {
  .promo-grid {
    grid-template-columns: 600fr 260fr;
    grid-template-rows: auto;
    gap: 8px;
  }
  .promo-grid__a {
    grid-column: 1;
    grid-row: 1;
  }
  .promo-grid__b {
    grid-column: 2;
    grid-row: 1;
  }
  .promo-grid__c {
    grid-column: 1/3;
    grid-row: 2;
  }
  .promo-grid__de {
    grid-column: 1/3;
    grid-row: 3;
    gap: 8px;
  }
  .promo-grid img {
    height: auto;
    object-fit: unset;
  }
  .promo-grid a {
    height: auto;
  }
}
/* ================================================================
   12. CART PAGE
   ================================================================ */
.checkout-page .buttons {
  display: none !important;
}

.checkout-page .container {
  max-width: 1432px !important;
}

.cart-table table td {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

@media (max-width: 767px) {
  .cart-table table td {
    padding: 6px 8px !important;
  }
  .cart-table tbody tr {
    margin-bottom: 0 !important;
  }
  .cart-table .border-top.space-top-2 {
    padding-top: 8px !important;
  }
  .cart-table .pt-md-3 {
    padding-top: 0 !important;
  }
  .cart-table {
    margin-bottom: 1.5rem !important;
  }
  #shopping-cart-table .table tr {
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
  }
  #shopping-cart-table .table tr td:first-child {
    flex: 0 0 48px;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  #shopping-cart-table .table tr td.product-name-cell {
    flex: 1 1 calc(100% - 48px);
    min-width: 0;
  }
  #shopping-cart-table .table tr td.product-name-cell {
    display: flex !important;
    text-align: left !important;
  }
  #shopping-cart-table .table tr td.product-name-cell::before {
    content: none !important;
  }
  #shopping-cart-table .cart-name-flex {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    min-width: 0;
  }
  #shopping-cart-table .cart-name-text {
    flex: 1 1 auto;
    min-width: 0;
  }
  #shopping-cart-table .cart-mobile-thumb-link {
    display: block;
    flex-shrink: 0;
    width: 62px;
    height: 62px;
    border-radius: 4px;
    overflow: hidden;
  }
  #shopping-cart-table .cart-mobile-thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  #shopping-cart-table .table tr td.product-price-cell,
  #shopping-cart-table .table tr td.product-qty-cell,
  #shopping-cart-table .table tr td.product-row-total {
    flex: 1 1 0;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center !important;
    gap: 4px;
    padding-top: 14px !important;
  }
  #shopping-cart-table .table tr td.product-price-cell::before,
  #shopping-cart-table .table tr td.product-qty-cell::before,
  #shopping-cart-table .table tr td.product-row-total::before {
    content: attr(data-title);
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--brand-black);
  }
  #shopping-cart-table .table tr td.product-price-cell {
    gap: 17px;
  }
  #shopping-cart-table .table tr td.product-row-total {
    gap: 15px;
  }
  #shopping-cart-table .table tbody tr:not(:first-child) {
    border-top: 1px solid var(--gray-3);
    margin-top: 15px;
  }
  #shopping-cart-table .table td {
    font-size: 14px !important;
  }
  #shopping-cart-table .cart-name-text a.text-gray-90 {
    font-size: 14px !important;
  }
  #shopping-cart-table .product-row-total span {
    font-size: 17px !important;
  }
  #shopping-cart-table .cart-qty-select,
  #shopping-cart-table .cart-qty-manual {
    font-size: 13px !important;
  }
}
.cart-table .space-top-2 {
  padding-top: 1rem !important;
}

/* ================================================================
   13. PRODUCT PAGE
   ================================================================ */
.product-page-title {
  display: block !important;
  background-image: none !important;
  padding-bottom: 0 !important;
}

.product-manufacturer-img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
}

.product-rating-link {
  padding-right: 15px;
}

.product-rating-stars {
  font-size: 20px;
}

.product-rating-link .text-secondary {
  font-weight: 400 !important;
}

#product-gallery-slider {
  width: 100%;
  max-width: none !important;
}

.gallery-slide-link {
  display: block;
  aspect-ratio: 16/9 !important;
  height: auto !important;
  background: #fff;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-slide-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-thumbs {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
  background: #f5f5f5;
  padding: 6px;
  margin-top: 8px;
  margin-bottom: 0;
}

.product-thumb-switch {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  cursor: pointer;
  padding: 2px;
  background: #fff;
}

.thumb-hidden-desktop {
  display: none;
}

.thumb-more-btn {
  width: 60%;
  aspect-ratio: 1;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}

.product-thumb-switch.product-thumb-active {
  border-top: 3px solid var(--brand-red) !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: none !important;
}

.product-sticky-col,
.cart-totals-block,
.smopc-summary-col {
  position: sticky;
  top: 20px;
  align-self: flex-start;
}

/* Споделен "повдигнат" вид на карта — тънка рамка + мека сянка.
   Ползван от .product-buy-card (продуктова страница) и #smopc-summary-card
   (checkout) — единствен източник на истина за двете, вместо дублирани
   стойности. Border стойността съвпада с Bootstrap-овия .card (bootstrap.css),
   за да "чете" еднакво и на бял, и на светло-сив (bg-gray-1) фон. */
.card-elevated {
  border: 1px solid rgba(0, 0, 0, 0.125);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.product-buy-card {
  padding: 16px !important;
}

.product-qty-row {
  gap: 8px;
}

.product-page-price {
  font-size: 74px !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  line-height: 74px !important;
}

.product-meta,
.product-stock {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  color: var(--text-dark) !important;
}

.product-qty-wrapper {
  max-width: 140px;
}

.qty-select-ctrl,
.qty-manual-ctrl,
.cart-qty-select,
.cart-qty-manual {
  width: 60px;
  height: 56px;
  padding: 0 18px 0 10px;
  border: 1px solid #ccc;
  border-radius: 1.6rem;
  font-size: 19px;
  font-weight: 600;
  text-align: center;
  text-align-last: center;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23333' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}

.cart-qty-select,
.cart-qty-manual {
  height: 44px;
  font-size: 16px;
}

.cart-qty-manual {
  background-image: none;
  padding: 0 10px;
}

#button-cart {
  height: 56px !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  line-height: 24px !important;
}

.product-action-link {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  color: var(--text-dark) !important;
}

.product-action-link .ec {
  font-size: 24px !important;
  color: var(--text-dark) !important;
}

@media (max-width: 767px) {
  h1 {
    font-size: 28px !important;
    font-weight: 700 !important;
    line-height: 34px !important;
  }
  .home-welcome {
    font-size: 15px !important;
    line-height: 1.3 !important;
  }
  .product-page-title {
    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 32px !important;
  }
  .product-rating-stars {
    font-size: 15px !important;
  }
  .product-manufacturer-img {
    max-height: 28px !important;
  }
  .product-meta-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
  }
  .product-rating-row {
    order: 2 !important;
    margin-bottom: 0 !important;
  }
  .product-manufacturer-link {
    order: 1 !important;
  }
  .product-sticky-col,
  .cart-totals-block,
  .smopc-summary-col {
    position: static !important;
  }
  .product-buy-card {
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
  }
  .product-price-block {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    padding-top: 12px !important;
    display: flex !important;
    align-items: baseline !important;
    flex-wrap: wrap;
    gap: 8px;
  }
  .product-page-price {
    font-size: 32px !important;
    line-height: 36px !important;
  }
  .product-price-block .font-size-26 {
    font-size: 16px !important;
  }
  .product-thumbs {
    grid-template-columns: repeat(6, 1fr) !important;
  }
  .product-thumb-switch {
    width: 100% !important;
  }
  .thumb-hidden-mobile {
    display: none;
  }
  #button-cart {
    height: 44px !important;
    font-size: 16px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .product-action-link {
    font-size: 13px !important;
  }
  .product-action-link .ec {
    font-size: 18px !important;
  }
  .product-meta,
  .product-stock {
    font-size: 13px !important;
  }
  .qty-select-ctrl,
  .qty-manual-ctrl {
    height: 44px !important;
  }
}
/* ================================================================
   14. FEATURED MODULE
   ================================================================ */
.u-slick .slick-slide {
  padding: 0 12px;
}

.u-slick.slick-initialized {
  margin-left: -12px;
  margin-right: -12px;
}

.u-slick .slick-track {
  margin-left: 0;
  margin-right: auto;
}

/* Непрекъсната прогрес-лента вместо точки — унифицирана за всички продуктови carousel-и */
.u-slick__pagination--progress {
  position: relative;
  display: block !important;
  height: 4px;
  width: 100%;
  max-width: 220px;
  margin: 8px auto 0 !important;
  padding: 0 !important;
  background-color: var(--gray-5);
  border-radius: 2px;
  overflow: hidden;
}
.u-slick__pagination--progress li {
  display: none;
}
.u-slick__pagination--progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: var(--pb-left, 0%);
  width: var(--pb-width, 100%);
  height: 100%;
  background-color: var(--brand-black);
  border-radius: 2px;
  transition: left 0.45s cubic-bezier(0.645, 0.045, 0.355, 1), width 0.45s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.u-slick__pagination li.slick-active span {
  background-color: var(--brand-red) !important;
  border-color: var(--brand-red) !important;
}

.u-slick__arrow-normal {
  z-index: 10 !important;
}

.u-slick__arrow-normal.right-1 {
  right: 2rem !important;
}

/* ================================================================
   15. HOMEPAGE SLIDESHOW — PEEK EFFECT
   ================================================================ */
/* Module renders full-bleed (no .container ancestor — see content_top.twig),
   so a shadow on the outer row would span the whole viewport width and read
   as a plain rectangular plate behind the peeking gradient edges. Shadow is
   applied per slide instead (below), matching each slide's own rounded
   shape. Outer padding gives that shadow room so overflow:hidden (needed
   for the peek clip) doesn't cut it off. */
.slideshow-peek-outer {
  position: relative;
  overflow: hidden;
  padding: 14px 0 18px;
}

.slideshow-peek-outer::before,
.slideshow-peek-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 10;
  pointer-events: none;
}

.slideshow-peek-outer::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.slideshow-peek-outer::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}

.slideshow-peek .slick-list {
  overflow: visible !important;
}

.slideshow-peek.slick-initialized {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.slideshow-peek .slick-slide {
  padding: 0 !important;
}

.slideshow-peek .slick-slide > a,
.slideshow-peek .slick-slide > img {
  display: block;
  margin: 6px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.slideshow-peek .slick-slide > a img {
  display: block;
  border-radius: 8px;
}

.slideshow-peek .slide-img-wrap {
  width: 700px;
  max-width: 100%;
  aspect-ratio: 1000/406;
  overflow: hidden;
}

.slideshow-peek .slick-slide > .slide-img-wrap {
  display: block;
  margin: 6px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.slideshow-peek .slide-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 767px) {
  .slideshow-peek-outer::before,
  .slideshow-peek-outer::after {
    width: 24px;
  }
  .slideshow-peek .slide-img-wrap {
    width: 86vw;
  }
}
/* ================================================================
   16. CATEGORY — TOOLBAR & VIEW TOGGLE
   ================================================================ */
.view-btn {
  background: none;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  color: #999;
  font-size: 16px;
  line-height: 1;
  padding: 5px 8px;
  margin-right: 4px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.view-btn:hover {
  color: var(--text-dark);
  border-color: #aaa;
}
.view-btn.active {
  color: var(--text-dark);
  border-color: var(--text-dark);
}

/* ================================================================
   17. CATEGORY — DESCRIPTION REVEAL
   ================================================================ */
.cat-desc-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  color: var(--accent);
  vertical-align: baseline;
  transition: color 0.2s ease;
}
.cat-desc-btn:hover {
  color: var(--brand-red);
}

/* ================================================================
   18. CATEGORY — ОБЩИ СТИЛОВЕ (pv-* елементи)
   ================================================================ */
.lv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #000;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
}

.lv-btn:hover {
  color: var(--brand-red);
}

.view-list .product-item__title,
.view-grid .product-item__title,
.u-slick .product-item__title {
  min-height: 0 !important;
}

.view-list .product-item__title a,
.view-list .pv-title,
.view-grid .product-item__title a,
.view-grid .pv-title,
.u-slick .product-item__title a,
.u-slick .pv-title {
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  color: var(--text-dark) !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.view-list .product-item__title a:hover,
.view-list .pv-title:hover,
.view-grid .product-item__title a:hover,
.view-grid .pv-title:hover,
.u-slick .product-item__title a:hover,
.u-slick .pv-title:hover {
  color: var(--accent) !important;
  transition: color 0.2s ease;
}

/* ================================================================
   19. CATEGORY — LIST VIEW (.view-list)
   ================================================================ */
.view-list .product-item {
  margin-bottom: 12px;
}

.view-list .pv-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: var(--card-bg);
  border-radius: 10px;
  padding: 15px;
  gap: 15px;
  position: relative;
}

.view-list .pv-image {
  flex: 0 0 18%;
  max-width: 18%;
}

.view-list .pv-image a {
  display: block !important;
  width: 100%;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.view-list .pv-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.view-list .pv-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.view-list .pv-body > * {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.view-list .pv-rating,
.view-list .pv-rating * {
  font-size: 16px !important;
  line-height: 24px !important;
}

.view-list .pv-desc {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
  color: var(--text-dark) !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.view-list .pv-footer {
  flex: 0 0 17%;
  max-width: 17%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.view-list .pv-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}

.view-list .pv-actions {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  gap: 20px;
}

.pv-price--mobile {
  display: none !important;
}

@media (max-width: 767px) {
  .view-list .pv-inner {
    padding: 10px;
    gap: 10px;
    align-items: stretch;
  }
  .view-list .pv-image {
    flex: 0 0 38%;
    max-width: 38%;
  }
}
/* ================================================================
   20. CATEGORY — GRID VIEW (.view-grid)
   ================================================================ */
.view-grid {
  display: flex !important;
  flex-wrap: wrap;
  margin-left: -8px !important;
  margin-right: -8px !important;
}

.view-grid .product-item {
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 16px;
}

.view-grid .pv-inner {
  display: block;
  background: transparent !important;
  padding: 4px 0;
  position: relative;
}

.view-grid .pv-image {
  margin-bottom: 8px;
}

.view-grid .pv-image a {
  display: block;
  text-align: center;
}

.view-grid .pv-image img {
  width: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.view-grid .pv-image a:hover img {
  transform: scale(1.05);
}

.view-grid .pv-body {
  display: flex;
  flex-direction: column;
}

.view-grid .pv-rating {
  order: -1;
}

.view-grid .pv-desc {
  display: none !important;
}

.view-grid .pv-footer {
  margin-top: 4px;
}

.view-grid .pv-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.view-grid .pv-actions {
  display: none !important;
}

@media (max-width: 991px) {
  .view-grid .product-item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}
@media (max-width: 575px) {
  .view-grid .product-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
/* ================================================================
   21. PRODUCT LISTING — STOCK & ЦЕНИ
   ================================================================ */
.pv-stock span {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px !important;
}

.pv-stock span.text-success {
  color: #28a745 !important;
}

.pv-stock span.text-danger {
  color: #dc3545 !important;
}

.pv-stock span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.pv-stock span.text-success::before {
  background-color: #28a745;
}

.pv-stock span.text-danger::before {
  background-color: #dc3545;
}

.pv-price .pv-price-regular,
.pv-price .pv-price-special {
  font-size: 26px !important;
  font-weight: 700 !important;
  line-height: 30px !important;
  color: var(--text-dark) !important;
  text-decoration: none !important;
}

.pv-price .pv-price-old {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #707070 !important;
  text-decoration: line-through !important;
}

/* ================================================================
   22. PRODUCT LISTING — МОБИЛЕН ИЗГЛЕД
   ================================================================ */
@media (max-width: 767px) {
  .view-list .pv-body,
  .view-grid .pv-body {
    gap: 2px;
  }
  .view-list .pv-price--mobile {
    flex-direction: column-reverse !important;
    align-items: flex-start !important;
    gap: 2px !important;
  }
  .view-list .pv-footer,
  .view-grid .pv-footer {
    display: none !important;
  }
  .view-list .pv-desc {
    display: none !important;
  }
  .pv-price--mobile {
    display: flex !important;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
  }
  .view-grid .pv-title,
  .view-grid .product-item__title a {
    font-size: 13px !important;
    line-height: 18px !important;
  }
  .view-list .pv-title,
  .view-list .product-item__title a {
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 18px !important;
    color: var(--text-dark) !important;
    -webkit-line-clamp: 2 !important;
  }
  .view-list .pv-rating,
  .view-list .pv-rating * {
    font-size: 11px !important;
  }
  .pv-stock span {
    font-size: 12px !important;
  }
  .pv-price .pv-price-regular,
  .pv-price .pv-price-special {
    font-size: 18px !important;
    line-height: 22px !important;
  }
}
/* ================================================================
   23. HOMEPAGE MODULES — pv-* карти (u-slick carousel)
   ================================================================ */
.u-slick .pv-image img {
  transition: transform 0.3s ease;
}

.u-slick .pv-image a:hover img {
  transform: scale(1.05);
}

.u-slick .pv-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 4px;
}

.u-slick .u-slick__pagination {
  margin-top: 24px !important;
}

/* ================================================================
   24. CART TOAST NOTIFICATION
   ================================================================ */
#cart-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  z-index: 99999;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14), 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 300px;
  max-width: 480px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

#cart-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

#cart-toast.hiding {
  opacity: 0;
  transform: translateX(-50%) translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

#cart-toast .cart-toast-icon {
  color: #28a745;
  font-size: 20px;
  flex-shrink: 0;
}

#cart-toast .cart-toast-body {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-dark);
}

#cart-toast .cart-toast-body a {
  color: var(--brand-red);
  font-weight: 700;
  text-decoration: none;
}

#cart-toast .cart-toast-body a:last-of-type {
  text-decoration: underline !important;
}

#cart-toast .cart-toast-close {
  background: none;
  border: none;
  color: #bbb;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: color 0.2s ease;
}

#cart-toast .cart-toast-close:hover {
  color: #000;
}

@media (max-width: 575px) {
  #cart-toast {
    left: 12px;
    right: 12px;
    bottom: 16px;
    min-width: 0;
    max-width: none;
    transform: translateY(16px);
    width: auto;
  }
  #cart-toast.show {
    transform: translateY(0);
  }
}
/* ================================================================
   25. COMPARE PAGE
   ================================================================ */
.compare-table-wrap {
  border: 1px solid var(--gray-3, #dee2e6);
  border-radius: 12px;
  overflow: hidden;
}

.table-compare-list {
  min-width: 600px;
  margin-bottom: 0;
}

.table-compare-list td,
.table-compare-list th {
  vertical-align: middle;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--text-dark);
  border-color: var(--gray-3, #dee2e6);
}

.table-compare-list .compare-label {
  position: sticky;
  left: 0;
  z-index: 2;
  white-space: nowrap;
  font-weight: 600;
  background: #f8f9fa;
  width: 140px;
  min-width: 120px;
  box-shadow: 2px 0 4px rgba(0, 0, 0, 0.04);
}

.table-compare-list tbody tr:nth-child(even) td:not(.compare-label) {
  background: #fafafa;
}

.table-compare-list .compare-group-header {
  background: #f0f0f0;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dark);
}

.compare-product-cell {
  padding-top: 44px !important;
}

.compare-remove-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #fff;
}

.compare-product-title {
  display: block;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
  color: var(--text-dark) !important;
  margin-bottom: 8px;
}

.compare-product-title:hover {
  color: var(--brand-red) !important;
}

.compare-mobile-row {
  font-size: 14px;
}

.compare-mobile-label {
  font-weight: 600;
  color: var(--text-dark);
  flex-shrink: 0;
  margin-right: 16px;
}

.compare-mobile-group-header {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dark);
  background: #f0f0f0;
  padding: 8px 24px;
  margin: 16px -24px 0;
}

/* ================================================================
   26. BREADCRUMB
   ================================================================ */
.breadcrumb-item a,
.breadcrumb-item + .breadcrumb-item a,
.breadcrumb-item.active {
  font-size: 14px;
}

.breadcrumb-item.active {
  font-weight: 500;
}

.breadcrumb-item a {
  font-weight: 400 !important;
  padding: 0 !important;
}

.breadcrumb-item + .breadcrumb-item a {
  padding: 0 !important;
  background-color: transparent !important;
}

.breadcrumb-item + .breadcrumb-item a:hover {
  background-color: transparent !important;
  color: var(--brand-red);
}

.u-breadcrumb-bar {
  padding-top: 0.5rem;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .u-breadcrumb-bar {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

.u-breadcrumb-bar__list {
  margin-bottom: 0;
  flex-wrap: nowrap;
  overflow: auto;
}
@media (min-width: 1200px) {
  .u-breadcrumb-bar__list {
    flex-wrap: wrap;
    overflow: visible;
  }
}

@media (max-width: 767px) {
  .u-breadcrumb-bar .breadcrumb {
    padding-top: 0.3rem;
    padding-bottom: 0;
  }
}
.breadcrumb-back {
  display: none;
}

@media (max-width: 767px) {
  .breadcrumb-item {
    display: none !important;
  }
  .breadcrumb-item:has(+ .breadcrumb-item.active) {
    display: flex !important;
  }
  .breadcrumb-item:has(+ .breadcrumb-item.active)::before {
    display: none !important;
  }
  .breadcrumb-item.active:first-child {
    display: flex !important;
  }
  .breadcrumb-back {
    display: inline-flex;
    align-items: center;
    margin-right: 0.4rem;
    flex-shrink: 0;
  }
}
/* ================================================================
   27. GLOBAL FORM STYLES
   ================================================================ */
.form-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.form-control {
  font-size: 15px;
  border-radius: 8px !important;
  border-color: #ced4da;
  color: #1f1f1f;
  background-color: #ffffff;
}
.form-control:focus {
  border-color: rgba(0, 0, 0, 0.6) !important;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15) !important;
  outline: none !important;
}

select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #ffffff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px !important;
  padding-right: 2rem;
  cursor: pointer;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
  box-shadow: 0 0 0 1000px #ffffff inset !important;
  -webkit-text-fill-color: #1f1f1f !important;
  border-color: #ced4da !important;
}

.custom-control-input:checked ~ .custom-control-label::before {
  background-color: var(--accent) !important;
  border-color: var(--accent) !important;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25) !important;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: var(--accent) !important;
}

.custom-control-label {
  font-size: 15px;
  cursor: pointer;
}

/* ================================================================
   28. FOOTER — СТИЛОВЕ
   ================================================================ */
/* Footer Info (светла секция) */
footer .footer-info {
  background: #f3f4f6;
  border-bottom: 1px solid #e0e2e8;
}

@media (max-width: 767px) {
  footer .footer-info {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }
}
.footer-info-title {
  color: var(--text-dark) !important;
  font-weight: 700;
  font-size: 15px !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  background: none !important;
  padding-bottom: 0 !important;
}

.footer-info-text {
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.6;
}

.footer-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-info-list li {
  color: var(--text-dark);
  font-size: 14px;
  padding: 5px 0;
  line-height: 1.5;
}
.footer-info-list li a {
  color: var(--text-dark) !important;
  font-weight: 400 !important;
  transition: color 0.2s ease !important;
}
.footer-info-list li a:hover {
  color: var(--accent) !important;
  text-decoration: none !important;
}

.footer-payment-icons {
  gap: 8px;
  justify-content: space-between;
}

.footer-payment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  width: auto;
  height: 42px;
  background: #ffffff;
  border: 1px solid #d0d4dc;
  border-radius: 6px;
  font-size: 26px;
  color: #666666;
  transition: color 0.2s ease, border-color 0.2s ease;
  cursor: default;
}
.footer-payment-icon:hover {
  color: var(--text-dark);
  border-color: #aaaaaa;
}

/* Footer Newsletter (вътре в сивата .footer-info секция) */
.footer-newsletter-inline h2 {
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  background: none !important;
  padding-bottom: 0 !important;
}

#form-newsletter .form-control {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

#newsletter-subscribe-btn {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}
#newsletter-subscribe-btn:hover, #newsletter-subscribe-btn:focus {
  background-color: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
}

/* Footer Main (тъмна секция) */
footer .footer-main {
  background: #000000;
  color: #aaaaaa;
}
footer .footer-main h2, footer .footer-main h3, footer .footer-main h4, footer .footer-main h5, footer .footer-main h6 {
  color: #ffffff;
}
footer .footer-main .btn-soft-dark {
  color: #cccccc !important;
  background: transparent !important;
  border-color: transparent !important;
  transition: color 0.2s ease !important;
}
footer .footer-main .btn-soft-dark:hover {
  background: transparent !important;
  border-color: transparent !important;
}
footer .footer-main li:nth-child(1) .btn-soft-dark:hover {
  color: #1877f2 !important;
}
footer .footer-main li:nth-child(2) .btn-soft-dark:hover {
  color: #e1306c !important;
}
footer .footer-main li:nth-child(3) .btn-soft-dark:hover {
  color: #ffffff !important;
}
footer .footer-main li:nth-child(4) .btn-soft-dark:hover {
  color: #ff0000 !important;
}

footer .footer-col-title {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 15px !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  background: none !important;
  padding-bottom: 0 !important;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  padding: 6px 0;
}
.footer-links a {
  display: block;
  font-size: 14px;
  line-height: 1.5;
}

footer .footer-main a:not(.btn) {
  color: #cccccc !important;
  font-weight: 400 !important;
  transition: color 0.2s ease !important;
}
footer .footer-main a:not(.btn):hover {
  color: #ffffff !important;
  text-decoration: none !important;
}

/* ================================================================
   29. INFORMATION PAGE
   ================================================================ */
.information-content {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-dark);
}
.information-content h2, .information-content h3, .information-content h4 {
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  background: none !important;
  padding-bottom: 0 !important;
}
.information-content h2 {
  font-size: 1.4rem !important;
}
.information-content h3 {
  font-size: 1.15rem !important;
}
.information-content h4 {
  font-size: 1rem !important;
}
.information-content p {
  margin-bottom: 1rem;
}
.information-content ul, .information-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.information-content ul li, .information-content ol li {
  margin-bottom: 0.3rem;
}
.information-content a {
  color: var(--accent) !important;
  text-decoration: underline !important;
}
.information-content a:hover {
  color: var(--brand-black) !important;
}
.information-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 14px;
}
.information-content table th, .information-content table td {
  padding: 10px 14px;
  border: 1px solid var(--gray-3);
  vertical-align: top;
}
.information-content table th {
  font-weight: 700;
  background: #f8f9fa;
}
.information-content table tr:nth-child(even) td {
  background: #fbfbfb;
}
.information-content img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.information-content blockquote {
  border-left: 4px solid var(--brand-red);
  padding: 0.5rem 1rem;
  margin: 1.5rem 0;
  color: #555555;
  font-style: italic;
}
.information-content hr {
  border-color: var(--gray-3);
  margin: 2rem 0;
}

/* ================================================================
   30. CONTACT PAGE
   ================================================================ */
.contact-section-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  border-bottom: 2px solid var(--brand-red);
  padding-bottom: 8px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-info-icon {
  width: 36px;
  flex-shrink: 0;
  padding-top: 2px;
}

.contact-info-icon ~ div .text-muted {
  color: var(--brand-black) !important;
}

/* ================================================================
   31. MISC
   ================================================================ */
#accordion .panel {
  margin-bottom: 10px !important;
}

.tab-products-wrap .u-slick__arrow-normal {
  top: 0.4rem !important;
  line-height: 1;
}

footer .footer-main .btn-soft-dark.social-icon {
  width: 3.8rem;
  height: 3.8rem;
  font-size: 1.4rem;
  margin: 0 0.3rem;
  background-color: #d8dbe3 !important;
  border-color: transparent !important;
  color: var(--text-dark) !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
}

footer .footer-main .btn-soft-dark.social-icon:hover {
  background-color: #ffffff !important;
}

footer .footer-main li:nth-child(3) .btn-soft-dark.social-icon:hover {
  color: var(--text-dark) !important;
}

footer .list-inline {
  margin-bottom: 1.5rem !important;
}

footer .list-inline + a {
  margin-bottom: 1.5rem !important;
  display: block !important;
}

footer .list-inline + a img {
  max-height: 46px !important;
}

footer .font-size-12 {
  font-size: 15px !important;
  line-height: 1.6 !important;
}

/* ================================================================
   32. BLOG
   ================================================================ */
.blog-post-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  display: block;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.blog-share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0 !important;
  color: var(--text-dark) !important;
  border: none !important;
  font-size: 14px;
  box-shadow: 0 4px 11px rgba(119, 131, 143, 0.35);
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}
.blog-share-btn:hover {
  background-color: var(--brand-red) !important;
  color: #fff !important;
  box-shadow: none;
}

/* ================================================================
   33. MANUFACTURER LIST
   ================================================================ */
.page-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
}

.manufacturer-alpha-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.manufacturer-alpha-dropdown {
  max-width: 320px;
  margin: 0 auto;
}

.manufacturer-alpha-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-weight: 600;
  font-size: 17px;
  color: var(--text-dark) !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.manufacturer-alpha-link:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
  color: #fff !important;
  text-decoration: none;
}

.manufacturer-card {
  border: 1px solid #e8eaed;
  border-radius: 8px;
  background: #fff;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  text-decoration: none !important;
  color: var(--text-dark) !important;
}
.manufacturer-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-color: #c8cacd;
  color: var(--text-dark) !important;
}

.manufacturer-card__image {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.manufacturer-card__image img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
}

.manufacturer-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  line-height: 1.3;
}

/* ================================================================
   34. MOBILE SIDEBAR
   ================================================================ */
/* Full width + scroll */
#sidebarHeader1 {
  left: 0 !important;
  right: 0 !important;
  width: auto !important;
  max-width: none !important;
  background-color: #ffffff !important;
}

#sidebarHeader1 .u-sidebar__scroller {
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

body.sidebar-open {
  overflow: hidden;
}

#sidebarHeader1 .u-sidebar__container,
#sidebarHeader1 .u-sidebar__body,
#sidebarHeader1 .u-sidebar__content,
#sidebarHeader1 .u-header-sidebar__footer-offset {
  height: auto !important;
}

#sidebarHeader1 .u-header-sidebar__content {
  padding-bottom: 3rem !important;
}

/* Black text + bold */
#sidebarHeader1 a,
#sidebarHeader1 button {
  color: var(--brand-black) !important;
  font-weight: 700 !important;
}

/* Sidebar меню — линкове за категории + долни инфо линкове
   (self-contained тук, вместо в theme.css, за да е лесно редактируемо) */
.u-header-collapse__nav-link {
  display: flex;
  align-items: center;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  font-size: 15px !important;
  color: var(--brand-black) !important;
  font-weight: 700 !important;
}

/* Chevron rotation when collapse is open */
.mobile-topbar-link .fa-chevron-down {
  transition: transform 0.25s ease;
}

.mobile-topbar-link[aria-expanded=true] .fa-chevron-down {
  transform: rotate(180deg);
}

/* Flag icon bordered box */
.mobile-lang-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 16px;
  border: 1px solid #ddd;
  border-radius: 2px;
  overflow: hidden;
  margin-right: 5px;
  vertical-align: middle;
  flex-shrink: 0;
}

.mobile-lang-icon img {
  width: 100%;
  height: auto;
  display: block;
}

/* Currency icon bordered box */
.mobile-curr-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 16px;
  padding: 0 3px;
  border: 1px solid #ddd;
  border-radius: 2px;
  margin-right: 5px;
  vertical-align: middle;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
}

/* Section heading */
.mobile-section-title {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--text-dark) !important;
  line-height: 28px !important;
  display: inline-block !important;
  background-image: linear-gradient(0deg, var(--brand-red) 100%, var(--brand-red) 100%) !important;
  background-repeat: repeat-x !important;
  background-position: 0 22px !important;
  background-size: 2px 4px !important;
  padding-bottom: 4px !important;
  margin-bottom: 10px !important;
  margin-top: 8px !important;
}

/* Mobile topbar — Език/Валута toggle links + dropdown buttons */
.mobile-topbar-link,
.mobile-lang-btn,
.mobile-curr-btn {
  color: var(--brand-black) !important;
}

.mobile-topbar-separator {
  color: #aaa;
}

/* Account sidebar (#sidebarContent) — цял екран само на мобилен/таблет;
   на desktop (>=1200px) остава стандартен drawer, защото там иконата
   за профил е част от постоянния header, не от мобилното меню */
@media (max-width: 1199.98px) {
  #sidebarContent {
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
    max-width: none !important;
    background-color: #ffffff !important;
  }
  #sidebarContent .u-sidebar__scroller {
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  #sidebarContent .u-sidebar__container,
  #sidebarContent .u-sidebar__body,
  #sidebarContent .u-header-sidebar__footer-offset {
    height: auto !important;
  }
  #sidebarContent .u-header-sidebar__content {
    padding-bottom: 3rem !important;
  }
}
/* Bottom info links (Инфо Център / За нас / Контакти / Блог / Производители) — fixed icon column */
.u-header-collapse__nav-link > .fas {
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

/* ================================================================
   35. INLINE STYLE CLEANUP — общи utility класове за templates
   ================================================================ */
/* Flag icon (език dropdown/меню) */
.u-flag-icon-sm {
  width: 16px;
}

/* Dropdown anchor wrapper (език/валута topbar) */
.u-dropdown-anchor {
  display: inline-block;
  vertical-align: middle;
}

/* Header shortcut links (Инфо/Промо/Блог) — spacing between items */
.header-shortcut-item {
  margin-right: 2rem;
}

/* Mobile header logo */
.header-mobile-logo-link {
  display: block;
  margin: 0;
  padding: 0;
}

.header-mobile-logo-img {
  max-height: 25px;
  width: auto;
  display: block;
  margin: 0 auto;
}

/* Footer logo */
.footer-logo-img {
  max-height: 32px;
}

/* Product thumbnail — order history / wishlist rows */
.u-product-thumb-160 {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

/* Rounded status icon (order/tracking shipment badge, wishlist stock badge) */
.u-status-icon-26 {
  width: 26px;
  height: 26px;
}

.u-status-icon-22 {
  width: 22px;
  height: 22px;
}

/* Product row action groups — spacing */
.u-actions-gap-lg {
  gap: 32px;
}

.u-actions-gap {
  gap: 24px;
}

/* Order info — totals block width */
.u-order-totals {
  min-width: 280px;
}

/* Totals tables (cart + smopc) — no top border on first row */
.smopc-totals-table tbody tr:first-child th,
.smopc-totals-table tbody tr:first-child td,
.cart-totals-table tbody tr:first-child th,
.cart-totals-table tbody tr:first-child td {
  border-top: 0;
}

/* Embedded Google Maps iframe */
.u-map-iframe {
  border: 0;
}

/* Accent badge (адресна книга — default address) */
.badge-accent {
  background-color: var(--accent);
  color: #fff;
}

/* Tab products module — nav bar stacking context above tab panes */
.tab-products-nav-wrap {
  position: relative;
  z-index: 2;
}

/* Narrow numeric input (return form — quantity) */
.u-input-max-120 {
  max-width: 120px;
}

/* Payment method description (smopc) — preserve line breaks from admin text */
.u-payment-desc {
  white-space: pre-line;
}

/* Manufacturer logo (breadcrumb bar) */
.u-mfr-logo {
  max-height: 48px;
  width: auto;
}

.compare-thumb-frame {
  display: block;
  width: 100%;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 8/5;
  background: #fff;
  overflow: hidden;
}

.compare-thumb-frame--sm {
  width: 120px;
  max-width: 120px;
}

.compare-thumb-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

/* SMOPC products table — thumbnail column width */
.u-thumb-col-52 {
  width: 52px;
}

/* ================================================================
   36. CATEGORY HERO BANNER
   Унифициран breadcrumb стил само за категорийните страници (hero с фон/h1).
   За всички останали страници виж .u-breadcrumb-bar в СЕКЦИЯ 26 (BREADCRUMB).
   ================================================================ */
.category-hero {
  background-color: var(--brand-black);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 200px;
  display: flex;
  align-items: center;
}
.category-hero .container {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.category-hero .breadcrumb {
  background: rgba(255, 255, 255, 0.35);
  padding: 0.35rem 0.75rem;
  margin-bottom: 0 !important;
  border-radius: 0.5rem;
  display: inline-flex;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.category-hero .breadcrumb-item,
.category-hero .breadcrumb-item a,
.category-hero .breadcrumb-item.active {
  color: #fff !important;
}
.category-hero .breadcrumb-item a:hover {
  color: var(--accent) !important;
  text-decoration: underline;
}
.category-hero .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}
.category-hero h1 {
  color: #fff !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  margin-top: 1.5rem;
}
.category-hero--leaf {
  background-color: transparent;
  min-height: auto;
}
.category-hero--leaf .breadcrumb {
  background: rgba(0, 0, 0, 0.06);
}
.category-hero--leaf .breadcrumb-item,
.category-hero--leaf .breadcrumb-item a,
.category-hero--leaf .breadcrumb-item.active {
  color: var(--text-dark) !important;
}
.category-hero--leaf .breadcrumb-item a:hover {
  color: var(--accent) !important;
}
.category-hero--leaf .breadcrumb-item + .breadcrumb-item::before {
  color: #6c757d;
}
.category-hero--leaf h1 {
  color: var(--text-dark) !important;
  text-shadow: none;
}
@media (max-width: 767px) {
  .category-hero:not(.category-hero--leaf) {
    min-height: 0;
    height: 130px;
    overflow: hidden;
    background-size: auto 100%;
  }
  .category-hero.category-hero--leaf {
    min-height: 0;
    height: auto;
  }
  .category-hero .container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  .category-hero .breadcrumb {
    padding: 0.25rem 0.6rem;
  }
  .category-hero h1 {
    font-size: 26px !important;
    line-height: 1.3 !important;
    margin-top: 0.6rem;
  }
}

.category-hero + .container:not(:has(.subcategories-grid)) #content-column,
.category-hero + .container:not(:has(.subcategories-grid)) #column-left {
  margin-top: 1rem;
}

.category-hero + .container .subcategories-grid {
  margin-top: 0.75rem !important;
}

@media (max-width: 767px) {
  .category-hero + .container .subcategories-grid {
    margin-top: 0.5rem !important;
  }
}
/* ================================================================
   37. LISTING BREADCRUMB — самостоятелен клас (не изисква .category-hero,
   не се комбинира с --leaf). Същият визуален стил като .category-hero--leaf
   (тъмен текст, прозрачен фон, sиво pill), но с име, несвързано с
   категорийните страници — за продукт, search, special, manufacturer_info, cart.
   ================================================================ */
.u-listing-breadcrumb {
  display: flex;
  align-items: flex-start;
  background-color: transparent;
  min-height: auto;
}
.u-listing-breadcrumb .container {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.u-listing-breadcrumb .breadcrumb {
  background: rgba(0, 0, 0, 0.06);
  padding: 0.35rem 0.75rem;
  margin-bottom: 0 !important;
  border-radius: 0.5rem;
  display: inline-flex;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.u-listing-breadcrumb .breadcrumb-item,
.u-listing-breadcrumb .breadcrumb-item a,
.u-listing-breadcrumb .breadcrumb-item.active {
  color: var(--text-dark) !important;
}
.u-listing-breadcrumb .breadcrumb-item a:hover {
  color: var(--accent) !important;
}
.u-listing-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #6c757d;
}

@media (max-width: 767px) {
  .u-listing-breadcrumb .breadcrumb {
    padding: 0.25rem 0.6rem;
  }
}
@media (max-width: 767px) {
  .mb-3:has(> .product-page-title) {
    margin-bottom: 5px !important;
  }
}
@media (max-width: 767px) {
  .page-title {
    margin-top: 16px !important;
    margin-bottom: 16px !important;
  }
  div:has(> .page-title:only-child) {
    margin-bottom: 16px !important;
  }
}
/* ================================================================
   38. PAGINATION — large circles
   ================================================================ */
.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  padding-left: 0;
  list-style: none;
}
.pagination li a,
.pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff !important;
  background-color: var(--text-dark);
  border: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.pagination li a:hover {
  background-color: #6c757d;
  color: #fff !important;
}
.pagination li.active span {
  background-color: #6c757d;
  color: #fff !important;
}
.pagination li.disabled span {
  opacity: 0.4;
  pointer-events: none;
}

/* ================================================================
   39. OCFILTER — THEME OVERRIDES
   ================================================================ */
.ocf-container, .ocf-filter-list,
.ocf-value, .ocf-filter-header, .ocf-btn {
  font-family: inherit !important;
}

.ocf-header {
  font-weight: 700;
}

.ocf-noUi-connect:before,
.ocf-noUi-handle {
  background-color: #000000 !important;
}

.ocf-noUi-active {
  box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.25) !important;
}

.ocf-scroll-y::-webkit-scrollbar-thumb {
  background-color: #000000 !important;
}

.ocf-selected .ocf-value-input::before {
  background-color: #000000 !important;
  border-color: #000000 !important;
}

.ocf-value:active .ocf-value-input::before {
  background-color: rgba(0, 0, 0, 0.4) !important;
  border-color: #000000 !important;
}

.ocf-value:active .ocf-value-input-checkbox::before {
  border-color: #000000 !important;
  background-color: rgba(0, 0, 0, 0.6) !important;
}

.ocf-value:focus:not(:active) .ocf-value-input::before {
  border-color: #000000 !important;
}

.ocf-selected .ocf-value-image,
.ocf-selected .ocf-value-color {
  border-color: #000000 !important;
}

.ocf-form-control:focus,
input.ocf-form-control:focus,
textarea.ocf-form-control:focus {
  border-color: rgba(0, 0, 0, 0.6) !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(0, 0, 0, 0.35) !important;
}

.ocf-theme-light .ocf-search-btn-static,
.ocf-theme-light .ocf-search-btn-popover,
.ocf-theme-light .ocf-search-btn-static.ocf-disabled,
.ocf-theme-light .ocf-search-btn-popover.ocf-disabled,
.ocf-theme-light-block .ocf-search-btn-static,
.ocf-theme-light-block .ocf-search-btn-popover,
.ocf-theme-light-block .ocf-search-btn-static.ocf-disabled,
.ocf-theme-light-block .ocf-search-btn-popover.ocf-disabled {
  background-color: #000000 !important;
  color: #fff !important;
}

.ocf-theme-light .ocf-search-btn-static:hover,
.ocf-theme-light .ocf-search-btn-static:focus,
.ocf-theme-light .ocf-search-btn-static:active,
.ocf-theme-light .ocf-search-btn-popover:hover,
.ocf-theme-light .ocf-search-btn-popover:focus,
.ocf-theme-light .ocf-search-btn-popover:active,
.ocf-theme-light-block .ocf-search-btn-static:hover,
.ocf-theme-light-block .ocf-search-btn-static:focus,
.ocf-theme-light-block .ocf-search-btn-static:active,
.ocf-theme-light-block .ocf-search-btn-popover:hover,
.ocf-theme-light-block .ocf-search-btn-popover:focus,
.ocf-theme-light-block .ocf-search-btn-popover:active {
  background-color: #333333 !important;
}

.ocf-theme-light .ocf-active.ocf-dropdown .ocf-filter-header {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

.ocf-theme-light-block.ocf-vertical .ocf-active {
  background-color: rgba(0, 0, 0, 0.06) !important;
}

.ocf-theme-light-block.ocf-horizontal .ocf-active.ocf-dropdown .ocf-filter-header {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

.ocf-theme-light-block .ocf-active .ocf-scroll-y {
  background-image: linear-gradient(rgba(0, 0, 0, 0.08) 30%, transparent), linear-gradient(transparent, rgba(0, 0, 0, 0.08) 70%), radial-gradient(farthest-side at 50% 0, rgba(0, 0, 0, 0.1), transparent), radial-gradient(farthest-side at 50% 100%, rgba(0, 0, 0, 0.1), transparent) !important;
}

.ocf-theme-light-block.ocf-vertical .ocf-filter {
  background-color: #f5f5f5 !important;
}

.ocf-theme-light-block.ocf-horizontal .ocf-filter-header {
  background-color: #f5f5f5 !important;
}

.ocf-container .ocf-search-btn-static,
.ocf-container .ocf-search-btn-popover {
  background-color: var(--brand-black) !important;
  border-color: var(--brand-black) !important;
  color: #ffffff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 24px !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
}

.ocf-container .ocf-search-btn-static:hover,
.ocf-container .ocf-search-btn-static:focus,
.ocf-container .ocf-search-btn-static:active,
.ocf-container .ocf-search-btn-popover:hover,
.ocf-container .ocf-search-btn-popover:focus,
.ocf-container .ocf-search-btn-popover:active {
  background-color: var(--brand-red) !important;
  border-color: var(--brand-red) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 11px rgba(119, 131, 143, 0.35) !important;
  text-decoration: none !important;
}

.ocf-container .ocf-btn-clear-all {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  padding: 0 !important;
  font-weight: 700 !important;
  color: #000000 !important;
}

.ocf-container .ocf-btn-clear-all:hover,
.ocf-container .ocf-btn-clear-all:focus {
  color: var(--accent) !important;
  text-decoration: underline !important;
}

.ocf-footer .ocf-btn-clear-all {
  display: none !important;
}

.ocf-container .ocf-btn-clear-all .ocf-times-circle {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  min-height: 14px !important;
}

#search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
#search-overlay.active {
  opacity: 1;
  pointer-events: all;
}

#header {
  position: relative;
  z-index: 600;
}

/* ================================================================
   40. SMOPC — ONE PAGE CHECKOUT
   ================================================================ */
.smopc-city-wrap {
  position: relative;
}

.smopc-city-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  width: 100%;
  z-index: 300;
  max-height: 260px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.smopc-city-item {
  display: block;
  width: 100%;
  padding: 0.55rem 0.9rem;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.smopc-city-item:last-child {
  border-bottom: none;
}
.smopc-city-item:hover, .smopc-city-item.active {
  background-color: var(--gray-5);
  color: var(--text-dark);
  outline: none;
}
.smopc-city-item:first-child {
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.smopc-city-item:last-child {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.smopc-page .form-label {
  text-transform: none;
}

.smopc-page .custom-control-label {
  padding-top: 0.1rem;
}

[data-field=delivery_type] .custom-control-label {
  font-size: 16px;
}

#smopc-payment-accordion .custom-control-label::before,
#smopc-payment-accordion .custom-control-label::after {
  top: 0.3rem;
}

.smopc-products-table thead th {
  border-top: 0 !important;
}

.smopc-products-table thead th:first-child {
  font-size: 16px;
}

.smopc-product-name {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.smopc-products-table tbody td.text-right {
  font-size: 20px;
  font-weight: 600;
}

.smopc-totals-table th,
.smopc-totals-table td {
  font-size: 20px;
  font-weight: 600;
}

.smopc-totals-table tr:last-child th,
.smopc-totals-table tr:last-child td {
  font-size: 28px !important;
  font-weight: 700 !important;
  line-height: 36px;
}

#smopc-payment-accordion .custom-control-label {
  font-size: 16px;
}

#smopc-coupon-form .form-control {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

#smopc-coupon-btn {
  background-color: #f5f5f5 !important;
  border-color: var(--gray-3) !important;
  color: var(--text-dark) !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  border-top-right-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
}
#smopc-coupon-btn:hover, #smopc-coupon-btn:focus {
  background-color: var(--gray-3) !important;
  color: var(--text-dark) !important;
}

@media (max-width: 991px) {
  .smopc-page .order-lg-2 {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .smopc-page h1 {
    font-size: 32px !important;
    line-height: 40px !important;
  }
  .smopc-page .bg-gray-1 {
    border-radius: 8px !important;
  }
  .smopc-page .p-4 {
    padding: 1rem !important;
  }
}
.faq-module-narrow {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1199.98px) {
  .u-hamburger.p-0 {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0 !important;
  }
  .header-mobile-icon {
    position: relative;
  }
  .header-mobile-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    transform: translate(-50%, -50%);
  }
  .header-mobile-icons,
  .header-icons-row {
    gap: 14px;
  }
}
#order-info .cart-table .table th,
#order-info .cart-table .table td {
  font-size: 20px;
}
#order-info .cart-table .table thead th {
  color: var(--text-dark);
}
#order-info h3.h1 {
  font-size: 36px !important;
  line-height: 46px !important;
}

@media (max-width: 767px) {
  #order-info .cart-table .table th,
  #order-info .cart-table .table td {
    font-size: 14px;
  }
  #order-info .cart-table .table td .badge {
    font-size: 12px;
  }
  #order-info .cart-table .table tbody tr td.u-history-status {
    justify-content: space-between;
  }
  #order-info .cart-table .table tbody tr td.u-history-status::before {
    display: inline;
  }
  #order-info .cart-table .table tbody tr:not(:first-child) td:first-child {
    border-top: 1px solid #333333;
    margin-top: 15px;
  }
}
.orders-list .btn {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  #order-list.mb-8 {
    margin-bottom: 1.5rem !important;
  }
}
@media (max-width: 767px) {
  #order-info .product-row {
    flex-wrap: wrap;
  }
  #order-info .product-row-content {
    display: contents !important;
  }
  #order-info .product-row-title {
    order: 1;
    flex: 0 0 100%;
    margin-bottom: 0.5rem;
  }
  #order-info .product-row-thumb {
    order: 2;
    flex: 0 0 100%;
    margin-right: 0 !important;
    margin-bottom: 1rem;
    text-align: center;
  }
  #order-info .product-row-thumb .u-product-thumb-160 {
    width: 100%;
    height: 220px;
    object-fit: contain;
  }
  #order-info .product-stats-row {
    order: 3;
    flex: 0 0 100%;
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 4px;
    margin-bottom: 1rem;
  }
  #order-info .product-stats-row .font-size-13 {
    font-size: 10px;
  }
  #order-info .product-stats-row .font-size-18 {
    font-size: 13px;
  }
  #order-info .product-row-actions {
    order: 4;
    flex: 0 0 100%;
    justify-content: space-between !important;
  }
}
.account-menu-link {
  display: block;
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 24px !important;
  color: var(--text-dark) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.account-menu-link:hover,
.account-menu-link.active {
  color: var(--accent) !important;
}

#sidebarContent .account-menu-link:hover {
  text-decoration: underline !important;
}

#sidebarContent .account-menu-link {
  font-size: 15px !important;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}

#column-left .account-menu-link {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  #column-left:has(.account-menu-link) {
    display: none;
  }
}
.account-customer-info {
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 26px !important;
  color: var(--text-dark) !important;
}

.ocf-btn-mobile-static.ocf-mobile {
  display: none !important;
}

/* ================================================================
   41. HOMEPAGE MODULE TITLES — мобилен размер
   ================================================================ */
@media (max-width: 767px) {
  .section-title,
  .decorated-title {
    font-size: 22px !important;
    line-height: 28px !important;
  }
  .decorated-title {
    background-position: 0 22px !important;
  }
}

/*# sourceMappingURL=stylesheet.css.map */
