:root {
  --teal: #267d79;
  --deep: #245f5e;
  --coral: #ff765d;
  --cream: #fffaf4;
  --text: #263d3d;
  --muted: #667171;
  --shadow: 0 10px 30px rgba(37, 71, 67, 0.09);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background: #fffdf9;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
button,
input {
  font: inherit;
}
.skip-link {
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.skip-link:focus {
  background-color: #ddd;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.container {
  width: min(1180px, 92%);
  margin: auto;
}
header {
  position: relative;
}
.header-item {
  margin-right: 0;
  line-height: 1;
}
.announcement {
  height: 33px;
  background: linear-gradient(90deg, #287f7c, #216a69);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 12px;
}
.announcement a {
  color: inherit;
  text-decoration: none;
}
.announcement a:hover span {
  text-decoration: underline;
}
.site-header {
  height: 86px;
  padding: 0 3%;
  display: flex;
  align-items: center;
  gap: 32px;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.04);
}
.brand img {
  width: 145px;
  height: 72px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.main-nav .menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav .menu > .menu-item {
  position: relative;
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav .menu .menu-item > a:hover {
  color: var(--teal);
}
.main-nav .menu > .menu-item > a {
  font-size: 14px;
  padding: 15px 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: inherit;
}
.main-nav .menu > .menu-item > a .submenu-toggle {
  font-size: 11px;
  line-height: 1;
}
.main-nav .menu > .menu-item > a .submenu-toggle {
  font-size: 11px;
  line-height: 1;
}
.main-nav .menu > .menu-item > a.active,
.main-nav .menu > .current-menu-item > a,
.main-nav .menu > .current_page_item > a,
.main-nav .menu > .current-menu-ancestor > a {
  color: var(--teal);
  border-bottom: 2px solid var(--teal);
}
.main-nav .submenu-expander {
  display: none;
}
.main-nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(33, 33, 33, 0.08);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
}
.main-nav .sub-menu::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.main-nav .menu-item-has-children:hover > .sub-menu,
.main-nav .menu-item-has-children:focus-within > .sub-menu,
.main-nav .menu-item-has-children.is-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .sub-menu .menu-item {
  display: block;
  margin: 0;
  padding: 0;
  position: relative;
}
.main-nav .sub-menu .menu-item-has-children > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.main-nav .sub-menu .menu-item-has-children > a .submenu-toggle {
  font-size: 10px;
  line-height: 1;
  opacity: 0.65;
}
/* Nested flyout (desktop) */
.main-nav .sub-menu .sub-menu {
  top: 0;
  left: calc(100% + 4px);
  margin-top: 0;
}
.main-nav .sub-menu .sub-menu::before {
  top: 0;
  left: -10px;
  right: auto;
  width: 10px;
  height: 100%;
}
.main-nav .sub-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  border: 0;
}
.main-nav .sub-menu a:hover,
.main-nav .sub-menu a.active,
.main-nav .sub-menu .current-menu-item > a {
  color: var(--teal);
  background: rgba(38, 125, 121, 0.06);
}
.header-actions {
  display: flex;
  gap: 13px;
}
.header-actions a,
.header-actions button {
  background: none;
  border: 0;
  font-size: 21px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  display: inline-block;
}
.header-actions a:hover,
.header-actions button:hover {
  color: var(--teal);
}
.header-actions sup {
  font-size: 10px;
  background: var(--teal);
  color: #fff;
  border-radius: 50%;
  padding: 2px 4px;
  position: absolute;
  top: -2px;
  right: -4px;
}
.menu-toggle {
  display: none;
}
.hero-slider {
  position: relative;
  min-height: 530px;
  overflow: hidden;
}

.hero-slider__track {
  position: relative;
  min-height: 530px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  min-height: 530px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.hero-slide img.hero-slide__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--deep);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-slider__arrow:hover {
  background: var(--teal);
  color: #fff;
}

.hero-slider__arrow--prev {
  left: 20px;
}

.hero-slider__arrow--next {
  right: 20px;
}

.hero-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slider__dot.is-active {
  background: var(--teal);
  transform: scale(1.2);
}

.hero-copy {
  width: 50%;
  position: absolute;
  left: 9%;
  top: 16%;
  z-index: 2;
}
.hero h1 {
  font: 600 clamp(48px, 5vw, 80px) / 1.08 "Playfair Display", serif;
  color: var(--coral);
  margin: 0 0 24px;
}
.hero h1 span {
  color: var(--deep);
}
.hero p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 480px;
}
.actions {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.2s all ease-in-out;
}
.btn.primary {
  background: var(--teal);
  color: #fff;
  border: 1px solid var(--teal);
}
.btn.secondary {
  border: 1px solid var(--teal);
  color: var(--deep);
  background: #fff;
}
.btn.primary:hover {
  border: 1px solid var(--teal);
  color: var(--deep);
  background: #fff;
}

.btn.secondary:hover {
  background: var(--teal);
  color: #fff;
  border: 1px solid var(--teal);
}
.btn.coral {
  background: var(--coral);
  color: #fff;
  border: 1px solid var(--coral);
}
.btn.coral:hover {
  border: 1px solid var(--coral);
  color: var(--coral);
  background: #fff;
}
.section {
  padding: 46px 0;
}
.section h2,
.lifestyle h2,
.about-copy h2,
.newsletter h2 {
  font: 600 38px/1.2 "Playfair Display", serif;
  color: var(--deep);
  margin: 0;
}
.section > h2 {
  text-align: center;
}
.ornament {
  text-align: center;
  color: var(--teal);
  font-size: 24px;
  margin: 2px 0 18px;
}
.category-grid,
.section > .product-grid,
#products .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
/* Botiga puts .product-grid on #primary — do not treat shop <main> as a product card grid */
main.product-grid,
.site-main.product-grid,
.isla-shop.product-grid {
  display: block;
  grid-template-columns: unset;
  gap: unset;
}
.category-card {
  height: 250px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s;
}
.category-card:after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
}
.category-card span {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  color: #fff;
  font: 600 22px "Playfair Display", serif;
}
.category-card b {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--deep);
  font-size: 24px;
}
.category-card:hover img {
  transform: scale(1.04);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
  margin-bottom: 22px;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: space-between;
}
/* .section-heading.left {
  justify-content: flex-start;
} */
.section-heading a {
  /* position: absolute;
  right: 0; */
  color: var(--teal);
  font-size: 14px;
  margin-left: auto;
}

