/* ============================ */
/* LAYOUT                       */
/* ============================ */

html {
  scroll-behavior: smooth;
}
body {
  scroll-behavior: smooth;
}


/* Product Page Navigation Menu Styles */
.product-page-nav {
  width: 100%;
  border-radius: 12px;
  margin: 0;
  padding: 0.5rem 0;
  position: sticky;
  top: 71px;
  z-index: 20;
  display: flex;
  justify-content: center;
  background-color: #fff;
  border: 2px solid #222;
}
.product-page-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 0.5rem;
  margin: 0;
  list-style: none;
}
.product-page-nav li {
  margin: 0;
  padding: 0;
}
.product-page-nav a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.product-page-nav a:hover,
.product-page-nav a:focus {
  opacity: 0.8;
  outline: none;
  text-decoration: none;
  color: #222;
}
.product-page-nav a.active,
.product-page-nav a[aria-current="true"] {
  opacity: 1;
  border-radius: 0px;
  border-bottom: 2px solid #1cb9a2 !important;
}
@media (max-width: 900px) {
  .product-page-nav {
    box-shadow: none;
    position: sticky;
    top: 75px;
    padding: 0.5rem 0.25rem;
    overflow-x: auto;
  }
  .product-page-nav ul {
    gap: 0.25rem 0.5rem;
    padding: 0 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .product-page-nav a {
    font-size: 0.97em;
    padding: 0.5rem 0.5rem;
    white-space: nowrap;
  }
}

body.dark .product-page-nav {
  background-color: #323f48;
  border: 2px solid #fff;
}

body.dark .product-page-nav a {
  color: #fff;
}
body.dark .product-page-nav a:hover,
body.dark .product-page-nav a:focus {
  color: #fff;
}





/* Smoke background behind product image */
.product-main-container .product-row .col:first-child {
  position: relative;
  z-index: 1;
}
.product-main-container {
  position: relative;
  z-index: 1;
}
body.dark .product-main-container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url('/images/smoke.png') no-repeat;
  background-size: 1200px auto;
  background-position: -120px -140px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  body.dark .product-main-container::before {
    background-size: 900px auto;
    background-position: -105px 35px;
  }
}
.product-main-container > * {
  position: relative;
  z-index: 1;
}
.product-main-container .product-row .col:first-child img {
  position: relative;
  z-index: 1;
}

.product  {
  margin-left: 20px;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .product{
    margin-left: 0px;
  }
}


.product-page-wrapper {
  min-height: 60vh;
  padding: 2rem 0;
}

.product-main-container {
  padding: 30px 20px;
}

:global(.product-page) .content-area {
  box-shadow: none;
}

body.dark .product-page-wrapper,
body.dark .product-main-container,
body.dark .product-page{
  background: #323f48 !important;
  color: #fff !important;
}

body.dark .product-page-wrapper p,
body.dark .product-page-wrapper li {
  color: #fff !important;
}

body.dark .product-page-wrapper a:hover {
  color: #fff !important;
  background: #1cb9a2 !important;
  text-decoration: underline;
}

body.dark .product-page-wrapper button,
body.dark .product-page-wrapper .button {
  background: #232b34 !important;
  color: #1cb9a2 !important;
  border: 2px solid #1cb9a2 !important;
}
body.dark .product-page-wrapper button:hover,
body.dark .product-page-wrapper .button:hover {
  background: #1cb9a2 !important;
  color: #fff !important;
}


