/** Shopify CDN: Minification failed

Line 362:0 All "@import" rules must come first
Line 714:0 All "@import" rules must come first

**/


/* CSS from section stylesheet tags */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap');

.twenzii-section-wrapper {
  background: #F6DADF;
  padding: 40px 20px 20px;
}

.spring-header {
  font-family: 'EB Garamond', serif;
  font-size: 40px;
  text-align: center;
  color: #7D254E;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.spring-subheader {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  text-align: center;
  color: #7D254E;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.twenzii-collection-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}

.product-card {
  width: calc(20% - 12px); /* For desktop, 5 items per row */
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  font-family: 'EB Garamond', serif;
  color: #7D254E;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1200px) {
  .product-card {
    width: calc(25% - 12px); /* 4 items per row for medium screens */
  }
}

@media (max-width: 900px) {
  .product-card {
    width: calc(33.333% - 12px); /* 3 items per row for smaller screens */
  }
}

@media (max-width: 600px) {
  /* Two products per row */
  .product-card {
    width: calc(50% - 12px); /* Ensure 2 products per row */
    margin-right: 10px; /* Add some space between products */
  }

  /* Ensure the image container maintains a good aspect ratio */
  .product-image {
    aspect-ratio: 3 / 4; /* This will maintain a reasonable ratio for product images */
    background-color: transparent;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
  }

  /* Prevent images from stretching */
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will prevent images from being stretched */
    display: block;
    border-radius: 6px;
  }

  /* Ensure products scroll horizontally and prevent wrapping */
  .twenzii-collection-grid {
    overflow-x: auto;
    display: flex;
    flex-wrap: nowrap; /* Ensure products stay in one row */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }

  /* Make the "Add to Cart" button smaller and placed correctly */
.add-to-cart-button {
  position: relative;
  display: inline-block;
  padding: 6px 14px; /* Kleinere padding */
  font-size: 12px; /* Kleinere lettergrootte */
  background-color: #7D254E;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s;
  margin-top: 2px; /* Iets meer ruimte boven de knop */
}

  /* Dot navigation (for mobile only) */
  .dots-container {
    display: block; /* Show dots in mobile view */
    text-align: center;
    margin-top: 5px;
  }

  .dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #7D254E;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
  }

  .dot.active {
    background-color: #9d3b62;
  }
}

@media (max-width: 400px) {
  .product-card {
    width: 100%; /* Full width for very small screens */
  }
}

@keyframes scroll-tags {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.product-image {
  aspect-ratio: 3 / 4;
  background-color: transparent;
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

  
.sold-out {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #F6DADF;
  color: #7D254E;
  padding: 3px 8px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}

.product-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #7D254E;
}

.product-price {
  font-size: 15px;
  color: #7D254E;
}

  /* DESKTOP: 5 naast elkaar, geen scroll */
.twenzii-collection-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  overflow-x: unset;
}

/* Kaart: 5 naast elkaar */
.product-card {
  width: calc(20% - 12px);
}

/* TABLET: 4 per rij */
@media (max-width: 1024px) {
  .product-card {
    width: calc(25% - 12px);
  }
}

/* MOBILE SLIDER: 3 producten in horizontale scroll */
@media (max-width: 600px) {
  .twenzii-collection-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .product-card {
    flex: 0 0 calc(33.33% - 10px);
    min-width: 200px;
    scroll-snap-align: start;
  }

  .dots-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }
}
 
.add-to-cart-button {
  position: relative;
  display: inline-block;
  padding: 5px 12px; /* Kleinere padding */
  font-size: 12px; /* Kleinere lettergrootte */
  background-color: #7D254E;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s;
  margin-top: 8px;
}

.add-to-cart-button:hover {
  background-color: #9d3b62;
}