.product-card {
  position: relative;
  background: #fff;
  border: 1px solid #edf0ec;
  border-radius: 18px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.product-card > img,
.product-card > a img,
.product-card img {
  height: 235px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.product-card h3 a {
  color: inherit;
  text-decoration: none;
}
.product-card h3 a:hover {
  color: var(--teal);
}
.product-card h3,
.arrival-grid h3 {
  font-size: 14px;
  margin: 12px 0 6px;
}
.rating {
  color: #eeb13f;
  font-size: 13px;
}
.rating small {
  color: #697676;
}
.product-card strong {
  display: block;
  margin: 6px 0 12px;
}
.wish {
  position: absolute;
  right: 18px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  background: white;
  border: 0;
  border-radius: 50%;
  font-size: 18px;
  font-family: inherit;
  line-height: 1;
  color: var(--text);
  text-decoration: none;
  z-index: 2;
  cursor: pointer;
}
.wish.active {
  color: #e74c3c;
}
.wish.loading {
  opacity: 0.6;
  pointer-events: none;
}
.add {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  padding: 10px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.add.is-adding,
.add.loading {
  opacity: 0.85;
  pointer-events: none;
}
.add.is-added {
  background: #1f6b68;
}
.product-card .added_to_cart {
  display: none !important;
}
.lifestyle {
  padding: 20px 0;
  min-height: 260px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.lifestyle-copy {
  max-width: 380px;
}
.lifestyle p {
  line-height: 1.6;
  word-break: break-word;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 34px 0;
  text-align: center;
}
.benefits article {
  padding: 0 30px;
  border-right: 1px solid #eadfd3;
}
.benefits article:last-child {
  border: 0;
}
.benefits__icon {
  display: block;
  margin: 0 auto 10px;
}
.benefits__icon--text {
  font-size: 40px;
  color: var(--coral);
  line-height: 1;
}
.benefits__icon--image img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: inline-block;
}
.benefits h3 {
  font-size: 14px;
}
.benefits p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}
.arrival-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.arrival-grid img,
.arrival-grid a img {
  width: 100%;
  aspect-ratio: 1.2/1;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  max-height: 150px;
}
.arrival-grid h3 a {
  color: inherit;
  text-decoration: none;
}
.arrival-grid h3 a:hover {
  color: var(--teal);
}
.arrival-grid strong {
  font-size: 14px;
}
.about-section {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.35fr;
  background: var(--cream);
  align-items: stretch;
}
.about-section > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-copy {
  padding: 52px;
}
.about-copy small {
  color: var(--teal);
}
.about-copy p {
  font-size: 14px;
  line-height: 1.7;
}
.botanical {
  display: grid;
  place-items: center;
  color: #dec9b1;
}
.botanical img {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonials blockquote {
  margin: 0;
  background: #fff;
  border: 1px solid #eee4da;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
}
.testimonials blockquote div {
  color: var(--coral);
  letter-spacing: 3px;
}
.newsletter {
  background: linear-gradient(90deg, #ff8267, #ff705d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 24px 5%;
}
.newsletter h2 {
  color: #fff;
  font-size: 32px;
}
.newsletter p {
  margin: 3px 0;
}
.newsletter form {
  display: flex;
  min-width: 430px;
  gap: 10px !important;
  flex-direction: column;
}
.newsletter input {
  flex: 1;
  padding: 14px 16px;
  border: 0;
  border-radius: 8px 0 0 8px;
}
.newsletter button {
  border: 0;
  background: var(--teal);
  color: #fff;
  padding: 0 30px;
  border-radius: 0 8px 8px 0;
}
.newsletter-form {
  min-width: 430px;
}
.newsletter-form .wpforms-container,
.newsletter-form .mc4wp-form,
.newsletter-form .tnp,
.newsletter-form form {
  margin: 0;
}
.newsletter-form .wpforms-field-container,
.newsletter-form .wpforms-form,
.newsletter-form .mc4wp-form-fields,
.newsletter-form form {
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: nowrap;
}
.newsletter-form .wpforms-field,
.newsletter-form .wpforms-submit-container,
.newsletter-form p {
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
}
.newsletter-form .wpforms-field-label,
.newsletter-form label {
  display: none !important;
}
.newsletter-form input[type="email"],
.newsletter-form input[type="text"] {
  flex: 1;
  min-width: 220px;
  padding: 14px 16px;
  border: 0;
  border-radius: 8px 0 0 8px;
  font: inherit;
  width: 100%;
}
.newsletter-form button,
.newsletter-form input[type="submit"],
.newsletter-form .wpforms-submit {
  border: 0 !important;
  background: var(--teal) !important;
  color: #fff !important;
  /* padding: 0 30px !important; */
  border-radius: 0 8px 8px 0 !important;
  cursor: pointer;
  white-space: nowrap;
}
.newsletter-form-notice {
  max-width: 360px;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0.95;
}
.footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 38px;
  padding: 36px 5% 22px;
  background: #fff;
}
.footer img {
  width: 150px;
}
.footer h3 {
  font-size: 13px;
}
.footer a,
.footer p {
  display: block;
  font-size: 14px;
  line-height: 1.8;
  color: #4c5b5b;
  margin-bottom: 8px;
}
footer a:hover {
  color: var(--teal);
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f4f4f4;
  color: var(--deep);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
}
.footer-social a:hover {
  background: var(--teal);
  color: #fff;
}
.insta {
  display: flex;
  gap: 5px;
}
.insta img {
  width: 47px;
  height: 47px;
  object-fit: cover;
  border-radius: 5px;
}
.copyright {
  grid-column: 1/-1;
  text-align: center;
}
@media (max-width: 900px) {
  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 119px;
    background: white;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 25px 25px;
    box-shadow: var(--shadow);
    z-index: 200;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .main-nav .menu > .menu-item {
    display: block;
    position: relative;
    border-bottom: 1px solid rgba(33, 33, 33, 0.08);
  }
  .main-nav .menu > .menu-item > a {
    display: block;
    padding: 12px 36px 12px 8px;
    border-bottom: 0;
  }
  .main-nav .submenu-expander {
    display: block;
    position: absolute;
    top: 6px;
    right: 0;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .main-nav .submenu-expander::before {
    /* content: "⌄";
    display: block;
    font-size: 14px;
    line-height: 36px;
    text-align: center;
    transition: transform 0.2s ease; */
  }
  .main-nav .menu-item-has-children.is-open > .submenu-expander::before,
  .main-nav .menu-item-has-children.is-open > .submenu-expander i {
    transform: rotate(180deg);
  }
  .main-nav .menu > .menu-item-has-children > a .submenu-toggle {
    display: none;
  }
  .main-nav .sub-menu .menu-item-has-children {
    position: relative;
  }
  .main-nav .sub-menu .menu-item-has-children > a {
    display: block;
    padding: 8px 36px 8px 18px;
  }
  .main-nav .sub-menu .menu-item-has-children > a .submenu-toggle {
    display: none;
  }
  .main-nav .sub-menu .sub-menu a {
    padding-left: 28px;
  }
  .main-nav .sub-menu .sub-menu .sub-menu a {
    padding-left: 38px;
  }
  .main-nav .sub-menu {
    position: static;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    padding: 0 0 8px;
    display: none;
    background: transparent;
  }
  .main-nav .menu-item-has-children.is-open > .sub-menu {
    display: block;
  }
  .main-nav .sub-menu a {
    padding: 8px 8px 8px 18px;
    white-space: normal;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
    background: none;
    border: 0;
    font-size: 24px;
  }
  .menu-toggle .icon-bar {
    display: block;
    position: relative;
    width: 20px;
    height: 2px;
    margin-bottom: 4px;
    border-radius: 100px;
    background: var(--teal);
    transition: 0.3s;
  }
  .menu-toggle[aria-expanded="true"] .icon-bar:nth-of-type(1) {
    top: 7px;
    transform: rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] .icon-bar:nth-of-type(2) {
    transform: rotate(-45deg);
    top: 1px;
  }
  .menu-toggle[aria-expanded="true"] .icon-bar:nth-of-type(3) {
    top: -9px;
    transform: rotate(-45deg);
    background: none;
  }
  .header-actions {
    /* display: none; */
    flex: 1;
    justify-content: end;
    margin-right: 10px;
  }
  .hero-slider,
  .hero-slider__track,
  .hero-slide {
    min-height: 520px;
  }
  .hero-slide {
    background-position: 62% center;
  }
  .hero-copy {
    left: 6%;
    width: 52%;
    top: 12%;
  }
  .hero h1 {
    font-size: 48px;
  }
  .category-grid,
  .section > .product-grid,
  #products .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .arrival-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-section {
    grid-template-columns: 1fr 1fr;
  }
  .botanical {
    display: none;
  }
  .footer {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .announcement {
    height: auto;
    padding: 7px 10px;
    font-size: 10px;
  }
  .announcement > :nth-child(n + 2) {
    display: none;
  }
  .site-header {
    height: 72px;
    gap: 15px;
  }
  .brand img {
    width: 120px;
    height: 58px;
  }
  .main-nav {
    top: 100%;
  }
  .hero-slider,
  .hero-slider__track,
  .hero-slide {
    min-height: 590px;
  }
  .hero-slide:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      rgba(255, 250, 244, 0.98) 0 56%,
      rgba(255, 250, 244, 0.2) 85%
    );
  }
  .hero-slide {
    background-position: 68% center;
  }
  .hero-slider__arrow {
    display: none;
  }
  .hero-copy {
    z-index: 1;
    left: 7%;
    top: 12%;
    width: 75%;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero p {
    font-size: 15px;
  }
  .actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .section {
    padding: 34px 0;
  }
  .section h2,
  .lifestyle h2,
  .about-copy h2,
  .page-main .page-title {
    font-size: 30px;
  }
  .category-grid,
  .section > .product-grid,
  #products .product-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .category-card {
    height: 230px;
  }
  .product-card > img {
    height: 300px;
  }
  .benefits {
    grid-template-columns: repeat(2, 1fr);
  }
  .benefits article:nth-child(2) {
    border-right: 0;
  }
  .arrival-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-section {
    grid-template-columns: 1fr;
  }
  .about-copy {
    padding: 35px 7%;
  }
  .newsletter {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  .newsletter form,
  .newsletter-form {
    min-width: 0;
  }
  .newsletter-form .wpforms-field-container,
  .newsletter-form .wpforms-form,
  .newsletter-form .mc4wp-form-fields,
  .newsletter-form form {
    flex-wrap: wrap;
  }
  .newsletter-form input[type="email"],
  .newsletter-form input[type="text"],
  .newsletter-form button,
  .newsletter-form input[type="submit"],
  .newsletter-form .wpforms-submit {
    width: 100%;
    border-radius: 8px !important;
    margin-top: 10px;
  }
  .footer {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Page Template
   Default pages / fallback — uses homepage .section + .container shell
   ========================================================================== */
.page-main .page-header {
  margin-bottom: 28px;
}
.page-main .page-title {
  font: 600 38px/1.2 "Playfair Display", serif;
  color: var(--deep);
  margin: 0 0 40px;
}
.page-main .page-thumbnail {
  margin: 0 0 28px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.page-main .page-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
}
.page-main .entry-content {
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
}
.page-main .entry-content > *:first-child {
  margin-top: 0;
}
.page-main .entry-content > *:last-child {
  margin-bottom: 0;
}
.page-main .entry-content h2,
.page-main .entry-content h3,
.page-main .entry-content h4 {
  color: var(--deep);
  line-height: 1.3;
  margin: 1.6em 0 0.6em;
}
.page-main .entry-content h2 {
  font: 600 28px/1.25 "Playfair Display", serif;
}
.page-main .entry-content h3 {
  font: 600 22px/1.3 "Playfair Display", serif;
}
.page-main .entry-content p,
.page-main .entry-content ul,
.page-main .entry-content ol {
  margin: 0 0 1.15em;
}
.page-main .entry-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-main .entry-content a:hover {
  color: var(--deep);
}
.page-main .entry-content ul,
.page-main .entry-content ol {
  padding-left: 1.25em;
}
.page-main .entry-content img {
  border-radius: 12px;
}
.page-main .entry-content blockquote {
  margin: 1.5em 0;
  padding: 16px 22px;
  border-left: 3px solid var(--teal);
  background: var(--cream);
  color: var(--muted);
}
.page-main .entry-content .wp-block-button__link,
.page-main .entry-content .button {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  border: none;
  box-shadow: none;
}
.page-main .entry-content .wp-block-button__link:hover,
.page-main .entry-content .button:hover {
  background: var(--deep);
  color: #fff;
}
.page-main .page-links {
  margin-top: 28px;
  font-size: 14px;
  color: var(--muted);
}
.page-main .page-links a {
  color: var(--teal);
}

/* ==========================================================================
   Single Product Template
   Respects Botiga Customizer → WooCommerce → Single Product options
   (gallery layout, breadcrumbs, tabs, sidebar, related/upsell counts, etc.)
   Shell: .isla-single-product + .section (+ .container except wide galleries)
   ========================================================================== */

/* Shared chrome */
.isla-single-product .woocommerce-breadcrumb,
.isla-single-product .woocommerce-notices-wrapper {
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--muted);
}
.isla-single-product .woocommerce-breadcrumb a {
  color: var(--teal);
}
.isla-single-product .woocommerce-breadcrumb a:hover {
  text-decoration: underline;
}
.isla-single-product .woocommerce-message,
.isla-single-product .woocommerce-info,
.isla-single-product .woocommerce-error {
  margin: 0 0 22px;
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--cream);
  border-left: 3px solid var(--teal);
  list-style: none;
}
.isla-single-product .woocommerce-error {
  border-left-color: var(--coral);
}
.isla-single-product div.product {
  position: relative;
}

/* Wide galleries (showcase / full-width): keep crumbs/tabs/related in homepage container */
.isla-single-product--wide .woocommerce-breadcrumb,
.isla-single-product--wide .woocommerce-notices-wrapper,
.isla-single-product--wide .woocommerce-tabs,
.isla-single-product--wide .botiga-accordion,
.isla-single-product--wide .related.products,
.isla-single-product--wide .upsells.products,
.isla-single-product--wide .botiga-related-products,
.isla-single-product--wide .botiga-upsell-products {
  width: min(1180px, 92%);
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Gallery layout base (Botiga .product-gallery-summary + gallery-*) ---------- */
.isla-single-product .product-gallery-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 46px;
}
.isla-single-product .product-gallery-summary .woocommerce-product-gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.isla-single-product .product-gallery-summary .woocommerce-product-gallery,
.isla-single-product .product-gallery-summary .entry-summary {
  flex: 0 0 50%;
  max-width: 50%;
  min-width: 0;
  box-sizing: border-box;
}
.isla-single-product .product-gallery-summary .entry-summary {
  padding-left: 40px;
}
.isla-single-product .woocommerce-product-gallery__wrapper {
  margin: 0;
}
.isla-single-product .woocommerce-product-gallery__image {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #edf0ec;
  box-shadow: var(--shadow);
}
.isla-single-product .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
}
.isla-single-product .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--deep);
  box-shadow: var(--shadow);
  text-indent: -9999px;
  overflow: hidden;
}
.isla-single-product .woocommerce-product-gallery__trigger::before {
  content: "\f00e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  text-indent: 0;
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 14px;
}

/* Thumbs — default / single / full-width horizontal */
.isla-single-product .flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.isla-single-product .flex-control-thumbs li {
  width: 72px;
  margin: 0;
  cursor: pointer;
}
.isla-single-product .flex-control-thumbs li img {
  width: 100%;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  opacity: 0.55;
  border: 2px solid transparent;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.isla-single-product .flex-control-thumbs li img:hover,
.isla-single-product .flex-control-thumbs li img.flex-active {
  opacity: 1;
  border-color: var(--teal);
}

/* Thumbnail carousel (>5 images) — Botiga flexslider nav; parent Woo CSS is dequeued */
.isla-single-product .botiga-flexslider {
  position: relative;
  user-select: none;
  display: block;
  margin-top: 0;
}
.isla-single-product .botiga-flexslider ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.isla-single-product .botiga-flexslider ol li {
  margin: 0;
  padding: 0;
}
.isla-single-product .botiga-flexslider .flex-control-thumbs,
.isla-single-product .botiga-flexslider .botiga-slides {
  display: block;
  flex-wrap: nowrap;
  gap: 0;
}
.isla-single-product .botiga-flexslider .flex-viewport {
  margin: 0 36px;
}
.isla-single-product .botiga-flexslider .flex-control-thumbs li,
.isla-single-product .botiga-flexslider .botiga-slides > li {
  width: auto;
  float: none;
}
.isla-single-product .botiga-flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.isla-single-product .botiga-flex-direction-nav a {
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--deep, #2f3a36);
  background-color: #fff;
  box-shadow: var(--shadow, 0 8px 24px rgba(47, 58, 54, 0.08));
  text-indent: -9999px;
  overflow: hidden;
  transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.isla-single-product .botiga-flex-direction-nav a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}
.isla-single-product .botiga-flex-direction-nav a:focus {
  outline: none;
}
.isla-single-product .botiga-flex-direction-nav a:active {
  opacity: 0.45;
}
.isla-single-product .botiga-flex-direction-nav a.botiga-flex-disabled {
  pointer-events: none;
  opacity: 0;
}
.isla-single-product .botiga-flex-nav-prev a {
  left: 0;
}
.isla-single-product .botiga-flex-nav-prev a::before {
  transform: translateX(2px) rotate(-45deg);
}
.isla-single-product .botiga-flex-nav-prev a span,
.isla-single-product .botiga-flex-nav-next a span {
  display: none;
}
.isla-single-product .botiga-flex-nav-next a {
  right: 0;
}
.isla-single-product .botiga-flex-nav-next a::before {
  transform: translateX(-2px) rotate(135deg);
}

/* gallery-default thumbs-grid (Botiga customizer: thumbs as grid) */
.isla-single-product
  .product-gallery-summary.gallery-default.has-thumbs-grid
  .woocommerce-product-gallery__wrapper,
.isla-single-product
  .product-gallery-summary.gallery-vertical.has-thumbs-grid
  .woocommerce-product-gallery__wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.isla-single-product
  .product-gallery-summary.gallery-default.has-thumbs-grid
  .woocommerce-product-gallery__wrapper
  > div:first-child,
.isla-single-product
  .product-gallery-summary.gallery-vertical.has-thumbs-grid
  .woocommerce-product-gallery__wrapper
  > div:first-child {
  grid-column: 1 / -1;
}

/* gallery-single — no thumbs spacing */
.isla-single-product
  .product-gallery-summary.gallery-single
  .woocommerce-product-gallery {
  gap: 0;
}

/* Vertical + showcase thumbs (Customizer gallery layouts) */
@media (min-width: 992px) {
  .isla-single-product
    .product-gallery-summary.gallery-vertical
    .woocommerce-product-gallery,
  .isla-single-product
    .product-gallery-summary.gallery-showcase
    .woocommerce-product-gallery {
    flex-direction: row;
    align-items: stretch;
  }
  .isla-single-product .product-gallery-summary.gallery-vertical .flex-viewport,
  .isla-single-product
    .product-gallery-summary.gallery-showcase
    .flex-viewport {
    width: calc(100% - 85px);
  }
  .isla-single-product
    .product-gallery-summary.gallery-vertical
    .flex-control-thumbs,
  .isla-single-product
    .product-gallery-summary.gallery-showcase
    .flex-control-thumbs {
    order: -1;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
  }
  .isla-single-product
    .product-gallery-summary.gallery-vertical
    .flex-control-thumbs
    li,
  .isla-single-product
    .product-gallery-summary.gallery-showcase
    .flex-control-thumbs
    li {
    width: 65px;
    height: 65px;
  }
  .isla-single-product
    .product-gallery-summary.gallery-vertical
    .flex-control-thumbs
    li
    img,
  .isla-single-product
    .product-gallery-summary.gallery-showcase
    .flex-control-thumbs
    li
    img {
    height: 65px;
  }

  .isla-single-product .product-gallery-summary.gallery-showcase {
    left: 50%;
    width: 80vw;
    transform: translate3d(-50%, 0, 0);
  }
  .isla-single-product
    .product-gallery-summary.gallery-showcase
    .woocommerce-product-gallery {
    flex: 0 0 60%;
    max-width: 60%;
  }
  .isla-single-product
    .product-gallery-summary.gallery-showcase
    .entry-summary {
    flex: 0 0 40%;
    max-width: 40%;
  }
}

/* Showcase / full-width band */
.isla-single-product .product-gallery-summary.gallery-showcase,
.isla-single-product .product-gallery-summary.gallery-full-width {
  position: relative;
  padding: 40px 0;
}
.isla-single-product .product-gallery-summary.gallery-showcase {
  padding: 80px 0;
}
.isla-single-product .product-gallery-summary.gallery-showcase::before,
.isla-single-product .product-gallery-summary.gallery-full-width::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translate3d(-50%, 0, 0);
  background: #f4f7f6;
  z-index: 0;
}
.isla-single-product
  .product-gallery-summary.gallery-showcase
  .woocommerce-product-gallery,
.isla-single-product .product-gallery-summary.gallery-showcase .entry-summary,
.isla-single-product
  .product-gallery-summary.gallery-full-width
  .woocommerce-product-gallery,
