/* ==========================================================
   RABINO MOVE - CLEANED / OPTIMIZED CUSTOM CSS
   Scope: Woo archive, single rental product, home product cards,
          services, FAQ, VAT toggle, CF7 radio-image UI
   Theme: Salient Child
   ========================================================== */


/* ==========================================================
   1) SHOP LAYOUT
   ========================================================== */
.rabino-shop-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  width: 100%;
  margin-top: 20px;
}

.rabino-shop-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
}

.rabino-shop-sidebar .shop-filter-widget {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 18px;
}

.rabino-shop-sidebar .shop-filter-title {
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.3;
}

.rabino-shop-sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rabino-shop-sidebar li {
  margin-bottom: 8px;
}

.rabino-shop-main {
  min-width: 0;
}

.rabino-shop-main .woocommerce-result-count,
.rabino-shop-main form.woocommerce-ordering,
.rabino-shop-main ul.products,
.rabino-shop-main nav.woocommerce-pagination {
  width: 100%;
}

.rabino-shop-main .woocommerce-result-count {
  float: left;
  margin: 0 0 20px;
}

.rabino-shop-main form.woocommerce-ordering {
  float: right;
  margin: 0 0 20px;
}

.rabino-shop-main ul.products {
  clear: both;
}

.rabino-shop-main .orderby {
  min-height: 42px;
  border-radius: 8px;
}


/* ==========================================================
   2) SINGLE PRODUCT - RENTAL
   ========================================================== */
body.rb-rental-product.single-product form.cart,
body.rb-rental-product.single-product .product_meta,
body.rb-rental-product.single-product p.price,
body.rb-rental-product.single-product .woocommerce-tabs,
body.rb-rental-product .price-hover-wrap,
body.rb-rental-product .product-add-to-cart {
  display: none !important;
}

body.rb-rental-product .single-product-main-content,
body.rb-rental-product .product {
  background: #fff;
}

body.rb-rental-product .summary.entry-summary {
  display: block !important;
  overflow: visible !important;
  padding-right: 10px;
}

body.rb-rental-product .summary.entry-summary > .rb-product-attrs-row,
body.rb-rental-product .rb-rental-legal-box,
body.rb-rental-product .rb-rental-form-box {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  clear: both !important;
  width: 100% !important;
}

body.rb-rental-product .rb-rental-layout-full {
  clear: both !important;
  float: none !important;
  display: block !important;
  width: 100% !important;
  max-width: 1280px;
  margin: 28px auto 0 !important;
  padding: 0 20px 26px !important;
  position: relative;
  z-index: 1;
}

body.rb-rental-product .rb-rental-shell {
  background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border: 1px solid #e6edf5;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(22, 34, 55, .06);
}

body.rb-rental-product .product_title {
  font-size: 40px !important;
  line-height: 1.05 !important;
  letter-spacing: -.03em;
  color: #12243d;
  margin-bottom: 12px !important;
}

body.rb-rental-product .woocommerce-product-details__short-description,
body.rb-rental-product .single-product-summary,
body.rb-rental-product .summary.entry-summary p {
  color: #617287;
  font-size: 16px;
  line-height: 1.7;
}

body.rb-rental-product .rb-rental-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e9eef5;
}

body.rb-rental-product .rb-rental-head-left h2 {
  font-size: 34px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.03em;
  color: #142133;
  margin: 0 0 8px !important;
}

body.rb-rental-product .rb-rental-head-client {
  margin: 0 !important;
  font-size: 15px;
  color: #607086;
}

body.rb-rental-product .rb-rental-head-right {
  min-width: 220px;
}

body.rb-rental-product .rb-rental-head-right select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background: #fff;
}

body.rb-rental-product .rb-vat-toggle-container {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  background: #fff;
  border: 1px solid #dbe6f1;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 6px 16px rgba(23, 36, 56, .04);
}

body.rb-rental-product .tax-label {
  font-size: 12px;
  letter-spacing: .02em;
  color: #4c5d72;
  font-weight: 700;
}

.rb-switch {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 24px;
}

.rb-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.rb-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.rb-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .rb-slider {
  background: #2062b6;
}

input:checked + .rb-slider:before {
  transform: translateX(22px);
}

body.rb-rental-product .rb-rental-offers-wrap {
  margin-bottom: 34px;
}

body.rb-rental-product .rb-rental-offers-row {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 20px !important;
  align-items: stretch;
  margin: 0 0 28px !important;
  width: 100% !important;
}

body.rb-rental-product .rb-rental-offer-card {
  float: none !important;
  width: 100% !important;
  min-width: 0 !important;
  padding: 22px !important;
  border: 1px solid #dde7f1;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(21, 33, 54, .05);
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

body.rb-rental-product .rb-rental-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(21, 33, 54, .1);
  border-color: #c7d9ec;
}

body.rb-rental-product .rb-rental-offer-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

body.rb-rental-product .rb-rental-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #12243d;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 7px 12px;
  border-radius: 999px;
}

body.rb-rental-product .rb-rental-price-block {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf2f7;
}

body.rb-rental-product .rb-rental-price {
  font-size: 48px !important;
  line-height: 1 !important;
  font-weight: 800;
  letter-spacing: -.04em;
  color: #132136;
  margin: 0 0 10px !important;
}

body.rb-rental-product .rb-rental-price-note {
  font-size: 14px;
  color: #66758a;
  font-weight: 500;
}

body.rb-rental-product .rb-rental-data-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin: 0 0 20px !important;
}

body.rb-rental-product .rb-rental-data-item {
  padding: 14px 10px !important;
  border-radius: 16px;
  background: #f5f8fc;
  border: 1px solid #e4edf5;
  text-align: center;
}

body.rb-rental-product .rb-rental-data-grid .rb-rental-data-item:first-child {
  background: #eef4fb;
}

body.rb-rental-product .rb-rental-data-item span {
  display: block;
  font-size: 12px;
  color: #718198;
  margin-bottom: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
}

body.rb-rental-product .rb-rental-data-item strong {
  display: block;
  font-size: 14px;
  line-height: 1.3;
  color: #132136;
  font-weight: 800;
}

body.rb-rental-product .rb-rental-cta {
  margin-top: auto;
}

body.rb-rental-product .rb-rental-cta .button,
body.rb-rental-product .rb-rental-cta a.button {
  display: block !important;
  width: 100% !important;
  text-align: center;
  padding: 15px 18px !important;
  border-radius: 14px;
  box-sizing: border-box;
  background: #12243d !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 800;
  border: none !important;
  box-shadow: none !important;
}

body.rb-rental-product .rb-rental-cta .button:hover,
body.rb-rental-product .rb-rental-cta a.button:hover {
  background: #1c3b63 !important;
  color: #fff !important;
}

body.rb-rental-product .rb-rental-extra-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin: 30px 0 !important;
}

body.rb-rental-product .rb-rental-extra-box,
body.rb-rental-product .rb-rental-legal-box,
body.rb-rental-product .rb-rental-form-box {
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e2eaf2;
  box-shadow: 0 10px 30px rgba(20, 34, 52, .04);
  margin-top: 24px;
}

body.rb-rental-product .rb-rental-legal-box h3,
body.rb-rental-product .rb-rental-form-box h3,
body.rb-rental-product .rb-rental-extra-box h3 {
  font-size: 26px;
  line-height: 1.15;
  font-weight: 800;
  color: #142133;
  margin: 0 0 18px !important;
}

body.rb-rental-product .rb-rental-form-summary {
  margin-bottom: 22px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #f7fbff 0%, #eff6fd 100%);
  border-radius: 18px;
  border: 1px solid #d8e8f6;
  color: #23354b;
  font-size: 15px;
  line-height: 1.65;
}

body.rb-rental-product .rb-summary-title {
  margin-bottom: 12px;
  font-size: 16px;
  color: #12243d;
}

body.rb-rental-product .rb-summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid #dfeaf5;
  font-size: 15px;
}

body.rb-rental-product .rb-summary-line:last-of-type {
  border-bottom: none;
}

