 /* for the boxford pages, the ticks in the middle of the description */
.containerxc {
    display: grid;
    gap: 10px;
    padding: 20px;
    grid-template-columns: repeat(3, 1fr);
}
.featurexc {
    display: flex;
    align-items: center;
}
.featurexc-icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    background-color: #00A654;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}
.featurexc-icon::before {
    content: '✔';
    color: white;
    font-size: 20px;
}
@media (max-width: 768px) {
    .containerxc {
        grid-template-columns: 1fr;
    }
}




 /* for the boxford pages, for 2 side by side videos which collapse to one above the other on a mobile */
.video-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .video-container {
    flex: 1 1 calc(50% - 20px);
    max-width: 50%;
  }

  .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
  }

  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  @media (max-width: 768px) {
    .video-container {
      flex-basis: 100%;
      max-width: 100%;
    }
  }


 /* for all products with 8-block images, it acommodates 2 images that are side by side on desptop and left over right on a mobile */
.leftab
        {
  float: left;
  width: 50%;
  }
  .rightab
  {
  float: right;
  width:50%;
  }
  img
  {
  max-width: 100%;;
  height: auto;
  }
@media screen and (max-width:
        666px)
  {
  .leftab
  {
  float: none;
  width: auto;
  }
  .rightab
  {
  float: none;
  width: auto;
  }
  }


/* Carousel for 3, 4 , 5 images, with 1 repeated for smooth scrolling, shared base rules */
/* ===== Carousel base styles (scoped) ===== */
.component-carousel .slider {
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
  text-align: center;
  position: relative;
  box-sizing: border-box;
}

.component-carousel .slider__track {
  display: flex;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  will-change: transform;
}

.component-carousel .slider__track img {
  flex-shrink: 0;
  display: block;
  height: auto;
  max-width: none;
  box-sizing: border-box;
}

/* ===== 5-slide variant ===== */
.component-carousel .slider--5 .slider__track {
  width: 600%;
  animation: component-carousel-slider-5 18s infinite;
}

.component-carousel .slider--5 .slider__track img {
  width: 16.6666667%;
}

@keyframes component-carousel-slider-5 {
  0%, 13%    { transform: translateX(0); }
  20%, 33%   { transform: translateX(-16.6666667%); }
  40%, 53%   { transform: translateX(-33.3333334%); }
  60%, 73%   { transform: translateX(-50.0000001%); }
  80%, 93%   { transform: translateX(-66.6666668%); }
  100%       { transform: translateX(-83.3333335%); }
}

/* ===== 4-slide variant ===== */
.component-carousel .slider--4 .slider__track {
  width: 500%;
  animation: component-carousel-slider-4 14s infinite;
}

.component-carousel .slider--4 .slider__track img {
  width: 20%;
}

@keyframes component-carousel-slider-4 {
  0%, 15%    { transform: translateX(0); }
  22%, 37%   { transform: translateX(-20%); }
  44%, 59%   { transform: translateX(-40%); }
  66%, 81%   { transform: translateX(-60%); }
  100%       { transform: translateX(-80%); }
}

/* ===== 3-slide variant ===== */
.component-carousel .slider--3 .slider__track {
  width: 400%;
  animation: component-carousel-slider-3 12s infinite;
}

.component-carousel .slider--3 .slider__track img {
  width: 25%;
}

@keyframes component-carousel-slider-3 {
  0%, 20%    { transform: translateX(0); }
  30%, 50%   { transform: translateX(-25%); }
  60%, 80%   { transform: translateX(-50%); }
  100%       { transform: translateX(-75%); }
}

/* reduce flicker on resize */
.component-carousel .slider,
.component-carousel .slider__track {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}



/* css for keyring blog, 3 side by side images */
* {
  box-sizing: border-box;
}

#onlythese img {
  border-radius: 50%;
  border-style: dashed;
  border-color: #00A654;
  width: 100%;          /* fill the column width */
  height: auto;         /* keep aspect ratio */
  max-width: 350px;     /* allow larger images, adjust as needed */
  filter: brightness(100%);
  display: block;       /* removes inline spacing issues */
  margin: 0 auto;       /* center inside column */
}

#onlythese img:hover {
  filter: brightness(70%);
  transition: all 0.1s ease;
}

.column {
  float: left;
  width: 33.33%;
  padding: 10px;
  text-align: center;
}

.row::after {
  content: "";
  display: table;
  clear: both;
}

@media screen and (max-width: 760px) {
  .column {
    float: none;
    width: 100%;        /* stack columns on small screens */
  }
  #onlythese img {
    max-width: 100%;    /* let images resize fluidly on mobile */
  }
}