:root {
  --bw-bg: #f3f3f3;
  --bw-surface: #ffffff;
  --bw-surface-alt: #f9f9f9;
  --bw-ink: #0d0d0d;
  --bw-muted: #5d5d5d;
  --bw-border: #d9d9d9;
  --bw-accent: #101010;
  --bw-accent-2: #242424;
  --bw-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --bw-radius: 16px;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--bw-ink);
  background:
    radial-gradient(circle at 5% 0%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at 95% 20%, rgba(17, 17, 17, 0.05), rgba(255, 255, 255, 0) 38%),
    repeating-linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.018) 0,
      rgba(0, 0, 0, 0.018) 1px,
      transparent 1px,
      transparent 44px
    ),
    var(--bw-bg);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Neutralize global side-effects coming from style-3.css */
.menu {
  width: 100% !important;
  margin: 0 !important;
  cursor: default !important;
}

.title {
  width: auto !important;
  box-sizing: border-box;
  background: transparent !important;
  padding: 0 !important;
  border-radius: 0 !important;
  position: static !important;
  box-shadow: none !important;
  color: inherit !important;
}

.dropdown {
  width: auto !important;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: inherit !important;
  margin-top: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  transition: none !important;
}

.arrow,
.arrow.gone {
  display: none !important;
}

span {
  float: none;
  font-size: inherit !important;
}

p {
  padding: 0 !important;
  margin: 0 0 1rem;
}

p:hover {
  background: transparent !important;
  -webkit-transform: none !important;
  transform: none !important;
  color: inherit !important;
  box-shadow: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.headline h2,
.headline h3 {
  color: var(--bw-ink);
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  letter-spacing: -0.02em;
}

a {
  color: var(--bw-accent);
  transition: color 0.24s ease, opacity 0.24s ease;
}

a:hover,
a:focus {
  color: #000;
  opacity: 0.86;
}

::selection {
  color: #fff;
  background: #000;
}

/* Top strip + header */
.top,
.top-ub {
  background: linear-gradient(180deg, #0b0b0b, #171717) !important;
  border-bottom: 1px solid #232323;
}

.top .left ul li,
.top .right ul li a,
.top .left ul li i {
  color: #fff !important;
}

.top .right ul li a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.16) !important;
}

.header {
  background: var(--bw-surface) !important;
  border-bottom: 1px solid var(--bw-border);
}

.header .right ul li,
.header .right ul li a {
  color: var(--bw-ink) !important;
}

/* Main navigation */
.nav {
  background: var(--bw-surface) !important;
  border-bottom: 1px solid var(--bw-border);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
}

.menu > ul > li {
  transition: background 0.22s ease;
}

.menu > ul > li > a {
  color: var(--bw-ink) !important;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.menu > ul > li:hover > a {
  color: #fff !important;
}

.menu > ul > li:hover {
  background: #0f0f0f !important;
}

.menu > ul > li > ul,
.menu > ul > li > ul > li > ul {
  background: #fff !important;
  border: 1px solid var(--bw-border);
  border-radius: 12px;
  box-shadow: var(--bw-shadow);
}

.menu > ul > li > ul > li > a,
.menu > ul > li > ul > li > ul > li > a {
  color: #1a1a1a !important;
}

/* Banners and sections */
.page-banner {
  background-color: #111 !important;
  border-bottom: 1px solid #1e1e1e;
}

.page-banner .overlay {
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.48)) !important;
}

.page-banner h1 {
  color: #fff !important;
  text-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.bg-gray,
.bg-7,
.bg-3 {
  background: var(--bw-bg) !important;
}

.bg-mavi {
  background: linear-gradient(160deg, #0f0f0f, #2b2b2b) !important;
}

.ticket {
  position: relative;
  overflow: hidden;
}

.ticket::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 0%, rgba(255, 255, 255, 0.12), transparent 42%),
    radial-gradient(circle at 10% 100%, rgba(255, 255, 255, 0.07), transparent 36%);
  pointer-events: none;
}

.bg-mavi .headline h2,
.bg-mavi .headline h3,
.ticket .headline h2,
.ticket .headline h3 {
  color: #fff !important;
}

/* Cards */
.bx-1,
.bx-2,
.bx-3,
.bx-4,
.bx-5,
.bx-6,
.product .item .inner,
.service .item,
.cart table,
.tab-content,
.product-x .photo-container,
.product__info {
  background: var(--bw-surface) !important;
  border: 1px solid var(--bw-border) !important;
  border-radius: var(--bw-radius) !important;
  box-shadow: var(--bw-shadow);
}

.product .item,
.service .item,
.item-search-result .inner,
.item-product-cat .inner {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product .item:hover,
.service .item:hover,
.item-search-result .inner:hover,
.item-product-cat .inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.13);
}

.product .text h3 a,
.product .text h4,
.product .text {
  color: var(--bw-ink) !important;
}

.product .text del {
  color: #777 !important;
}

.product .item .thumb .overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.65)) !important;
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select,
.form-control,
.select2-selection {
  border: 1px solid var(--bw-border) !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: #111 !important;
}

input:focus,
textarea:focus,
select:focus,
.form-control:focus,
.select2-container--default .select2-selection--single:focus,
.select2-container--default .select2-selection--single:active {
  border-color: #0f0f0f !important;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08) !important;
}

/* Buttons */
.btn,
.btn-default,
.btn-primary,
.btn-success,
.btn-danger,
.buy--btn,
.cssbuttons-io-button,
.btn-search,
.login-button,
button[type="submit"] {
  border-radius: 12px !important;
  border: 1px solid #0f0f0f !important;
  background: #0f0f0f !important;
  color: #fff !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus,
.buy--btn:hover,
.cssbuttons-io-button:hover,
.btn-search:hover,
button[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.18);
  background: #1a1a1a !important;
}

.cssbuttons-io-button .icon,
.cssbuttons-io-button .icon i,
.buy--btn i {
  color: #fff !important;
}

/* Tabs + pagination + tables */
.nav-tabs {
  border-bottom: 1px solid var(--bw-border) !important;
}

.nav-tabs > li > a {
  color: #222 !important;
  border-radius: 10px 10px 0 0 !important;
  border: 1px solid transparent !important;
}

.nav-tabs > li.active > a,
.nav-tabs > li > a:hover {
  background: #111 !important;
  color: #fff !important;
  border-color: #111 !important;
}

.pagination a,
.pagination span {
  border-radius: 10px !important;
  border: 1px solid var(--bw-border) !important;
  color: #111 !important;
}

.pagination .current {
  background: #111 !important;
  color: #fff !important;
}

.table > thead > tr > th {
  background: #111 !important;
  color: #fff !important;
  border-color: #2a2a2a !important;
}

.table > tbody > tr > td {
  border-color: var(--bw-border) !important;
}

.out-of-stock .inner {
  background: #111 !important;
  color: #fff !important;
  border-radius: 8px;
}

/* Footer */
.footer,
footer {
  background: linear-gradient(145deg, #0d0d0d, #171717) !important;
}

.footer a,
footer a,
.footer p,
footer p,
.footer h6,
footer h6 {
  color: #fff !important;
}

.footer .social--link {
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.footer .social--link:hover {
  background: #fff;
  color: #000 !important;
}

/* Smooth reveal */
@keyframes bw-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.headline,
.service .item,
.product .item,
.product-x,
.bx-1,
.bx-2 {
  animation: bw-fade-up 0.5s ease both;
}

.product .item:nth-child(2),
.product .item:nth-child(3),
.service .item:nth-child(2),
.service .item:nth-child(3) {
  animation-delay: 0.07s;
}

.product .item:nth-child(4),
.product .item:nth-child(5) {
  animation-delay: 0.12s;
}

/* Page-level refinements */
body.page-home #bootstrap-touch-slider {
  padding: 24px 18px 10px;
}

body.page-home #bootstrap-touch-slider .carousel-inner {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.16);
}

body.page-home .bs-slider .item {
  min-height: clamp(460px, 72vh, 680px);
}

body.page-home .bs-slider .bs-slider-overlay {
  background:
    linear-gradient(110deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.12)),
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.14), transparent 26%) !important;
}

body.page-home .slide-text {
  max-width: 620px;
  padding: 32px 34px !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  background: rgba(17, 17, 17, 0.34);
  backdrop-filter: blur(16px);
}

body.page-home .slide-text > h1 {
  margin-bottom: 16px !important;
  font-size: clamp(38px, 5vw, 74px) !important;
  line-height: 0.94 !important;
  text-transform: uppercase;
}