.isla-single-product
  .product-gallery-summary.gallery-full-width
  .entry-summary {
  z-index: 2;
  position: relative;
}

/* Full-width gallery */
.isla-single-product .product-gallery-summary.gallery-full-width {
  flex-direction: column;
}
.isla-single-product
  .product-gallery-summary.gallery-full-width
  .woocommerce-product-gallery,
.isla-single-product
  .product-gallery-summary.gallery-full-width
  .entry-summary {
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  padding-left: 0;
  margin-top: 40px;
}
.isla-single-product
  .product-gallery-summary.gallery-full-width
  .flex-control-thumbs {
  justify-content: center;
}
@media (min-width: 992px) {
  .isla-single-product
    .product-gallery-summary.gallery-full-width
    .entry-summary {
    display: flex;
  }
  .isla-single-product
    .product-gallery-summary.gallery-full-width
    .gallery-full-width-title-wrapper {
    flex: 0 0 55%;
    max-width: 55%;
    padding-right: 30px;
  }
  .isla-single-product
    .product-gallery-summary.gallery-full-width
    .gallery-full-width-addtocart-wrapper {
    flex: 0 0 45%;
    max-width: 45%;
    padding-left: 30px;
  }
}

/* Grid / scrolling galleries */
.isla-single-product
  .product-gallery-summary.gallery-grid
  .woocommerce-product-gallery__wrapper,
.isla-single-product
  .product-gallery-summary.gallery-scrolling
  .woocommerce-product-gallery__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.isla-single-product
  .product-gallery-summary.gallery-grid
  .woocommerce-product-gallery__wrapper
  > div,
.isla-single-product
  .product-gallery-summary.gallery-scrolling
  .woocommerce-product-gallery__wrapper
  > div {
  width: 100%;
}
.isla-single-product
  .product-gallery-summary.gallery-grid
  .woocommerce-product-gallery__wrapper
  > div:not(:first-child) {
  width: calc(50% - 8px);
}
.isla-single-product
  .product-gallery-summary.gallery-scrolling
  .woocommerce-product-gallery__wrapper
  > div:not(:first-child) {
  width: 100%;
}
.isla-single-product .product-gallery-summary.gallery-grid,
.isla-single-product .product-gallery-summary.gallery-scrolling,
.isla-single-product .product-gallery-summary.gallery-showcase {
  align-items: stretch;
}
.isla-single-product
  .product-gallery-summary.gallery-grid
  .sticky-entry-summary,
.isla-single-product
  .product-gallery-summary.gallery-scrolling
  .sticky-entry-summary,
.isla-single-product
  .product-gallery-summary.gallery-showcase
  .sticky-entry-summary {
  position: sticky;
  top: 100px;
}

/* Sale badge (text / % still come from Customizer) */
.isla-single-product span.onsale {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--coral);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Summary brand typography */
.isla-single-product .entry-summary .product_title {
  font: 600 38px/1.2 "Playfair Display", serif;
  color: var(--deep);
  margin: 0 0 14px;
}
.isla-single-product .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
}
.isla-single-product .woocommerce-product-rating .star-rating {
  float: none;
  margin: 0;
}
/* Star rating display (icon font loaded via islaessentials_enqueue_star_rating_font) */
.isla-single-product .star-rating,
.isla-shop li.product .star-rating,
.isla-single-product .related.products .star-rating,
.isla-single-product .upsells.products .star-rating,
.isla-single-product .comment_container .star-rating,
.isla-single-product .botiga-adv-reviews .star-rating {
  overflow: hidden;
  position: relative;
  display: inline-block;
  height: 1.618em;
  line-height: 1.618;
  width: 5.3em;
  font-family: star, WooCommerce, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: middle;
  color: #eeb13f;
}
.isla-single-product .star-rating::before,
.isla-shop li.product .star-rating::before,
.isla-single-product .related.products .star-rating::before,
.isla-single-product .upsells.products .star-rating::before,
.isla-single-product .comment_container .star-rating::before,
.isla-single-product .botiga-adv-reviews .star-rating::before {
  content: "SSSSS";
  opacity: 0.25;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}
.isla-single-product .star-rating span,
.isla-shop li.product .star-rating span,
.isla-single-product .related.products .star-rating span,
.isla-single-product .upsells.products .star-rating span,
.isla-single-product .comment_container .star-rating span,
.isla-single-product .botiga-adv-reviews .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.isla-single-product .star-rating span::before,
.isla-shop li.product .star-rating span::before,
.isla-single-product .related.products .star-rating span::before,
.isla-single-product .upsells.products .star-rating span::before,
.isla-single-product .comment_container .star-rating span::before,
.isla-single-product .botiga-adv-reviews .star-rating span::before {
  content: "SSSSS";
  top: 0;
  position: absolute;
  left: 0;
  color: #eeb13f;
}
.isla-single-product .star-rating {
  font-size: 14px;
}
.isla-single-product .woocommerce-review-link {
  font-size: 13px;
  color: var(--muted);
}
.isla-single-product .entry-summary .price {
  display: block;
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 600;
  color: var(--deep);
}
.isla-single-product .entry-summary .price del {
  margin-right: 8px;
  font-size: 0.7em;
  font-weight: 500;
  color: var(--muted);
  opacity: 0.85;
}
.isla-single-product .entry-summary .price ins {
  text-decoration: none;
}
.isla-single-product .woocommerce-product-details__short-description {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}
.isla-single-product .stock {
  margin: 0 0 18px;
  font-size: 14px;
}
.isla-single-product .stock.in-stock {
  color: var(--teal);
}
.isla-single-product .stock.out-of-stock {
  color: var(--coral);
}

/* Cart / quantity / ATC */
.isla-single-product form.cart {
  margin: 0 0 28px;
}
.isla-single-product .botiga-single-addtocart-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 14px;
}
.isla-single-product .quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e2e8e6;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.isla-single-product .quantity .botiga-quantity-minus,
.isla-single-product .quantity .botiga-quantity-plus {
  display: grid;
  place-items: center;
  width: 40px;
  height: 48px;
  color: var(--deep);
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
}
.isla-single-product .quantity .botiga-quantity-minus:hover,
.isla-single-product .quantity .botiga-quantity-plus:hover {
  background: var(--cream);
  color: var(--teal);
}
.isla-single-product .bt-d-none {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.isla-single-product .quantity .qty {
  width: 52px;
  height: 48px;
  border: 0;
  border-left: 1px solid #e2e8e6;
  border-right: 1px solid #e2e8e6;
  text-align: center;
  background: transparent;
  color: var(--text);
  -moz-appearance: textfield;
}
.isla-single-product .quantity .qty::-webkit-outer-spin-button,
.isla-single-product .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.isla-single-product
  .botiga-single-addtocart-wrapper
  .single_add_to_cart_button,
.isla-single-product form.cart .single_add_to_cart_button,
.isla-single-product
  .botiga-single-addtocart-wrapper
  .botiga-buy-now-button-single-product,
.isla-single-product form.cart .botiga-buy-now-button-single-product {
  flex: 1 1 180px;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}
@media (max-width: 600px) {
  .isla-single-product
    .botiga-single-addtocart-wrapper
    .single_add_to_cart_button,
  .isla-single-product form.cart .single_add_to_cart_button,
  .isla-single-product
    .botiga-single-addtocart-wrapper
    .botiga-buy-now-button-single-product,
  .isla-single-product form.cart .botiga-buy-now-button-single-product {
    flex: 1;
  }
}
.isla-single-product
  .botiga-single-addtocart-wrapper
  .single_add_to_cart_button:hover,
.isla-single-product form.cart .single_add_to_cart_button:hover,
.isla-single-product
  .botiga-single-addtocart-wrapper
  .botiga-buy-now-button-single-product:hover,
.isla-single-product form.cart .botiga-buy-now-button-single-product:hover {
  background: var(--deep);
}

.isla-single-product
  .botiga-single-addtocart-wrapper
  .single_add_to_cart_button.loading,
.isla-single-product form.cart .single_add_to_cart_button.loading {
  opacity: 0.7;
}
.isla-single-product .added_to_cart {
  display: inline-flex;
  align-items: center;
  color: var(--teal);
  font-size: 14px;
  font-weight: 500;
}

/* Variations */
.isla-single-product table.variations {
  width: 100%;
  margin: 0 0 18px;
  border: 0;
}
.isla-single-product table.variations th,
.isla-single-product table.variations td {
  padding: 0 0 12px;
  border: 0;
  vertical-align: middle;
  text-align: left;
}
.isla-single-product table.variations label {
  font-size: 13px;
  font-weight: 600;
  color: var(--deep);
}
.isla-single-product table.variations select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #e2e8e6;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
}

/* Product Swatches: keep WC <select> for JS, hide it when swatches render */
.isla-single-product .botiga-variations-wrapper > select,
.isla-single-product .botiga-variations-wrapper select {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute !important;
}

.isla-single-product .botiga-variations-wrapper .botiga-variation-type-color,
.isla-single-product .botiga-variations-wrapper .botiga-variation-type-image,
.isla-single-product .botiga-variations-wrapper .botiga-variation-type-button {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.isla-single-product
  .botiga-variations-wrapper
  .botiga-variation-type-color
  > a,
.isla-single-product
  .botiga-variations-wrapper
  .botiga-variation-type-image
  > a {
  position: relative;
  display: flex;
  box-sizing: content-box;
  width: 28px;
  height: 28px;
  padding: 2px;
  border: 1px solid #ddd;
  border-radius: 50%;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.isla-single-product
  .botiga-variations-wrapper
  .botiga-variation-type-color
  > a
  > span,
.isla-single-product
  .botiga-variations-wrapper
  .botiga-variation-type-image
  > a
  > span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  color: transparent;
  text-indent: -999px;
}

.isla-single-product
  .botiga-variations-wrapper
  .botiga-variation-type-image
  > a
  img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.isla-single-product
  .botiga-variations-wrapper
  .botiga-variation-type-color
  > a:hover,
.isla-single-product
  .botiga-variations-wrapper
  .botiga-variation-type-color
  > a.active,
.isla-single-product
  .botiga-variations-wrapper
  .botiga-variation-type-image
  > a:hover,
.isla-single-product
  .botiga-variations-wrapper
  .botiga-variation-type-image
  > a.active {
  border-color: var(--deep);
}

.isla-single-product
  .botiga-variations-wrapper
  .botiga-variation-type-button
  > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid #e2e8e6;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.isla-single-product
  .botiga-variations-wrapper
  .botiga-variation-type-button
  > a:hover,
.isla-single-product
  .botiga-variations-wrapper
  .botiga-variation-type-button
  > a.active {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

.isla-single-product .botiga-variations-wrapper .botiga-variation-tooltip {
  position: absolute;
  left: 50%;
  bottom: 100%;
  z-index: 2;
  margin-bottom: 8px;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--deep);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
  text-indent: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%);
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.isla-single-product
  .botiga-variations-wrapper
  .botiga-variation-type-color
  > a:hover
  .botiga-variation-tooltip,
.isla-single-product
  .botiga-variations-wrapper
  .botiga-variation-type-image
  > a:hover
  .botiga-variation-tooltip {
  opacity: 1;
  visibility: visible;
}

.isla-single-product .reset_variations {
  margin-left: 10px;
  font-size: 13px;
  color: var(--teal);
}

/* Wishlist (Botiga module / layout setting) */
.isla-single-product .botiga-wishlist-button,
.isla-single-product .botiga-wishlist-wrapper {
  margin: 0 0 20px;
}
.isla-single-product .botiga-wishlist-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
}
.isla-single-product .botiga-wishlist-button.active {
  color: #e74c3c;
}

/* Size Chart popup — parent Woo CSS is dequeued on single product */
.isla-single-product .botiga-product-size-chart {
  margin: 4px 0 18px;
}

/* Modal is output in a separate wrapper after summary — don’t reserve page space */
.isla-single-product
  .botiga-product-size-chart:not(:has(.botiga-product-size-chart-button)) {
  margin: 0;
  padding: 0;
  height: 0;
  overflow: visible;
}

.isla-single-product .botiga-product-size-chart-button {
  display: flex;
  font-size: 0.9rem;
}

.isla-single-product .botiga-product-size-chart-button a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--teal);
  transition: color 0.2s;
}

.isla-single-product .botiga-product-size-chart-button a:hover {
  color: var(--deep);
}

.isla-single-product .botiga-product-size-chart-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Modal lives after product summary (outside entry-summary) — keep selectors global */
.botiga-product-size-chart-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  inset: 0;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background-color: rgba(38, 61, 61, 0.72);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

body.botiga-product-size-chart-modal-open {
  overflow: hidden;
}

body.botiga-product-size-chart-modal-open .bhfb-header {
  z-index: 0;
}

body.botiga-product-size-chart-modal-open .botiga-product-size-chart-modal {
  display: flex;
}

.botiga-product-size-chart-modal-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(720px, 100%);
  max-height: min(85vh, calc(100% - 48px));
  padding: 36px 40px 32px;
  overflow-y: auto;
  font-size: 14px;
  color: var(--text);
  background: #fffdf9;
  border: 1px solid #edf0ec;
  border-radius: 14px;
  box-shadow: 0 24px 60px rgba(37, 71, 67, 0.22);
}

.botiga-product-size-chart-modal-inner > *:last-child {
  margin-bottom: 0;
}

.botiga-product-size-chart-modal-close {
  user-select: none;
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f4f7f6;
  color: var(--deep);
  transition: background 0.2s, color 0.2s;
}

/* Hide Botiga’s misaligned cancel SVG (viewBox/path mismatch) */
.botiga-product-size-chart-modal-close svg,
.botiga-product-size-chart-modal-close .ws-svg-icon {
  display: none !important;
}

/* Crisp centered X */
.botiga-product-size-chart-modal-close::before,
.botiga-product-size-chart-modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  border-radius: 1px;
  background: currentColor;
  transform-origin: center;
}