.section-description {
  text-align: center;
  width: 85%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.side-flex-row {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}
.side-flex-row img {
  width: 400px;
  margin-right: 32px;
  border-radius: 10px;
}

.side-flex-row.side-flex-reverse img {
  margin-left: 32px;
  margin-right: 0;
}
.side-flex-row > div {
  flex: 1;
  min-width: 0;
}
@media (max-width: 900px) {
  .side-flex-row {
    flex-direction: column;
  }
  .side-flex-row img {
    margin-right: 0;
    margin-bottom: 16px;
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
  .side-flex-row.side-flex-reverse img {
    margin-left: 0;
  }
}


/* ============================ */
/* STARS & TOP HEADING          */
/* ============================ */

.stars-and-reviews {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  margin-top: 5px;
  margin-bottom: 6px;
}

.product-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 4px;
  margin-bottom: 6px;
}

.fa-star:before {
  font-size: 25px;
}

.product-stars i {
  color: #1cb9a2;
  font-size: 25px;
  margin-right: -5px;
}
.product-stars i:last-child {
  margin-right: 0;
}

.centered-heading {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
}


body.dark .centered-heading
 {
  color: #fff !important;
}

.reviews {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  gap: 0.5rem;
  font-size: 1rem;
  color: #333;
}

.review-count {
  font-size: 1em;
  font-weight: 500;
  color: #333;
  line-height: 1.2;
  margin-left: 10px;
  vertical-align: baseline;
  display: flex;
  align-items: baseline;
}

body.dark .review-count,
body.dark .stars-and-reviews {
  color: #fff !important;
}


/* ============================ */
/* SELECTION BOX                */
/* ============================ */

:global(.product-options) {
  width: 100%;
}

:global(.product-options tr) {
  display: grid;
  grid-template-columns: 100px 1fr;
  margin-bottom: 15px;
}

:global(.product-options td.label) {
  padding-top: 8px;
}
:global(.product-options ul) {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 0;
}

:global(.product-options li) {
  list-style: none;
}
:global(.product-options button) {
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  background: white;
  height: auto;
  min-width: auto;
  margin: 0;
}
:global(.product-options button.selected) {
  border-color: #1cb9a2;
  color: #1cb9a2;
  background: white;
}
body.dark .product-options button {
  background: #323f48;
  color: #f1f1f1;
  border: 1px solid #444;
}
body.dark .product-options button.selected {
  border-color: #1cb9a2;
  color: #1cb9a2;
  background: #323f48;
}


.selection-box {
  background: rgba(255,255,255,0.04);
  border: 2px solid #1cb9a2;
  border-radius: 24px;
  padding: 12px 24px;
  box-sizing: border-box;
  max-width: 400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
body.dark .selection-box {
  background: rgba(50, 63, 72, 0.8);
  border-color: #fff;
}

.price-sub-container {
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  
  .price-sub-container {
    flex-direction: column;
  }
}
@media screen and (max-width: 480px) {
  .silver-shorts-wrapper h1 {
    font-size: 22px;
  }
  .selection-box {
    padding: 12px 18px;
  }
}


.price-skeleton {
  min-width: 120px;
  min-height: 36px;
  display: flex;
  align-items: center;
  margin-right: 16px;
}
.skeleton {
  background: linear-gradient(90deg, #e0e0e0 25%, #f5f5f5 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.2s infinite linear;
  border-radius: 4px;
}
.skeleton-price {
  width: 80px;
  height: 32px;
}
@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.price-quantity-container {
  margin: 5px 0 20px 0;
  width: 100%;
}

.price-section {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.quantity-controls {
  margin-top: 5px;
  margin-left: auto; 
}


.price-info {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-weight: bold;
  font-size: 1em;
  max-width: 348px;
  width: 100%;
}

.price-display {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  min-width: 0;
  flex: 1 1 0;
  margin-bottom: 15px;
}

.price-display > * {
  min-width: 0;
  flex-shrink: 1;
}


.original-price {
  font-size: 1.8em;
  font-weight: 500;
  line-height: 0.8;
  margin-right: 3px;
  text-decoration: line-through;
  color: #777;
}
body.dark .original-price {
  color: #fff !important;
}

.current-price {
  font-size: 2em;
  font-weight: 600;
}

.tax-info {
  font-size: 0.8rem;
  color: #777;
  margin: -24px 0;
  align-self: flex-start;
  text-align: left;
  width: 100%;
}
body.dark .tax-info {
  color: #fff !important;
}

.save-text-stack {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 3px;
  margin-top: 5px;
  color: #388e3c;
  font-size: 24px;
  flex-wrap: wrap;
  min-width: 0;
  max-width: 110px;
}

.stock-info {
  margin: 5px 0 -10px 0;
}

.shipping-info {
  margin-left: 30px;
  width: 90%;
  text-align: center;
}



@media (max-width: 500px) {
  .save-text-stack {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    gap: 0;
    margin-top: -5px;
  }
  .shipping-info {
    margin-left: 15px;
  }
}

/* Hide number input spinners/arrows for all browsers */
.quantity-controls input[type="number"]::-webkit-inner-spin-button,
.quantity-controls input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-controls input[type="number"] {
  -moz-appearance: textfield;
}


/* ============================ */
/* SECOND SELECTION BOX         */
/* ============================ */


.second-product-options-section {
  width: 78%;
  max-width: 78%;
  margin: 0 auto;
  padding: 0;
  border: 2px solid #1cb9a2;
  border-radius: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.dark .second-product-options-section {
  border-color: #fff;
}

.second-options-container {
  width: 100%;
  max-width: 600px;
  text-align: center;
}


.second-selection-box {
  width: 100%;
  padding: 0;
}

.second-selection-box.two-col-steps {
  display: grid;
  grid-template-columns: 348px 348px;
  gap: 20px;
  justify-content: center;
  align-items: start;
  width: 100%;
  margin: 0 auto;
  padding: 12px 24px;
  position: relative;
  grid-template-areas:
    "options options"
    "price cart";
}
.second-selection-box.two-col-steps .product-options-steps,
.second-selection-box.two-col-steps ProductOptions {
  grid-area: options;
}
.second-selection-box.two-col-steps .price-section {
  margin: -22px 0 10px 0;
}
.add-to-cart-second {
  grid-area: cart;
  margin-top: -15px;
}

.add-to-cart-second .add-to-cart-section {
  margin-left: 8px;
}

.second-selection-box.two-col-steps .stock-info {
  text-align: left;
  margin: -27px 0 3px 8px;
}

.second-selection-box.two-col-steps .stock-info.warning,
.second-selection-box.two-col-steps .stock-info.danger {
  color: #ff1111 !important;
}

.second-selection-box.two-col-steps .stock-info.success {
  color: #388e3c !important;
}

.second-selection-box.two-col-steps .shipping-info {
  margin-top: 5px;
}

@media (max-width: 900px) {
  .second-selection-box.two-col-steps {
    grid-template-columns: 1fr;
    grid-template-areas:
      "options"
      "price"
      "cart";
    padding: 12px 8px;
  }
  .price-display-second,
  .add-to-cart-second {
    margin-top: 12px;
    width: 100%;
  }
  .add-to-cart-second .add-to-cart-section {
    margin-left: 0px;
  }
  .add-to-cart-second .add-to-cart- .buttons {
    flex-direction: row;
  }

}
.second-selection-box.two-col-steps .product-options-steps {
  display: grid !important;
  grid-template-columns: 348px 348px;
  gap: 20px;
  width: 100%;
}
.second-selection-box.two-col-steps .option-step {
  width: 100%;
  box-sizing: border-box;
}

/* Responsive design */
@media (max-width: 768px) {
  .second-product-options-section {
    background: rgba(255,255,255,0.04);
    border: 2px solid #1cb9a2;
    border-radius: 24px;
    margin: 24px 0;
    padding: 12px 18px;
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
  }
  body.dark .second-product-options-section {
    background: rgba(50, 63, 72, 0.8);
    border-color: #fff;
  }
  .second-options-container {
    width: 100%;
    max-width: 400px;
    text-align: center;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }
  .second-selection-box.two-col-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: none;
    box-shadow: none;
    padding: 12px 18px;
  }
  .second-selection-box.two-col-steps .product-options-steps {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .second-selection-box.two-col-steps .option-step {
    width: 100%;
    box-sizing: border-box;
  }
  .second-selection-box.two-col-steps .stock-info {
    margin: -20px 0 8px 0px;
  }
}

@media (max-width: 480px) {
  .second-product-options-section {
    padding: 10px 2px;
    max-width: 99vw;
  }
  .second-options-container,
  .second-selection-box.two-col-steps {
    max-width: 99vw;
  }
}


/* ============================ */
/* STAMPED                      */
/* ============================ */


.stamped-pagination a {
  color: #13aea2 !important;
}
.stamped-pagination .last,
.stamped-pagination .next,
.stamped-pagination .previous {
  top: 0px !important;
}

.stamped-pagination .page.active {
  text-decoration-color: #13aea2 !important;
}

body.dark .stamped-container,
body.dark .stamped-container * {
  color: #fff;
}

body.dark .product-section .stamped-container,
body.dark .stamped-container{
  color: #fff;
}

body.dark .summary-rating-count {
  color: #fff !important;
}

body.dark li#tab-reviews[data-count]:after {
  background: none;
}

body.dark .stamped-starrating,
body.dark .stamped-starrating a,
body.dark .summary-rating-title::before  {
  color: #13aea2  !important;
}
.stamped-review-header-starratings,
.stamped-summary-starrating,
.stamped-review-header-starratings .stamped-fa-star,
.stamped-summary-starrating .stamped-fa-star,
.stamped-review-header-starratings .stamped-fa-star-o,
.stamped-summary-starrating .stamped-fa-star-o {
  color: #ffd200 !important;
}

.stamped-review-header-starratings {
  margin-top: 2px;
}

.summary-rating-bar,
.summary-rating-bar-content {
  border-radius: 3px;
}

body.dark #stamped-sort-select,
body.dark #stamped-sort-select option {
  color: #222 !important;
}

#stamped-button-submit {
  font-size: 1rem;
    text-decoration: none;
    height: 40px;
    padding: 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 10px;
    background: #169e8a;
    color: white !important;
    border: 2px solid #fff;
    transition: background 0.2s;
    margin: 0 5px;
    white-space: nowrap;
}
#stamped-button-submit:hover {
  opacity: 0.8;
  background: rgba(28, 185, 162, 0.8) !important;
}

#new-review-form_6384 {
  border-radius: 10px;
  margin-bottom: 20px !important;
}