body.page-home .slide-text > p {
  max-width: 34em;
  font-size: 17px !important;
  line-height: 1.75 !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

body.page-home .carousel-control.left,
body.page-home .carousel-control.right {
  width: 90px;
  background-image: none !important;
  opacity: 1;
}

body.page-home .carousel-control .fa {
  width: 54px;
  height: 54px;
  line-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

body.page-home .carousel-indicators {
  bottom: 26px;
}

body.page-home .carousel-indicators li {
  width: 34px;
  height: 5px;
  margin: 0 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

body.page-home .carousel-indicators .active {
  width: 54px;
  height: 5px;
  background: #fff;
}

body.page-home .headline {
  margin-bottom: 34px;
  text-align: center;
}

body.page-home .headline h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.02;
}

body.page-home .headline h3 {
  margin: 0;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76) !important;
}

body.page-home .service .headline h3,
body.page-home .product.bg-gray .headline h3 {
  color: var(--bw-muted) !important;
}

body.page-home .services {
  margin-bottom: 30px;
}

body.page-home .service .item {
  height: 100%;
  padding: 30px 28px;
  border-radius: 24px !important;
  text-align: left;
}

body.page-home .service .photo {
  width: 84px;
  height: 84px;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(145deg, #fafafa, #efefef);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

body.page-home .service .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-home .service .item h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

body.page-home .service-path {
  color: var(--bw-muted);
  line-height: 1.8;
}

body.page-home .product .item {
  margin: 10px 12px 24px;
  padding: 14px;
  border-radius: 24px !important;
  overflow: hidden;
}

body.page-home .product .item .thumb {
  position: relative;
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 20px;
  aspect-ratio: 4 / 4.7;
}

body.page-home .product .item .thumb .photo {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: transform 0.45s ease;
}

body.page-home .product .item:hover .thumb .photo {
  transform: scale(1.05);
}

body.page-home .product .item .thumb .overlay {
  opacity: 0.88;
}

body.page-home .product .text {
  padding: 4px 8px 10px;
}

body.page-home .product .text h3 {
  min-height: 2.9em;
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.25;
}

body.page-home .product .text h4 {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 800;
}

body.page-home .product .rating {
  min-height: 24px;
  margin-bottom: 14px;
  color: #111;
}

body.page-home .cssbuttons-io-button {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 22px;
  border-radius: 999px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.page-home .cssbuttons-io-button .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
}

body.page-product .page {
  padding: 28px 0 78px;
}

body.page-product .product-breadcrumb-card {
  margin-top: 20px;
  padding: 24px 28px 22px;
  border-radius: 26px !important;
}

body.page-product .product-breadcrumb-card ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 0;
}

body.page-product .product-breadcrumb-card ul li {
  float: none;
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: var(--bw-muted);
}

body.page-product .product-current-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: clamp(24px, 3vw, 40px);
  font-family: "Space Grotesk", "Trebuchet MS", sans-serif;
  line-height: 1.1;
}

body.page-product .product-current-name span {
  font-size: inherit !important;
}

body.page-product .product-x {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 34px;
  width: 100% !important;
  min-width: 0 !important;
  padding: 26px;
  border-radius: 28px !important;
  align-items: start;
}

body.page-product .product-x .block {
  display: none;
}

body.page-product .product-x .product__photo {
  min-width: 0;
}

body.page-product .product-x .photo-container {
  position: relative !important;
  left: 0 !important;
  top: auto !important;
  width: 100% !important;
  height: auto !important;
  padding: 18px;
  overflow: hidden;
  border-radius: 24px !important;
}

body.page-product .product-x .photo-main {
  background: linear-gradient(160deg, #f8f8f8, #ececec) !important;
}

body.page-product ul.prod-slider li {
  height: min(560px, 68vw);
  max-height: 620px;
  border-radius: 22px;
  background-position: center;
}

body.page-product #prod-pager {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(78px, 1fr));
  gap: 10px;
  margin-top: 16px;
}

body.page-product #prod-pager a {
  float: none;
  margin: 0;
  display: block;
}

body.page-product .prod-pager-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--bw-border);
  border-radius: 16px;
  background-position: center;
}

body.page-product .product__info {
  position: sticky;
  top: 110px;
  padding: 28px;
  border-radius: 24px !important;
}

body.page-product .product__info .title {
  margin-bottom: 12px;
}

body.page-product .product__info .title h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 0.98;
}

body.page-product .product__info .variant {
  margin-bottom: 16px;
}

body.page-product .product__info .rating {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 18px;
}

body.page-product .product__info .description {
  margin: 0 0 18px;
}

body.page-product .product__info .description p {
  color: var(--bw-muted);
  font-size: 16px;
  line-height: 1.8;
}

body.page-product .product-purchase-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.page-product .p-quantity .row {
  margin-left: 0;
  margin-right: 0;
}

body.page-product .p-quantity .col-md-12 {
  padding-left: 0;
  padding-right: 0;
}

body.page-product .p-quantity select,
body.page-product .p-quantity input[type="number"] {
  width: 100% !important;
  max-width: none;
  height: 52px;
}

body.page-product .price {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--bw-border);
  border-radius: 22px;
  background: linear-gradient(145deg, #ffffff, #f4f4f4);
  color: #111 !important;
}

body.page-product .price > span:first-child {
  display: block;
  margin-bottom: 8px;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bw-muted) !important;
}

body.page-product .price > span:last-child {
  display: block;
  font-size: clamp(28px, 3vw, 40px) !important;
  font-weight: 800;
  line-height: 1.1;
}

body.page-product .price del {
  margin-right: 10px;
  font-size: 0.52em;
}

body.page-product .product-purchase-cta {
  margin-top: 2px;
}

body.page-product .buy--btn {
  width: 100%;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 999px !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.page-product .share {
  margin-top: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--bw-border);
  color: var(--bw-muted);
}

body.page-product .product-detail-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 50px 0 16px;
  border-bottom: 0 !important;
  background: transparent !important;
}

body.page-product .product-detail-tabs > li {
  float: none;
  margin: 0;
}

body.page-product .product-detail-tabs > li > a {
  padding: 13px 18px;
  border-radius: 999px !important;
}

body.page-product .product-detail-content {
  padding: 30px 32px;
  border-radius: 24px !important;
}

body.page-product .product-detail-content .tab-pane {
  margin-top: 0 !important;
}

body.page-product .related-products-section {
  padding-top: 88px;
}

body.page-cart .page {
  padding: 28px 0 78px;
}

body.page-cart .cart-empty-state {
  max-width: 760px;
  margin: 26px auto 10px;
  padding: 42px 34px;
  background: var(--bw-surface);
  border: 1px solid var(--bw-border);
  border-radius: 32px;
  box-shadow: var(--bw-shadow);
  text-align: center;
}

body.page-cart .cart-empty-state h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
}

body.page-cart .cart-empty-state h4 {
  margin: 0;
  color: var(--bw-muted);
  font-size: 17px;
  line-height: 1.7;
}

body.page-cart .cart-table-card {
  overflow: hidden;
  border-radius: 26px;
}

body.page-cart .tb-cart {
  margin-bottom: 0;
}

body.page-cart .tb-cart > tbody > tr > td,
body.page-cart .tb-cart > tbody > tr > th,
body.page-cart .tb-cart > thead > tr > th {
  padding: 18px 16px !important;
  vertical-align: middle !important;
}

body.page-cart .cart-product-thumb {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid var(--bw-border);
}

body.page-cart .cart input[type="number"] {
  width: 92px;
  height: 48px;
  border-radius: 14px;
  text-align: center;
}

body.page-cart .trash {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bw-border) !important;
  border-radius: 50%;
  background: #fff !important;
}

body.page-cart .trash i {
  color: #111 !important;
}

body.page-cart .total-text,
body.page-cart .total-amount {
  font-size: 17px !important;
  font-weight: 800;
}

body.page-cart .cart-buttons {
  margin-top: 26px;
}

body.page-cart .cart-buttons ul {
  float: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  margin: 0;
  padding: 0;
}

body.page-cart .cart-buttons li {
  float: none;
  margin: 0;
}