.botiga-product-size-chart-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.botiga-product-size-chart-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.botiga-product-size-chart-modal-close:hover {
  background: var(--teal);
  color: #fff;
}

.botiga-product-size-chart-modal-title {
  margin: 0 28px 18px 0;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  text-transform: none;
  color: var(--deep);
}

.botiga-product-size-chart-modal-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 8px;
  margin-bottom: 22px;
}

.botiga-product-size-chart-modal-tabs:empty {
  display: none;
}

.botiga-product-size-chart-modal-tab {
  cursor: pointer;
  margin: 0;
  padding: 10px 16px;
  min-width: 100px;
  max-width: 100%;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.botiga-product-size-chart-modal-tab:hover {
  color: var(--teal);
}

.botiga-product-size-chart-modal-tab.active {
  color: var(--deep);
  border-bottom-color: var(--teal);
}

.botiga-product-size-chart-modal-tables {
  margin-bottom: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.botiga-product-size-chart-modal-table {
  display: none;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  text-align: center;
  overflow: hidden;
  border-radius: 10px;
}

.botiga-product-size-chart-modal-table.active {
  display: table;
}

.botiga-product-size-chart-modal-tables .reset_variations {
  display: none !important;
}

.botiga-product-size-chart-modal-table tr,
.botiga-product-size-chart-modal-table th,
.botiga-product-size-chart-modal-table td {
  padding: 11px 10px;
  border: 1px solid #e6ebea;
  font-size: 13px;
  color: var(--text);
}

.botiga-product-size-chart-modal-table thead tr,
.botiga-product-size-chart-modal-table thead th {
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  background: var(--deep);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.botiga-product-size-chart-modal-table tbody tr:nth-child(even) td {
  background: #f7faf9;
}

.botiga-product-size-chart-modal-content {
  color: var(--muted);
  line-height: 1.6;
}

.botiga-product-size-chart-modal-content a {
  color: var(--teal);
}

.botiga-product-size-chart-modal-content a:hover {
  color: var(--deep);
}

.botiga-product-size-chart-modal-content > *:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .botiga-product-size-chart-modal {
    padding: 12px;
    /* align-items: flex-end; */
  }

  .botiga-product-size-chart-modal-inner {
    width: 100%;
    max-height: 92vh;
    padding: 28px 18px 22px;
    border-radius: 16px 16px 10px 10px;
  }

  .botiga-product-size-chart-modal-title {
    font-size: 22px;
    margin-right: 36px;
    text-align: left;
  }

  .botiga-product-size-chart-modal-tabs {
    justify-content: flex-start;
  }

  .botiga-product-size-chart-modal-table {
    table-layout: auto;
    min-width: 420px;
  }
}

/* Meta (SKU / categories / tags visibility remains Customizer CSS from Botiga) */
.isla-single-product .product_meta {
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid #edf0ec;
  font-size: 13px;
  color: var(--muted);
}
.isla-single-product .product_meta > span {
  display: block;
  margin-bottom: 8px;
}
.isla-single-product .product_meta a {
  color: var(--teal);
}

/* Tabs — brand polish; alignment / style / position via Botiga body/main classes */
.isla-single-product .woocommerce-tabs {
  margin: 10px 0 46px;
}
.isla-single-product .woocommerce-tabs ul.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid #edf0ec;
}
.isla-single-product.botiga-tabs-align-center .woocommerce-tabs ul.tabs {
  justify-content: center;
}
.isla-single-product.botiga-tabs-align-right .woocommerce-tabs ul.tabs {
  justify-content: flex-end;
}
.isla-single-product .woocommerce-tabs ul.tabs li {
  margin: 0 0 -1px;
  padding: 0 0 12px;
  border-bottom: 2px solid transparent;
}
.isla-single-product .woocommerce-tabs ul.tabs li a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
}
.isla-single-product .woocommerce-tabs ul.tabs li.active,
.isla-single-product .woocommerce-tabs ul.tabs li:hover {
  border-bottom-color: var(--teal);
}
.isla-single-product .woocommerce-tabs ul.tabs li.active a,
.isla-single-product .woocommerce-tabs ul.tabs li:hover a {
  color: var(--deep);
}
.isla-single-product .woocommerce-tabs .panel {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
}
.isla-single-product .woocommerce-tabs .panel > h2 {
  font: 600 24px/1.3 "Playfair Display", serif;
  color: var(--deep);
  margin: 0 0 16px;
}
.isla-single-product .woocommerce-tabs .panel p {
  margin: 0 0 1.1em;
}
.isla-single-product .woocommerce-Tabs-panel--additional_information table {
  width: 100%;
  border-collapse: collapse;
}
.isla-single-product .woocommerce-Tabs-panel--additional_information th,
.isla-single-product .woocommerce-Tabs-panel--additional_information td {
  padding: 12px 0;
  border-bottom: 1px solid #edf0ec;
  text-align: left;
  font-size: 14px;
}
.isla-single-product .woocommerce-Tabs-panel--additional_information th {
  width: 35%;
  color: var(--deep);
  font-weight: 600;
}

/* Accordion tabs (style6) */
.isla-single-product .botiga-accordion {
  margin: 10px 0 46px;
}
.isla-single-product .botiga-accordion .botiga-accordion-toggle,
.isla-single-product .botiga-accordion .botiga-accordion-title {
  font: 600 16px/1.4 "Playfair Display", serif;
  color: var(--deep);
}

/* Reviews */
.botiga-adv-reviews {
  position: relative;
  padding: 20px 0;
}
.single-product
  .site-main
  > .product
  > section.products.botiga-adv-reviews:after,
.botiga-reviews-orderby {
  background-color: transparent !important;
}
.botiga-adv-reviews .botiga-adv-reviews-header {
  margin-top: 20px;
}
.botiga-adv-reviews .botiga-adv-reviews-body .woocommerce-noreviews {
  margin: 20px 0 0;
}
.botiga-adv-reviews .botiga-adv-reviews-header .botiga-adv-reviews-total {
  font-size: 1.1em;
  margin-top: 10px;
  margin-bottom: 0;
}
.botiga-adv-reviews .botiga-adv-review-write-button {
  margin-bottom: 20px;
  color: var(--deep);
}
.isla-single-product #reviews .comment-reply-title,
.isla-single-product #reviews .woocommerce-Reviews-title {
  font: 600 22px/1.3 "Playfair Display", serif;
  color: var(--deep);
  margin: 0 0 18px;
}
.isla-single-product .botiga-adv-reviews h2 {
  margin-top: 0;
  font: 600 32px / 1.2 "Playfair Display", serif;
}
.isla-single-product #reviews .commentlist {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}
.isla-single-product #reviews .comment {
  margin: 0 0 18px;
  padding: 18px;
  border: 1px solid #edf0ec;
  border-radius: 14px;
  background: #fff;
}
.isla-single-product #review_form_wrapper .comment-form p {
  margin: 0 0 14px;
}
.isla-single-product #review_form_wrapper input[type="text"],
.isla-single-product #review_form_wrapper input[type="email"],
.isla-single-product #review_form_wrapper textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8e6;
  border-radius: 8px;
  background: #fff;
}
.isla-single-product #review_form_wrapper .submit {
  padding: 12px 24px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}
/* Advanced reviews write-modal — Isla theme */
.botiga-adv-reviews-modal {
  background-color: rgba(36, 95, 94, 0.72);
  font-family: "Poppins", sans-serif;
  color: var(--text);
}
.botiga-adv-reviews-modal .botiga-adv-reviews-modal-body {
  padding: 36px 32px;
  background: #fffdf9;
  border-radius: 16px;
  box-shadow: var(--shadow);
  max-width: calc(100vw - 32px);
  max-height: 80%;
  height: 100%;
  overflow-y: auto;
}
.botiga-adv-reviews-modal .botiga-adv-reviews-modal-close {
  top: 18px !important;
  right: 18px !important;
  color: var(--muted);
  display: block;
  width: 20px;
  height: 20px;
  border: none;
}
.botiga-adv-reviews-modal .botiga-adv-reviews-modal-close i svg {
  display: none;
}
.botiga-adv-reviews-modal .botiga-adv-reviews-modal-close::before {
  content: "\f00d";
  font-family: "FontAwesome";
  position: absolute;
  width: 15px;
}
.botiga-adv-reviews-modal .botiga-adv-reviews-modal-close:hover,
.botiga-adv-reviews-modal .botiga-adv-reviews-modal-close:hover svg {
  color: var(--teal);
  fill: var(--teal) !important;
}
.botiga-adv-reviews-modal .modal-title-style1 {
  font: 600 22px/1.3 "Playfair Display", serif;
  letter-spacing: 0;
  text-transform: none;
  color: var(--deep);
  margin: 0 0 20px;
}
.botiga-adv-reviews-modal .botiga-adv-reviews-modal-product {
  gap: 18px;
  align-items: center;
  margin-bottom: 24px;
  padding: 14px;
  border: 1px solid #edf0ec;
  border-radius: 14px;
  background: #fff;
}
.botiga-adv-reviews-modal .botiga-adv-reviews-modal-product img {
  max-width: 88px;
  border-radius: 10px;
  object-fit: cover;
  height: auto;
}
.botiga-adv-reviews-modal
  .botiga-adv-reviews-modal-product
  .modal-product-info {
  margin-left: 0;
}
.botiga-adv-reviews-modal
  .botiga-adv-reviews-modal-product
  .modal-product-info
  h5 {
  margin: 0 0 6px;
  font: 600 16px/1.3 "Playfair Display", serif;
  color: var(--deep);
}
.botiga-adv-reviews-modal
  .botiga-adv-reviews-modal-product
  .modal-product-info
  p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
/* Review star picker — hide “1 of 5 stars” text, show icons (WC CSS is dequeued) */
.isla-single-product p.stars,
.botiga-adv-reviews-modal p.stars {
  display: inline-block;
  margin: 0 0 14px;
  clear: both;
}

.isla-single-product p.stars a,
.botiga-adv-reviews-modal p.stars a {
  position: relative;
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 4px;
  font-size: 22px;
  line-height: 1;
  text-indent: -999em;
  overflow: hidden;
  text-decoration: none;
  color: transparent;
}

.isla-single-product p.stars a::before,
.botiga-adv-reviews-modal p.stars a::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
  line-height: 1;
  text-indent: 0;
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-style: normal;
  content: "\f005";
  color: var(--teal);
  opacity: 0.28;
  speak: never;
}

.isla-single-product p.stars:hover a::before,
.isla-single-product p.stars.selected a:not(.active)::before,
.isla-single-product p.stars.selected a.active::before,
.botiga-adv-reviews-modal p.stars:hover a::before,
.botiga-adv-reviews-modal p.stars.selected a:not(.active)::before,
.botiga-adv-reviews-modal p.stars.selected a.active::before {
  font-weight: 900;
  opacity: 1;
  color: var(--teal);
}

.isla-single-product p.stars a:hover ~ a::before,
.isla-single-product p.stars.selected a.active ~ a::before,
.botiga-adv-reviews-modal p.stars a:hover ~ a::before,
.botiga-adv-reviews-modal p.stars.selected a.active ~ a::before {
  font-weight: 400;
  opacity: 0.28;
  color: var(--teal);
}
.botiga-adv-reviews-modal .comment-form label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.botiga-adv-reviews-modal .comment-form .required {
  color: var(--coral);
}
.botiga-adv-reviews-modal .comment-form input[type="text"],
.botiga-adv-reviews-modal .comment-form input[type="email"],
.botiga-adv-reviews-modal .comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8e6;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font: inherit;
  width: 100% !important;
}
.botiga-adv-reviews-modal .comment-form input:focus,
.botiga-adv-reviews-modal .comment-form textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(38, 125, 121, 0.15);
}
.botiga-adv-reviews-modal .comment-form #submit,
.botiga-adv-reviews-modal .comment-form input[type="submit"] {
  width: 100%;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.botiga-adv-reviews-modal .comment-form #submit:hover,
.botiga-adv-reviews-modal .comment-form input[type="submit"]:hover {
  background: var(--deep);
}

/* Related / upsells — columns follow Customizer via .columns-N */
.isla-single-product .related.products,
.isla-single-product .upsells.products {
  margin: 10px 0 20px;
  padding-top: 10px;
}
.isla-single-product .related.products > h2,
.isla-single-product .upsells.products > h2 {
  font: 600 32px/1.2 "Playfair Display", serif;
  color: var(--deep);
  margin: 0 0 22px;
  text-align: center;
}
.isla-single-product .related.products ul.products,
.isla-single-product .upsells.products ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.isla-single-product .related.products ul.products.columns-1,
.isla-single-product .upsells.products ul.products.columns-1 {
  grid-template-columns: 1fr;
}
.isla-single-product .related.products ul.products.columns-2,
.isla-single-product .upsells.products ul.products.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.isla-single-product .related.products ul.products.columns-3,
.isla-single-product .upsells.products ul.products.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.isla-single-product .related.products ul.products.columns-4,
.isla-single-product .upsells.products ul.products.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.isla-single-product .related.products ul.products.columns-5,
.isla-single-product .upsells.products ul.products.columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.isla-single-product .related.products ul.products.columns-6,
.isla-single-product .upsells.products ul.products.columns-6 {
  grid-template-columns: repeat(6, 1fr);
}
.isla-single-product .related.products ul.products::before,
.isla-single-product .related.products ul.products::after,
.isla-single-product .upsells.products ul.products::before,
.isla-single-product .upsells.products ul.products::after {
  display: none;
}
/* Related / upsell product cards — respect Botiga ATC/card Customizer layouts */
.isla-single-product .related.products li.product,
.isla-single-product .upsells.products li.product {
  display: flex;
  flex-direction: column;
  width: auto !important;
  margin: 0 !important;
  float: none !important;
  padding: 14px;
  background: #fff;
  border: 1px solid #edf0ec;
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
}
.isla-single-product .related.products li.product .loop-image-wrap,
.isla-single-product .upsells.products li.product .loop-image-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 12px;
}
.isla-single-product .related.products li.product img,
.isla-single-product .upsells.products li.product img {
  width: 100%;
  /* height: 220px; */
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.isla-single-product
  .related.products
  li.product
  .woocommerce-loop-product__title,
.isla-single-product
  .upsells.products
  li.product
  .woocommerce-loop-product__title {
  font-size: 14px;
  margin: 0;
  color: var(--text);
}
.isla-single-product .related.products li.product .price,
.isla-single-product .upsells.products li.product .price {
  display: block;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--deep);
}
.isla-single-product .related.products li.product .row,
.isla-single-product .upsells.products li.product .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  margin: 0;
}
.isla-single-product .related.products li.product .row [class*="col-"],
.isla-single-product .upsells.products li.product .row [class*="col-"] {
  float: none !important;
  padding: 0;
  max-width: none;
}
.isla-single-product .related.products li.product .row .col-md-7,
.isla-single-product .upsells.products li.product .row .col-md-7 {
  flex: 1 1 55%;
}
.isla-single-product .related.products li.product .row .col-md-5,
.isla-single-product .upsells.products li.product .row .col-md-5 {
  flex: 0 1 40%;
}
.isla-single-product .related.products li.product .loop-price-inline,
.isla-single-product .upsells.products li.product .loop-price-inline {
  text-align: right;
}
.isla-single-product .related.products li.product > .loop-button-wrap:empty,
.isla-single-product .upsells.products li.product > .loop-button-wrap:empty,
.isla-single-product
  .related.products
  li.product
  > .loop-button-wrap:not(:has(.button)),