@media (max-width: 600px) {
  .product-pricing {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .price-form {
    width: 100%;
  }

  .add-to-cart-button {
    font-size: 12px;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
  }
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 5px; /* Kleiner gat tussen prijzen */
}

.current-price {
  font-size: 18px; /* Grotere huidige prijs */
  font-weight: bold;
  color: #7D254E;
}

.original-price {
  font-size: 12px; /* Kleiner dan de huidige prijs */
  text-decoration: line-through;
  color: #888;
}

.discount-badge {
  display: inline-block;
  background-color: #F6DADF;
  color: #7D254E;
  font-size: 11px; /* Kleinere tekst */
  padding: 2px 5px;
  border-radius: 12px;
  margin-left: 5px;
}

.product-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.price-info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.price-form {
  margin: 0;
}
  
@media (max-width: 600px) {
  .product-pricing {
    flex-direction: column;
    align-items: stretch !important;
    width: 100%;
  }

  .price-form {
    width: 100% !important;
  }

  .add-to-cart-button {
    width: 100% !important;
    display: block !important;
    padding: 6px !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
    text-align: center;
    margin-top: 10px;
  }
}
  
@media (max-width: 600px) {
  .product-pricing {
    flex-direction: column;
    align-items: flex-start;
  }

  .add-to-cart-button {
    font-size: 10px;
    padding: 4px 10px;
    width: auto;
  }
}
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap');

.twenzii-section-wrapper {
  background: #ffe6ee;
  padding: 40px 20px 20px;
}

.spring-header {
  font-family: 'EB Garamond', serif;
  font-size: 40px;
  text-align: center;
  color: #7D254E;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.spring-subheader {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  text-align: center;
  color: #7D254E;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.twenzii-collection-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}

.product-card {
  width: calc(20% - 12px); /* For desktop, 5 items per row */
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  font-family: 'EB Garamond', serif;
  color: #7D254E;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1200px) {
  .product-card {
    width: calc(25% - 12px); /* 4 items per row for medium screens */
  }
}

@media (max-width: 900px) {
  .product-card {
    width: calc(33.333% - 12px); /* 3 items per row for smaller screens */
  }
}

@media (max-width: 600px) {
  /* Two products per row */
  .product-card {
    width: calc(50% - 12px); /* Ensure 2 products per row */
    margin-right: 10px; /* Add some space between products */
  }

  /* Ensure the image container maintains a good aspect ratio */
  .product-image {
    aspect-ratio: 3 / 4; /* This will maintain a reasonable ratio for product images */
    background-color: transparent;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
  }

  /* Prevent images from stretching */
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will prevent images from being stretched */
    display: block;
    border-radius: 6px;
  }

  /* Ensure products scroll horizontally and prevent wrapping */
  .twenzii-collection-grid {
    overflow-x: auto;
    display: flex;
    flex-wrap: nowrap; /* Ensure products stay in one row */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }

  /* Make the "Add to Cart" button smaller and placed correctly */
.add-to-cart-button {
  position: relative;
  display: inline-block;
  padding: 6px 14px; /* Kleinere padding */
  font-size: 12px; /* Kleinere lettergrootte */
  background-color: #7D254E;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s;
  margin-top: 2px; /* Iets meer ruimte boven de knop */
}

  /* Dot navigation (for mobile only) */
  .dots-container {
    display: block; /* Show dots in mobile view */
    text-align: center;
    margin-top: 5px;
  }

  .dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #7D254E;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
  }

  .dot.active {
    background-color: #9d3b62;
  }
}

@media (max-width: 400px) {
  .product-card {
    width: 100%; /* Full width for very small screens */
  }
}

@keyframes scroll-tags {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.product-image {
  aspect-ratio: 3 / 4;
  background-color: transparent;
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

  
.sold-out {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ffc8dd;
  color: #7D254E;
  padding: 3px 8px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}

.product-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #7D254E;
}

.product-price {
  font-size: 15px;
  color: #7D254E;
}

  /* DESKTOP: 5 naast elkaar, geen scroll */
.twenzii-collection-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  overflow-x: unset;
}

/* Kaart: 5 naast elkaar */
.product-card {
  width: calc(20% - 12px);
}

/* TABLET: 4 per rij */
@media (max-width: 1024px) {
  .product-card {
    width: calc(25% - 12px);
  }
}