.stamped-container ul.stamped-tabs  {
  border: none; 
}

.stamped-share-icon {
  padding: 0px !important;
}

.stamped-verified-badge {
  color: #388e3c !important;
}

/* ============================ */
/* ADVANTAGE LIST               */
/* ============================ */

.advantages-container {
  margin-top: 30px;
}

.advantages-container ul {
  margin-left: 0px;
}

.advantage-content h3 {
  margin-bottom: 0px;
}

body.dark .product-section, body.dark .product-section div, body.dark .product-section p, body.dark .product-section li {
  color: #fff !important;
}
  .advantage-list {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    gap: 1%;
    min-width: 0;
  }

  .advantage-list li {
    min-width: 0;
    box-sizing: border-box;
    padding: 5px 5px 5px 20px;
    transition: 0.1s;
    position: relative;
    overflow: hidden;
    background: #f2f2f2;
    border-radius: 5px;
    margin-bottom: 10px;
  }

  body.dark .advantage-list li {
    background: #47515c;
  }
  /* Force dark SVG icon elements to white in dark mode */
  body.dark .advantage-list li svg [fill="#222"],
  body.dark .advantage-list li svg [fill="#333"],
  body.dark .advantage-list li svg [fill="#323f48"],
  body.dark .advantage-list li svg [fill="#444"],
  body.dark .advantage-list li svg [fill="#555"],
  body.dark .advantage-list li svg [fill="#777"],
  body.dark .advantage-list li svg [fill="#2d2d2d"],
  body.dark .advantage-list li svg [fill="#232323"] {
    fill: #fff !important;
  }

  .advantage-list li:hover {
    transform: scale(1.01);
  }

  .advantage-list li:hover:before {
    background: #303e48 !important;
  }
  body.dark .advantage-list li:hover:before {
    background: #fff !important;
  }

  .advantage-list li:before {
    content: "";
    background: #1cb9a2;
    width: 40px;
    height: 100px;
    left: -21px;
    top: -40px;
    position: absolute;
    transform: rotate(22deg);
  }

  .advantage-image-icon {
    float: left;
  }

  .advantage-image-icon img {
    width: 100px;
    height: 100px;
    padding: 15px;
  }

  .advantage-list li a {
    text-decoration: none;
  }

  .product-section {
    padding: 0 13px;
  }


  .heading-area {
    background: url(/images/bg-image.jpeg);
    background-repeat: no-repeat;
    border-radius: 10px 10px 10px 10px;
    background-position: right;
    margin: 20px 0;
    display: flex;
    align-items: center;
    padding: 10px;
  }

  .img-sec {
    width: 8%;
  }

  .img-sec img {
    width: 100%;
    margin: 0 !important;
    background: #fff;
    border: 4px solid #fff;
    border-radius: 8px;
  }
  body.dark .img-sec .s {
    background: #323f48 !important;
    border: 4px solid #323f48 !important;
  }




  @media screen and (min-width: 1200px) {
    .advantage-list li:last-child,
    .advantage-list li:nth-last-child(2) {
      margin-bottom: 0;
    }
    .advantage-list li:nth-child(1),
    .advantage-list li:nth-child(2),
    .advantage-list li:nth-child(5),
    .advantage-list li:nth-child(6) {
      width: 49.5%;
    }
    .advantage-list li:nth-child(3) {
      width: 62%;
    }
    .advantage-list li:nth-child(4) {
      width: 37%;
    }
    .advantage-list li:nth-child(7) {
      width: 37%;
    }
    .advantage-list li:nth-child(8) {
      width: 62%;
    }
  }

  @media screen and (min-width: 900px) and (max-width: 1199px) {
    .advantage-list li {
      width: 49.5%;
      box-sizing: border-box;
    }
    .advantage-list li:last-child,
    .advantage-list li:nth-last-child(2) {
      margin-bottom: 0;
    }
  }

  @media screen and (max-width: 620px) {
    .advantage-list li {
      width: 100%;
    }
  }

  @media screen and (max-width: 480px) {
    .advantage-list {
      display: none;
    }

    .product-section h2 {
      font-size: 20px;
    }

    .product-section h3 {
      font-size: 14px;
    }

    .heading-area p {
      font-size: 13px;
    }

    .text-area p {
      line-height: normal;
    }
  }