.isla-single-product
  .upsells.products
  li.product
  > .loop-button-wrap:not(:has(.button)) {
  display: none !important;
}
/* layout2 only: button under content */
.isla-single-product
  .related.products
  li.product
  .loop-button-wrap.button-layout2,
.isla-single-product
  .upsells.products
  li.product
  .loop-button-wrap.button-layout2 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-top: auto;
  width: 100%;
}
.isla-single-product .related.products li.product .button,
.isla-single-product .upsells.products li.product .button,
.isla-single-product .related.products li.product .botiga-buy-now-button,
.isla-single-product .upsells.products li.product .botiga-buy-now-button {
  display: inline-block;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  text-align: center;
  text-decoration: none;
  margin: 0;
  position: static;
}
.isla-single-product .related.products li.product .added_to_cart,
.isla-single-product .upsells.products li.product .added_to_cart {
  display: block;
  position: static !important;
  margin-top: 6px;
  transform: none !important;
}
.isla-single-product .related.products li.product .button-layout2 .button,
.isla-single-product .upsells.products li.product .button-layout2 .button,
.isla-single-product
  .related.products
  li.product
  .button-layout2.button-width-full
  .button,
.isla-single-product
  .upsells.products
  li.product
  .button-layout2.button-width-full
  .button,
.isla-single-product
  .related.products
  li.product
  .button-layout2.button-with-buy-now
  .button,
.isla-single-product
  .upsells.products
  li.product
  .button-layout2.button-with-buy-now
  .button,
.isla-single-product
  .related.products
  li.product
  .button-layout2.button-with-buy-now
  .botiga-buy-now-button,
.isla-single-product
  .upsells.products
  li.product
  .button-layout2.button-with-buy-now
  .botiga-buy-now-button {
  display: block;
  width: 100%;
}

/* Sidebar layout (Customizer single_product_sidebar) — stacks safely without Botiga row */
.isla-single-product.sidebar-right,
.isla-single-product.sidebar-left {
  display: block;
}
body.single-product .widget-area {
  width: min(1180px, 92%);
  margin: 0 auto 46px;
}

@media (max-width: 991px) {
  .isla-single-product .product-gallery-summary .woocommerce-product-gallery,
  .isla-single-product .product-gallery-summary .entry-summary {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .isla-single-product .product-gallery-summary .entry-summary {
    padding-left: 0;
    margin-top: 28px;
  }
  .isla-single-product .entry-summary .product_title {
    font-size: 30px;
  }
  .isla-single-product .product-gallery-summary.gallery-showcase {
    left: auto;
    width: 100%;
    transform: none;
  }
  .isla-single-product .related.products ul.products,
  .isla-single-product .upsells.products ul.products,
  .isla-single-product .related.products ul.products.columns-3,
  .isla-single-product .upsells.products ul.products.columns-3,
  .isla-single-product .related.products ul.products.columns-4,
  .isla-single-product .upsells.products ul.products.columns-4,
  .isla-single-product .related.products ul.products.columns-5,
  .isla-single-product .upsells.products ul.products.columns-5,
  .isla-single-product .related.products ul.products.columns-6,
  .isla-single-product .upsells.products ul.products.columns-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .isla-single-product .botiga-single-addtocart-wrapper {
    flex-direction: column;
  }
  .isla-single-product .quantity,
  .isla-single-product
    .botiga-single-addtocart-wrapper
    .single_add_to_cart_button {
    width: 100%;
  }
  .isla-single-product .related.products ul.products,
  .isla-single-product .upsells.products ul.products,
  .isla-single-product .related.products ul.products[class*="columns-"],
  .isla-single-product .upsells.products ul.products[class*="columns-"] {
    grid-template-columns: 1fr;
  }
  .isla-single-product .related.products li.product img,
  .isla-single-product .upsells.products li.product img {
    height: 260px;
  }
}

/* ==========================================================================
   Shop Template
   Shop / category / tag / attribute archives
   Shell: .isla-shop + .section + .container via botiga_content_class
   Respects Customizer → WooCommerce → Product Catalog (columns, sidebar, grid/list)
   ========================================================================== */

/* Page header (Botiga Customizer: title, breadcrumbs, category chips) */
.woocommerce-page-header {
  padding: 28px 0 16px;
}
.woocommerce-page-header .container {
  width: min(1180px, 92%);
  margin-left: auto;
  margin-right: auto;
}
.woocommerce-page-header .woocommerce-breadcrumb {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--muted);
}
.woocommerce-page-header .woocommerce-breadcrumb a {
  color: var(--teal);
}
.woocommerce-page-header .woocommerce-breadcrumb a:hover {
  text-decoration: underline;
}
.woocommerce-page-header .woocommerce-products-header__title.page-title {
  font: 600 38px/1.2 "Playfair Display", serif;
  color: var(--deep);
  margin: 0 0 10px;
}
.woocommerce-page-header-alignment-center
  .woocommerce-products-header__title.page-title,
.woocommerce-page-header-alignment-center .term-description,
.woocommerce-page-header-alignment-center .page-description {
  text-align: center;
}
.woocommerce-page-header-alignment-right
  .woocommerce-products-header__title.page-title,
.woocommerce-page-header-alignment-right .term-description,
.woocommerce-page-header-alignment-right .page-description {
  text-align: right;
}
.woocommerce-page-header .term-description,
.woocommerce-page-header .page-description {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}
.woocommerce-page-header .categories-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 8px;
}
.woocommerce-page-header-alignment-center .categories-wrapper {
  justify-content: center;
}
.woocommerce-page-header .category-button {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid #e2e8e6;
  border-radius: 999px;
  background: #fff;
  color: var(--deep);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.woocommerce-page-header .category-button:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--cream);
}

/* Notices */
.isla-shop .woocommerce-products-header:not(:has(*)),
.isla-shop .woocommerce-notices-wrapper:not(:has(*)),
.isla-shop .woocommerce-notices-wrapper:empty {
  display: none !important;
}
.isla-shop .woocommerce-notices-wrapper,
.isla-shop .woocommerce-info,
.isla-shop .woocommerce-message,
.isla-shop .woocommerce-error {
  margin-bottom: 22px;
}
.isla-shop .woocommerce-info,
.isla-shop .woocommerce-message,
.isla-shop .woocommerce-error {
  padding: 14px 18px;
  border-radius: 10px;
  background: var(--cream);
  border-left: 3px solid var(--teal);
  list-style: none;
}
.isla-shop .woocommerce-error {
  border-left-color: var(--coral);
}

/* Toolbar: result count + ordering */
.isla-shop .woocommerce-sorting-wrapper {
  display: block;
  width: 100%;
  max-width: 100%;
  clear: both;
  margin: 0 0 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid #edf0ec;
}

/* Hide empty WC products header / active-filter shells (prevents blank gaps) */
.isla-shop .woocommerce-products-header:empty,
.isla-shop header.woocommerce-products-header:not(:has(*)),
.isla-shop .botiga-active-shop-filters:empty,
.isla-shop .botiga-active-shop-filters:not(:has(li, a, button, .chosen)) {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: 0 !important;
}
.isla-shop .botiga-active-shop-filters {
  margin: 0 0 20px;
  width: 100%;
  max-width: 100%;
}
.isla-shop .woocommerce-sorting-wrapper .row {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  margin: 0 !important; /* override Botiga/Bootstrap row -15px */
}
.isla-shop .woocommerce-sorting-wrapper [class*="col-"],
.isla-shop .woocommerce-sorting-wrapper .botiga-sorting-left,
.isla-shop .woocommerce-sorting-wrapper .botiga-sorting-right {
  flex: 0 1 auto !important;
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  float: none !important;
}
.isla-shop .botiga-sorting-left,
.isla-shop .botiga-sorting-left-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-right: auto;
}
.isla-shop .botiga-sorting-right,
.isla-shop .botiga-sorting-right-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  margin-left: auto;
}
.isla-shop .woocommerce-result-count {
  margin: 0;
  float: none !important;
  font-size: 14px;
  color: var(--muted);
}
.isla-shop .woocommerce-ordering {
  margin: 0;
  float: none !important;
}
.isla-shop .woocommerce-ordering select {
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid #e2e8e6;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
}

/* Grid & List View toggle (Botiga Pro — parent WooCommerce CSS is dequeued) */
.isla-shop .botiga-grid-list-view {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
}
.isla-shop .botiga-grid-list-view a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid #e2e8e6;
  border-radius: 8px;
  background: #fff;
  color: var(--deep);
  opacity: 0.45;
  text-decoration: none;
  transition: opacity 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.isla-shop .botiga-grid-list-view a:hover,
.isla-shop .botiga-grid-list-view a:focus {
  opacity: 0.85;
  color: var(--teal);
  border-color: var(--teal);
}
.isla-shop .botiga-grid-list-view a.active {
  opacity: 1;
  color: var(--teal);
  border-color: var(--teal);
}
.isla-shop .botiga-grid-list-view a svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.isla-shop .sidebar-open-wrapper .sidebar-open,
.isla-shop .sidebar-open {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid #e2e8e6;
  border-radius: 8px;
  background: #fff;
  color: var(--deep);
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
}

/* Product grid — only when NOT in list/masonry view */
.isla-shop:not(.product-list):not(.product-masonry) ul.products,
.isla-shop.product-grid ul.products,
main.isla-shop:not(.product-list):not(.product-masonry) ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 40px !important;
  padding: 0 !important;
  list-style: none !important;
  clear: both;
  float: none !important;
  opacity: 1;
  transition: opacity 0.2s ease;
  box-sizing: border-box;
}
.isla-shop ul.products.loading {
  opacity: 0.5;
  pointer-events: none;
}
.isla-shop ul.products::before,
.isla-shop ul.products::after,
.isla-shop.product-grid ul.products::before,
.isla-shop.product-grid ul.products::after {
  display: none !important;
  content: none !important;
}
/* Masonry must not use CSS grid (Pro masonry measures column widths) */
.isla-shop.product-masonry ul.products {
  display: block !important;
  grid-template-columns: unset !important;
}
.isla-shop.product-masonry ul.products li.product {
  float: left;
}
.isla-shop:not(.product-list):not(.product-masonry) ul.products.columns-1 {
  grid-template-columns: minmax(0, 1fr);
}
.isla-shop:not(.product-list):not(.product-masonry) ul.products.columns-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.isla-shop:not(.product-list):not(.product-masonry) ul.products.columns-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.isla-shop:not(.product-list):not(.product-masonry) ul.products.columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.isla-shop:not(.product-list):not(.product-masonry) ul.products.columns-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.isla-shop:not(.product-list):not(.product-masonry) ul.products.columns-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