/* MOBILE SLIDER: 3 producten in horizontale scroll */
@media (max-width: 600px) {
  .twenzii-collection-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .product-card {
    flex: 0 0 calc(33.33% - 10px);
    min-width: 200px;
    scroll-snap-align: start;
  }

  .dots-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }
}
 
.add-to-cart-button {
  position: relative;
  display: inline-block;
  padding: 5px 12px; /* Kleinere padding */
  font-size: 12px; /* Kleinere lettergrootte */
  background-color: #7D254E;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s;
  margin-top: 8px;
}

.add-to-cart-button:hover {
  background-color: #9d3b62;
}

@media (max-width: 600px) {
  .product-pricing {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .price-form {
    width: 100%;
  }

  .add-to-cart-button {
    font-size: 12px;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
  }
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 5px; /* Kleiner gat tussen prijzen */
}

.current-price {
  font-size: 18px; /* Grotere huidige prijs */
  font-weight: bold;
  color: #7D254E;
}

.original-price {
  font-size: 12px; /* Kleiner dan de huidige prijs */
  text-decoration: line-through;
  color: #888;
}

.discount-badge {
  display: inline-block;
  background-color: #ffe6ee;
  color: #7D254E;
  font-size: 11px; /* Kleinere tekst */
  padding: 2px 5px;
  border-radius: 12px;
  margin-left: 5px;
}

.product-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.price-info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.price-form {
  margin: 0;
}
  
@media (max-width: 600px) {
  .product-pricing {
    flex-direction: column;
    align-items: stretch !important;
    width: 100%;
  }

  .price-form {
    width: 100% !important;
  }

  .add-to-cart-button {
    width: 100% !important;
    display: block !important;
    padding: 6px !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
    text-align: center;
    margin-top: 10px;
  }
}
  
@media (max-width: 600px) {
  .product-pricing {
    flex-direction: column;
    align-items: flex-start;
  }

  .add-to-cart-button {
    font-size: 10px;
    padding: 4px 10px;
    width: auto;
  }
}
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap');

.twenzii-section-wrapper {
  background: #F6DADF;
  padding: 40px 20px 20px;
}

.spring-header {
  font-family: 'EB Garamond', serif;
  font-size: 40px;
  text-align: center;
  color: #7D254E;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.spring-subheader {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  text-align: center;
  color: #7D254E;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.twenzii-collection-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}

.product-card {
  width: calc(20% - 12px); /* For desktop, 5 items per row */
  background-color: #ffffff;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 2px 5px #7D254E(0,0,0,0.05);
  font-family: 'EB Garamond', serif;
  color: #7D254E;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1200px) {
  .product-card {
    width: calc(25% - 12px); /* 4 items per row for medium screens */
  }
}

@media (max-width: 900px) {
  .product-card {
    width: calc(33.333% - 12px); /* 3 items per row for smaller screens */
  }
}

@media (max-width: 600px) {
  /* Two products per row */
  .product-card {
    width: calc(50% - 12px); /* Ensure 2 products per row */
    margin-right: 10px; /* Add some space between products */
  }

  /* Ensure the image container maintains a good aspect ratio */
  .product-image {
    aspect-ratio: 3 / 4; /* This will maintain a reasonable ratio for product images */
    background-color: transparent;
    padding: 0;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
  }

  /* Prevent images from stretching */
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This will prevent images from being stretched */
    display: block;
    border-radius: 6px;
  }

  /* Ensure products scroll horizontally and prevent wrapping */
  .twenzii-collection-grid {
    overflow-x: auto;
    display: flex;
    flex-wrap: nowrap; /* Ensure products stay in one row */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
  }

  /* Make the "Add to Cart" button smaller and placed correctly */
.add-to-cart-button {
  position: relative;
  display: inline-block;
  padding: 6px 14px; /* Kleinere padding */
  font-size: 12px; /* Kleinere lettergrootte */
  background-color: #7D254E;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s;
  margin-top: 2px; /* Iets meer ruimte boven de knop */
}

  /* Dot navigation (for mobile only) */
  .dots-container {
    display: block; /* Show dots in mobile view */
    text-align: center;
    margin-top: 5px;
  }

  .dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #7D254E;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
  }

  .dot.active {
    background-color: #9d3b62;
  }
}