body.rb-rental-product .rb-summary-line span {
  color: #6a7b90;
  font-weight: 600;
}

body.rb-rental-product .rb-summary-line strong {
  color: #132136;
  font-weight: 800;
  text-align: right;
}

body.rb-rental-product .rb-summary-vat {
  margin-top: 12px;
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: #dfeefe;
  color: #18406a;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Product attributes */
body.rb-rental-product .rb-product-attrs-title {
  font-size: 20px !important;
  font-weight: 800;
  color: #162335;
  margin: 18px 0 12px !important;
  text-transform: none;
  letter-spacing: .2px;
}

body.rb-rental-product .rb-product-attrs-row {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin: 18px 0 0 !important;
  padding: 18px 0 0;
  border-top: 1px solid #edf2f7;
  align-items: stretch !important;
  width: 100%;
}

body.rb-rental-product .rb-product-attr-item {
  display: flex;
  align-items: center !important;
  gap: 10px !important;
  min-width: 0 !important;
  width: 100% !important;
  padding: 12px 14px !important;
  border: 1px solid #e6edf4;
  border-radius: 14px !important;
  background: #fbfdff;
}

body.rb-rental-product .rb-product-attr-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-top: 0;
  opacity: .95;
}

body.rb-rental-product .rb-product-attr-icon svg {
  display: block;
  width: 22px;
  height: 22px;
}

body.rb-rental-product .rb-product-attr-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

body.rb-rental-product .rb-product-attr-label {
  display: block;
  font-size: 11px !important;
  color: #7b8a9d;
  margin-bottom: 2px !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.2 !important;
}

body.rb-rental-product .rb-product-attr-value {
  display: block;
  font-size: 15px !important;
  line-height: 1.25 !important;
  color: #162335;
  font-weight: 800;
}

body.rb-rental-product .rb-product-attr-value.is-yes {
  color: #1f9d55;
}

body.rb-rental-product .rb-product-attr-value.is-no {
  color: #dc2626;
}


/* ==========================================================
   3) SERVICES / INSURANCE
   ========================================================== */
.rm-services * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.rm-services {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1a2744;
  padding: 2px 0;
  max-width: 1200px;
  margin: 10px auto 0;
}

.rm-services__heading {
  font-size: 26px;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 6px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.rm-services__subheading {
  font-size: 15px;
  color: #5a6a8a;
  margin-bottom: 28px;
  font-weight: 400;
}

.rm-services__premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.rm-card-premium {
  background: #1a2e5e;
  border-radius: 12px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 2px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.rm-card-premium:hover {
  border-color: #4a7fd4;
  box-shadow: 0 4px 20px rgba(74, 127, 212, .25);
}

.rm-card-premium__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: rgba(255, 255, 255, .12);
  border-radius: 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}

.rm-card-premium__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.3;
}

.rm-card-premium__desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.6;
}

.rm-card__header {
  display: contents;
}