/* Product list layout (Customizer shop_archive_layout / Grid & List toggle) */
.isla-shop.product-list ul.products {
  display: flex !important;
  flex-direction: column;
  gap: 20px;
  grid-template-columns: unset !important;
  margin: 0 0 40px !important;
  padding: 0;
  list-style: none;
}
.isla-shop.product-list ul.products::before,
.isla-shop.product-list ul.products::after {
  display: none;
}
.isla-shop.product-list li.product {
  display: block;
  width: 100% !important;
}
.isla-shop.product-list li.product > .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  width: 100%;
  margin: 0;
}
.isla-shop.product-list li.product > .row > .col-md-4 {
  flex: 0 0 220px;
  max-width: 220px;
  padding: 0;
  float: none !important;
}
.isla-shop.product-list li.product > .row > .col-md-8 {
  flex: 1 1 0;
  min-width: 0;
  padding: 0;
  float: none !important;
}
.isla-shop.product-list li.product .loop-image-wrap {
  display: block;
  position: relative;
  margin-bottom: 0;
}
.isla-shop.product-list li.product img {
  height: 200px;
}
/* List layout4: Botiga reveals button on card hover */
.isla-shop.product-list li.product .loop-button-wrap.button-layout4 {
  position: absolute;
  bottom: 15px;
  left: 15px;
  z-index: 3;
  width: calc(100% - 30px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.isla-shop.product-list li.product:hover .loop-button-wrap.button-layout4 {
  opacity: 1;
  visibility: visible;
}

/* Product cards — chrome only; ATC placement follows Customizer button-layout1–4 */
.isla-shop li.product {
  display: flex;
  flex-direction: column;
  width: auto !important;
  max-width: 100%;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  padding: 14px;
  background: #fff;
  border: 1px solid #edf0ec;
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  min-width: 0;
  box-sizing: border-box;
}
.isla-shop li.product .loop-image-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 12px;
  border-radius: 12px;
}
.isla-shop li.product img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.isla-shop li.product .woocommerce-loop-product__title,
.isla-shop li.product .botiga-wc-loop-product__title {
  font-size: var(--bt-font-size-prod-card-title, 14px);
  margin: 0;
  color: var(--text);
}
.isla-shop li.product .woocommerce-loop-product__title a,
.isla-shop li.product .botiga-wc-loop-product__title a {
  color: inherit;
  text-decoration: none;
}
.isla-shop li.product .woocommerce-loop-product__title a:hover,
.isla-shop li.product .botiga-wc-loop-product__title a:hover {
  color: var(--teal);
}
.isla-shop li.product .star-rating {
  margin: 0;
  font-size: 13px;
}
.isla-shop li.product .price {
  display: block;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 15px;
}
.isla-shop li.product .price del {
  margin-right: 6px;
  font-weight: 500;
  color: var(--muted);
  opacity: 0.85;
}
.isla-shop li.product .price ins {
  text-decoration: none;
}
.isla-shop li.product > .loop-button-wrap:empty,
.isla-shop li.product > .loop-button-wrap:not(:has(.button)),
.isla-shop li.product .button-layout3.loop-button-wrap:empty {
  display: none !important;
}

/* Card layout2 (title/price columns) */
.isla-shop li.product .row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  margin: 0;
}
.isla-shop li.product .row [class*="col-"] {
  float: none !important;
  padding: 0;
  max-width: none;
}
.isla-shop li.product .row .col-md-7 {
  flex: 1 1 55%;
}
.isla-shop li.product .row .col-md-5 {
  flex: 0 1 40%;
}
.isla-shop li.product .loop-price-inline {
  text-align: right;
}

/* layout2: button below card content */
.isla-shop li.product .loop-button-wrap.button-layout2 {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-top: auto;
  width: 100%;
  position: relative;
}
.isla-shop li.product .button-layout2.button-width-full .button,
.isla-shop li.product .button-layout2.button-width-full .add_to_cart_button,
.isla-shop li.product .button-layout2.button-width-full .botiga-buy-now-button {
  display: block;
  width: 100%;
  margin: 0 !important;
}

/* Button brand look (all layouts) */
.isla-shop li.product .button,
.isla-shop li.product .add_to_cart_button,
.isla-shop li.product .botiga-buy-now-button {
  display: inline-block;
  padding: 10px 16px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  white-space: normal;
  transition: background 0.2s ease, opacity 0.2s ease;
  position: static;
  margin: 0;
}
.isla-shop li.product .button:hover,
.isla-shop li.product .add_to_cart_button:hover,
.isla-shop li.product .botiga-buy-now-button:hover {
  background: var(--deep);
  color: #fff;
}
.isla-shop li.product .button.loading {
  opacity: 0.7;
}
.isla-shop li.product .added_to_cart,
.isla-shop li.product .wc-forward {
  display: block;
  position: static !important;
  width: auto !important;
  margin: 4px 0 0 !important;
  padding: 0;
  transform: none !important;
  color: var(--teal);
  font-size: 13px;
  text-decoration: none;
  background: transparent !important;
}

/* Stack Buy Now + ATC cleanly (Botiga Pro) */
.isla-shop li.product .loop-button-wrap.button-with-buy-now,
.isla-shop li.product .loop-button-wrap.button-layout2.button-with-buy-now,
.isla-shop
  li.product
  .loop-image-wrap
  > .loop-button-wrap.button-layout3.button-with-buy-now {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  white-space: normal;
}
.isla-shop li.product .loop-button-wrap.button-with-buy-now .button,
.isla-shop
  li.product
  .loop-button-wrap.button-with-buy-now
  .botiga-buy-now-button {
  width: 100%;
  margin: 0 !important;
}

/* layout3: hover button centered on image */
.isla-shop li.product .loop-image-wrap > .loop-button-wrap.button-layout3,
.isla-single-product
  .related.products
  li.product
  .loop-image-wrap
  > .loop-button-wrap.button-layout3,
.isla-single-product
  .upsells.products
  li.product
  .loop-image-wrap
  > .loop-button-wrap.button-layout3 {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  min-width: 145px;
  max-width: calc(100% - 24px);
  text-align: center;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-50%, -10%, 0);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  margin: 0;
}
.isla-shop
  li.product
  .loop-image-wrap
  > .loop-button-wrap.button-layout3.button-with-buy-now,
.isla-single-product
  .related.products
  li.product
  .loop-image-wrap
  > .loop-button-wrap.button-layout3.button-with-buy-now,
.isla-single-product
  .upsells.products
  li.product
  .loop-image-wrap
  > .loop-button-wrap.button-layout3.button-with-buy-now {
  white-space: normal;
  min-width: 160px;
}
.isla-shop li.product .loop-image-wrap:hover > .loop-button-wrap.button-layout3,
.isla-single-product
  .related.products
  li.product
  .loop-image-wrap:hover
  > .loop-button-wrap.button-layout3,
.isla-single-product
  .upsells.products
  li.product
  .loop-image-wrap:hover
  > .loop-button-wrap.button-layout3 {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 0, 0);
}
.isla-shop li.product .button-layout3 .button,
.isla-single-product .related.products li.product .button-layout3 .button,
.isla-single-product .upsells.products li.product .button-layout3 .button {
  width: auto;
  display: inline-block;
}

/* layout4: icon/button along bottom of image on hover */
.isla-shop li.product .loop-image-wrap > .loop-button-wrap.button-layout4,
.isla-single-product
  .related.products
  li.product
  .loop-image-wrap
  > .loop-button-wrap.button-layout4,
.isla-single-product
  .upsells.products
  li.product
  .loop-image-wrap
  > .loop-button-wrap.button-layout4 {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 3;
  width: calc(100% - 20px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.isla-shop li.product .loop-image-wrap:hover > .loop-button-wrap.button-layout4,
.isla-single-product
  .related.products
  li.product
  .loop-image-wrap:hover
  > .loop-button-wrap.button-layout4,
.isla-single-product
  .upsells.products
  li.product
  .loop-image-wrap:hover
  > .loop-button-wrap.button-layout4 {
  opacity: 1;
  visibility: visible;
}
.isla-shop li.product .button-layout4 .button,
.isla-shop li.product .button-layout4 .add_to_cart_button,
.isla-single-product .related.products li.product .button-layout4 .button,
.isla-single-product .upsells.products li.product .button-layout4 .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
}
.isla-shop li.product .button-layout4 .ws-svg-icon,
.isla-single-product .related.products li.product .button-layout4 .ws-svg-icon,
.isla-single-product .upsells.products li.product .button-layout4 .ws-svg-icon {
  width: 20px;
  height: 20px;
  display: block;
}
.isla-shop li.product .button-layout4 .ws-svg-icon svg,
.isla-single-product
  .related.products
  li.product
  .button-layout4
  .ws-svg-icon
  svg,
.isla-single-product
  .upsells.products
  li.product
  .button-layout4
  .ws-svg-icon
  svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.isla-shop li.product .button-layout4 .added_to_cart,
.isla-single-product
  .related.products
  li.product
  .button-layout4
  .added_to_cart,
.isla-single-product
  .upsells.products
  li.product
  .button-layout4
  .added_to_cart {
  position: absolute;
  top: 0;
  left: 52px;
  margin: 0;
  white-space: nowrap;
}

/* Equal height cards (Customizer shop_product_equal_height + layout2) */
.product-equal-height .isla-shop ul.products li.product,
.isla-shop.product-equal-height ul.products li.product {
  height: 100%;
}
.product-equal-height
  .isla-shop
  ul.products
  li.product
  .loop-button-wrap.button-layout2,
.isla-shop.product-equal-height
  ul.products
  li.product
  .loop-button-wrap.button-layout2 {
  margin-top: auto;
}

.isla-shop li.product span.onsale {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bt-color-onsale-bg, var(--coral));
  color: var(--bt-color-onsale, #fff);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Category cards — respect Customizer shop_categories_layout (1–5) */
.isla-shop li.product-category {
  padding: 0;
  overflow: hidden;
  border: 0;
  box-shadow: none;
  background: transparent;
}
.isla-shop li.product-category a {
  display: block;
  position: relative;
  text-decoration: none;
}
.isla-shop li.product-category img {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
}
.isla-shop li.product-category .woocommerce-loop-category__title {
  font: 600 18px/1.3 "Playfair Display", serif;
  color: var(--deep);
}

/* ==========================================================================
   Shop layout shell + sidebars (Customizer shop_archive_sidebar)
   One outer width: .content-wrapper.container = header .container
   main.isla-shop fills 100% of that shell; sidebars sit beside/above/slide
   ========================================================================== */

/* Match homepage shell width */
body.woocommerce .content-wrapper.container,
body.woocommerce-page .content-wrapper.container,
body.tax-product_cat .content-wrapper.container,
body.tax-product_tag .content-wrapper.container,
body.tax-product_shipping_class .content-wrapper.container {
  width: min(1180px, 92%);
  max-width: min(1180px, 92%);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
  overflow-x: clip;
}

body.woocommerce .content-wrapper > .row.main-row,
body.woocommerce-page .content-wrapper > .row.main-row,
body.tax-product_cat .content-wrapper > .row.main-row,
body.tax-product_tag .content-wrapper > .row.main-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  width: 100%;
  max-width: 100%;
  margin: 0 !important;
  padding: 0;
  box-sizing: border-box;
}

/* Main column always fills the shell when alone; sits beside sidebar when needed */
.isla-shop.site-main,
main.isla-shop {
  display: block;
  flex: 1 1 auto;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0;
  margin: 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
  box-sizing: border-box;
  overflow-x: clip;
}

/* ---- No sidebar / slide: content = 100% of container ---- */
.isla-shop.no-sidebar,
.isla-shop.sidebar-slide {
  flex: 1 1 100%;
  width: 100% !important;
  max-width: 100% !important;
}

/* ---- Right sidebar: content | sidebar ---- */
@media (min-width: 992px) {
  .isla-shop.sidebar-right {
    flex: 1 1 0;
    width: auto !important;
    max-width: none !important;
    order: 1;
  }
  .isla-shop.sidebar-right + .widget-area {
    flex: 0 0 280px;
    width: 280px !important;
    max-width: 280px !important;
    margin: 0;
    padding: 0;
    order: 2;
  }

  /* ---- Left sidebar: sidebar | content ---- */
  .isla-shop.sidebar-left {
    flex: 1 1 0;
    width: auto !important;
    max-width: none !important;
    order: 2;
  }
  .isla-shop.sidebar-left + .widget-area {
    flex: 0 0 280px;
    width: 280px !important;
    max-width: 280px !important;
    margin: 0;
    padding: 0;
    order: 1;
  }
}

/* ---- Top sidebar: filters above products ---- */
.isla-shop.sidebar-top {
  flex: 1 1 100%;
  width: 100% !important;
  order: 2;
}
.isla-shop.sidebar-top + .widget-area {
  flex: 0 0 100%;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 0 8px;
  padding: 0;
  order: 1;
}

/* ---- Slide-out filter panel ---- */
.isla-shop.sidebar-slide + .widget-area {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: min(360px, 100%) !important;
  max-width: 360px !important;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  background: #f5f5f5;
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.isla-shop.sidebar-slide + .widget-area.show {
  transform: none;
  box-shadow: 0 0 80px -37px rgba(0, 0, 0, 0.3);
}
.admin-bar .isla-shop.sidebar-slide + .widget-area {
  top: 32px;
  height: calc(100vh - 32px);
}
.isla-shop.sidebar-slide + .widget-area .sidebar-wrapper {
  padding: 50px 30px 30px;
}
.isla-shop.sidebar-slide + .widget-area .close-sidebar {
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Default widget-area reset — do not stretch to full shell width outside sidebar layouts */
body.woocommerce-shop .widget-area,
body.tax-product_cat .widget-area,
body.tax-product_tag .widget-area,
body.tax-product_shipping_class .widget-area {
  width: auto;
  max-width: none;
  margin: 0;
  float: none;
  box-sizing: border-box;
}

.widget-area .widget {
  margin: 0 0 28px;
  padding: 20px;
  background: #fff;
  border: 1px solid #edf0ec;
  border-radius: 14px;
}
.widget-area .widget-title {
  font: 600 16px/1.3 "Playfair Display", serif;
  color: var(--deep);
  margin: 0 0 14px;
}
.widget-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget-area ul li {
  margin: 0 0 8px;
  font-size: 14px;
}
.widget-area a {
  color: var(--text);
  text-decoration: none;
}
.widget-area a:hover {
  color: var(--teal);
}

/* Mobile: stack sidebar under (or above for top) content */
@media (max-width: 991px) {
  body.woocommerce .content-wrapper > .row.main-row,
  body.woocommerce-page .content-wrapper > .row.main-row {
    flex-direction: column;
    gap: 28px;
  }
  .isla-shop.sidebar-right,
  .isla-shop.sidebar-left,
  .isla-shop.sidebar-top,
  .isla-shop.sidebar-slide {
    order: 1;
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 auto;
  }
  .isla-shop.sidebar-right + .widget-area,
  .isla-shop.sidebar-left + .widget-area {
    order: 2;
    width: 100% !important;
    max-width: 100% !important;
    flex: 1 1 auto;
  }
  .isla-shop.sidebar-top + .widget-area {
    order: 0;
    width: 100% !important;
  }
}

/* Posts-per-page (Pro shop_pagination_ppp) */
.isla-shop .botiga-pagination-ppp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}
.isla-shop .botiga-pagination-ppp ul {
  display: inline-flex;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.isla-shop .botiga-pagination-ppp ul li {
  margin: 0;
}
.isla-shop .botiga-pagination-ppp ul li a,
.isla-shop .botiga-pagination-ppp ul li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border: 1px solid #e2e8e6;
  border-radius: 6px;
  background: #fff;
  color: var(--deep);
  text-decoration: none;
  font-size: 13px;
}
.isla-shop .botiga-pagination-ppp ul li.active a,
.isla-shop .botiga-pagination-ppp ul li.active span,
.isla-shop .botiga-pagination-ppp ul li a:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

/* Load more / infinite scroll button */
.isla-shop .botiga-pagination-button,
.isla-shop .woocommerce-pagination .botiga-load-more {
  display: inline-block;
  margin: 20px auto 0;
  padding: 12px 28px;
  border: 0;
  border-radius: 8px;
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
}
.isla-shop .botiga-pagination-button:hover {
  background: var(--deep);
}

/* Pagination */
.isla-shop .woocommerce-pagination {
  margin: 10px 0 0;
  text-align: center;
}
.isla-shop .woocommerce-pagination ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.isla-shop .woocommerce-pagination ul li {
  margin: 0;
}
.isla-shop .woocommerce-pagination ul li a,
.isla-shop .woocommerce-pagination ul li span {
  display: grid;
  place-items: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #e2e8e6;
  border-radius: 8px;
  background: #fff;
  color: var(--deep);
  font-size: 14px;
  text-decoration: none;
}
.isla-shop .woocommerce-pagination ul li a:hover,
.isla-shop .woocommerce-pagination ul li span.current {
  border-color: var(--teal);
  background: var(--teal);
  color: #fff;
}

/* No products */
.isla-shop .woocommerce-info {
  margin-top: 10px;
}

@media (max-width: 991px) {
  .woocommerce-page-header .woocommerce-products-header__title.page-title {
    font-size: 30px;
  }
  .isla-shop:not(.product-list):not(.product-masonry) ul.products,
  .isla-shop.product-grid ul.products,
  .isla-shop:not(.product-list):not(.product-masonry) ul.products.columns-3,
  .isla-shop:not(.product-list):not(.product-masonry) ul.products.columns-4,
  .isla-shop:not(.product-list):not(.product-masonry) ul.products.columns-5,
  .isla-shop:not(.product-list):not(.product-masonry) ul.products.columns-6 {
    grid-template-columns: repeat(2, 1fr);
  }
  body.shop-columns-tablet-1
    .isla-shop:not(.product-list):not(.product-masonry)
    ul.products {
    grid-template-columns: 1fr;
  }
  body.shop-columns-tablet-2
    .isla-shop:not(.product-list):not(.product-masonry)
    ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
  body.shop-columns-tablet-3
    .isla-shop:not(.product-list):not(.product-masonry)
    ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
  body.shop-columns-tablet-4
    .isla-shop:not(.product-list):not(.product-masonry)
    ul.products {
    grid-template-columns: repeat(4, 1fr);
  }
  body.shop-columns-tablet-5
    .isla-shop:not(.product-list):not(.product-masonry)
    ul.products {
    grid-template-columns: repeat(5, 1fr);
  }
  body.shop-columns-tablet-6
    .isla-shop:not(.product-list):not(.product-masonry)
    ul.products {
    grid-template-columns: repeat(6, 1fr);
  }
  .isla-shop.product-list li.product > .row > .col-md-4 {
    flex: 0 0 160px;
    max-width: 160px;
  }
  body.woocommerce .content-wrapper > .row.main-row {
    flex-direction: column;
  }
  .isla-shop.sidebar-right + .widget-area,
  .isla-shop.sidebar-left + .widget-area {
    flex: 1 1 auto;
    width: 100% !important;
    max-width: none;
  }
}

@media (max-width: 600px) {
  .isla-shop .woocommerce-sorting-wrapper .row {
    flex-direction: column;
    align-items: stretch;
  }
  .isla-shop .botiga-sorting-right,
  .isla-shop .botiga-sorting-right-inner {
    justify-content: flex-start;
  }
  .isla-shop:not(.product-list):not(.product-masonry) ul.products,
  .isla-shop.product-grid ul.products,
  .isla-shop:not(.product-list):not(.product-masonry)
    ul.products[class*="columns-"] {
    grid-template-columns: 1fr !important;
  }
  body.shop-columns-mobile-2
    .isla-shop:not(.product-list):not(.product-masonry)
    ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  body.shop-columns-mobile-3
    .isla-shop:not(.product-list):not(.product-masonry)
    ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }
  body.shop-columns-mobile-4
    .isla-shop:not(.product-list):not(.product-masonry)
    ul.products {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  body.shop-columns-mobile-5
    .isla-shop:not(.product-list):not(.product-masonry)
    ul.products {
    grid-template-columns: repeat(5, 1fr) !important;
  }
  body.shop-columns-mobile-6
    .isla-shop:not(.product-list):not(.product-masonry)
    ul.products {
    grid-template-columns: repeat(6, 1fr) !important ;
  }
  .isla-shop.product-list li.product > .row {
    flex-direction: column;
  }
  .isla-shop.product-list li.product > .row > .col-md-4,
  .isla-shop.product-list li.product > .row > .col-md-8 {
    flex: 1 1 auto;
    max-width: none;
  }
  .isla-shop li.product img {
    height: 280px;
  }
}

.btsf-filter-type-checkbox
  .btsf-terms-checkbox
  .btsf-terms-checkbox-label:after {
  left: -22px;
}

.woocommerce-cart #primary,
.woocommerce-checkout #primary {
  width: 100%;
}
.woocommerce-cart
  a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
  min-height: 48px;
  color: rgb(255, 255, 255);
  font-weight: 600;
  cursor: pointer;
  flex: 1 1 180px;
  padding: 12px 24px;
  border-width: 0px;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  border-radius: 8px;
  background: var(--teal);
  transition: background 0.2s, opacity 0.2s;
}
.woocommerce-cart
  a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover {
  background: var(--deep);
}