.section-desc,
.section-desc p,
.section-desc span {
  color: #777777;
  margin-bottom: 20px;
}
body.dark .section-desc,
body.dark .section-desc *,
body.dark .section-desc p,
body.dark .section-desc span {
  color: #fff !important;
}


/* ============================ */
/* FACILITY                     */
/* ============================ */

.facility-container {
  padding: 0 15px 15px;
  width: 100%;
  margin-top: 25px;
}

.single-facility {
  width: 25%;
}

.facility-icon svg {
  width: 50px;
  height: 53px;
  width: 100%;
}

.facility-icon path {
  fill: #222;
}
body.dark .facility-icon svg path {
  fill: #fff !important;
  }


.facility-title h6 {
  margin-left: 10px;
  margin-bottom: 0;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .single-facility {
    flex-direction: column;
    text-align: center;
  }

  .facility-title h6 {
    font-size: 12px;
    margin-top: 10px;
    margin-left: 0;
  }
}

@media screen and (max-width: 620px) {
  .single-facility {
    width: 50% !important;
  }
}

@media screen and (max-width: 480px) {
  .facility-container {
    flex-wrap: wrap;
  }
}



/* ============================ */
/* PRODUCT GALLERY              */
/* ============================ */


/* Include relevant styles from the original file */
.product-gallery-container {
  width: 100%;
}