.rm-services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.rm-card {
  background: #fff;
  border: 1.5px solid #e8ecf4;
  border-radius: 12px;
  padding: 22px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.rm-card:hover {
  border-color: #2d5fc4;
  box-shadow: 0 4px 16px rgba(45, 95, 196, .12);
}

.rm-card__icon {
  width: 40px;
  height: 40px;
  background: #eef1f8;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  transition: background-color .2s ease;
}

.rm-card:hover .rm-card__icon {
  background: #dce6f8;
}

.rm-card__title {
  font-size: 14px;
  font-weight: 700;
  color: #1a2744;
  line-height: 1.3;
}

.rm-card__desc {
  font-size: 13px;
  color: #5a6a8a;
  line-height: 1.6;
}

/* Icons */
.rm-icon-consulente { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='8' r='4'/><path d='M4 20c0-4 3.6-7 8-7s8 3 8 7'/></svg>"); }
.rm-icon-consegna { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><rect x='1' y='3' width='15' height='13' rx='1'/><path d='M16 8h4l3 5v5h-7z'/><circle cx='5.5' cy='18.5' r='2.5'/><circle cx='18.5' cy='18.5' r='2.5'/></svg>"); }
.rm-icon-rca { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2e5e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/></svg>"); }
.rm-icon-kasko { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2e5e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/><polyline points='9 12 11 14 15 10'/></svg>"); }
.rm-icon-manutenzione { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2e5e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M14.7 6.3a1 1 0 0 0 0 1.4l1.6 1.6a1 1 0 0 0 1.4 0l3.77-3.77a6 6 0 0 1-7.94 7.94l-6.91 6.91a2.12 2.12 0 0 1-3-3l6.91-6.91a6 6 0 0 1 7.94-7.94z'/></svg>"); }
.rm-icon-soccorso { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2e5e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><polyline points='12 6 12 12 16 14'/></svg>"); }
.rm-icon-clienti { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2e5e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07A19.5 19.5 0 0 1 4.69 12 19.79 19.79 0 0 1 1.61 3.4 2 2 0 0 1 3.6 1.22h3a2 2 0 0 1 2 1.72c.128.96.361 1.903.7 2.81a2 2 0 0 1-.45 2.11L7.91 8.78a16 16 0 0 0 6.29 6.29l1.12-.91a2 2 0 0 1 2.11-.45c.907.339 1.85.573 2.81.7A2 2 0 0 1 22 16.92z'/></svg>"); }
.rm-icon-cortesia { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2e5e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M19 17H5a2 2 0 0 1-2-2V7l3-4h10l3 4v8a2 2 0 0 1-2 2z'/><circle cx='7.5' cy='17.5' r='1.5'/><circle cx='16.5' cy='17.5' r='1.5'/></svg>"); }
.rm-icon-prelazione { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2e5e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z'/><line x1='7' y1='7' x2='7.01' y2='7'/></svg>"); }
.rm-icon-trasparenza { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a2e5e' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/><polyline points='14 2 14 8 20 8'/><line x1='16' y1='13' x2='8' y2='13'/><line x1='16' y1='17' x2='8' y2='17'/></svg>"); }


/* ==========================================================
   4) FAQ
   ========================================================== */
.rb-faq-container {
  max-width: 1240px;
}

.rb-faq-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1a2744;
  margin-bottom: 6px;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.rb-faq-header__subheading {
  font-size: 15px;
  color: #5a6a8a;
  margin-bottom: 28px;
  font-weight: 400;
}

.rb-faq-list {
  background: #fff;
  border: 1px solid #e3eaf2;
  border-radius: 18px;
  overflow: hidden;
}

.rb-faq-item {
  border-bottom: 1px solid #e2e8f0;
}

.rb-faq-item:last-child {
  border-bottom: none;
}

.rb-faq-question {
  width: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 20px 24px !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  text-align: left !important;
  box-shadow: none !important;
}

.rb-faq-question:hover {
  background: #f8fafc !important;
}

.rb-faq-text {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #1a365d !important;
  line-height: 1.4 !important;
  flex-grow: 1;
}

.rb-faq-icon-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 24px !important;
  height: 24px !important;
  flex-shrink: 0 !important;
  margin-left: 20px !important;
}

.rb-faq-icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #64748b;
  border-bottom: 2px solid #64748b;
  transform: rotate(45deg);
  transition: transform .3s ease;
  margin-top: -4px;
}

.rb-faq-item.active .rb-faq-icon {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.rb-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-out;
  padding: 0 25px;
}

.rb-faq-item.active .rb-faq-answer {
  max-height: 800px;
  padding-bottom: 20px;
}

.rb-faq-answer p {
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}


/* ==========================================================
   5) ARCHIVE PRODUCT CARDS
   ========================================================== */
body.rb-rental-archive ul.products li.product {
  position: relative !important;
  background: #f7f7f7 !important;
  border: 1px solid #d7dde5 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 0 24px 0 !important;
  min-height: 0 !important;
  transform: none !important;
  transition: none !important;
  display: flex !important;
  flex-direction: column !important;
}

body.rb-rental-archive ul.products li.product:hover {
  transform: none !important;
  box-shadow: none !important;
}

body.rb-rental-archive h2.woocommerce-loop-product__title,
body.rb-rental-archive ul.products li.product h2.woocommerce-loop-product__title,
body.rb-rental-archive ul.products li.product .woocommerce-loop-product__title,
body.rb-rental-archive ul.products li.product .product-meta h2,
body.rb-rental-archive ul.products li.product .product-meta .woocommerce-loop-product__title,
body.rb-rental-archive ul.products li.product .product-details h2,
body.rb-rental-archive ul.products li.product .product-details .woocommerce-loop-product__title,
body.rb-rental-archive .price,
body.rb-rental-archive .price-hover-wrap,
body.rb-rental-archive .product-add-to-cart,
body.rb-rental-archive .add_to_cart_button,
body.rb-rental-archive .rb-m-card-content,
body.rb-rental-archive .rb-m-horizontal-grid {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

body.rb-rental-archive .product-wrap,
body.rb-rental-archive .product-image {
  position: relative !important;
  min-height: 210px !important;
}

body.rb-rental-archive .rb-archive-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

body.rb-rental-archive .rb-archive-overlay__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 14px 0 !important;
}

body.rb-rental-archive .rb-archive-overlay__title {
  margin: 0 !important;
  font-size: clamp(14px, 2vw, 17px) !important;
  line-height: 1.18 !important;
  font-weight: 800 !important;
  color: #102a4a !important;
  text-transform: none !important;
  max-width: 78% !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

body.rb-rental-archive .rb-archive-overlay__brand {
  font-size: 10px !important;
  line-height: 1.1 !important;
  letter-spacing: .05em !important;
  font-weight: 700 !important;
  color: #8d9bb0;
  text-transform: uppercase;
  max-width: 22% !important;
  text-align: right !important;
  white-space: nowrap !important;
  opacity: .85 !important;
}

body.rb-rental-archive ul.products li.product img {
  display: block !important;
  width: calc(100% - 28px) !important;
  max-width: none !important;
  height: 250px !important;
  min-height: 250px !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 82px auto 14px !important;
  background: #fff !important;
  border-radius: 0 !important;
  position: relative !important;
  z-index: 1 !important;
  box-shadow: none !important;
}

body.rb-rental-archive .rb-clean-archive-card {
  width: 100% !important;
  padding: 0 22px 22px !important;
  margin-top: auto !important;
}

body.rb-rental-archive .rb-clean-archive-card__footer {
  border-top: 1px solid #dfe5ec !important;
  padding-top: 18px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  flex-direction: row !important;
}

body.rb-rental-archive .rb-clean-archive-card__price {
  display: flex !important;
  align-items: baseline !important;
  gap: 3px !important;
  margin: 0 !important;
  color: #004282 !important;
  line-height: 1 !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

body.rb-rental-archive .rb-clean-archive-card__currency {
  font-size: 13px;
  font-weight: 800;
  color: #004282 !important;
}

body.rb-rental-archive .rb-clean-archive-card__amount {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.04em;
  color: #004282 !important;
  line-height: .95 !important;
}

body.rb-rental-archive .rb-clean-archive-card__suffix {
  font-size: 16px;
  color: #8a97aa;
  font-weight: 500;
  white-space: nowrap !important;
}

body.rb-rental-archive .rb-clean-archive-card__button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 92px !important;
  min-height: 42px !important;
  padding: 0 18px !important;
  border-radius: 999px !important;
  background: #dfe9f6 !important;
  color: #004282 !important;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap !important;
}


/* ==========================================================
   6) HOME PRODUCT CARDS
   ========================================================== */
body.home .woocommerce ul.products {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0 !important;
}

body.home .woocommerce ul.products li.product {
  position: relative !important;
  background: #f7f7f7 !important;
  border: 1px solid #d7dde5 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 12px 24px !important;
  min-height: 350px !important;
  transform: none !important;
  transition: none !important;
  display: flex !important;
  flex-direction: column !important;
  width: calc(25% - 24px) !important;
  max-width: calc(25% - 24px) !important;
  min-width: 0 !important;
  float: none !important;
  clear: none !important;
  flex: 0 0 calc(25% - 24px) !important;
}

body.home .woocommerce ul.products li.product:hover {
  transform: none !important;
  box-shadow: none !important;
}

body.home .woocommerce ul.products li.product .product-wrap,
body.home .woocommerce ul.products li.product .product-image,
body.home .woocommerce ul.products li.product .product-meta,
body.home .woocommerce ul.products li.product .product-details,
body.home .woocommerce ul.products li.product > a:first-child {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  float: none !important;
  background: #fff !important;
}

body.home .woocommerce ul.products li.product h2.woocommerce-loop-product__title,
body.home .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.home .woocommerce ul.products li.product .product-meta h2,
body.home .woocommerce ul.products li.product .product-meta .woocommerce-loop-product__title,
body.home .woocommerce ul.products li.product .product-details h2,
body.home .woocommerce ul.products li.product .product-details .woocommerce-loop-product__title,
body.home .woocommerce .price,
body.home .woocommerce .price-hover-wrap,
body.home .woocommerce .product-add-to-cart,
body.home .woocommerce .add_to_cart_button,
body.home .woocommerce .rb-m-card-content,
body.home .woocommerce .rb-m-horizontal-grid,
body.home .woocommerce .rb-m-price-section,
body.home .woocommerce .rb-m-action,
body.home .woocommerce .rb-m-info-grid {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  line-height: 0 !important;
  min-height: 0 !important;
}

body.home .woocommerce .rb-archive-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  pointer-events: none !important;
}

body.home .woocommerce .rb-archive-overlay__top {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 8px !important;
  padding: 16px 16px 0 !important;
}

body.home .woocommerce .rb-archive-overlay__title {
  margin: 0 !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  color: #183153 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  max-width: 70% !important;
  text-align: left !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

body.home .woocommerce .rb-archive-overlay__brand {
  font-size: 10px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  color: #97a6ba !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  text-align: right !important;
  white-space: nowrap !important;
  max-width: 26% !important;
  padding-top: 2px !important;
}

body.home .woocommerce ul.products li.product img {
  display: block !important;
  width: calc(100% - 34px) !important;
  max-width: none !important;
  height: 175px !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 66px auto 8px !important;
  background: transparent !important;
  border-radius: 0 !important;
  position: relative !important;
  z-index: 1 !important;
  box-shadow: none !important;
}

body.home .woocommerce .rb-clean-archive-card {
  width: 100% !important;
  padding: 0 16px 14px !important;
  margin-top: auto !important;
}

body.home .woocommerce .rb-clean-archive-card__footer {
  border-top: 1px solid #dfe5ec !important;
  padding-top: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  flex-direction: row !important;
}

body.home .woocommerce .rb-clean-archive-card__price {
  display: flex !important;
  align-items: baseline !important;
  gap: 3px !important;
  margin: 0 !important;
  color: #004282 !important;
  line-height: 1 !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

body.home .woocommerce .rb-clean-archive-card__currency {
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #004282 !important;
}

body.home .woocommerce .rb-clean-archive-card__amount {
  font-size: 32px !important;
  line-height: .95 !important;
  font-weight: 900 !important;
  letter-spacing: -.05em !important;
  color: #004282 !important;
}

body.home .woocommerce .rb-clean-archive-card__suffix {
  font-size: 10px !important;
  font-weight: 600 !important;
  color: #8a97aa !important;
  white-space: nowrap !important;
}

body.home .woocommerce .rb-clean-archive-card__button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 88px !important;
  height: 38px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  background: #dfe9f6 !important;
  color: #004282 !important;
  text-decoration: none !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: none !important;
  white-space: nowrap !important;
  flex: 0 0 auto !important;
}

body.home .woocommerce .rb-clean-archive-card__button:hover {
  background: #dfe9f6 !important;
  color: #004282 !important;
}


/* ==========================================================
   7) ARCHIVE HERO + LAYOUT FIX
   Requires body class: rb-woo-archive-fix
   ========================================================== */
body.rb-woo-archive-fix .rabino-archive-hero {
  background: #f5f7fb !important;
  padding: 32px 0 36px !important;
}

body.rb-woo-archive-fix .rabino-archive-hero .container {
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
}

body.rb-woo-archive-fix .rabino-archive-breadcrumbs {
  max-width: 760px !important;
  margin: 0 0 14px 140px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  color: #8a94a6 !important;
}

body.rb-woo-archive-fix .rabino-archive-breadcrumbs a {
  color: #8a94a6 !important;
  text-decoration: none !important;
}

body.rb-woo-archive-fix .rabino-archive-breadcrumbs a:hover {
  color: #123f7a !important;
}

body.rb-woo-archive-fix .rabino-archive-breadcrumbs__sep {
  display: inline-block;
  margin: 0 8px;
  color: #b3bcc8;
}

body.rb-woo-archive-fix .rabino-archive-hero__content {
  max-width: 760px !important;
  margin-left: 140px !important;
}

body.rb-woo-archive-fix .rabino-archive-hero__title {
  margin: 0 0 12px !important;
  font-size: 56px !important;
  line-height: 1.03 !important;
  font-weight: 800 !important;
  letter-spacing: -.03em !important;
  color: #123f7a !important;
}

body.rb-woo-archive-fix .rabino-archive-hero__subtitle {
  margin: 0 !important;
  font-size: 18px !important;
  line-height: 1.6 !important;
  color: #5d6c80 !important;
}

body.rb-woo-archive-fix .page-header,
body.rb-woo-archive-fix .woocommerce-breadcrumb,
body.rb-woo-archive-fix .term-description,
body.rb-woo-archive-fix .page-header-no-bg,
body.rb-woo-archive-fix .page-header-bg-image,
body.rb-woo-archive-fix .woocommerce-products-header {
  display: none !important;
}

body.rb-woo-archive-fix .container-wrap .container.main-content,
body.rb-woo-archive-fix .container-wrap .main-content,
body.rb-woo-archive-fix .container-wrap .row {
  max-width: 1320px !important;
  width: 100% !important;
}

body.rb-woo-archive-fix .widget-area,
body.rb-woo-archive-fix #sidebar,
body.rb-woo-archive-fix .sidebar,
body.rb-woo-archive-fix .left-sidebar {
  width: 310px !important;
  max-width: 310px !important;
  flex: 0 0 310px !important;
  padding-right: 26px !important;
  box-sizing: border-box !important;
}

body.rb-woo-archive-fix .content-area,
body.rb-woo-archive-fix .post-area,
body.rb-woo-archive-fix .main-content > .col_last,
body.rb-woo-archive-fix .main-content > .span_9,
body.rb-woo-archive-fix .main-content > .span_10 {
  width: calc(100% - 310px) !important;
  max-width: calc(100% - 310px) !important;
  flex: 1 1 auto !important;
  box-sizing: border-box !important;
}

body.rb-woo-archive-fix .prdctfltr_sc,
body.rb-woo-archive-fix .prdctfltr_wc {
  background: #fff !important;
  border: 1px solid #dfe5ee !important;
  border-radius: 16px !important;
  padding: 22px 18px !important;
  box-sizing: border-box !important;
}

body.rb-woo-archive-fix ul.products {
  clear: both !important;
}

body.rb-woo-archive-fix .woocommerce ul.products li.product,
body.rb-woo-archive-fix ul.products li.product {
  margin: 0 0 24px 0 !important;
  margin-right: 0 !important;
}


/* ==========================================================
   8) CONTACT FORM 7 - RADIO IMAGE SELECTOR
   ========================================================== */
.wpcf7 form .radio-img-item {
  display: block;
}

.wpcf7 form .radio-img-item input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.wpcf7 form .radio-img-card {
  cursor: pointer;
  display: block;
  border: 2px solid transparent;
  border-radius: 14px;
  padding: 8px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  user-select: none;
}

.wpcf7 form .radio-img-media {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
}

.wpcf7 form .radio-img-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform .25s ease, filter .25s ease;
}

.wpcf7 form .radio-img-text {
  display: block;
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
}

.wpcf7 form .radio-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.98);
  transition: opacity .25s ease, transform .25s ease;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  z-index: 2;
  pointer-events: none;
}

.wpcf7 form .radio-img-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6007e;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .25);
}

.wpcf7 form .radio-img-selected {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .3px;
  margin-top: 6px;
}

.wpcf7 form .radio-img-card:hover .radio-img-media img {
  transform: scale(1.03);
}

.wpcf7 form .radio-img-item input[type="radio"]:checked + .radio-img-card {
  border-color: #e6007e;
  box-shadow: 0 0 0 2px rgba(230, 0, 126, .18);
  transform: translateY(-2px);
}

.wpcf7 form .radio-img-item input[type="radio"]:checked + .radio-img-card .radio-img-overlay {
  opacity: 1;
  transform: scale(1);
}

.wpcf7 form .radio-img-item input[type="radio"]:checked + .radio-img-card .radio-img-media img {
  filter: brightness(.92);
}

.wpcf7-form .wpcf7-date {
  max-width: 240px !important;
  font-weight: 800;
  background: #fff !important;
  color: #474747 !important;
  border-radius: 10px !important;
  margin-top: 5px !important;
  border: 2px solid #2062b6 !important;
}


/* ==========================================================
   9) RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .rm-services {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 999px) {
  .rabino-shop-layout {
    grid-template-columns: 1fr;
  }

  .rabino-shop-sidebar {
    position: static;
    top: auto;
  }

  .rabino-shop-main .woocommerce-result-count,
  .rabino-shop-main form.woocommerce-ordering {
    float: none;
    width: 100%;
  }

  body.rb-rental-product .rb-rental-layout-full {
    margin-top: 24px !important;
    padding: 0 12px 30px !important;
  }

  body.rb-rental-product .rb-rental-shell {
    border-radius: 18px;
    padding: 18px;
  }

  body.rb-rental-product .rb-rental-offers-row {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  body.rb-rental-product .rb-rental-offer-card {
    padding: 18px !important;
    border-radius: 18px;
  }

  body.rb-rental-product .rb-rental-price {
    font-size: 38px !important;
  }

  body.rb-rental-product .rb-rental-data-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
    margin-bottom: 15px !important;
  }

  body.rb-rental-product .rb-rental-data-item {
    padding: 10px 6px !important;
  }

  body.rb-rental-product .rb-rental-data-item span {
    font-size: 10px;
  }

  body.rb-rental-product .rb-rental-data-item strong {
    font-size: 16px;
  }

  body.rb-rental-product .rb-rental-head {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 15px;
  }

  body.rb-rental-product .rb-rental-head-left h2 {
    font-size: 28px;
  }

  body.rb-rental-product .rb-rental-head-right {
    width: 100%;
    min-width: 100%;
  }

  body.rb-rental-product .rb-rental-extra-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  body.rb-rental-product .rb-rental-legal-box,
  body.rb-rental-product .rb-rental-form-box,
  body.rb-rental-product .rb-rental-extra-box {
    border-radius: 18px;
    padding: 20px;
  }

  body.rb-rental-product .rb-product-attrs-row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  body.rb-rental-product .rb-product-attr-value {
    font-size: 14px !important;
  }

  body.home .woocommerce ul.products li.product {
    width: calc(50% - 20px) !important;
    max-width: calc(50% - 20px) !important;
    flex: 0 0 calc(50% - 20px) !important;
    margin: 0 10px 20px !important;
    min-height: 0 !important;
  }

  body.home .woocommerce ul.products li.product img {
    height: 190px !important;
    margin-top: 74px !important;
    width: calc(100% - 28px) !important;
  }

  body.home .woocommerce .rb-archive-overlay__title {
    font-size: 16px !important;
    line-height: 1.15 !important;
    max-width: 76% !important;
  }

  body.home .woocommerce .rb-clean-archive-card__amount {
    font-size: 38px !important;
  }

  body.home .woocommerce .rb-clean-archive-card__button {
    min-width: 96px !important;
    height: 46px !important;
    font-size: 14px !important;
  }

  body.rb-woo-archive-fix .rabino-archive-breadcrumbs,
  body.rb-woo-archive-fix .rabino-archive-hero__content {
    margin-left: 0 !important;
    max-width: 100% !important;
  }

  body.rb-woo-archive-fix .rabino-archive-hero .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  body.rb-woo-archive-fix .rabino-archive-hero__title {
    font-size: 34px !important;
  }

  body.rb-woo-archive-fix .rabino-archive-hero__subtitle {
    font-size: 16px !important;
  }

  body.rb-woo-archive-fix .widget-area,
  body.rb-woo-archive-fix #sidebar,
  body.rb-woo-archive-fix .sidebar,
  body.rb-woo-archive-fix .left-sidebar,
  body.rb-woo-archive-fix .content-area,
  body.rb-woo-archive-fix .post-area,
  body.rb-woo-archive-fix .main-content > .col_last,
  body.rb-woo-archive-fix .main-content > .span_9,
  body.rb-woo-archive-fix .main-content > .span_10 {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 900px) {
  .rm-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .rm-services {
    padding: 4px 4px;
  }

  .rm-services__heading {
    font-size: 20px;
  }

  .rm-services__subheading {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .rm-services__premium {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }

  .rm-card-premium {
    padding: 16px 18px;
    gap: 14px;
    border-radius: 10px;
    align-items: center;
  }

  .rm-card-premium__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-size: 20px 20px;
  }

  .rm-card-premium__title {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .rm-card-premium__desc {
    font-size: 13px;
    line-height: 1.5;
  }

  .rm-services__grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 8px;
  }

  .rm-card {
    flex-direction: column;
    padding: 14px 16px;
    border-radius: 10px;
    gap: 0;
  }

  .rm-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
  }

  .rm-card__icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background-size: 18px 18px;
    flex-shrink: 0;
  }

  .rm-card__title {
    font-size: 14px;
    font-weight: 700;
  }

  .rm-card__desc {
    font-size: 13px;
    line-height: 1.5;
    padding-left: 48px;
  }

  body.rb-rental-product .product_title {
    font-size: 28px !important;
  }

  body.rb-rental-product .rb-rental-head-left h2 {
    font-size: 24px;
  }

  body.rb-rental-product .rb-vat-toggle-container {
    width: 100%;
    justify-content: center;
    padding: 10px;
  }

  body.rb-rental-product .rb-rental-price {
    font-size: 34px !important;
  }

  body.rb-rental-product .rb-rental-data-item {
    border-radius: 12px;
    padding: 10px 6px !important;
  }

  body.rb-rental-product .rb-rental-data-item span {
    font-size: 10px;
  }

  body.rb-rental-product .rb-rental-data-item strong {
    font-size: 13px;
  }

  body.rb-rental-product .rb-rental-cta .button,
  body.rb-rental-product .rb-rental-cta a.button {
    border-radius: 12px;
    font-size: 14px !important;
    padding: 12px 10px !important;
  }

  body.rb-rental-product .rb-product-attrs-row {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  body.rb-rental-archive ul.products li.product {
    border-radius: 16px !important;
    margin-bottom: 16px !important;
  }

  body.rb-rental-archive ul.products li.product img {
    height: 180px !important;
    min-height: 180px !important;
    margin-top: 68px !important;
    width: calc(100% - 24px) !important;
  }

  body.rb-rental-archive .rb-archive-overlay__top {
    padding: 16px 16px 0 !important;
    gap: 8px !important;
  }

  body.rb-rental-archive .rb-archive-overlay__title {
    font-size: 16px !important;
    max-width: 74% !important;
    line-height: 1.18 !important;
  }

  body.rb-rental-archive .rb-archive-overlay__brand {
    font-size: 10px !important;
    max-width: 26% !important;
  }

  body.rb-rental-archive .rb-clean-archive-card {
    padding: 0 16px 16px !important;
  }

  body.rb-rental-archive .rb-clean-archive-card__footer {
    padding-top: 14px !important;
    gap: 10px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  body.rb-rental-archive .rb-clean-archive-card__amount {
    font-size: 36px;
  }

  body.rb-rental-archive .rb-clean-archive-card__button {
    width: auto !important;
    min-width: 92px !important;
    white-space: nowrap !important;
  }

  body.home .woocommerce ul.products li.product {
    border-radius: 16px !important;
    margin-bottom: 16px !important;
    width: calc(50% - 20px) !important;
    max-width: calc(50% - 20px) !important;
    flex: 0 0 calc(50% - 20px) !important;
  }

  body.home .woocommerce ul.products li.product img {
    height: 180px !important;
    margin-top: 68px !important;
    width: calc(100% - 24px) !important;
  }

  body.home .woocommerce .rb-archive-overlay__top {
    padding: 16px 16px 0 !important;
    gap: 8px !important;
  }

  body.home .woocommerce .rb-archive-overlay__title {
    font-size: 15px !important;
    max-width: 74% !important;
    line-height: 1.15 !important;
  }

  body.home .woocommerce .rb-archive-overlay__brand {
    font-size: 10px !important;
    max-width: 26% !important;
  }

  body.home .woocommerce .rb-clean-archive-card {
    padding: 0 16px 16px !important;
  }

  body.home .woocommerce .rb-clean-archive-card__footer {
    padding-top: 14px !important;
    gap: 10px !important;
  }

  body.home .woocommerce .rb-clean-archive-card__amount {
    font-size: 34px !important;
  }

  body.home .woocommerce .rb-clean-archive-card__suffix {
    font-size: 13px !important;
  }

  body.home .woocommerce .rb-clean-archive-card__button {
    min-width: 92px !important;
    height: 42px !important;
    padding: 0 16px !important;
  }
}

@media (max-width: 480px) {
  .rb-m-horizontal-grid {
    flex-direction: column !important;
    text-align: center !important;
  }

  .rb-m-price-col {
    text-align: center !important;
  }

  .rb-m-price-wrapper {
    justify-content: center !important;
  }

  .rb-m-btn-small {
    width: 100% !important;
  }
}

@media (max-width: 380px) {
  .rm-services {
    padding: 24px 12px;
  }

  .rm-card__desc {
    padding-left: 0;
  }
}

@media (max-width: 740px) {
  body.woocommerce:not(.single-product) ul.products[data-n-desktop-small-columns="2"],
  body.woocommerce:not(.single-product) ul.products[data-n-desktop-small-columns="3"] {
    width: 98% !important;
    padding-left: 2% !important;
  }
}

@media (hover: none) {
  .rm-card:hover,
  .rm-card-premium:hover {
    border-color: transparent;
    box-shadow: none;
  }

  .rm-card:hover .rm-card__icon {
    background: #eef1f8;
  }

  .rm-card:active {
    border-color: #2d5fc4;
    box-shadow: 0 2px 10px rgba(45, 95, 196, .1);
  }

  .rm-card-premium:active {
    border-color: #4a7fd4;
  }
}


/* ==========================================================
   10) UTILITY
   ========================================================== */
.product-meta {
  padding: 0 10px !important;
}

body.woocommerce:not(.single-product) ul.products[data-n-desktop-small-columns="2"],
body.woocommerce:not(.single-product) ul.products[data-n-desktop-small-columns="3"] {
  width: 99.9% !important;
}


/* ==========================================================
   11) ADDENDUM SINGLE VEICOLO - immagine arrotondata + spazio
   ========================================================== */
body.rb-rental-product .woocommerce-product-gallery,
body.rb-rental-product .woocommerce-product-gallery__wrapper,
body.rb-rental-product .woocommerce-product-gallery__image {
  border-radius: 10px !important;
  overflow: hidden !important;
}

body.rb-rental-product .rb-rental-layout-full {
  margin-top: 0 !important;
  padding-top: 34px !important;
}

body.rb-rental-product .rb-rental-shell {
  margin-top: 0 !important;
}


/* ==========================================================
   12) SINGLE VEICOLO - PRODOTTI CORRELATI CAROUSEL SAFE
   ========================================================== */
body.rb-rental-product .related.products,
body.rb-rental-product .upsells.products {
  margin-top: 30px !important;
  overflow: hidden !important;
}

body.rb-rental-product .related.products > h2,
body.rb-rental-product .upsells.products > h2 {
  font-size: 30px !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  letter-spacing: -.02em !important;
  color: #12243d !important;
  margin: 0 0 20px !important;
}

body.rb-rental-product .related.products ul.products,
body.rb-rental-product .upsells.products ul.products {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

body.rb-rental-product .related.products ul.products li.product,
body.rb-rental-product .upsells.products ul.products li.product {
  position: relative !important;
  background: #f7f7f7 !important;
  border: 1px solid #d7dde5 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
  transform: none !important;
  transition: box-shadow .2s ease, transform .2s ease !important;
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  float: none !important;
  clear: none !important;
  flex: none !important;
}

body.rb-rental-product .related.products ul.products li.product:hover,
body.rb-rental-product .upsells.products ul.products li.product:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 24px rgba(21, 33, 54, .08) !important;
}

body.rb-rental-product .related.products ul.products li.product .product-wrap,
body.rb-rental-product .related.products ul.products li.product .product-image,
body.rb-rental-product .related.products ul.products li.product .product-meta,
body.rb-rental-product .related.products ul.products li.product .product-details,
body.rb-rental-product .related.products ul.products li.product > a:first-child,
body.rb-rental-product .upsells.products ul.products li.product .product-wrap,
body.rb-rental-product .upsells.products ul.products li.product .product-image,
body.rb-rental-product .upsells.products ul.products li.product .product-meta,
body.rb-rental-product .upsells.products ul.products li.product .product-details,
body.rb-rental-product .upsells.products ul.products li.product > a:first-child {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  float: none !important;
  background: #fff !important;
}

body.rb-rental-product .related.products ul.products li.product .price,
body.rb-rental-product .related.products ul.products li.product .price-hover-wrap,
body.rb-rental-product .related.products ul.products li.product .product-add-to-cart,
body.rb-rental-product .related.products ul.products li.product .add_to_cart_button,
body.rb-rental-product .upsells.products ul.products li.product .price,
body.rb-rental-product .upsells.products ul.products li.product .price-hover-wrap,
body.rb-rental-product .upsells.products ul.products li.product .product-add-to-cart,
body.rb-rental-product .upsells.products ul.products li.product .add_to_cart_button {
  display: none !important;
}

body.rb-rental-product .related.products ul.products li.product h2.woocommerce-loop-product__title,
body.rb-rental-product .related.products ul.products li.product .woocommerce-loop-product__title,
body.rb-rental-product .related.products ul.products li.product .product-meta h2,
body.rb-rental-product .related.products ul.products li.product .product-meta .woocommerce-loop-product__title,
body.rb-rental-product .related.products ul.products li.product .product-details h2,
body.rb-rental-product .related.products ul.products li.product .product-details .woocommerce-loop-product__title,
body.rb-rental-product .upsells.products ul.products li.product h2.woocommerce-loop-product__title,
body.rb-rental-product .upsells.products ul.products li.product .woocommerce-loop-product__title,
body.rb-rental-product .upsells.products ul.products li.product .product-meta h2,
body.rb-rental-product .upsells.products ul.products li.product .product-meta .woocommerce-loop-product__title,
body.rb-rental-product .upsells.products ul.products li.product .product-details h2,
body.rb-rental-product .upsells.products ul.products li.product .product-details .woocommerce-loop-product__title {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  line-height: 0 !important;
  min-height: 0 !important;
}

body.rb-rental-product .related.products .rb-archive-overlay,
body.rb-rental-product .upsells.products .rb-archive-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 3 !important;
  pointer-events: none !important;
}

body.rb-rental-product .related.products .rb-archive-overlay__top,
body.rb-rental-product .upsells.products .rb-archive-overlay__top {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 6px !important;
  padding: 14px 14px 0 !important;
}

body.rb-rental-product .related.products .rb-archive-overlay__title,
body.rb-rental-product .upsells.products .rb-archive-overlay__title {
  margin: 0 !important;
  font-size: 13px !important;
  line-height: 1.1 !important;
  font-weight: 800 !important;
  color: #183153 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  max-width: 72% !important;
  text-align: left !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  min-height: 44px !important;
}

body.rb-rental-product .related.products .rb-archive-overlay__brand,
body.rb-rental-product .upsells.products .rb-archive-overlay__brand {
  font-size: 10px !important;
  line-height: 1.1 !important;
  font-weight: 700 !important;
  color: #97a6ba !important;
  text-transform: uppercase !important;
  letter-spacing: .08em !important;
  text-align: right !important;
  white-space: nowrap !important;
  max-width: 28% !important;
  padding-top: 2px !important;
}

body.rb-rental-product .related.products ul.products li.product img,
body.rb-rental-product .upsells.products ul.products li.product img {
  display: block !important;
  width: calc(100% - 34px) !important;
  max-width: none !important;
  height: 150px !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 56px auto 8px !important;
  background: transparent !important;
  border-radius: 0 !important;
  position: relative !important;
  z-index: 1 !important;
  box-shadow: none !important;
}

body.rb-rental-product .related.products .rb-clean-archive-card,
body.rb-rental-product .upsells.products .rb-clean-archive-card {
  width: 100% !important;
  padding: 0 14px 14px !important;
  margin-top: auto !important;
}

body.rb-rental-product .related.products .rb-clean-archive-card__footer,
body.rb-rental-product .upsells.products .rb-clean-archive-card__footer {
  border-top: 1px solid #dfe5ec !important;
  padding-top: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  flex-direction: row !important;
}

body.rb-rental-product .related.products .rb-clean-archive-card__price,
body.rb-rental-product .upsells.products .rb-clean-archive-card__price {
  display: flex !important;
  align-items: baseline !important;
  gap: 3px !important;
  margin: 0 !important;
  color: #004282 !important;
  line-height: 1 !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

body.rb-rental-product .related.products .rb-clean-archive-card__currency,
body.rb-rental-product .upsells.products .rb-clean-archive-card__currency {
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #004282 !important;
}

body.rb-rental-product .related.products .rb-clean-archive-card__amount,
body.rb-rental-product .upsells.products .rb-clean-archive-card__amount {
  font-size: 26px !important;
  line-height: .95 !important;
  font-weight: 900 !important;
  letter-spacing: -.05em !important;
  color: #004282 !important;
}

body.rb-rental-product .related.products .rb-clean-archive-card__suffix,
body.rb-rental-product .upsells.products .rb-clean-archive-card__suffix {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #8a97aa !important;
  white-space: nowrap !important;
}

body.rb-rental-product .related.products .rb-clean-archive-card__button,
body.rb-rental-product .upsells.products .rb-clean-archive-card__button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 82px !important;
  height: 36px !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  background: #dfe9f6 !important;
  color: #004282 !important;
  text-decoration: none !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  border: none !important;
  box-shadow: none !important;
  white-space: nowrap !important;
  flex: 0 0 auto !important;
}


/* ==========================================================
   13) FIX SPECIFICO PER CAROUSEL
   ========================================================== */
body.rb-rental-product .related.products .slick-list,
body.rb-rental-product .upsells.products .slick-list {
  overflow: hidden !important;
}

body.rb-rental-product .related.products .slick-track,
body.rb-rental-product .upsells.products .slick-track {
  display: flex !important;
  align-items: stretch !important;
}

body.rb-rental-product .related.products .slick-slide,
body.rb-rental-product .upsells.products .slick-slide {
  height: auto !important;
  padding: 0 10px !important;
  box-sizing: border-box !important;
}

body.rb-rental-product .related.products .slick-slide > div,
body.rb-rental-product .upsells.products .slick-slide > div {
  height: 100% !important;
}

body.rb-rental-product .related.products .owl-stage,
body.rb-rental-product .upsells.products .owl-stage {
  display: flex !important;
  align-items: stretch !important;
}

body.rb-rental-product .related.products .owl-item,
body.rb-rental-product .upsells.products .owl-item {
  padding: 0 10px !important;
  box-sizing: border-box !important;
}

body.rb-rental-product .related.products .owl-item .product,
body.rb-rental-product .upsells.products .owl-item .product {
  height: 100% !important;
}

body.rb-rental-product .related.products .swiper-wrapper,
body.rb-rental-product .upsells.products .swiper-wrapper {
  align-items: stretch !important;
}

body.rb-rental-product .related.products .swiper-slide,
body.rb-rental-product .upsells.products .swiper-slide {
  height: auto !important;
  padding: 0 10px !important;
  box-sizing: border-box !important;
}

body.rb-rental-product .related.products .flickity-slider .product,
body.rb-rental-product .upsells.products .flickity-slider .product,
body.rb-rental-product .related.products .carousel .product,
body.rb-rental-product .upsells.products .carousel .product {
  margin: 0 10px !important;
}


/* ==========================================================
   14) MOBILE NAV DOTS
   ========================================================== */
.rb-home-featured__mobile-nav {
  display: none;
}

@media (max-width: 640px) {
  .rb-home-featured__mobile-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 14px;
  }

  .rb-home-featured__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .rb-home-featured__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid #123f7a;
    background: #ffffff;
    padding: 0;
    margin: 0;
    cursor: pointer;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    transition: background-color .2s ease, transform .2s ease, opacity .2s ease;
  }

  .rb-home-featured__dot.is-active {
    background: #123f7a;
    transform: scale(1.05);
  }
}


/* ==========================================================
   15) EXTRA FIXES GENERICI
   ========================================================== */

/* margine widget filtro desktop */
.rabino-shop-sidebar .shop-filter-widget {
  margin: 0 0 0 25px !important;
}

/* titolo pagina shop */
.nectar-shop-header .page-title {
  display: none !important;
}

/* spazio sopra contenuto */
#ajax-content-wrap .container-wrap {
  padding-top: 10px !important;
}


/* ==========================================================
   16) WOOF / HUSKY FILTER FIXES
   ========================================================== */
.woof_sid_flat_white {
  border: solid 0px #fff !important;
  padding: 0px !important;
  background: #FFF !important;
}

@media (max-width: 999px) {
  .woof_auto_show {
    opacity: 1 !important;
    transition: none !important;
    animation: none !important;
	padding-bottom: 45px !important;
    padding-top: 40px!important;
	margin-left: -12px!important;
  }

  .woof_auto_show_indent {
    width: 100% !important;
    max-width: none !important;
    padding-top: 10px!important;
    padding-right:0 !important;
    padding-left: 0 !important;
    padding-bottom: 85px !important;
    box-sizing: border-box !important;
  border: solid 0px #fff !important;

  }

  .woof_autohide_wrapper {
  border: solid 0px #fff !important;
  margin: 18px 0 22px;
  }

  .woof_autohide_wrapper br {
    display: none !important;
  border: solid 0px #fff !important;
  }

  .woof_autohide_wrapper .woof_btn_default.woof_hide_auto_form,
  .woof_autohide_wrapper .woof_btn_default.woof_show_auto_form {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 80% !important;
    min-height: 54px;
    margin: 0 auto !important;
    padding: 14px 18px !important;
    box-sizing: border-box;
    border: 1px solid #d9e0ea !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    background-image: none !important;
    box-shadow: none !important;
    color: #173f7a !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
    text-align: center !important;
    float: none !important;
    opacity: 1 !important;
  }

  .woof_autohide_wrapper .woof_btn_default.woof_hide_auto_form::before,
  .woof_autohide_wrapper .woof_btn_default.woof_show_auto_form::before {
    content: "";
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23173f7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' y1='6' x2='20' y2='6'/%3E%3Cline x1='7' y1='12' x2='17' y2='12'/%3E%3Cline x1='10' y1='18' x2='14' y2='18'/%3E%3C/svg%3E");
  }
}

@media (max-width: 640px) {
  .woof_auto_show_indent {
    margin: 10px !important;
    padding: 8px !important;
  }
}


/* ==========================================================
   17) RESULT COUNT FIX
   ========================================================== */

/* nasconde solo il count nativo Woo sui tuoi archivi,
   ma non il count custom rabino */
body.rb-woo-archive-fix .woocommerce-result-count:not(.rabino-vehicle-count),
.nectar-shop-header > .woocommerce-result-count:not(.rabino-vehicle-count) {
  display: none !important;
}

.rabino-vehicle-count {
  display: block !important;
  margin: 0;
  color: #2f3e52;
  font-size: 18px;
  font-weight: 600;
}

@media (max-width: 999px) {
  .rabino-vehicle-count {
    margin: 0 0 0 20px;
  }
}


/* ==========================================================
   18) ORDINAMENTO WOO / SALIENT / SELECT2 FIX
   ========================================================== */

/* header archivio */
.nectar-shop-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  flex-wrap: nowrap !important;
  position: relative !important;
  z-index: 50 !important;
  overflow: visible !important;
}