body.page-cart .cart-buttons li input[type="submit"],
body.page-cart .cart-buttons li a {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px !important;
  font-size: 15px;
  font-weight: 700;
  padding: 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Mobile */
@media (max-width: 991px) {
  body.page-product .product-x {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px;
  }

  body.page-product .product__info {
    position: static;
  }

  body.page-product ul.prod-slider li {
    height: min(440px, 78vw);
  }

  body.page-cart .cart-buttons ul {
    justify-content: stretch;
  }

  body.page-cart .cart-buttons li {
    width: 100%;
  }

  body.page-cart .cart-buttons li input[type="submit"],
  body.page-cart .cart-buttons li a {
    width: 100%;
    justify-content: center;
  }

  .top,
  .top-ub {
    height: auto !important;
  }

  .top .left ul,
  .top .right ul {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .header .logo img {
    height: 62px !important;
  }

  .menu > ul > li > a {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }
}

@media (max-width: 767px) {
  body.page-home .headline {
    margin-bottom: 24px;
  }

  body.page-home .headline h2 {
    font-size: 28px;
  }

  body.page-home .headline h3 {
    font-size: 12px;
    letter-spacing: 0.1em;
  }

  body.page-home #bootstrap-touch-slider {
    padding: 14px 10px 0;
  }

  body.page-home #bootstrap-touch-slider .carousel-inner {
    border-radius: 22px;
  }

  body.page-home .bs-slider .item {
    min-height: 420px;
  }

  body.page-home .slide-text {
    padding: 22px 20px !important;
    border-radius: 20px;
  }

  body.page-home .slide-text > h1 {
    font-size: 34px !important;
  }

  body.page-home .slide-text > p {
    font-size: 14px !important;
    line-height: 1.65 !important;
    margin-bottom: 16px !important;
  }

  body.page-home .slide-text > a.btn-primary,
  body.page-home .slide-text > a.btn-default {
    min-height: 46px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px !important;
  }

  body.page-home .carousel-indicators {
    display: none;
  }

  body.page-home .service .item,
  body.page-home .product .item {
    margin-left: 0;
    margin-right: 0;
  }

  body.page-home .service .item {
    padding: 22px 20px;
  }

  body.page-home .service .photo {
    width: 72px;
    height: 72px;
    margin-bottom: 14px;
    border-radius: 18px;
  }

  body.page-home .service .item h3 {
    font-size: 21px;
  }

  body.page-home .product .item {
    padding: 12px;
    margin-bottom: 18px;
  }

  body.page-home .product .item .thumb {
    margin-bottom: 14px;
    border-radius: 16px;
  }

  body.page-home .product .text {
    padding: 0 4px 6px;
  }

  body.page-home .product .text h3 {
    min-height: 0;
    font-size: 18px;
    margin-bottom: 10px;
  }

  body.page-home .product .text h4 {
    font-size: 19px;
    margin-bottom: 12px;
  }

  body.page-home .cssbuttons-io-button {
    min-height: 48px;
    padding: 0 16px 0 18px;
    font-size: 12px;
  }

  body.page-home .cssbuttons-io-button .icon {
    width: 36px;
    height: 36px;
  }

  body.page-product .product-breadcrumb-card,
  body.page-product .product-x,
  body.page-product .product-detail-content,
  body.page-cart .cart-empty-state {
    padding-left: 18px;
    padding-right: 18px;
  }

  body.page-product .page {
    padding: 18px 0 58px;
  }

  body.page-product .product-breadcrumb-card {
    margin-top: 10px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  body.page-product .product-breadcrumb-card ul {
    gap: 8px;
    margin-bottom: 12px;
  }

  body.page-product .product-current-name {
    font-size: 23px;
    line-height: 1.18;
  }

  body.page-product .product-x {
    gap: 18px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  body.page-product .product-x .photo-container {
    padding: 12px;
    border-radius: 18px !important;
  }

  body.page-product ul.prod-slider li {
    height: min(360px, 84vw);
    border-radius: 16px;
  }

  body.page-product #prod-pager {
    gap: 8px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.page-product .prod-pager-thumb {
    border-radius: 12px;
  }

  body.page-product .product__info {
    padding: 20px 18px;
  }

  body.page-product .product__info .title h2 {
    font-size: 28px;
  }

  body.page-product .product__info .description p {
    font-size: 15px;
    line-height: 1.7;
  }

  body.page-product .p-quantity select,
  body.page-product .p-quantity input[type="number"] {
    height: 48px;
  }

  body.page-product .price {
    padding: 16px;
    border-radius: 18px;
  }

  body.page-product .price > span:last-child {
    font-size: 30px !important;
  }

  body.page-product .buy--btn {
    min-height: 52px;
    font-size: 13px;
  }

  body.page-product .product-detail-tabs {
    gap: 8px;
    margin: 28px 0 12px;
  }

  body.page-product .product-detail-tabs > li,
  body.page-product .product-detail-tabs > li > a {
    width: 100%;
  }

  body.page-product .product-detail-tabs > li > a {
    padding: 12px 14px;
    font-size: 13px;
    text-align: center;
  }

  body.page-product .product-detail-content {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  body.page-product .related-products-section {
    padding-top: 56px;
  }

  body.page-cart .page {
    padding: 18px 0 56px;
  }

  body.page-cart .cart-empty-state {
    margin-top: 16px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 24px;
  }

  body.page-cart .cart-empty-state h2 {
    font-size: 24px;
  }

  body.page-cart .cart-empty-state h4 {
    font-size: 15px;
  }

  body.page-cart .cart {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  body.page-cart .tb-cart {
    min-width: 720px;
  }

  body.page-cart .tb-cart > tbody > tr > td,
  body.page-cart .tb-cart > tbody > tr > th,
  body.page-cart .tb-cart > thead > tr > th {
    padding: 14px 12px !important;
    font-size: 13px;
  }

  body.page-cart .cart-product-thumb {
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }

  body.page-cart .cart input[type="number"] {
    width: 76px;
    height: 42px;
  }

  body.page-cart .trash {
    width: 38px;
    height: 38px;
  }

  body.page-cart .cart-buttons {
    margin-top: 18px;
  }

  body.page-cart .cart-buttons ul {
    gap: 10px;
  }

  body.page-cart .cart-buttons li input[type="submit"],
  body.page-cart .cart-buttons li a {
    min-height: 48px;
    font-size: 12px;
    padding: 0 16px;
  }

  .page-banner h1 {
    font-size: 24px !important;
    line-height: 1.1 !important;
  }

  .product .item,
  .service .item,
  .bx-1,
  .bx-2,
  .bx-6 {
    border-radius: 12px !important;
  }
}

@media (max-width: 575px) {
  body.page-home .bs-slider .item {
    min-height: 390px;
  }

  body.page-home .slide-text {
    padding: 18px 16px !important;
  }

  body.page-home .slide-text > h1 {
    font-size: 28px !important;
  }

  body.page-home .slide-text > p {
    font-size: 13px !important;
  }

  body.page-product .product-current-name {
    font-size: 21px;
  }

  body.page-product ul.prod-slider li {
    height: min(300px, 86vw);
  }

  body.page-product #prod-pager {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  body.page-product .product__info .title h2 {
    font-size: 24px;
  }

  body.page-product .price > span:last-child {
    font-size: 26px !important;
  }

  body.page-cart .tb-cart {
    min-width: 660px;
  }

  body.page-cart .cart-empty-state {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Modern UI Refresh */
:root {
  --bw-bg: #f5f2eb;
  --bw-surface: #ffffff;
  --bw-surface-alt: #f8f5ef;
  --bw-ink: #101010;
  --bw-muted: #6e675c;
  --bw-border: #e4ddd1;
  --bw-accent: #101010;
  --bw-accent-2: #2b2b2b;
  --bw-shadow: 0 18px 46px rgba(16, 16, 16, 0.07);
  --bw-radius: 22px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(180deg, #faf8f3 0%, #f2eee6 100%) !important;
  color: var(--bw-ink);
}

.top,
.top-ub {
  background: #111111 !important;
  border-bottom: 1px solid #1d1d1d;
}

.header,
.nav {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(18px);
}

.header {
  border-bottom: 1px solid rgba(228, 221, 209, 0.9);
}

.nav {
  border-top: 1px solid rgba(228, 221, 209, 0.75);
  border-bottom: 1px solid rgba(228, 221, 209, 0.9);
  box-shadow: none;
}

.menu > ul > li > a {
  padding-top: 22px !important;
  padding-bottom: 22px !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu > ul > li > ul,
.menu > ul > li > ul > li > ul {
  padding: 10px 0;
  border-radius: 18px;
}

.menu > ul > li > ul > li > a,
.menu > ul > li > ul > li > ul > li > a {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.page-banner {
  min-height: 280px;
  background-position: center !important;
  background-size: cover !important;
  border-bottom: 0;
}

.page-banner .overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.24)) !important;
}

.page-banner .page-banner-inner {
  position: relative;
  z-index: 2;
  padding: 78px 0 72px;
}

.page-banner h1 {
  font-size: clamp(34px, 5vw, 62px) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.05em;
  text-shadow: none;
}

.headline {
  margin-bottom: 36px;
}

.headline h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4.2vw, 54px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.headline h3 {
  max-width: 640px;
  margin: 0 auto;
  color: var(--bw-muted) !important;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: normal;
  text-transform: none;
}

.bg-mavi .headline h3,
.ticket .headline h3 {
  color: rgba(255, 255, 255, 0.72) !important;
}

.bx-1,
.bx-2,
.bx-3,
.bx-4,
.bx-5,
.bx-6,
.product .item .inner,
.service .item,
.cart table,
.tab-content,
.product-x .photo-container,
.product__info {
  border-color: var(--bw-border) !important;
  border-radius: 26px !important;
  box-shadow: var(--bw-shadow) !important;
}

.product .item,
.service .item,
.item-search-result .inner,
.item-product-cat .inner {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.product .item:hover,
.service .item:hover,
.item-search-result .inner:hover,
.item-product-cat .inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(16, 16, 16, 0.1) !important;
}

.btn,
.btn-default,
.btn-primary,
.btn-success,
.btn-danger,
.buy--btn,
.cssbuttons-io-button,
.btn-search,
.login-button,
button[type="submit"] {
  min-height: 50px;
  padding: 0 20px !important;
  border-radius: 16px !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

body.page-home #bootstrap-touch-slider {
  padding: 30px 28px 8px;
}

body.page-home #bootstrap-touch-slider .carousel-inner {
  border-radius: 38px;
  box-shadow: 0 28px 70px rgba(16, 16, 16, 0.18);
}

body.page-home .bs-slider .item {
  min-height: clamp(540px, 76vh, 760px);
}

body.page-home .bs-slider .bs-slider-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.16)) !important;
}

body.page-home .slide-text {
  max-width: 580px;
  padding: 44px 46px !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.8), rgba(16, 16, 16, 0.62));
  backdrop-filter: none;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.24);
}

body.page-home .slide-text > h1 {
  margin-bottom: 18px !important;
  font-size: clamp(42px, 5.2vw, 76px) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.06em;
  text-transform: none;
}

body.page-home .slide-text > p {
  max-width: 32em;
  margin-bottom: 22px !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
  color: rgba(255, 255, 255, 0.82) !important;
}

body.page-home .slide-text > a.btn-primary,
body.page-home .slide-text > a.btn-default {
  min-height: 52px;
  border-radius: 16px !important;
  padding: 0 22px !important;
}

body.page-home .carousel-control.left,
body.page-home .carousel-control.right {
  width: 84px;
}

body.page-home .carousel-control .fa {
  width: 52px;
  height: 52px;
  line-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
}