@media (max-width: 400px) {
  .product-card {
    width: 100%; /* Full width for very small screens */
  }
}

@keyframes scroll-tags {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.product-image {
  aspect-ratio: 3 / 4;
  background-color: transparent;
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 10px;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
}

  
.sold-out {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #F6DADF;
  color: #7D254E;
  padding: 3px 8px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
}

.product-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #7D254E;
}

.product-price {
  font-size: 15px;
  color: #7D254E;
}

  /* DESKTOP: 5 naast elkaar, geen scroll */
.twenzii-collection-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
  overflow-x: unset;
}

/* Kaart: 5 naast elkaar */
.product-card {
  width: calc(20% - 12px);
}

/* TABLET: 4 per rij */
@media (max-width: 1024px) {
  .product-card {
    width: calc(25% - 12px);
  }
}

/* MOBILE SLIDER: 3 producten in horizontale scroll */
@media (max-width: 600px) {
  .twenzii-collection-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .product-card {
    flex: 0 0 calc(33.33% - 10px);
    min-width: 200px;
    scroll-snap-align: start;
  }

  .dots-container {
    display: flex;
    justify-content: center;
    margin-top: 15px;
  }
}
 
.add-to-cart-button {
  position: relative;
  display: inline-block;
  padding: 5px 12px; /* Kleinere padding */
  font-size: 12px; /* Kleinere lettergrootte */
  background-color: #7D254E;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s;
  margin-top: 8px;
}

.add-to-cart-button:hover {
  background-color: #9d3b62;
}

@media (max-width: 600px) {
  .product-pricing {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .price-form {
    width: 100%;
  }

  .add-to-cart-button {
    font-size: 12px;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
  }
}

.product-pricing {
  display: flex;
  align-items: center;
  gap: 5px; /* Kleiner gat tussen prijzen */
}

.current-price {
  font-size: 18px; /* Grotere huidige prijs */
  font-weight: bold;
  color: #7D254E;
}

.original-price {
  font-size: 12px; /* Kleiner dan de huidige prijs */
  text-decoration: line-through;
  color: #888;
}

.discount-badge {
  display: inline-block;
  background-color: #F6DADF;
  color: #7D254E;
  font-size: 11px; /* Kleinere tekst */
  padding: 2px 5px;
  border-radius: 12px;
  margin-left: 5px;
}

.product-pricing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.price-info {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.price-form {
  margin: 0;
}
  
@media (max-width: 600px) {
  .product-pricing {
    flex-direction: column;
    align-items: stretch !important;
    width: 100%;
  }

  .price-form {
    width: 100% !important;
  }

  .add-to-cart-button {
    width: 100% !important;
    display: block !important;
    padding: 6px !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
    text-align: center;
    margin-top: 10px;
  }
}
  
@media (max-width: 600px) {
  .product-pricing {
    flex-direction: column;
    align-items: flex-start;
  }

  .add-to-cart-button {
    font-size: 10px;
    padding: 4px 10px;
    width: auto;
  }
}
.testimonials-wrapper {
  background: #ffffff;
  padding: 80px 0;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials-container h2 {
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonials-rating {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 18px;
  margin-bottom: 10px;
}

.testimonials-rating .stars {
  color: #f5c400;
}

.testimonials-sub {
  margin-bottom: 40px;
}

.testimonials-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonials-slider.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.testimonial-card {
  flex: 0 0 280px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #ddd;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.testimonial-image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 14px;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-stars {
  color: #f5c400;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.5;
}

.testimonial-name {
  margin-top: auto;
  padding-top: 14px;
  font-weight: 600;
  font-size: 14px;
}

/* Navigation */
.testimonials-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.testimonial-arrow {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
}

.testimonial-dot.active {
  background: #000;
}
/* Force nav layout (theme override safe) */
.testimonials-nav {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.testimonial-arrow {
  display: inline-flex !important;
  width: auto !important;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}