/* count custom a sinistra */
.nectar-shop-header > .rabino-vehicle-count {
  margin-right: auto !important;
}

/* form ordinamento */
.nectar-shop-header > form.woocommerce-ordering {
  display: block !important;
  margin: 0 0 0 auto !important;
  float: none !important;
  clear: none !important;
  width: auto !important;
  position: relative !important;
  z-index: 200 !important;
  opacity: 1 !important;
}

/* wrapper select2 */
.nectar-shop-header .fancy-select-wrap,
.nectar-shop-header .select2-container {
  width: 220px !important;
  min-width: 220px !important;
  max-width: 220px !important;
  position: relative !important;
  z-index: 200 !important;
  opacity: 1 !important;
}

/* select singolo */
.nectar-shop-header .select2-selection--single,
.nectar-shop-header form.woocommerce-ordering select.orderby {
  height: 46px !important;
  min-height: 46px !important;
  border: 1px solid #d9e0ea !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  opacity: 1 !important;
  box-shadow: none !important;
}

/* testo interno */
.nectar-shop-header .select2-selection__rendered {
  line-height: 44px !important;
  padding-left: 14px !important;
  padding-right: 34px !important;
  color: #5c6678 !important;
  opacity: 1 !important;
}

/* freccia */
.nectar-shop-header .select2-selection__arrow {
  height: 44px !important;
  right: 10px !important;
  opacity: 1 !important;
}