body.page-home .service .item {
  padding: 34px 32px;
  background: linear-gradient(180deg, #ffffff, #fbfaf7) !important;
}

body.page-home .service .photo {
  width: 82px;
  height: 82px;
  margin-bottom: 20px;
  border-radius: 24px;
}

body.page-home .service .item h3 {
  font-size: 26px;
  letter-spacing: -0.03em;
}

body.page-home .service-path {
  font-size: 15px;
  line-height: 1.9;
}

body.page-home .product .item {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 10px 14px 28px;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff, #fcfbf9) !important;
}

body.page-home .product .item .thumb {
  margin-bottom: 20px;
  border-radius: 24px;
  background: #f4f1eb;
}

body.page-home .product .text {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 2px 6px 8px;
}

body.page-home .product .text h3 {
  min-height: 2.8em;
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

body.page-home .product .text h4 {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 800;
}

body.page-home .product .rating {
  margin-bottom: 16px;
}

body.page-home .cssbuttons-io-button {
  width: 100%;
  margin-top: auto;
  justify-content: space-between;
  border-radius: 18px !important;
}

body.page-home .cssbuttons-io-button .icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

body.page-product .page,
body.page-cart .page {
  padding-top: 36px;
}

body.page-product .product-breadcrumb-card {
  background: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(16px);
}

body.page-product .product-x {
  padding: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.page-product .product-x .photo-container,
body.page-product .product__info {
  background: #ffffff !important;
  border-radius: 30px !important;
}

body.page-product .product-x .photo-container {
  padding: 22px;
}

body.page-product .product__info {
  padding: 34px;
}

body.page-product .product__info .title h2 {
  font-size: clamp(34px, 4.2vw, 58px);
  letter-spacing: -0.05em;
}

body.page-product ul.prod-slider li {
  border-radius: 24px;
  background-color: #f4f1eb;
}

body.page-product .price {
  border-color: #111 !important;
  background: #111111 !important;
}

body.page-product .price > span:first-child {
  color: rgba(255, 255, 255, 0.54) !important;
}

body.page-product .price > span:last-child,
body.page-product .price {
  color: #ffffff !important;
}

body.page-product .price del {
  color: rgba(255, 255, 255, 0.4) !important;
}

body.page-product .product-detail-tabs > li > a {
  background: #ffffff !important;
  border: 1px solid var(--bw-border) !important;
  border-radius: 16px !important;
}

body.page-product .product-detail-content {
  background: #ffffff !important;
  border-radius: 28px !important;
}

body.page-product .product-detail-content p,
body.page-product .product-detail-content li {
  color: var(--bw-muted);
  line-height: 1.9;
}

body.page-product .buy--btn {
  border-radius: 18px !important;
}

body.page-cart .cart-empty-state {
  background: linear-gradient(180deg, #ffffff, #fbfaf7) !important;
}

body.page-cart .cart-table-card {
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--bw-border);
  box-shadow: var(--bw-shadow);
}

body.page-cart .tb-cart > thead > tr > th {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.page-cart .cart-buttons li input[type="submit"],
body.page-cart .cart-buttons li a {
  border-radius: 16px !important;
}

body.page-cart .trash {
  box-shadow: none !important;
}

@media (max-width: 991px) {
  body.page-home #bootstrap-touch-slider {
    padding-left: 18px;
    padding-right: 18px;
  }

  body.page-home .slide-text {
    padding: 30px !important;
  }

  body.page-product .product__info {
    padding: 26px;
  }
}

@media (max-width: 767px) {
  .menu > ul > li > a {
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .page-banner {
    min-height: 220px;
  }

  .page-banner .page-banner-inner {
    padding: 52px 0 48px;
  }

  .headline h2 {
    font-size: 30px;
  }

  .headline h3 {
    font-size: 14px;
  }

  body.page-home #bootstrap-touch-slider {
    padding: 14px 12px 0;
  }

  body.page-home #bootstrap-touch-slider .carousel-inner {
    border-radius: 24px;
  }

  body.page-home .bs-slider .item {
    min-height: 440px;
  }

  body.page-home .slide-text {
    padding: 24px 20px !important;
    border-radius: 22px;
  }

  body.page-home .slide-text > h1 {
    font-size: 32px !important;
  }

  body.page-home .slide-text > p {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  body.page-home .slide-text > a.btn-primary,
  body.page-home .slide-text > a.btn-default {
    width: 100%;
  }

  body.page-home .service .item,
  body.page-home .product .item {
    padding: 18px;
    border-radius: 18px !important;
  }

  body.page-home .product .item .thumb {
    border-radius: 16px;
  }

  body.page-home .product .text {
    min-height: 0;
  }

  body.page-home .product .text h3 {
    font-size: 19px;
  }

  body.page-product .product-x .photo-container,
  body.page-product .product__info,
  body.page-product .product-detail-content,
  body.page-product .product-breadcrumb-card,
  body.page-cart .cart-empty-state {
    border-radius: 20px !important;
  }

  body.page-product .product__info,
  body.page-product .product-x .photo-container,
  body.page-product .product-detail-content {
    padding: 18px;
  }

  body.page-product .product__info .title h2 {
    font-size: 28px;
  }

  body.page-product .price {
    border-radius: 18px;
  }

  body.page-cart .cart-table-card {
    padding: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final Modern System */
:root {
  --bw-bg: #f6f2eb;
  --bw-surface: #ffffff;
  --bw-surface-soft: #fbf8f3;
  --bw-ink: #121212;
  --bw-muted: #6d665c;
  --bw-border: #e5ddd1;
  --bw-accent: #111111;
  --bw-accent-soft: #f2ece2;
  --bw-shadow: 0 18px 46px rgba(18, 18, 18, 0.08);
  --bw-radius: 24px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(180deg, #faf8f3 0%, #f2eee6 100%) !important;
  color: var(--bw-ink);
}

.header,
.nav {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(18px);
}

.header {
  border-bottom: 1px solid rgba(229, 221, 209, 0.88);
}

.nav {
  border-top: 1px solid rgba(229, 221, 209, 0.76);
  border-bottom: 1px solid rgba(229, 221, 209, 0.88);
  box-shadow: none;
}

.header .inner {
  display: flex;
  align-items: center;
  min-height: 116px;
}

.header .logo img {
  max-height: 74px;
  width: auto;
}

.header .right ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header .right ul li a,
.btn-contact,
.top .right ul li a.social {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: inherit !important;
}

.header .right ul li a {
  border-color: var(--bw-border);
  background: var(--bw-surface);
  color: var(--bw-ink) !important;
  font-size: 13px;
  font-weight: 700;
}

.btn-contact .paragraph {
  margin: 0;
  color: inherit !important;
  font-size: 13px;
  font-weight: 600;
}

.btn-contact .icon-wrapper,
.cssbuttons-io-button .icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.search-box {
  max-width: 320px;
  padding: 8px;
  border: 1px solid var(--bw-border);
  border-radius: 18px;
  background: var(--bw-surface);
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.04);
}

.btn-search {
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 0 !important;
  border-radius: 12px !important;
}

.input-search {
  height: 42px;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.menu > ul > li > a {
  padding-top: 22px !important;
  padding-bottom: 22px !important;
  color: var(--bw-ink) !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu > ul > li:hover,
.menu > ul > li:hover > a {
  background: transparent !important;
  color: #000 !important;
}

.menu > ul > li > ul,
.menu > ul > li > ul > li > ul {
  padding: 10px 0;
  border: 1px solid var(--bw-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: var(--bw-shadow);
}

.page-banner {
  min-height: 290px;
  border-bottom: 0;
}

.page-banner .overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.26)) !important;
}

.page-banner .page-banner-inner {
  position: relative;
  z-index: 2;
  padding: 84px 0 72px;
}

.page-banner h1 {
  font-size: clamp(36px, 5vw, 64px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.06em;
}

.headline {
  margin-bottom: 38px;
}

.headline h2 {
  margin-bottom: 12px;
  font-size: clamp(32px, 4vw, 54px);
}

.headline h3 {
  max-width: 640px;
  color: var(--bw-muted) !important;
  font-size: 16px;
  line-height: 1.8;
  text-transform: none;
  letter-spacing: normal;
}

.bx-1,
.bx-2,
.bx-3,
.bx-4,
.bx-5,
.bx-6,
.panel,
.tab-content,
.cart table,
.product-x .photo-container,
.product__info,
.service .item,
.item-product-cat .inner,
.item-search-result .inner,
#left,
.sidebarx,
.cart-table-card,
.cart-empty-state {
  border: 1px solid var(--bw-border) !important;
  border-radius: var(--bw-radius) !important;
  background: var(--bw-surface) !important;
  box-shadow: var(--bw-shadow) !important;
}

.service .item,
.product .item,
.item-product-cat .inner,
.item-search-result .inner {
  background: linear-gradient(180deg, #ffffff, #fcfbf9) !important;
}

.service .item {
  padding: 34px 32px;
}

.service .photo {
  width: 82px;
  height: 82px;
  margin-bottom: 20px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--bw-accent-soft);
}

.service .item h3 {
  font-size: 26px;
}

.service-path {
  color: var(--bw-muted);
  line-height: 1.85;
}

.product .item,
.item-product-cat .inner,
.item-search-result .inner {
  height: 100%;
  padding: 16px;
}

.product .item .thumb,
.item-product-cat .thumb,
.item-search-result .thumb {
  margin-bottom: 18px;
  border-radius: 22px;
  background: #f4efe6;
  aspect-ratio: 4 / 4.8;
}

.product .item .thumb .overlay,
.item-product-cat .thumb .overlay,
.item-search-result .thumb .overlay {
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.02), rgba(17, 17, 17, 0.22)) !important;
}

.product .text,
.item-product-cat .text,
.item-search-result .text {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 2px 6px 8px;
}

.product .text h3,
.item-product-cat .text h3,
.item-search-result .text h3 {
  min-height: 2.75em;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

.product .text h4,
.item-product-cat .text h4,
.item-search-result .text h4 {
  margin-bottom: 14px;
  font-size: 24px;
  font-weight: 800;
}

.rating {
  margin-bottom: 16px;
}

.cssbuttons-io-button {
  width: 100%;
  margin-top: auto;
  justify-content: space-between;
}

body.page-home #bootstrap-touch-slider {
  padding: 28px 24px 10px;
}

body.page-home #bootstrap-touch-slider .carousel-inner {
  border-radius: 36px;
  box-shadow: 0 26px 72px rgba(17, 17, 17, 0.2);
}

body.page-home .bs-slider .item {
  min-height: clamp(520px, 74vh, 760px);
}

body.page-home .bs-slider .bs-slider-overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.18)) !important;
}

body.page-home .slide-text {
  max-width: 580px;
  padding: 42px 44px !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.82), rgba(17, 17, 17, 0.62));
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.24);
}

body.page-home .slide-text > h1 {
  color: #fff;
  font-size: clamp(42px, 5vw, 76px) !important;
  line-height: 0.92 !important;
}

body.page-home .slide-text > p {
  margin-bottom: 22px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 16px !important;
  line-height: 1.8 !important;
}

body.page-home .slide-text > a.btn-primary,
body.page-home .slide-text > a.btn-default {
  min-height: 52px;
}

body.page-home .carousel-control.left,
body.page-home .carousel-control.right {
  width: 86px;
  background-image: none !important;
  opacity: 1;
}