.zoom-container {
  position: relative;
  border-radius: 10px !important;
  overflow: hidden;
}

.zoomy {
  overflow: hidden;
  border-radius: 10px !important;
  cursor: auto;
  position: relative;
}

.zoomy img {
  cursor: auto;
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  border-radius: 10px !important;
}

/* Thumbnail background for smooth loading */
.thumbnail-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}

/* Progressive image loading styles */
.loading {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: relative;
  z-index: 2;
}

.loaded {
  opacity: 1;
  position: relative;
  z-index: 2;
  transition: opacity 0.5s ease-in-out;
}

.product-image {
  width: 100%;
  height: auto;
}

.slider-single img {
  opacity: 1 !important;
}

.slider-nav {
  display: grid;
  margin-top: 10px;
  margin-bottom: 25px;
  grid-template-columns: repeat(auto-fill, minmax(16.666%, 1fr));
}

.slider-nav-img {
  opacity: 1 !important;
}

.magnifier {
  z-index: 3;
  position: absolute;
  right: 30px;
  top: 15px;
  color: #000000;
  background: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 20px;
  display: none;
  justify-content: center;
  align-items: center;
}

.thumb-image {
  min-width: 25%;
  padding: 2px;
  cursor: pointer;
  background: none !important;
  border: none;
}

.thumb-image:focus-visible {
  outline: none !important;
}