/* dropdown aperto */
.select2-container--open,
.select2-dropdown,
.select2-results,
.select2-results__options,
.select2-results__option {
  z-index: 999999 !important;
  opacity: 1 !important;
  background: #ffffff !important;
}

.select2-dropdown {
  border: 1px solid #d9e0ea !important;
  border-radius: 12px !important;
  box-shadow: 0 14px 30px rgba(17, 34, 51, .12) !important;
  overflow: hidden !important;
}

/* prodotti sotto il dropdown */
.woocommerce ul.products,
.woocommerce-page ul.products {
  position: relative !important;
  z-index: 1 !important;
}

@media (max-width: 999px) {
  .nectar-shop-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
  }

  .nectar-shop-header > form.woocommerce-ordering {
    margin-left: auto !important;
    width: auto !important;
    flex: 0 0 auto !important;
  }

@media (max-width: 999px) {
  .nectar-shop-header .fancy-select-wrap,
  .nectar-shop-header .select2-container {
    width: 250px !important;
    min-width: 250px !important;
    max-width: calc(100vw - 32px) !important;
  }

  .nectar-shop-header > form.woocommerce-ordering {
    width: auto !important;
    min-width: 250px !important;
  }
}

  .nectar-shop-header .select2-selection--single,
  .nectar-shop-header form.woocommerce-ordering select.orderby {
    height: 42px !important;
    min-height: 42px !important;
    border-radius: 10px !important;
  }

  .nectar-shop-header .select2-selection__rendered {
    line-height: 40px !important;
    font-size: 15px !important;
  }
}