/* Checkout — form fields (Botiga base styles.min.css is not loaded on branded checkout). */
.woocommerce-checkout form .form-row {
  margin: 0 0 16px;
}
.woocommerce-checkout form .form-row label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
.woocommerce-checkout form .form-row label .required {
  color: var(--coral);
  text-decoration: none;
}
.woocommerce-checkout form .form-row.woocommerce-invalid label {
  color: #c0392b;
}
.woocommerce-checkout form .form-row input.input-text,
.woocommerce-checkout form .form-row input[type="email"],
.woocommerce-checkout form .form-row input[type="tel"],
.woocommerce-checkout form .form-row input[type="password"],
.woocommerce-checkout form .form-row input[type="number"],
.woocommerce-checkout form .form-row select,
.woocommerce-checkout form .form-row textarea,
.woocommerce-checkout .woocommerce-form-coupon input.input-text,
.woocommerce-checkout .woocommerce-form-login input.input-text,
.woocommerce-checkout .woocommerce-form-login input[type="password"] {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  min-height: 48px;
  border: 1px solid #dfe6e4;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  box-shadow: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.woocommerce-checkout form .form-row textarea,
.woocommerce-checkout textarea#order_comments {
  min-height: 100px;
  resize: vertical;
  line-height: 1.5;
}
.woocommerce-checkout form .form-row select {
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23667171' d='M1.4.4 6 5l4.6-4.6L12 2.8 6 8.8 0 2.8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
}
.woocommerce-checkout form .form-row input.input-text:focus,
.woocommerce-checkout form .form-row input[type="email"]:focus,
.woocommerce-checkout form .form-row input[type="tel"]:focus,
.woocommerce-checkout form .form-row input[type="password"]:focus,
.woocommerce-checkout form .form-row input[type="number"]:focus,
.woocommerce-checkout form .form-row select:focus,
.woocommerce-checkout form .form-row textarea:focus,
.woocommerce-checkout .woocommerce-form-coupon input.input-text:focus,
.woocommerce-checkout .woocommerce-form-login input.input-text:focus,
.woocommerce-checkout .woocommerce-form-login input[type="password"]:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal);
}
.woocommerce-checkout form .form-row input:-webkit-autofill,
.woocommerce-checkout form .form-row input:-webkit-autofill:hover,
.woocommerce-checkout form .form-row input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text);
  box-shadow: 0 0 0 1000px #fff inset;
  transition: background-color 9999s ease-out 0s;
}
.woocommerce-checkout .select2-container--default .select2-selection--single {
  height: auto;
  min-height: 48px;
  padding: 10px 16px;
  border: 1px solid #dfe6e4;
  border-radius: 8px;
  background: #fff;
}
.woocommerce-checkout
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  padding: 0;
  line-height: 26px;
  color: var(--text);
}
.woocommerce-checkout
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 46px;
  right: 8px;
}
.woocommerce-checkout
  .select2-container--default.select2-container--open
  .select2-selection--single,
.woocommerce-checkout
  .select2-container--default.select2-container--focus
  .select2-selection--single {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal);
}
.woocommerce-checkout .select2-container {
  width: 100% !important;
  max-width: 100%;
}
.woocommerce-checkout form.woocommerce-checkout {
  width: 100%;
  max-width: 100%;
}
.woocommerce-checkout #customer_details .col-1,
.woocommerce-checkout #customer_details .col-2 {
  float: none;
  max-width: 100%;
  min-width: 0;
}
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout .woocommerce-form-coupon,
.woocommerce-checkout .woocommerce-form-login {
  max-width: 100%;
}
.woocommerce-checkout .checkout-wrapper .woocommerce-checkout-review-order {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.woocommerce-checkout .checkout-wrapper table.shop_table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
}
.woocommerce-checkout .checkout-wrapper .product-name {
  word-break: break-word;
}
.woocommerce-checkout #contact_details {
  margin-bottom: 28px;
}
.woocommerce-checkout
  #contact_details
  + .woocommerce-billing-fields
  #billing_email_field {
  display: none;
}

/* Payment — WooPayments / Stripe UPE (avoid triple nested borders). */
.woocommerce-checkout #payment .payment_box {
  margin-top: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.woocommerce-checkout #payment .payment_box fieldset,
.woocommerce-checkout #payment .payment_box fieldset.wc-payment-form {
  margin: 0;
  padding: 0 !important;
  border: 0 !important;
  background: transparent;
  box-shadow: none;
  min-width: 0;
}
.woocommerce-checkout #payment .payment_box .wcpay-upe-form {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.woocommerce-checkout #payment #wcpay-upe-element,
.woocommerce-checkout #payment .wcpay-upe-element {
  margin: 0 0 8px;
  padding: 0 !important;
  min-height: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  width: 100%;
  max-width: 100%;
}
.woocommerce-checkout #payment .wcpay-upe-element.processing {
  min-height: 70px;
}

/* Stripe Payment Element spacing — align with billing form rows. */
.woocommerce-checkout #payment .wcpay-upe-form .p-AccordionPanel,
.woocommerce-checkout #payment .wcpay-upe-form .p-Grid,
.woocommerce-checkout #payment .wcpay-upe-form form {
  margin: 0;
}
.woocommerce-checkout
  #payment
  .payment_box.payment_method_woocommerce_payments
  .form-row,
.woocommerce-checkout
  #payment
  .payment_box.payment_method_woocommerce_payments
  p {
  margin: 0 0 16px;
}

/* Legacy card gateways (non-UPE) — single clean wrapper. */
.woocommerce-checkout
  #payment
  .payment_box:not(.payment_method_woocommerce_payments) {
  padding: 16px;
  border: 1px solid #dfe6e4;
  border-radius: 8px;
  background: #fff;
}
.woocommerce-checkout
  #payment
  .payment_box:not(.payment_method_woocommerce_payments)
  input.input-text {
  width: 100%;
  max-width: 100%;
  padding: 12px 16px;
  min-height: 48px;
  border: 1px solid #dfe6e4;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  box-shadow: none;
}

.woocommerce-checkout #payment ul.payment_methods li {
  margin-bottom: 10px;
}
.woocommerce-checkout #payment ul.payment_methods li label {
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.woocommerce-checkout
  #payment
  ul.payment_methods
  li.payment_method_woocommerce_payments
  > label {
  display: inline-flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.woocommerce-checkout
  #payment
  .payment_methods
  li[class*="payment_method_woocommerce_payments"]
  label
  img,
.woocommerce-checkout
  #payment
  .payment_methods
  li[class*="payment_method_woocommerce_payments"]
  label
  .payment-methods--logos {
  float: none;
  margin-left: auto;
}
.woocommerce-checkout #payment ul.payment_methods img {
  max-height: 24px;
  width: auto;
}

@media (min-width: 992px) {
  .woocommerce-checkout #customer_details .form-row-first,
  .woocommerce-checkout #customer_details .form-row-last {
    width: calc(50% - 8px);
  }
  .woocommerce-checkout #customer_details .form-row-first {
    float: left;
    clear: left;
  }
  .woocommerce-checkout #customer_details .form-row-last {
    float: right;
    clear: right;
  }
  .woocommerce-checkout #customer_details .form-row-wide {
    clear: both;
  }
}

@media (max-width: 991px) {
  .woocommerce-checkout form.woocommerce-checkout {
    flex-direction: column;
  }
  .woocommerce-checkout #customer_details,
  .woocommerce-checkout .checkout-wrapper {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
  }
  .woocommerce-checkout .checkout-wrapper {
    margin-top: 32px;
  }
}