.thumb-image img {
  opacity: 0.5;
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.thumb-image:hover img {
  opacity: 0.8;
}

.gallery-placeholder {
  width: 100%;
  background-color: #f8f8f8;
  min-height: 300px;
  border-radius: 4px;
}

.product-section-title {
  text-transform: uppercase;
}


.gallery-arrow .arrow-btn svg path {
  stroke: #222 !important;
  transition: stroke 0.2s;
}
body.dark .gallery-arrow .arrow-btn svg path {
  stroke: #fff !important;
}


/* ============================ */
/* WHY WE MADE THIS             */
/* ============================ */

.why-we-made-this-box {
  width: 75%;
  margin: 25px auto;
  padding: 25px;
  text-align: center;
  background-color: #f2f2f2;
  border-radius: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}
.why-we-made-this-box p {
  font-style: italic;
  position: relative;
  padding: 5px;
}
.why-we-made-this-box p::before {
  content: "\201C";
  font-size: 3em;
  position: absolute;
  left: -0.4em;
  top: -0.3em;
  color: #bbb;
  font-family: serif;
}
.why-we-made-this-box p::after {
  content: "\201D";
  font-size: 3em;
  position: absolute;
  right: -0.3em;
  bottom: -1em;
  color: #bbb;
  font-family: serif;
}
body.dark .why-we-made-this-box p::before,
body.dark .why-we-made-this-box p::after  {
  color: #fff;
}

body.dark .why-we-made-this-box {
  background-color: #47515c;
}

@media screen and (max-width: 620px) {
  .why-we-made-this-box {
    width: 100%;
  }
}


/* ============================ */
/* PRODUCT HIGHLIGHT            */
/* ============================ */

.product-highlight .highlight-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.product-highlight .highlight-product-img {
  width: 350px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.highlight-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 380px;
  max-width: 420px;
  margin: 0 auto;
}
.glow-border {
  filter: drop-shadow(0 0 4px #1cb9a2) drop-shadow(0 0 12px #1cb9a2);
  max-width: 320px;
  max-height: 320px;
  width: 100%;
  height: auto;
  z-index: 1;
  display: block;
}

.highlight-features {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: auto;
}
.feature-top-left {
  position: absolute;
  top: 16px;
  left: -120px;
  width: 200px;
  text-align: left;
}
.feature-top-right {
  position: absolute;
  top: 16px;
  right: -140px;
  width: 220px;
  text-align: right;
}
.feature-mid-left {
  position: absolute;
  top: 130px;
  left: -160px;
  width: 230px;
  text-align: left;
}
.feature-mid-right {
  position: absolute;
  top: 130px;
  right: -180px;
  width: 250px;
  text-align: right;
}
.feature-bottom-left {
  position: absolute;
  bottom: 10px;
  left: -110px;
  width: 230px;
  text-align: left;
}
.feature-bottom-right {
  position: absolute;
  bottom: 10px;
  right: -170px;
  width: 250px;
  text-align: right;
}
.hf {
  font-size: 1rem;
  line-height: 1.3;
  color: #222;
  font-weight: 400;
  padding: 8px 10px 8px 10px;
  box-sizing: border-box;
  border-bottom: 2px solid #1cb9a2;
}
body.dark .hf {
  color: #fff;
  border-bottom: 2px solid #fff;
}

.hf:hover {
  opacity: 0.8;
}

.hf h6 {
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1.08em;
  margin: 0;
  padding: 0;
}

.highlight-svg-overlay .highlight-connector {
  stroke: #1cb9a2 !important;
  stroke-width: 2 !important;
  stroke-linecap: round !important;
  opacity: 0.95 !important;
}
body.dark .highlight-svg-overlay .highlight-connector {
  stroke: #fff !important;
}

@media (max-width: 700px) {
  /* Hide SVG lines and feature borders */
  .highlight-svg-overlay { display: none !important; }
  .hf { border-bottom: none !important; }

  .highlight-image-container {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    position: static !important;
  }
  /* Move features below sock, 2 per row */
  .highlight-features {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px 10px;
    width: 100%;
    margin-top: 20px !important;
    margin-bottom: 0;
    z-index: 1;
    background: none !important;
    pointer-events: auto;
  }
  .hf {
    position: static !important;
    width: 100% !important;
    text-align: left !important;
    background: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    padding: 10px 8px 8px 8px !important;
    font-size: 0.97em !important;
  }
  .feature-top-left { grid-row: 1; grid-column: 1; }
  .feature-top-right { grid-row: 1; grid-column: 2; }
  .feature-mid-left { grid-row: 2; grid-column: 1; }
  .feature-mid-right { grid-row: 2; grid-column: 2; }
  .feature-bottom-left { grid-row: 3; grid-column: 1; }
  .feature-bottom-right { grid-row: 3; grid-column: 2; }
}

/* ============================ */
/* SUSTAINABILITY               */
/* ============================ */


.sustainability-columns {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin: 36px 0 40px 0;
  flex-wrap: wrap;
}
.sustainability-left {
  flex: 0 0 475px;
  max-width: 475px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sustainability-video {
  width: 100%;
  max-width: 475px;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.08);
}
.sustainability-right {
  flex: 1 1 320px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sustainability-headline {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}
.sustainability-blocks {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.sustainability-block {
  background: #f2f2f2;
  border-radius: 8px;
  padding: 18px 20px 14px 20px;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,0.04);
  font-size: 1.07rem;
  color: #222;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.sustainability-block-logo-text {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.sustainability-logo {
  width: 100px;
  height: 48px;
  object-fit: contain;
  box-shadow: 0 1px 4px 0 rgba(0,0,0,0.04);
  flex-shrink: 0;
}
body.dark .sustainability-logo {
  filter: invert(1) brightness(1.5) contrast(1.2);
}

@media (max-width: 600px) {
  .sustainability-columns {
    margin-top: 0px;
  }
  .sustainability-left {
    margin-bottom: -65px;
  }
  .sustainability-block-logo-text {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  .sustainability-logo {
    margin-bottom: 4px;
  }
}


body.dark .sustainability-block {
  background: #47515c;
}

.sustainability-emoji {
  font-size: 1.5em;
  margin-bottom: 3px;
  margin-right: 7px;
  vertical-align: middle;
}
@media (max-width: 900px) {
  .sustainability-columns {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }
  .sustainability-left, .sustainability-right {
    max-width: 100%;
    width: 100%;
  }
  .sustainability-right {
    align-items: center;
    text-align: center;
  }
  .sustainability-block {
    text-align: left;
    align-items: flex-start;
  }
}

/* ============================ */
/* TECHNOLOGY                   */
/* ============================ */

.technology-columns {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  margin: 32px 0;
}
.technology-columns .technology-column {
  flex: 1 1 0;
  min-width: 220px;
  max-width: 350px;
  border-radius: 10px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.06);
  padding: 24px 20px;
  margin: 0;
  border: 2px solid #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body.dark .technology-column {
  border-color: #fff;
  box-shadow: 0 1px 8px 0 rgba(44,122,123,0.13);
}

.technology-column-title {
  font-weight: 600;
  font-style: italic;
  margin-top: 10px;
  margin-bottom: 8px;
  font-size: 1.1em;
}
.technology-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  margin: 0 auto 16px auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px 0 rgba(0,0,0,0.06);
}
.technology-column-content {
  font-size: 1em;
  color: #333;
}
@media (max-width: 900px) {
  .technology-columns {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

/* ============================ */
/* SIZE & FIT                   */
/* ============================ */

.size-fit-section {
  margin: 40px auto 0 auto;
  padding: 24px 0;
  text-align: center;
}

.size-fit-models {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  margin-top: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}


@media (max-width: 900px) {
  .size-fit-models {
    flex-direction: column;
    gap: 24px;
  }
}

.size-fit-gender-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 320px;
  max-width: 420px;
  flex: 1 1 340px;
}

.size-fit-row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 24px;
  width: 100%;
}

.size-fit-row.female {
  margin-top: 20px;
}

.model-label {
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 1.1em;
  letter-spacing: 0.5px;
  text-align: center;
}

.size-fit-model {
  max-height: 300px;
  width: auto;
  display: block;
}

.size-fit-model.female-model {
  max-height: 280px;
}

.size-fit-model.shirt-model,
.size-fit-model.shorts-model {
  max-height: 250px;
}

@media (max-width: 900px) {
  .size-fit-model.shirt-model,
  .size-fit-model.shorts-model {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

body.dark .size-fit-model {
  filter: invert(1) brightness(2);
}

.sock-size-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  display: table;
  max-width: 260px;
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  font-size: 0.95em;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  margin: 0;
}

.sock-size-table th,
.sock-size-table td {
  border: 1px solid #e1e1e1;
  padding: 6px 10px;
  text-align: center;
}

.sock-size-table tr:first-child th:first-child {
  border-top-left-radius: 12px;
  border-left: none;
  border-top: none;
}
.sock-size-table tr:first-child th:last-child {
  border-top-right-radius: 12px;
  border-right: none;
  border-top: none;
}
.sock-size-table tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
  border-left: none;
  border-bottom: none;
}
.sock-size-table tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
  border-right: none;
  border-bottom: none;
}
.sock-size-table th:first-child,
.sock-size-table td:first-child {
  border-left: none;
}
.sock-size-table th:last-child,
.sock-size-table td:last-child {
  border-right: none;
}
.sock-size-table tr:first-child th,
.sock-size-table tr:first-child td {
  border-top: none;
}
.sock-size-table tr:last-child td {
  border-bottom: none;
}

/* Size & Fit Table Hover Effect */
.size-fit-section table tr:hover, .product-section-tshirts table tr:hover {
  background: #1cb9a2 !important;
  color: #fff !important;
}
.size-fit-section table tr:hover td, .product-section-tshirts table tr:hover td,
.size-fit-section table tr:hover th, .product-section-tshirts table tr:hover th {
  background: #1cb9a2 !important;
  color: #fff !important;
}


@media (max-width: 900px) {
  .size-fit-models {
    flex-direction: column;
    gap: 32px;
  }
  .size-fit-gender-block {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .size-fit-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

.sock-size-table th, .sock-size-table td {
  border: 1px solid #e1e1e1;
  padding: 6px 10px;
  text-align: center;
}
.sock-size-table th {
  background: #f2f2f2;
  font-weight: 600;
}
.sock-size-table tr:nth-child(even) {
  background: #f7f7f7;
}
@media (max-width: 900px) {
  .size-fit-models {
    flex-direction: column;
    gap: 32px;
  }
  .size-fit-model-with-table {
    flex-direction: column;
    min-width: 0;
    max-width: 100vw;
  }
  .sock-size-table {
    max-width: 98vw;
  }
}

@media (max-width: 600px) {
  .size-fit-models {
    flex-direction: column;
    gap: 24px;
  }
  .size-fit-model {
    max-width: 80vw;
  }
}

@media (max-width: 900px) {
  .product-section-tshirts .size-fit-section .sock-size-table:not(.mobile),
  .product-section-shorts .size-fit-section .sock-size-table:not(.mobile) {
    display: none !important;
  }
  /* Fallback: hide any .sock-size-table:not(.mobile) if inside a .shorts-model-overlay-container or .shirt-model-overlay-container */
  .shorts-model-overlay-container ~ .sock-size-table:not(.mobile),
  .shirt-model-overlay-container ~ .sock-size-table:not(.mobile) {
    display: none !important;
  }
  .sock-size-table.mobile {
    display: table !important;
  }
  /* Always show for socks section */
  .product-section-socks .size-fit-section .sock-size-table {
    display: table !important;
  }
}
@media (min-width: 769px) {
  .sock-size-table.mobile {
    display: none;
  }
}

/* ============================ */
/* LIFETIME GUARANTEE           */
/* ============================ */

.lifetime-guarantee-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.lifetime-guarantee-container {
  border-radius: 24px;
  margin: 40px 0 20px 0;
  padding: 40px 24px 20px 24px;
  background: #f2f2f2;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lifetime-guarantee-shield {
  margin-bottom: 18px;
}

body.dark .guarantee-badge-svg .badge-outline {
  stroke: #fff !important;
  stroke-width: 32 !important;
}
body.dark .guarantee-badge-svg .checkmark {
  stroke: none !important;

  fill: #fff !important;
  stroke: none !important;
}
body.dark .guarantee-badge-svg .shield {
  fill: #1cb9a2 !important;
  stroke: #fff !important;
}

.lifetime-guarantee-container h4 {
  text-align: center;
}

.lifetime-guarantee-description {
  font-size: 1.5rem;
  color: #222;
  font-weight: 700;
  text-align: center;
  max-width: 600px;
  margin-bottom: 32px;
}
.lifetime-guarantee-description italic {
  font-style: italic;
}
.lifetime-guarantee-columns {
  display: flex;
  gap: 48px;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.lifetime-guarantee-column {
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 320px;
  border-radius: 10px;
  padding: 24px 20px 18px 20px;
  border: 2px solid #222;
  margin-bottom: 18px;
}
.lifetime-guarantee-label,
.technology-label {
  font-weight: 600;
  font-size: 1.1rem;
  color: #222;
  margin-bottom: 10px;
  text-align: left;
  letter-spacing: 0.02em;
}
.lifetime-guarantee-list {
  padding-left: 1.2em;
  margin: 0;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}
.lifetime-guarantee-list li {
  margin-bottom: 7px;
  list-style-type: disc;
}

@media (max-width: 700px) {
  .lifetime-guarantee-section {
    padding: 24px 8px 18px 8px;
  }
  .lifetime-guarantee-columns {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .lifetime-guarantee-column {
    max-width: 100%;
    min-width: 0;
    padding: 18px 10px 12px 10px;
  }
}

body.dark .lifetime-guarantee-container {
  background: #47515c;
  box-shadow: 0 2px 16px 0 rgba(44, 122, 123, 0.10);
}
body.dark .lifetime-guarantee-description {
  color: #f3f7fa;
}
body.dark .lifetime-guarantee-column {
  border-color: #fff;
  box-shadow: 0 1px 8px 0 rgba(44,122,123,0.13);
}
body.dark .lifetime-guarantee-label,
body.dark .technology-label {
  color: #6EE7B7;
}
body.dark .lifetime-guarantee-list {
  color: #e0e7ef;
}