/* ==========================================================
   19) PAGINAZIONE SHOP - CENTRATA + STILE CUSTOM
   Percorso: /wp-content/themes/salient-child/assets/css/woocommerce-shop-layout.css
   ========================================================== */

body.rb-woo-archive-fix .rabino-shop-layout {
  --rb-sidebar-width: 300px;
  --rb-shop-gap: 32px;
}

/* wrapper paginazione */
body.rb-woo-archive-fix .rabino-shop-main nav.woocommerce-pagination,
body.rb-woo-archive-fix nav.woocommerce-pagination {
  width: 100%;
  margin: 34px 0 0 !important;
  clear: both !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;

  /* centra rispetto all'intero layout (sidebar + prodotti) */
  transform: translateX(calc((var(--rb-sidebar-width) + var(--rb-shop-gap)) / -2));
}

/* lista interna */
body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

/* singolo item */
body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  float: none !important;
}

/* link e current */
body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li .page-numbers {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 40px !important;
  height: 40px !important;
  padding: 0 14px !important;
  border: 1px solid #d9e0ea !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  color: #35557e !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: all .2s ease !important;
}

/* hover */
body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li a.page-numbers:hover {
  border-color: #0f4b8f !important;
  color: #0f4b8f !important;
  background: #f7fbff !important;
}