@media (max-width: 767px) {
  body.woocommerce-checkout .content-wrapper.container,
  body.woocommerce-page.woocommerce-checkout .content-wrapper.container {
    width: min(1180px, 94%);
  }
  .woocommerce-checkout .page-main .page-title,
  .woocommerce-checkout .entry-content > h1 {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }
  .woocommerce-checkout #customer_details .col-2 {
    margin-top: 28px;
  }
  .woocommerce-checkout #customer_details .form-row-first,
  .woocommerce-checkout #customer_details .form-row-last,
  .woocommerce-checkout .woocommerce-form-login .form-row-first,
  .woocommerce-checkout .woocommerce-form-login .form-row-last {
    width: 100%;
    float: none;
    margin-right: 0;
  }
  .woocommerce-checkout .checkout-wrapper .woocommerce-checkout-review-order,
  .woocommerce-checkout .checkout-wrapper .wc_payment_methods {
    padding: 16px;
  }
  .woocommerce-checkout .checkout-wrapper #shipping_method > li {
    padding-right: 72px;
  }
  .woocommerce-checkout
    #payment
    .payment_box:not(.payment_method_woocommerce_payments) {
    padding: 12px;
  }
  .woocommerce-checkout
    .botiga-mstepc-wrapper
    .woocommerce-billing-fields__field-wrapper,
  .woocommerce-checkout
    .botiga-mstepc-wrapper
    .woocommerce-shipping-fields__field-wrapper,
  .woocommerce-checkout .botiga-mstepc-wrapper .woocommerce-account-fields,
  .woocommerce-checkout
    .botiga-mstepc-wrapper
    .woocommerce-additional-fields__field-wrapper,
  .woocommerce-checkout
    .botiga-mstepc-wrapper
    .checkout-wrapper
    .woocommerce-checkout-review-order,
  .woocommerce-checkout .botiga-mstepc-wrapper .botiga-mstep-order-review {
    padding: 20px;
  }
  .woocommerce-checkout .botiga-mstepc-tabs-nav {
    margin-top: 24px;
    margin-bottom: 32px;
  }
}

/* Order received / thank you page */
.woocommerce-order.isla-order-received {
  max-width: 760px;
  margin: 0 auto;
}
.isla-order-received__hero {
  margin: 0 0 32px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid #dfe6e4;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}
.isla-order-received__hero--failed {
  border-color: rgba(192, 57, 43, 0.25);
  background: #fff8f7;
}
.isla-order-received__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: var(--teal);
  background: rgba(38, 125, 121, 0.12);
}
.isla-order-received__icon--failed {
  color: #c0392b;
  background: rgba(192, 57, 43, 0.12);
}
.isla-order-received__eyebrow {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}
.isla-order-received .woocommerce-thankyou-order-received {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font: 600 clamp(1.35rem, 3vw, 1.75rem) / 1.35 "Playfair Display", serif;
  color: var(--deep);
}
.isla-order-received__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}
.isla-order-received__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  background: var(--teal);
  transition: background 0.2s;
}
.isla-order-received__btn:hover {
  color: #fff;
  background: var(--deep);
}
.isla-order-received__btn--secondary {
  color: var(--deep);
  background: #fff;
  border: 1px solid #dfe6e4;
}
.isla-order-received__btn--secondary:hover {
  color: var(--deep);
  background: #f7fafa;
}
.isla-order-received__summary {
  margin-bottom: 32px;
  padding: 28px;
  border: 1px solid #dfe6e4;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}
.isla-order-received__summary-title {
  margin: 0 0 20px;
  font: 600 22px/1.3 "Playfair Display", serif;
  color: var(--deep);
}
.isla-order-received__overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.isla-order-received__overview li {
  margin: 0;
  padding: 16px;
  border: 1px solid #edf2f1;
  border-radius: 10px;
  background: #fafcfb;
  list-style: none;
}
.isla-order-received__label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.isla-order-received__overview strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  word-break: break-word;
}
.isla-order-received__overview .total strong {
  color: var(--deep);
}
.isla-order-received__details > * + * {
  margin-top: 28px;
}
.isla-order-received .woocommerce-order-details,
.isla-order-received .woocommerce-customer-details {
  margin: 0;
  padding: 28px;
  border: 1px solid #dfe6e4;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}
.page-main
  .entry-content
  .isla-order-received
  .woocommerce-order-details__title,
.page-main .entry-content .isla-order-received .woocommerce-column__title {
  margin: 0 0 18px;
  font: 600 22px/1.3 "Playfair Display", serif;
  color: var(--deep);
}
.isla-order-received table.shop_table.order_details {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}
.isla-order-received table.shop_table.order_details th,
.isla-order-received table.shop_table.order_details td {
  padding: 14px 10px;
  border-bottom: 1px solid #edf2f1;
  text-align: left;
  vertical-align: top;
}
.isla-order-received table.shop_table.order_details thead th {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}
.isla-order-received table.shop_table.order_details tfoot th {
  font-weight: 500;
  color: var(--muted);
}
.isla-order-received table.shop_table.order_details tfoot tr:last-child th,
.isla-order-received table.shop_table.order_details tfoot tr:last-child td {
  border-bottom: 0;
  padding-top: 18px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep);
}
.isla-order-received .woocommerce-customer-details address {
  margin: 0;
  padding: 0;
  font-style: normal;
  line-height: 1.7;
  color: var(--text);
}
.isla-order-received .woocommerce-customer-details .woocommerce-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.isla-order-received .woocommerce-customer-details .woocommerce-column {
  margin: 0;
  padding: 0;
}
.isla-order-received .woocommerce-thankyou-order-failed-actions {
  margin-top: 20px;
  padding: 0;
  background: transparent;
}
.isla-order-received
  .woocommerce-thankyou-order-failed-actions
  .button
  + .button {
  margin-left: 12px;
}
.woocommerce-checkout .isla-order-received {
  max-width: none;
}

.woocommerce-thankyou-order-details {
  padding: 30px 30px 30px 35px !important;
  background-color: var(--bt-color-content-cards-bg, #f5f5f5);
}
@media (max-width: 767px) {
  .isla-order-received__hero,
  .isla-order-received__summary,
  .isla-order-received .woocommerce-order-details,
  .isla-order-received .woocommerce-customer-details {
    padding: 22px 18px;
  }
  .isla-order-received__overview {
    grid-template-columns: 1fr;
  }
  .isla-order-received__actions {
    flex-direction: column;
  }
  .isla-order-received__btn {
    width: 100%;
  }
  .isla-order-received .woocommerce-customer-details .woocommerce-columns {
    grid-template-columns: 1fr;
  }
  .isla-order-received table.shop_table.order_details {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* ==========================================================================
   404 Page
   Shell: .page-main + .section + .container via 404.php
   ========================================================================== */
.isla-error404 {
  max-width: 920px;
  margin: 0 auto;
}
.isla-error404__hero {
  padding: 48px 36px;
  text-align: center;
  border: 1px solid #dfe6e4;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}
.isla-error404__code {
  margin: 0 0 10px;
  font: 700 clamp(4rem, 14vw, 7rem) / 0.9 "Playfair Display", serif;
  letter-spacing: -0.04em;
  color: rgba(38, 125, 121, 0.18);
}
.isla-error404__title {
  margin: 0 0 14px;
  font: 600 clamp(1.75rem, 4vw, 2.5rem) / 1.2 "Playfair Display", serif;
  color: var(--deep);
}
.isla-error404__text {
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
}
.isla-error404__search {
  max-width: 560px;
  margin: 0 auto 28px;
}
.isla-search-form {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
}
.isla-search-form .search-field {
  flex: 1 1 auto;
  min-width: 0;
  padding: 12px 16px;
  min-height: 48px;
  border: 1px solid #dfe6e4;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  box-shadow: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.isla-search-form .search-field:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(38, 125, 121, 0.12);
}
.isla-search-form .search-submit {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 12px 22px;
  border: 0;
  border-radius: 8px;
  font-weight: 600;
  color: #fff;
  background: var(--teal);
  cursor: pointer;
  transition: background 0.2s;
}
.isla-search-form .search-submit:hover {
  background: var(--deep);
}
.isla-error404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.error404 .page-main .section {
  padding-top: 32px;
  padding-bottom: 64px;
}

@media (max-width: 767px) {
  .isla-error404__hero {
    padding: 32px 20px;
  }
  .isla-search-form {
    flex-direction: column;
  }
  .isla-search-form .search-submit {
    width: 100%;
  }
  .isla-error404__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .isla-error404__actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   Order Tracking
   Shortcode: [woocommerce_order_tracking]
   ========================================================================== */

/* Match other branded pages — Botiga’s content-wrapper margin-top is dequeued here. */
body.page-template-template-order-tracking .content-wrapper,
body.isla-order-tracking-view .content-wrapper {
  margin-top: 0;
  margin-bottom: 0;
}

.isla-order-tracking-page > .section,
body.isla-order-tracking-view .page-main > .section,
body.isla-order-tracking-view main > .section {
  padding-top: 72px;
  padding-bottom: 80px;
}

.isla-order-tracking-page .page-title,
body.isla-order-tracking-view .entry-title {
  font: 600 clamp(1.75rem, 4vw, 2.4rem) / 1.2 "Playfair Display", serif;
  color: var(--deep);
  margin: 0 0 40px;
  text-align: center;
}

/* Hide blog chrome if shortcode was placed on a Post */
body.isla-order-tracking-view .entry-meta,
body.isla-order-tracking-view .entry-meta-above,
body.isla-order-tracking-view .entry-meta-below,
body.isla-order-tracking-view .entry-footer,
body.isla-order-tracking-view .post-navigation,
body.isla-order-tracking-view .botiga-sharebox,
body.isla-order-tracking-view .botiga-related-posts,
body.isla-order-tracking-view .author-box,
body.isla-order-tracking-view .comments-area,
body.isla-order-tracking-view .comment-respond {
  display: none !important;
}

.isla-track-order {
  max-width: 640px;
  margin: 0 auto;
  padding: 36px 32px;
  border: 1px solid #dfe6e4;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.isla-track-order__intro {
  margin: 0 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  text-align: center;
}

.isla-track-order__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 8px;
}

.isla-track-order .form-row {
  margin: 0 0 16px;
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
}

.isla-track-order .form-row label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}

.isla-track-order .form-row .input-text {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  min-height: 48px;
  border: 1px solid #dfe6e4;
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.isla-track-order .form-row .input-text:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(38, 125, 121, 0.12);
}

.isla-track-order__submit {
  margin-top: 8px !important;
  text-align: center;
}

.isla-track-order .button.btn.primary,
.isla-track-order button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 180px;
  padding: 12px 28px;
  border: 1px solid var(--teal);
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  background: var(--teal);
  cursor: pointer;
  transition: 0.2s all ease-in-out;
}

.isla-track-order .button.btn.primary:hover,
.isla-track-order button[type="submit"]:hover {
  color: var(--deep);
  background: #fff;
}

.isla-track-order-result {
  max-width: 760px;
  margin: 32px auto 0;
}

.isla-track-order-result__status,
.isla-track-order-result .order-info {
  margin: 0 0 28px;
  padding: 24px 28px;
  border: 1px solid #dfe6e4;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  text-align: center;
}

.isla-track-order-result mark {
  background: transparent;
  color: var(--deep);
  font-weight: 600;
}

.isla-track-order-result__updates {
  margin-bottom: 28px;
  padding: 28px;
  border: 1px solid #dfe6e4;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.isla-track-order-result__updates h2 {
  margin: 0 0 16px;
  font: 600 22px/1.3 "Playfair Display", serif;
  color: var(--deep);
}

.isla-track-order-result__updates .notes {
  margin: 0;
  padding: 0;
  list-style: none;
}

.isla-track-order-result__updates .note + .note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #edf2f1;
}

.isla-track-order-result__updates .meta {
  margin: 0 0 6px;
  font-size: 0.82rem;
  color: var(--muted);
}

.isla-track-order-result__details .woocommerce-order-details,
.isla-track-order-result__details .woocommerce-customer-details {
  margin: 0 0 28px;
  padding: 28px;
  border: 1px solid #dfe6e4;
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow);
}

.isla-track-order-result__details .woocommerce-order-details__title,
.isla-track-order-result__details .woocommerce-column__title {
  margin: 0 0 18px;
  font: 600 22px/1.3 "Playfair Display", serif;
  color: var(--deep);
}

.isla-track-order-result__details table.shop_table {
  width: 100%;
  border-collapse: collapse;
}

.isla-track-order-result__details table.shop_table th,
.isla-track-order-result__details table.shop_table td {
  padding: 12px 0;
  border-bottom: 1px solid #edf2f1;
  text-align: left;
}

@media (max-width: 767px) {
  .isla-track-order {
    padding: 28px 18px;
  }
  .isla-track-order__fields {
    grid-template-columns: 1fr;
  }
  .isla-track-order .button.btn.primary,
  .isla-track-order button[type="submit"] {
    width: 100%;
  }
}

.page-main .entry-content .isla-wishlist__remove {
  text-decoration: none;
}
.wc-block-components-express-payment--cart
  .wc-block-components-express-payment__event-buttons {
  padding: 0 !important;
}
.wp-block-social-links {
  padding-left: 0px !important;
}

.wpforms-field-container input,
.wpforms-field-container textarea,
.wpforms-field-container select {
  padding: 12px 16px !important;
  min-height: 48px;
  border: 1px solid #dfe6e4 !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: var(--text) !important;
  box-shadow: none !important;
  transition: border-color 0.2s, box-shadow 0.2s !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.wpforms-submit-container .wpforms-submit {
  display: inline-block !important;
  padding: 12px 24px !important;
  border-radius: 8px !important;
  background: var(--teal) !important;
  color: #fff !important;
  text-decoration: none !important;
  border: none !important;
  box-shadow: none !important;
}
.wpforms-submit-container .wpforms-submit:hover {
  background: var(--deep) !important;
  color: #fff !important;
}
.wpforms-confirmation-container-full,
div[submit-success]
  > .wpforms-confirmation-container-full:not(.wpforms-redirection-message) {
  background: #f2f2f2fa;
  border: 1px solid #f2f2f2fa;
  border-radius: 10px;
  box-sizing: border-box;
}

.btsf-filter[data-category-display-mode="accordion"]
  .btsf-filter-list-item
  .btsf-category-children {
  border-left: 0px solid rgba(0, 0, 0, 0.08);
}
p.botiga-freespb-text {
  text-align: center;
}

#loginRegisterPopup{
  display: none !important  ;
}