body.page-home .carousel-control .fa {
  width: 52px;
  height: 52px;
  line-height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

body.page-home .carousel-indicators li {
  width: 30px;
  height: 5px;
  border: 0;
  border-radius: 999px;
}

body.page-home .carousel-indicators .active {
  width: 50px;
}

.product-breadcrumb-card {
  background: rgba(255, 255, 255, 0.76) !important;
  backdrop-filter: blur(16px);
}

.product-x {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 32px;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.product-x .photo-container,
.product__info,
.product-detail-content {
  border-radius: 30px !important;
}

.product-x .photo-container {
  padding: 22px;
}

ul.prod-slider li {
  border-radius: 22px;
  background-color: #f4efe6;
}

.product__info {
  padding: 34px;
}

.product__info .title h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.96;
}

.product__info .description p,
.product-detail-content p,
.product-detail-content li,
.product-detail-content td {
  color: var(--bw-muted);
  line-height: 1.9;
}

.price {
  border: 1px solid #111 !important;
  border-radius: 20px;
  background: #111 !important;
}

.price > span:first-child {
  color: rgba(255, 255, 255, 0.56) !important;
}

.price,
.price > span:last-child {
  color: #fff !important;
}

.price del {
  color: rgba(255, 255, 255, 0.42) !important;
}

.product-detail-tabs > li > a {
  border: 1px solid var(--bw-border) !important;
  border-radius: 16px !important;
  background: #fff !important;
}

.cart-table-card {
  padding: 10px;
}

.cart-product-thumb,
.cart table img {
  width: 86px;
  height: 86px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid var(--bw-border);
}

.cart-buttons li input[type="submit"],
.cart-buttons li a {
  border-radius: 16px !important;
}

.panel-heading {
  border-bottom: 1px solid var(--bw-border);
  background: var(--bw-surface-soft) !important;
  color: var(--bw-ink) !important;
}

.alert-info,
.alert-warning,
.alert-success,
.error,
.success {
  border-color: #dbd1c3 !important;
  background: var(--bw-accent-soft) !important;
  color: var(--bw-ink) !important;
}

.sidebarx {
  padding: 18px;
}

.nav__item {
  min-height: 50px;
  padding: 0 16px !important;
  border: 1px solid var(--bw-border) !important;
  border-radius: 16px !important;
  background: var(--bw-surface-soft) !important;
  color: var(--bw-ink) !important;
  text-transform: none;
  letter-spacing: 0;
}

.nav__item:hover {
  background: #111 !important;
  color: #fff !important;
}

.site-footer {
  margin-top: 24px;
  padding: 34px 0 24px;
  background: linear-gradient(180deg, #0f0f0f, #171717) !important;
  color: #fff !important;
}

.site-footer__top {
  padding-bottom: 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff !important;
}

.site-footer__logo {
  height: 48px;
  width: auto;
}

.site-footer__brand-name {
  font-size: 28px;
  font-weight: 700;
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social--link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff !important;
}

.social--link:hover {
  background: #fff;
  color: #111 !important;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
}

.site-footer__title {
  margin-bottom: 14px;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__text,
.site-footer__links a,
.site-footer__contact li,
.site-footer__bottom p,
.site-footer__backlink {
  color: rgba(255, 255, 255, 0.72) !important;
}

.site-footer__links,
.site-footer__contact {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links li + li,
.site-footer__contact li + li {
  margin-top: 10px;
}

.site-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.site-footer__bottom {
  margin-top: 28px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.scrollup {
  width: 48px;
  height: 48px;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111;
  color: #fff !important;
  box-shadow: 0 16px 30px rgba(17, 17, 17, 0.2);
}

@media (max-width: 991px) {
  .header .inner {
    min-height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .header .logo,
  .header .right,
  .search-area {
    margin-bottom: 16px;
  }

  .search-area {
    justify-content: flex-start;
  }

  .search-box {
    max-width: none;
  }

  .product-x {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product__info {
    position: static;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .page-banner {
    min-height: 220px;
  }

  .page-banner .page-banner-inner {
    padding: 56px 0 48px;
  }

  .page-banner h1 {
    font-size: 30px !important;
  }

  .top .left ul,
  .top .right ul,
  .header .right ul {
    flex-wrap: wrap;
  }

  .header .right ul li a,
  .btn-contact {
    width: 100%;
    justify-content: center;
  }

  body.page-home #bootstrap-touch-slider {
    padding: 14px 12px 0;
  }

  body.page-home #bootstrap-touch-slider .carousel-inner {
    border-radius: 24px;
  }

  body.page-home .bs-slider .item {
    min-height: 430px;
  }

  body.page-home .slide-text {
    padding: 24px 20px !important;
    border-radius: 22px;
  }

  body.page-home .slide-text > h1 {
    font-size: 32px !important;
  }

  body.page-home .slide-text > p {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  body.page-home .slide-text > a.btn-primary,
  body.page-home .slide-text > a.btn-default,
  .cart-buttons li,
  .cart-buttons li input[type="submit"],
  .cart-buttons li a {
    width: 100%;
  }

  body.page-home .carousel-indicators,
  body.page-home .carousel-control.left,
  body.page-home .carousel-control.right {
    display: none;
  }

  .service .item,
  .product .item,
  .item-product-cat .inner,
  .item-search-result .inner,
  .product-breadcrumb-card,
  .product-x .photo-container,
  .product__info,
  .product-detail-content,
  .cart-empty-state,
  .cart-table-card,
  #left,
  .sidebarx {
    padding: 18px !important;
    border-radius: 18px !important;
  }

  .product .text,
  .item-product-cat .text,
  .item-search-result .text {
    min-height: 0;
  }

  .product .text h3,
  .item-product-cat .text h3,
  .item-search-result .text h3 {
    font-size: 18px;
  }

  .product__info .title h2 {
    font-size: 30px;
  }

  ul.prod-slider li {
    height: min(340px, 84vw);
    border-radius: 16px;
  }

  .cart {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cart table {
    min-width: 720px;
  }

  .site-footer__top,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 575px) {
  .headline h2 {
    font-size: 28px;
  }

  .headline h3 {
    font-size: 14px;
  }

  body.page-home .bs-slider .item {
    min-height: 390px;
  }

  body.page-home .slide-text {
    padding: 18px 16px !important;
  }

  body.page-home .slide-text > h1 {
    font-size: 28px !important;
  }

  body.page-home .slide-text > p {
    font-size: 13px !important;
  }

  .product-current-name,
  .product__info .title h2 {
    font-size: 24px !important;
  }

  .cart table {
    min-width: 660px;
  }
}

/* Final UX fixes: responsive nav + normal button sizing */
.top .left ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding-top: 0;
}

.top .left ul li {
  margin-right: 0;
}

.btn-contact {
  width: auto;
  min-width: 0;
  height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  justify-content: flex-start;
}

.btn-contact:hover {
  width: auto;
}

.btn-contact .paragraph {
  visibility: visible;
  opacity: 1;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  white-space: nowrap;
}

.btn-contact .icon-wrapper {
  position: static;
  width: 28px;
  height: 28px;
  margin-left: 8px;
}

.btn-contact .icon-wrapper i {
  color: inherit !important;
}

.search-box {
  width: 100%;
  max-width: 360px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-search {
  position: static;
  right: auto;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
}

.input-search {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 12px;
  font-size: 14px;
  letter-spacing: normal;
  color: var(--bw-ink) !important;
}

.input-search::placeholder {
  color: var(--bw-muted);
  font-size: 14px;
  letter-spacing: normal;
  font-weight: 500;
}

.btn-search:focus ~ .input-search,
.input-search:focus {
  width: 100%;
  border-bottom: 0;
  border-radius: 12px;
}

.menu-mobile {
  display: none;
  padding: 14px 16px;
  border-bottom: 1px solid var(--bw-border);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bw-ink) !important;
  background: #fff;
}

.menu-mobile::after {
  content: "\f0c9";
  font-family: "FontAwesome";
  float: right;
}

.menu > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.menu > ul > li {
  float: none;
}

.menu > ul > li > a {
  padding: 16px 18px !important;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
}

.btn,
.btn-default,
.btn-primary,
.btn-success,
.btn-danger,
.buy--btn,
.cssbuttons-io-button,
button[type="submit"],
.cart-buttons li input[type="submit"],
.cart-buttons li a {
  min-height: 42px;
  padding: 10px 16px !important;
  font-size: 14px !important;
  letter-spacing: 0.01em;
  text-transform: none;
}

.cssbuttons-io-button {
  position: static !important;
  width: 100% !important;
  height: auto !important;
  justify-content: flex-start;
  padding-right: 44px !important;
}

.cssbuttons-io-button .icon {
  right: 8px;
  width: 26px;
  height: 26px;
}

@media (max-width: 959px) {
  .header .inner {
    display: block;
  }

  .header .logo,
  .header .right,
  .header .search-area {
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
  }

  .header .right ul {
    justify-content: center;
  }

  .header .right ul li a,
  .btn-contact {
    width: auto;
  }

  .search-box {
    max-width: none;
  }

  .menu-mobile {
    display: block;
  }

  .menu > ul {
    display: none;
    width: 100%;
    background: #fff;
  }

  .menu > ul.show-on-mobile {
    display: block;
  }

  .menu > ul > li {
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }

  .menu > ul > li > a {
    padding: 14px 16px !important;
  }

  .menu > ul > li > ul,
  .menu > ul > li > ul > li > ul {
    position: static;
    width: 100%;
    margin-top: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 6px 14px 12px;
    background: #fafafa !important;
  }

  .menu > ul > li > ul > li {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .btn-contact {
    width: 100%;
    justify-content: center;
  }

  .btn-contact .paragraph {
    white-space: normal;
    text-align: center;
  }

  .btn,
  .btn-default,
  .btn-primary,
  .btn-success,
  .btn-danger,
  .buy--btn,
  .cssbuttons-io-button,
  button[type="submit"] {
    width: 100%;
  }
}

/* Modern Fluid Navbar */
.site-nav {
  --nav-brand-primary: #262a56;
  --nav-brand-secondary: #1f3f78;
  --nav-brand-accent: #22a6b3;
  --nav-brand-ink: #13203b;
  --nav-brand-soft: #edf6f8;
  --nav-brand-border: rgba(38, 42, 86, 0.16);
  position: sticky;
  top: 0;
  z-index: 960;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 252, 0.94)) !important;
  border-top: 1px solid rgba(34, 166, 179, 0.18);
  border-bottom: 1px solid var(--nav-brand-border);
  backdrop-filter: blur(14px);
}

.site-nav .menu-container {
  position: relative;
}

.site-nav .menu {
  width: 100%;
}

.site-nav .menu > ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 8px 0;
  list-style: none;
}

.site-nav .menu > ul > li {
  float: none;
  position: relative;
}

.site-nav .menu > ul > li > a {
  min-height: 44px;
  padding: 0 14px !important;
  display: inline-flex;
  align-items: center;
  border-radius: 12px;
  color: var(--nav-brand-ink) !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.site-nav .menu > ul > li:hover {
  background: transparent !important;
}

.site-nav .menu > ul > li:hover > a {
  background: var(--nav-brand-soft) !important;
  color: var(--nav-brand-primary) !important;
}

.site-nav .menu > ul > li.active > a,
.site-nav .menu > ul > li > a[aria-current="page"] {
  background: linear-gradient(135deg, var(--nav-brand-primary), var(--nav-brand-accent)) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 22px rgba(38, 42, 86, 0.28);
}

.site-nav .menu > ul > li.active:hover > a {
  color: #ffffff !important;
}

.site-nav .menu-dropdown-icon {
  padding-right: 0;
}

.site-nav .menu > ul > li.menu-dropdown-icon > a {
  padding-right: 28px !important;
}

.site-nav .menu-dropdown-icon:before {
  content: "\f078";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 11px;
  color: rgba(38, 42, 86, 0.62);
  pointer-events: none;
}

.site-nav .menu > ul > li.active.menu-dropdown-icon:before {
  color: #ffffff;
}

.site-nav .menu > ul > li > ul {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 280px;
  max-width: min(92vw, 680px);
  margin: 0;
  padding: 10px;
  border: 1px solid var(--nav-brand-border);
  border-radius: 14px;
  background: #ffffff !important;
  box-shadow: 0 18px 36px rgba(38, 42, 86, 0.14);
}

.site-nav .menu > ul > li:last-child > ul,
.site-nav .menu > ul > li:nth-last-child(2) > ul {
  left: auto;
  right: 0;
}

.site-nav .menu > ul > li > ul > li {
  width: 100%;
  float: none;
}

.site-nav .menu > ul > li > ul > li > a {
  width: 100%;
  padding: 10px 12px !important;
  border: 0 !important;
  border-radius: 10px;
  color: #0f172a !important;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.site-nav .menu > ul > li > ul > li:hover > a,
.site-nav .menu > ul > li > ul > li.active > a {
  background: rgba(34, 166, 179, 0.12) !important;
  color: var(--nav-brand-primary) !important;
}

.site-nav .menu > ul > li > ul > li > ul {
  display: none;
  position: absolute;
  top: 0;
  left: auto;
  right: calc(100% + 8px);
  width: 250px;
  margin: 0;
  padding: 10px;
  border: 1px solid var(--nav-brand-border);
  border-radius: 14px;
  background: #ffffff !important;
  box-shadow: 0 18px 36px rgba(38, 42, 86, 0.14);
}

.site-nav .menu > ul > li > ul > li > ul > li {
  width: 100%;
  float: none;
  padding: 0;
}

.site-nav .menu > ul > li > ul > li > ul > li > a {
  width: 100%;
  padding: 9px 12px !important;
  border-radius: 10px;
  border: 0 !important;
  color: #0f172a !important;
  font-size: 13px;
}

.site-nav .menu > ul > li > ul > li > ul > li:hover > a,
.site-nav .menu > ul > li > ul > li > ul > li.active > a {
  background: rgba(34, 166, 179, 0.12) !important;
  color: var(--nav-brand-primary) !important;
}

@media (max-width: 959px) {
  .site-nav {
    top: 0;
  }

  .site-nav .menu-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    margin: 8px 0;
    padding: 0 14px;
    border: 1px solid var(--nav-brand-border);
    border-radius: 12px;
    background: #ffffff;
    color: var(--nav-brand-primary) !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  .site-nav .menu-mobile::after {
    transition: transform 0.2s ease;
  }

  body.menu-is-open .site-nav .menu-mobile::after {
    transform: rotate(180deg);
  }

  .site-nav .menu > ul {
    display: none;
    width: 100%;
    padding: 6px;
    margin-top: 8px;
    border: 1px solid var(--nav-brand-border);
    border-radius: 14px;
    background: #ffffff;
  }

  .site-nav .menu > ul.show-on-mobile {
    display: block;
  }

  .site-nav .menu > ul > li {
    width: 100%;
    border-top: 1px solid rgba(38, 42, 86, 0.08);
  }

  .site-nav .menu > ul > li:first-child {
    border-top: 0;
  }

  .site-nav .menu > ul > li > a {
    width: 100%;
    padding: 12px 14px !important;
    min-height: 42px;
    justify-content: flex-start;
  }

  .site-nav .menu > ul > li.menu-dropdown-icon > a {
    padding-right: 34px !important;
  }

  .site-nav .menu-dropdown-icon:before {
    right: 16px;
  }

  .site-nav .menu > ul > li > ul,
  .site-nav .menu > ul > li > ul > li > ul {
    position: static;
    width: 100%;
    max-width: none;
    margin: 0 0 8px;
    padding: 6px;
    border: 0;
    border-radius: 10px;
    box-shadow: none;
    background: #f7fbfc !important;
  }
}

/* Overflow guards */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.container,
.container-fluid,
.row,
[class*="col-"] {
  min-width: 0;
}

img,
video,
iframe,
table {
  max-width: 100%;
}

/* Legacy fixed-width blocks that can force horizontal scroll */
.product-x,
.block,
.w-x {
  max-width: 100% !important;
}

@media (max-width: 959px) {
  .product-x,
  .block {
    width: 100% !important;
    min-width: 0 !important;
  }
}

/* Product Cards Refresh */
:root {
  --card-ink: #17243c;
  --card-muted: #5f6c80;
  --card-border: rgba(38, 42, 86, 0.14);
  --card-surface: #ffffff;
  --card-surface-soft: #f4f8fb;
  --card-accent: #22a6b3;
  --card-accent-strong: #262a56;
  --card-rating: #f6b11a;
}

.item-product-cat,
.item-search-result {
  margin-bottom: 24px;
}

.product .item,
.item-product-cat .inner,
.item-search-result .inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 14px !important;
  border: 1px solid var(--card-border) !important;
  border-radius: 20px !important;
  background: linear-gradient(180deg, var(--card-surface), #fbfdff) !important;
  box-shadow: 0 14px 32px rgba(23, 36, 60, 0.1) !important;
  overflow: hidden;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.product .item:hover,
.item-product-cat .inner:hover,
.item-search-result .inner:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 166, 179, 0.28) !important;
  box-shadow: 0 18px 36px rgba(23, 36, 60, 0.16) !important;
}

.product .item > .thumb,
.item-product-cat .inner > .thumb,
.item-search-result .inner > .thumb {
  position: relative;
  margin: 0 0 14px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 4.3;
  background: var(--card-surface-soft);
}

.product .item > .thumb .photo,
.item-product-cat .inner > .thumb .photo,
.item-search-result .inner > .thumb .photo {
  position: absolute;
  inset: 0;
  height: 100% !important;
  background-position: center !important;
  background-size: cover !important;
  transition: transform 0.4s ease;
}

.product .item:hover > .thumb .photo,
.item-product-cat .inner:hover > .thumb .photo,
.item-search-result .inner:hover > .thumb .photo {
  transform: scale(1.06);
}

.product .item > .thumb .overlay,
.item-product-cat .inner > .thumb .overlay,
.item-search-result .inner > .thumb .overlay {
  opacity: 1 !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(19, 32, 59, 0.1)) !important;
}

.product .item > .text,
.item-product-cat .inner > .text,
.item-search-result .inner > .text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
  min-height: 0;
  padding: 2px 2px 0;
  background: transparent !important;
}

.product .item > .text h3,
.item-product-cat .inner > .text h3,
.item-search-result .inner > .text h3 {
  margin: 0;
  min-height: 2.8em;
  font-size: 18px;
  line-height: 1.4;
}

.product .item > .text h3 a,
.item-product-cat .inner > .text h3 a,
.item-search-result .inner > .text h3 a {
  color: var(--card-ink) !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product .item > .text h4,
.item-product-cat .inner > .text h4,
.item-search-result .inner > .text h4,
.product .item > .text .set-price {
  margin: 0;
  padding: 0;
  color: var(--card-accent-strong) !important;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

.product .item > .text h4 del,
.item-product-cat .inner > .text h4 del,
.item-search-result .inner > .text h4 del,
.product .item > .text .set-price del {
  margin-left: 8px;
  color: var(--card-muted) !important;
  font-size: 0.65em;
  font-weight: 600;
  opacity: 0.8;
}

.product .item > .text .rating,
.item-product-cat .inner > .text .rating,
.item-search-result .inner > .text .rating {
  min-height: 22px;
  margin: 0;
  line-height: 1;
}

.product .item > .text .rating i,
.item-product-cat .inner > .text .rating i,
.item-search-result .inner > .text .rating i {
  color: var(--card-rating);
  margin-right: 2px;
}

.product .item > .text .out-of-stock,
.item-product-cat .inner > .text .out-of-stock,
.item-search-result .inner > .text .out-of-stock {
  margin-top: auto;
}

.product .item > .text .out-of-stock .inner,
.item-product-cat .inner > .text .out-of-stock .inner,
.item-search-result .inner > .text .out-of-stock .inner {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(211, 70, 70, 0.28);
  background: #fff1f1 !important;
  color: #b53b3b !important;
  font-weight: 700;
  text-decoration: none;
}

.product .cssbuttons-io-button,
.item-product-cat .cssbuttons-io-button,
.item-search-result .cssbuttons-io-button {
  width: 100% !important;
  min-height: 44px;
  margin-top: auto;
  padding: 10px 44px 10px 14px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, var(--card-accent-strong), var(--card-accent)) !important;
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
  box-shadow: 0 10px 24px rgba(38, 42, 86, 0.24);
}

.product .cssbuttons-io-button .icon,
.item-product-cat .cssbuttons-io-button .icon,
.item-search-result .cssbuttons-io-button .icon {
  width: 24px;
  height: 24px;
  right: 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.product .cssbuttons-io-button .icon i,
.item-product-cat .cssbuttons-io-button .icon i,
.item-search-result .cssbuttons-io-button .icon i {
  color: #fff !important;
}

@media (max-width: 991px) {
  .product .item,
  .item-product-cat .inner,
  .item-search-result .inner {
    padding: 12px !important;
    border-radius: 16px !important;
  }

  .product .item > .text h3,
  .item-product-cat .inner > .text h3,
  .item-search-result .inner > .text h3 {
    font-size: 16px;
  }

  .product .item > .text h4,
  .item-product-cat .inner > .text h4,
  .item-search-result .inner > .text h4,
  .product .item > .text .set-price {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .product .item > .thumb,
  .item-product-cat .inner > .thumb,
  .item-search-result .inner > .thumb {
    aspect-ratio: 4 / 4.5;
    border-radius: 14px;
  }

  .product .cssbuttons-io-button,
  .item-product-cat .cssbuttons-io-button,
  .item-search-result .cssbuttons-io-button {
    min-height: 42px;
    font-size: 13px !important;
  }
}

/* Cart Bounds Fix */
body.page-cart .cart-page-shell .cart,
body.page-cart .cart-page-shell .cart-table-card {
  width: 100%;
  max-width: 100%;
}

body.page-cart .cart-page-shell .cart-table-card {
  padding: clamp(8px, 1.4vw, 14px);
  border-radius: 18px;
  overflow-x: auto !important;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

body.page-cart .cart-page-shell .tb-cart {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  table-layout: fixed;
}

body.page-cart .cart-page-shell .tb-cart > thead > tr > th,
body.page-cart .cart-page-shell .tb-cart > tbody > tr > td {
  padding: clamp(8px, 1.1vw, 14px) !important;
  font-size: clamp(12px, 1.05vw, 14px);
  line-height: 1.35;
  vertical-align: middle;
}

body.page-cart .cart-page-shell .tb-cart > thead > tr > th:nth-child(1),
body.page-cart .cart-page-shell .tb-cart > tbody > tr > td:nth-child(1) {
  width: 46px;
}

body.page-cart .cart-page-shell .tb-cart > thead > tr > th:nth-child(2),
body.page-cart .cart-page-shell .tb-cart > tbody > tr > td:nth-child(2) {
  width: clamp(64px, 7vw, 84px);
}

body.page-cart .cart-page-shell .tb-cart > thead > tr > th:nth-child(7),
body.page-cart .cart-page-shell .tb-cart > tbody > tr > td:nth-child(7) {
  width: clamp(80px, 10vw, 108px);
}

body.page-cart .cart-page-shell .tb-cart > thead > tr > th:nth-child(8),
body.page-cart .cart-page-shell .tb-cart > tbody > tr > td:nth-child(8) {
  width: clamp(92px, 11vw, 126px);
}

body.page-cart .cart-page-shell .tb-cart > thead > tr > th:nth-child(9),
body.page-cart .cart-page-shell .tb-cart > tbody > tr > td:nth-child(9) {
  width: clamp(56px, 6vw, 80px);
}

body.page-cart .cart-page-shell .tb-cart > tbody > tr > td:nth-child(3),
body.page-cart .cart-page-shell .tb-cart > tbody > tr > td:nth-child(4),
body.page-cart .cart-page-shell .tb-cart > tbody > tr > td:nth-child(5) {
  overflow-wrap: anywhere;
  word-break: break-word;
}

body.page-cart .cart-page-shell .cart-product-thumb,
body.page-cart .cart-page-shell .cart table img {
  width: clamp(54px, 6.5vw, 76px);
  height: clamp(54px, 6.5vw, 76px);
  border-radius: 12px;
}

body.page-cart .cart-page-shell .cart input[type="number"] {
  width: clamp(62px, 9vw, 84px);
  min-width: 0;
  height: clamp(38px, 5vw, 46px);
  padding: 4px 6px;
}

body.page-cart .cart-page-shell .trash {
  width: clamp(34px, 4.5vw, 42px);
  height: clamp(34px, 4.5vw, 42px);
}

body.page-cart .cart-page-shell .cart-buttons ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

body.page-cart .cart-page-shell .cart-buttons li {
  float: none;
  margin: 0;
}

body.page-cart .cart-page-shell .cart-buttons li input[type="submit"],
body.page-cart .cart-page-shell .cart-buttons li a {
  min-height: 46px;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  padding: 10px 16px !important;
}

@media (max-width: 767px) {
  body.page-cart .cart-page-shell .tb-cart {
    font-size: 12px;
  }

  body.page-cart .cart-page-shell .tb-cart > thead > tr > th,
  body.page-cart .cart-page-shell .tb-cart > tbody > tr > td {
    padding: 8px 6px !important;
  }

  body.page-cart .cart-page-shell .tb-cart > thead > tr > th:nth-child(4),
  body.page-cart .cart-page-shell .tb-cart > tbody > tr > td:nth-child(4),
  body.page-cart .cart-page-shell .tb-cart > thead > tr > th:nth-child(5),
  body.page-cart .cart-page-shell .tb-cart > tbody > tr > td:nth-child(5) {
    width: 70px;
  }

  body.page-cart .cart-page-shell .cart-buttons ul {
    justify-content: stretch;
  }

  body.page-cart .cart-page-shell .cart-buttons li {
    width: 100%;
  }

  body.page-cart .cart-page-shell .cart-buttons li input[type="submit"],
  body.page-cart .cart-page-shell .cart-buttons li a {
    width: 100%;
    justify-content: center;
  }
}

/* Fix: "Au Panier" button overflow inside product cards */
.product .cssbuttons-io-button,
.item-product-cat .cssbuttons-io-button,
.item-search-result .cssbuttons-io-button {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 10px 42px 10px 14px !important;
}

.product .cssbuttons-io-button .icon,
.item-product-cat .cssbuttons-io-button .icon,
.item-search-result .cssbuttons-io-button .icon {
  position: absolute !important;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 22px !important;
  height: 22px !important;
}

.product .cssbuttons-io-button:hover .icon,
.item-product-cat .cssbuttons-io-button:hover .icon,
.item-search-result .cssbuttons-io-button:hover .icon {
  width: 22px !important;
  transform: translateY(-50%);
}

@media (max-width: 575px) {
  .product .cssbuttons-io-button,
  .item-product-cat .cssbuttons-io-button,
  .item-search-result .cssbuttons-io-button {
    min-height: 40px;
    font-size: 12px !important;
    padding: 9px 38px 9px 12px !important;
  }
}

/* Services Cards Fix */
body.page-home .service .row {
  display: flex;
  flex-wrap: wrap;
}

body.page-home .service .services {
  display: flex;
  margin-bottom: 22px;
}

body.page-home .service .services .item {
  width: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 22px !important;
  border: 1px solid rgba(38, 42, 86, 0.14) !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, #ffffff, #f8fbfd) !important;
  box-shadow: 0 12px 28px rgba(23, 36, 60, 0.1) !important;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

body.page-home .service .services .item:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 166, 179, 0.28) !important;
  box-shadow: 0 18px 34px rgba(23, 36, 60, 0.16) !important;
}

body.page-home .service .services .photo {
  width: clamp(74px, 8vw, 92px);
  height: clamp(74px, 8vw, 92px);
  margin: 0 0 6px;
  border-radius: 20px;
  overflow: hidden;
  background: #eef6f8;
  border: 1px solid rgba(38, 42, 86, 0.1);
}

body.page-home .service .services .photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

body.page-home .service .services .item h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.2;
  color: #1a2743;
}

body.page-home .service .services .item .service-path {
  margin: 0;
  flex: 1 1 auto;
  color: #5f6c80;
  line-height: 1.75;
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
}

@media (max-width: 991px) {
  body.page-home .service .services .item {
    min-height: 0;
    padding: 20px 18px !important;
  }
}

@media (max-width: 767px) {
  body.page-home .service .services {
    margin-bottom: 14px;
  }

  body.page-home .service .services .item {
    border-radius: 14px !important;
    padding: 16px 14px !important;
    gap: 10px;
  }

  body.page-home .service .services .photo {
    width: 68px;
    height: 68px;
    border-radius: 16px;
  }

  body.page-home .service .services .item .service-path {
    -webkit-line-clamp: 5;
    font-size: 13px;
  }
}

/* Unified Responsive Cards (Services + Products) */
.service .services,
.item-product-cat,
.item-search-result {
  display: flex;
}

.service .services .item,
.product .item,
.item-product-cat .inner,
.item-search-result .inner {
  width: 100%;
  min-width: 0;
  height: 100%;
  display: flex !important;
  flex-direction: column;
}

.service .services .item .photo,
.product .item .thumb,
.item-product-cat .inner .thumb,
.item-search-result .inner .thumb {
  width: 100%;
  min-width: 0;
}

.product .item .thumb,
.item-product-cat .inner .thumb,
.item-search-result .inner .thumb {
  aspect-ratio: 4 / 4.4;
}

.service .services .item .photo img,
.product .item .thumb .photo,
.item-product-cat .inner .thumb .photo,
.item-search-result .inner .thumb .photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service .services .item h3,
.product .text h3,
.item-product-cat .text h3,
.item-search-result .text h3 {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product .text,
.item-product-cat .text,
.item-search-result .text {
  min-height: 0 !important;
  flex: 1 1 auto;
}

.product .cssbuttons-io-button,
.item-product-cat .cssbuttons-io-button,
.item-search-result .cssbuttons-io-button {
  margin-top: auto;
}

.product-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.product-carousel .owl-item {
  display: flex;
  height: auto;
}

.product-carousel .owl-item .item {
  width: 100%;
}

@media (max-width: 1199px) {
  .service .services .item,
  .product .item,
  .item-product-cat .inner,
  .item-search-result .inner {
    padding: 18px 16px !important;
  }

  .product .item .thumb,
  .item-product-cat .inner .thumb,
  .item-search-result .inner .thumb {
    aspect-ratio: 4 / 4.6;
  }
}

@media (max-width: 991px) {
  .service .services,
  .item-product-cat,
  .item-search-result {
    margin-bottom: 14px;
  }

  .service .services .item,
  .product .item,
  .item-product-cat .inner,
  .item-search-result .inner {
    border-radius: 14px !important;
    padding: 16px 14px !important;
  }

  .service .services .item .service-path,
  .product .text h3,
  .item-product-cat .text h3,
  .item-search-result .text h3 {
    font-size: 15px !important;
  }
}

@media (max-width: 767px) {
  .service .services .item .photo {
    width: 64px;
    height: 64px;
  }

  .product .item .thumb,
  .item-product-cat .inner .thumb,
  .item-search-result .inner .thumb {
    aspect-ratio: 4 / 4.8;
  }

  .product .text h3,
  .item-product-cat .text h3,
  .item-search-result .text h3 {
    font-size: 14px !important;
    min-height: 0 !important;
  }

  .product .text h4,
  .item-product-cat .text h4,
  .item-search-result .text h4,
  .product .text .set-price {
    font-size: 18px !important;
  }
}

@media (max-width: 575px) {
  .service .services .item,
  .product .item,
  .item-product-cat .inner,
  .item-search-result .inner {
    padding: 14px 12px !important;
  }

  .service .services .item .service-path {
    -webkit-line-clamp: 4;
    font-size: 12px !important;
  }
}

/* Carousel Modern Refresh */
body.page-home #bootstrap-touch-slider {
  position: relative;
  max-width: 1360px;
  margin: 8px auto 0;
  padding: clamp(10px, 1.8vw, 24px) clamp(8px, 1.8vw, 22px) 8px !important;
}

body.page-home #bootstrap-touch-slider .carousel-inner {
  border-radius: clamp(20px, 3vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 72px rgba(15, 23, 42, 0.3);
}

body.page-home .bs-slider {
  border-radius: clamp(20px, 3vw, 38px);
  background: #0c1326;
}

body.page-home .bs-slider .item {
  min-height: clamp(460px, 72vh, 760px) !important;
  background-position: center center !important;
  background-size: cover !important;
}

body.page-home .bs-slider .bs-slider-overlay {
  background:
    linear-gradient(110deg, rgba(12, 19, 38, 0.9), rgba(12, 19, 38, 0.34) 56%, rgba(34, 166, 179, 0.22)),
    radial-gradient(circle at 76% 22%, rgba(255, 255, 255, 0.16), transparent 34%) !important;
}

body.page-home .slide-text {
  top: 50% !important;
  left: 6%;
  right: auto;
  margin: 0;
  width: min(92%, 660px);
  max-width: 660px;
  transform: translateY(-50%);
  padding: clamp(18px, 3.2vw, 42px) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: clamp(18px, 2.4vw, 34px);
  background: linear-gradient(180deg, rgba(7, 14, 30, 0.78), rgba(7, 14, 30, 0.55));
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 56px rgba(8, 14, 28, 0.28);
}

body.page-home .slide_style_center {
  left: 50%;
  right: auto;
  transform: translate(-50%, -50%);
  text-align: center !important;
}

body.page-home .slide_style_right {
  left: auto;
  right: 6%;
  transform: translateY(-50%);
  text-align: right !important;
}

body.page-home .slide_style_left {
  left: 6%;
  right: auto;
  transform: translateY(-50%);
  text-align: left !important;
}

body.page-home .slide-text > h1 {
  margin: 0 0 16px !important;
  color: #ffffff !important;
  font-size: clamp(34px, 5vw, 72px) !important;
  line-height: 0.95 !important;
  letter-spacing: -0.04em;
  text-transform: none;
  text-wrap: balance;
}

body.page-home .slide-text > p {
  margin: 0 0 20px !important;
  color: rgba(242, 246, 255, 0.92) !important;
  font-size: clamp(14px, 1.4vw, 18px) !important;
  line-height: 1.75 !important;
  max-width: 34em;
}

body.page-home .slide-text > a.btn-primary,
body.page-home .slide-text > a.btn-default {
  min-height: 48px;
  padding: 0 18px !important;
  border-radius: 14px !important;
  border: 1px solid transparent !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.page-home .slide-text > a.btn-primary {
  background: linear-gradient(135deg, #262a56, #22a6b3) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(38, 42, 86, 0.28);
}

body.page-home .slide-text > a.btn-default {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  color: #ffffff !important;
}

body.page-home .slide-text > a.btn-primary:hover,
body.page-home .slide-text > a.btn-default:hover {
  transform: translateY(-1px);
}

body.page-home .carousel-control.left,
body.page-home .carousel-control.right {
  width: 72px;
  opacity: 1;
  background-image: none !important;
}

body.page-home .carousel-control .fa {
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(16, 24, 48, 0.52);
  color: #ffffff;
  backdrop-filter: blur(8px);
}

body.page-home .carousel-control:hover .fa {
  background: rgba(34, 166, 179, 0.42);
  border-color: rgba(255, 255, 255, 0.44);
}

body.page-home .carousel-indicators {
  bottom: 18px;
}

body.page-home .carousel-indicators li {
  width: 30px;
  height: 4px;
  border: 0;
  border-radius: 999px;
  margin: 0 4px;
  background: rgba(255, 255, 255, 0.34);
}

body.page-home .carousel-indicators .active {
  width: 52px;
  height: 4px;
  background: linear-gradient(135deg, #ffffff, #d5fbff);
}

@media (max-width: 991px) {
  body.page-home .bs-slider .item {
    min-height: clamp(410px, 64vh, 620px) !important;
  }

  body.page-home .slide-text,
  body.page-home .slide_style_left,
  body.page-home .slide_style_right,
  body.page-home .slide_style_center {
    left: 50%;
    right: auto;
    width: min(94%, 620px);
    transform: translate(-50%, -50%);
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  body.page-home #bootstrap-touch-slider {
    padding: 8px 8px 0 !important;
  }

  body.page-home .bs-slider .item {
    min-height: clamp(360px, 56vh, 500px) !important;
  }

  body.page-home .slide-text {
    width: calc(100% - 22px);
    padding: 16px 14px !important;
    border-radius: 16px;
  }

  body.page-home .slide-text > h1 {
    font-size: clamp(24px, 7.2vw, 34px) !important;
    line-height: 1.05 !important;
  }

  body.page-home .slide-text > p {
    font-size: 13px !important;
    line-height: 1.6 !important;
    margin-bottom: 14px !important;
  }

  body.page-home .slide-text > a.btn-primary,
  body.page-home .slide-text > a.btn-default {
    min-height: 42px;
    font-size: 11px;
    padding: 0 12px !important;
    margin: 4px 3px !important;
  }

  body.page-home .carousel-indicators,
  body.page-home .carousel-control.left,
  body.page-home .carousel-control.right {
    display: none !important;
  }
}

/* Responsive Card Size Hotfix */
body.page-home .service .row {
  display: block !important;
}

body.page-home .service .services {
  display: block !important;
  width: 100%;
  min-width: 0;
}

body.page-home .service .services .item {
  min-height: 300px;
}

@media (max-width: 991px) {
  body.page-home .service .services {
    float: none !important;
    width: 100% !important;
    margin-bottom: 16px !important;
  }

  body.page-home .service .services .item {
    min-height: 0;
    padding: 18px 16px !important;
  }

  body.page-home .product .item {
    margin: 8px 0 14px !important;
    padding: 16px 14px !important;
  }

  .item-product-cat,
  .item-search-result {
    width: 100% !important;
    float: none !important;
  }

  .item-product-cat .inner,
  .item-search-result .inner {
    padding: 16px 14px !important;
  }
}

@media (max-width: 767px) {
  body.page-home .service .services .item,
  body.page-home .product .item,
  .item-product-cat .inner,
  .item-search-result .inner {
    border-radius: 14px !important;
    padding: 14px 12px !important;
  }

  body.page-home .service .services .item h3,
  body.page-home .product .text h3,
  .item-product-cat .text h3,
  .item-search-result .text h3 {
    font-size: 16px !important;
  }

  body.page-home .product .text h4,
  .item-product-cat .text h4,
  .item-search-result .text h4,
  body.page-home .product .text .set-price {
    font-size: 20px !important;
  }
}

/* Button Content Alignment Fix */
.btn,
.btn-default,
.btn-primary,
.btn-success,
.btn-danger,
.buy--btn,
.login-button,
.btn-search,
button,
button[type="submit"],
input[type="submit"],
.cart-buttons li a,
.cart-buttons li input[type="submit"],
.product .cssbuttons-io-button,
.item-product-cat .cssbuttons-io-button,
.item-search-result .cssbuttons-io-button,
.slide-text > a.btn-default,
.slide-text > a.btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
  text-align: center;
  line-height: 1.2 !important;
  vertical-align: middle;
  box-sizing: border-box;
}

.btn i,
.btn svg,
.btn-default i,
.btn-default svg,
.btn-primary i,
.btn-primary svg,
.btn-success i,
.btn-success svg,
.btn-danger i,
.btn-danger svg,
.buy--btn i,
.buy--btn svg,
.login-button i,
.login-button svg,
.cart-buttons li a i,
.cart-buttons li a svg,
.cart-buttons li input[type="submit"] i,
.cart-buttons li input[type="submit"] svg,
.slide-text > a i,
.slide-text > a svg,
.btn-search i,
.btn-search svg {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  line-height: 1 !important;
  vertical-align: middle;
}

.btn-contact {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px;
}

.btn-contact .paragraph {
  margin: 0 !important;
  line-height: 1.2 !important;
  display: block;
}

.btn-contact .icon-wrapper {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.product .cssbuttons-io-button,
.item-product-cat .cssbuttons-io-button,
.item-search-result .cssbuttons-io-button {
  justify-content: flex-start !important;
}

.product .cssbuttons-io-button .icon,
.item-product-cat .cssbuttons-io-button .icon,
.item-search-result .cssbuttons-io-button .icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