/* pagina attiva */
body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li .page-numbers.current {
  background: #0f4b8f !important;
  border-color: #0f4b8f !important;
  color: #ffffff !important;
}

/* dots */
body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li .page-numbers.dots {
  min-width: auto !important;
  width: auto !important;
  height: 40px !important;
  padding: 0 6px !important;
  border: 0 !important;
  background: transparent !important;
  color: #6d7b8f !important;
}

/* prev / next come bottoni con freccia */
body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li .prev,
body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li .next {
  min-width: 40px !important;
  padding: 0 !important;
  font-size: 0 !important;
  position: relative !important;
}

body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li .prev::before,
body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li .next::before {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  color: #35557e;
}

body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li .prev::before {
  content: "‹";
}

body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li .next::before {
  content: "›";
}

/* responsive: su mobile niente shift laterale */
@media (max-width: 999px) {
  body.rb-woo-archive-fix .rabino-shop-main nav.woocommerce-pagination,
  body.rb-woo-archive-fix nav.woocommerce-pagination {
    transform: none !important;
    margin-top: 26px !important;
  }

  body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers {
    gap: 6px !important;
  }

  body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li .page-numbers {
    min-width: 38px !important;
    height: 38px !important;
    padding: 0 12px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
  }
}

/* ==========================================================
   MOBILE PAGINATION FIX
   Percorso: /wp-content/themes/salient-child/assets/css/woocommerce-shop-layout.css
   ========================================================== */

@media (max-width: 640px) {

  body.rb-woo-archive-fix .rabino-shop-main nav.woocommerce-pagination,
  body.rb-woo-archive-fix nav.woocommerce-pagination {
    transform: none !important;
    margin: 22px 0 0 !important;
    padding: 0 10px !important;
    display: flex !important;
    justify-content: center !important;
  }

  body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    row-gap: 10px !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    float: none !important;
    line-height: 1 !important;
  }

  body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li .page-numbers {
    min-width: 44px !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 44px !important;
  }

  /* puntini */
  body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li .page-numbers.dots {
    min-width: 24px !important;
    width: auto !important;
    height: 44px !important;
    line-height: 44px !important;
    padding: 0 4px !important;
    border: 0 !important;
    background: transparent !important;
  }

  /* Previous / Next compatti solo icona */
  body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li .prev,
  body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li .next {
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    font-size: 0 !important;
    position: relative !important;
  }

  body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li .prev::before,
  body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li .next::before {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    color: #35557e;
  }

  body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li .prev::before {
    content: "‹";
  }

  body.rb-woo-archive-fix nav.woocommerce-pagination ul.page-numbers li .next::before {
    content: "›";
  }
}


.rm-empty-catalog{
	max-width: 1080px;
	margin: 40px auto 70px;
	padding: 34px 28px;
	border: 1px solid rgba(0,0,0,.08);
	border-radius: 18px;
	background: #fff;
	text-align: center;
	box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.rm-empty-catalog__icon{
	font-size: 40px;
	line-height: 1;
	margin-bottom: 12px;
}

.rm-empty-catalog h2{
	margin: 0 0 12px;
	font-size: 30px;
	line-height: 1.2;
}

.rm-empty-catalog p{
	max-width: 760px;
	margin: 0 auto 12px;
	font-size: 16px;
	line-height: 1.7;
}

.rm-empty-catalog__actions{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 24px;
}

.rm-empty-catalog__btn{
	display: inline-block;
	padding: 12px 20px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	border: 1px solid #111;
	transition: all .2s ease;
}

.rm-empty-catalog__btn:hover{
	transform: translateY(-1px);
	opacity: .92;
}

.rm-empty-catalog__btn--primary{
	background: #111;
	color: #fff;
}

.rm-empty-catalog__btn--secondary{
	background: #fff;
	color: #111;
}

.rm-empty-catalog__suggestions{
	margin-top: 36px;
	text-align: left;
}

.rm-empty-catalog__suggestions h3{
	text-align: center;
	margin-bottom: 24px;
	font-size: 24px;
}

.rm-empty-catalog ul.products{
	margin-top: 0 !important;
}

@media (max-width: 767px){
	.rm-empty-catalog{
		padding: 24px 18px;
	}

	.rm-empty-catalog h2{
		font-size: 24px;
	}

	.rm-empty-catalog__actions{
		flex-direction: column;
	}

	.rm-empty-catalog__btn{
		width: 100%;
	}
}


 * /* NOTE LEGALI COLLASSABILI */
body.rb-rental-product .rb-rental-legal-text {
  --rb-legal-lines: 2;
  --rb-legal-line-height: 1.6;

  position: relative;
  overflow: hidden;
  line-height: var(--rb-legal-line-height);
  max-height: calc(var(--rb-legal-lines) * 1em * var(--rb-legal-line-height));
}

body.rb-rental-product .rb-rental-legal-text.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.4em;
  background: linear-gradient(to bottom, rgba(255,255,255,0), #fff 85%);
  pointer-events: none;
}

body.rb-rental-product .rb-rental-legal-text.is-expanded {
  max-height: none;
}

body.rb-rental-product .rb-rental-legal-text p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

body.rb-rental-product .rb-rental-legal-text p + p {
  margin-top: 12px;
}

body.rb-rental-product .rb-rental-legal-toggle {
  display: inline-block;
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #123f7a;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: underline;
  cursor: pointer;
  box-shadow: none;
}

body.rb-rental-product .rb-rental-legal-toggle:hover {
  color: #0f4b8f;
}

body.rb-rental-product .rb-rental-legal-toggle[hidden] {
  display: none !important;
}



/* ==========================================================
   SINGLE PRODUCT - BADGE SOTTO IMMAGINE
   ========================================================== */
body.rb-rental-product .woocommerce-product-gallery .rb-single-product-gallery-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 6px;
  padding: 0 8px;
}

body.rb-rental-product .woocommerce-product-gallery .rb-single-product-gallery-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

body.rb-rental-product .woocommerce-product-gallery .rb-single-product-gallery-badge--care {
  background: #e8eef9;
  color: #244f8f;
}

body.rb-rental-product .woocommerce-product-gallery .rb-single-product-gallery-badge--delivery {
  background: #dff2e8;
  color: #187a57;
}

@media (max-width: 690px) {
  body.rb-rental-product .woocommerce-product-gallery .rb-single-product-gallery-badges {
    gap: 8px;
    margin-top: 14px;
  }

  body.rb-rental-product .woocommerce-product-gallery .rb-single-product-gallery-badge {
    min-height: 28px;
    padding: 0 12px;
    font-size: 12px;
  }
}