/* ============================
   MOBILE RESPONSIVE STYLES
   ============================ */
.product-detail {
  width: 100%;
  background: #F8F2EE;
  padding: 40px 0;
  padding-top: 110px;
  /* Breadcrumbs */
  /* MOBILE STACK */
  /* GALLERY */
  /* MOBILE TABS (CLONED VISUALLY) */
  /* PRODUCT INFO */
}
.product-detail .content {
  width: 100%;
  padding-inline: 20px;
  margin-inline: auto;
}
.product-detail .topbar {
  margin-bottom: 20px;
}
.product-detail .topbar .breadcrumbs {
  display: flex;
  gap: 15px;
  color: #1F1F1F;
  text-decoration: none;
  flex-direction: column;
  text-align: left;
  justify-content: flex-start;
}
.product-detail .topbar .breadcrumbs a {
  color: #1F1F1F;
  text-decoration: none;
  margin: 0;
  font-size: 15px;
  text-align: left;
  display: block;
  width: -moz-max-content;
  width: max-content;
}
.product-detail .topbar .breadcrumbs span {
  color: #1F1F1F;
  font-size: 20px;
  font-weight: 500;
}
.product-detail .layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.product-detail .gallery {
  width: 100%;
  /* HIDE ORIGINAL TABS ON MOBILE */
}
.product-detail .gallery .main-img-wrapper {
  width: 100%;
  height: auto;
  max-height: 420px;
  border-radius: 12px;
  overflow: hidden;
}
.product-detail .gallery .main-img-wrapper img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-detail .gallery .thumbs {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}
.product-detail .gallery .thumbs .thumb {
  min-width: 140px;
  height: -moz-max-content;
  height: max-content;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  background: white;
}
.product-detail .gallery .thumbs .thumb img {
  min-width: 140px;
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-detail .gallery .thumbs .thumb.active {
  border-color: #e18d5e;
}
.product-detail .info-outer {
  position: relative;
  /* Insert mobile tabs inside info visually */
}
.product-detail .info-outer .tabs {
  display: block;
  margin-top: 20px;
}
.product-detail .info-outer .tabs .tab-buttons {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  gap: 10px;
  background: #ededed;
  padding: 5px;
  border-radius: 30px;
}
.product-detail .info-outer .tabs .tab-buttons .tab {
  padding: 8px 22px;
  border-radius: 30px;
  border: none;
  background: none;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
}
.product-detail .info-outer .tabs .tab-buttons .tab.active {
  background: white;
  color: #1F1F1F;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.product-detail .info-outer .tabs .tab-content {
  display: none;
  margin-top: 20px;
}
.product-detail .info-outer .tabs .tab-content.active {
  display: block;
}
.product-detail .info-outer .tabs .spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.product-detail .info {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  /* COLORS */
  /* SIZES */
  /* QUANTITY */
  /* CTA BUTTON */
  /* SHIPPING */
}
.product-detail .info h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: -15px;
}
.product-detail .info .sub-cat {
  font-size: 16px;
  opacity: 0.9;
}
.product-detail .info .desc-box {
  margin-top: 25px;
}
.product-detail .info .desc-box h3 {
  color: #1F1F1F;
  font-size: 18px;
}
.product-detail .info .desc-box p {
  color: #1F1F1F;
  font-size: 16px;
}
.product-detail .info .colors-sizes {
  padding: 18px;
  border-radius: 12px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.product-detail .info .color-section label {
  font-size: 16px;
  color: #1F1F1F;
  font-weight: 600;
}
.product-detail .info .color-section .color-swatches {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 10px;
  gap: 8px;
}
.product-detail .info .color-section .color-swatches .swatch {
  min-width: 29px;
  max-width: 29px;
  min-height: 29px;
  max-height: 29px;
  border-radius: 6px;
  border: 2px solid white;
}
.product-detail .info .color-section .color-swatches .swatch.active {
  border: 2px solid #e18d5e;
}
.product-detail .info .color-section .selected-color {
  margin-top: 18px;
  font-size: 14px;
}
.product-detail .info .size-section {
  border-top: 1px dotted #e18d5e;
  padding-top: 35px;
}
.product-detail .info .size-section label {
  font-size: 16px;
  color: #1F1F1F;
  font-weight: 600;
}
.product-detail .info .size-section .size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.product-detail .info .size-section .size-options .size-option {
  padding: 8px 14px;
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 6px;
}
.product-detail .info .size-section .size-options .size-option.active {
  background: white;
  border-color: #e18d5e;
}
.product-detail .info .size-section .selected-size {
  margin-top: 18px;
  font-size: 14px;
}
.product-detail .info .qty-box {
  margin-top: 10px;
}
.product-detail .info .qty-box label {
  font-weight: 600;
}
.product-detail .info .qty-box .qty-controls {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-detail .info .qty-box .qty-controls button {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: white;
  border: 1px solid #d1d5db;
  font-size: 18px;
}
.product-detail .info .qty-box .qty-controls button:hover {
  border-color: #e18d5e;
}
.product-detail .info .qty-box .qty-controls .qty {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: white;
  border: 1px solid #d1d5db;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
}
.product-detail .info .actions {
  margin-bottom: 20px;
}
.product-detail .info .actions .offer-btn {
  height: 58px;
  width: 100%;
  justify-content: space-between;
  padding-inline: 8px;
  padding-left: 18px;
  border: none;
  outline: none;
  border-radius: 38px;
  background: #e18d5e;
  color: white;
  text-align: left;
  margin-inline: auto;
  text-decoration: none;
  padding-block: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 25px;
  margin-top: 25px;
  transition: 0.6s;
  font-size: 18px;
  font-weight: 400;
}
.product-detail .info .actions .offer-btn i {
  transition: 0.6s;
  border-radius: 40px;
  padding: 16px 18px;
  color: #1F1F1F;
  background: white;
  font-size: 17px;
}
.product-detail .info .actions .offer-btn:hover {
  background: transparent;
  color: #e18d5e;
  border: 1px solid #e18d5e;
}
.product-detail .info .actions .offer-btn:hover i {
  background: #e18d5e;
  color: white;
  margin-left: 60px;
}
.product-detail .info .info-box {
  margin-top: 20px;
}
.product-detail .info .info-box h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}
.product-detail .info .info-box p, .product-detail .info .info-box li {
  color: rgb(12.8727272727, 31.6454545455, 46.1272727273);
  font-size: 15px;
  line-height: 1.6;
}
.product-detail .info .info-box ul {
  margin-left: 18px;
  margin-top: 10px;
}
.product-detail .info .info-box ul li {
  list-style: disc;
}
.product-detail .info .info-box .spec {
  margin-bottom: 14px;
}
.product-detail .info .info-box .spec h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.product-detail .info .shipping {
  margin-top: 25px;
}
.product-detail .info .shipping h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
}
.product-detail .info .shipping .card {
  background: #F8F2EE;
  padding: 0;
  border-radius: 8px;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-detail .info .shipping .card .card-div {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
}
.product-detail .info .shipping .card .card-div:first-child {
  border-bottom: 1px solid #e18d5e;
  padding-bottom: 16px;
}
.product-detail .info .shipping .card .card-div p {
  font-size: 16px;
  color: #1F1F1F;
  margin: 0;
}
.product-detail .info .shipping .card .card-div p i {
  background: white;
  color: #e18d5e;
  padding: 9px;
  font-size: 22px;
  border-radius: 30px;
  margin-right: 15px;
}
.product-detail .info .shipping .card .card-div span {
  font-size: 18px;
  font-weight: 600;
  color: #1F1F1F;
}
.product-detail .info .shipping .card .difference {
  margin-top: 20px;
  background: white;
  border-radius: 6px;
  padding: 18px;
  text-align: center;
}
.product-detail .info .shipping .card .difference p {
  color: #1F1F1F;
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}

@media only screen and (min-device-width: 1140px) {
  .tabs {
    margin-top: 50px;
  }
  .tabs.mob {
    display: none !important;
  }
  .tabs.des {
    display: block;
  }
  .product-detail {
    width: 100%;
    background: #f3f4f6;
    padding: 80px 0;
    padding-top: 120px;
    /* Breadcrumbs */
    /* Layout */
    /* GALLERY */
    /* INFO PANEL */
  }
  .product-detail .content {
    max-width: 1390px;
    padding-inline: 50px;
    margin-inline: auto;
  }
  .product-detail .topbar {
    margin-bottom: 30px;
  }
  .product-detail .topbar .breadcrumbs {
    font-size: 14px;
    color: rgb(7.3090909091, 17.9681818182, 26.1909090909);
    display: flex;
    gap: 6px;
  }
  .product-detail .topbar .breadcrumbs a {
    text-decoration: none;
    color: rgb(12.8727272727, 31.6454545455, 46.1272727273);
  }
  .product-detail .topbar .breadcrumbs a:hover {
    color: #257180;
  }
  .product-detail .layout {
    display: flex;
    flex-direction: row;
    gap: 60px;
  }
  .product-detail .gallery {
    width: 55%;
    /* Tabs */
  }
  .product-detail .gallery .tabs {
    margin-top: 50px;
  }
  .product-detail .gallery .tabs.mob {
    display: none !important;
  }
  .product-detail .gallery .tabs.des {
    display: block;
  }
  .product-detail .gallery .tabs .tab-buttons {
    display: flex;
    background: #eaeaea;
    padding: 5px;
    border-radius: 30px;
    width: -moz-max-content;
    width: max-content;
    gap: 6px;
  }
  .product-detail .gallery .tabs .tab-buttons .tab {
    padding: 6px 20px;
    border-radius: 30px;
    background: none;
    border: none;
    cursor: pointer;
    color: rgb(1.7454545455, 4.2909090909, 6.2545454545);
    transition: 0.2s;
  }
  .product-detail .gallery .tabs .tab-buttons .tab.active {
    background: white;
    color: #1F1F1F;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  .product-detail .gallery .tabs .tab-content {
    display: none;
    margin-top: 20px;
  }
  .product-detail .gallery .tabs .tab-content.active {
    display: block;
  }
  .product-detail .gallery .tabs .spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .product-detail .gallery .tabs .spec-grid .spec h4 {
    font-size: 14px;
    font-weight: 600;
  }
  .product-detail .gallery .tabs .spec-grid .spec p {
    color: rgb(12.8727272727, 31.6454545455, 46.1272727273);
  }
  .product-detail .gallery .main-img-wrapper {
    width: 100%;
    height: 520px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .product-detail .gallery .main-img-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .product-detail .gallery .thumbs {
    margin-top: 20px;
    display: flex;
    gap: 14px;
  }
  .product-detail .gallery .thumbs .thumb {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    background: white;
    border: 2px solid transparent;
    overflow: hidden;
    cursor: pointer;
    transition: 0.2s;
  }
  .product-detail .gallery .thumbs .thumb.active, .product-detail .gallery .thumbs .thumb:hover {
    border-color: #e18d5e;
  }
  .product-detail .gallery .thumbs .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .product-detail .info {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* Colors */
    /* Quantity */
    /* Buttons */
    /* Shipping box */
  }
  .product-detail .info h1 {
    font-size: 32px;
    color: #1F1F1F;
    font-weight: 600;
    margin: 0;
  }
  .product-detail .info .sub-cat {
    font-size: 16px;
    color: #1F1F1F;
  }
  .product-detail .info .desc-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e4e4e4;
  }
  .product-detail .info .desc-box h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .product-detail .info .desc-box p {
    color: rgb(12.8727272727, 31.6454545455, 46.1272727273);
    font-size: 15px;
    line-height: 1.6;
  }
  .product-detail .info .color-section .selected-color {
    margin-top: 20px;
    font-size: 16px;
    opacity: 0.7;
  }
  .product-detail .info .color-section label {
    font-weight: 600;
    color: #1F1F1F;
  }
  .product-detail .info .color-section .color-swatches {
    margin-top: 10px;
    display: flex;
    gap: 10px;
  }
  .product-detail .info .color-section .color-swatches .swatch {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 2px solid white;
    cursor: pointer;
  }
  .product-detail .info .color-section .color-swatches .swatch.active {
    border-color: #e18d5e;
  }
  .product-detail .info .size-section {
    margin-top: 0;
  }
  .product-detail .info .size-section label {
    font-weight: 600;
    color: #1F1F1F;
  }
  .product-detail .info .size-section .size-options {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
  .product-detail .info .size-section .size-options .size-option {
    padding: 8px 14px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px;
  }
  .product-detail .info .size-section .size-options .size-option.active, .product-detail .info .size-section .size-options .size-option:hover {
    border-color: #e18d5e;
    background: white;
  }
  .product-detail .info .size-section .selected-size {
    margin-top: 14px;
    font-size: 16px;
    opacity: 0.7;
  }
  .product-detail .info .qty-box label {
    font-weight: 600;
    color: #1F1F1F;
  }
  .product-detail .info .qty-box .qty-controls {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .product-detail .info .qty-box .qty-controls button {
    width: 32px;
    height: 32px;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
  }
  .product-detail .info .qty-box .qty-controls button:hover {
    border-color: #e18d5e;
  }
  .product-detail .info .qty-box .qty-controls .qty {
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 4px;
  }
  .product-detail .info .actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .product-detail .info .actions .offer-btn {
    height: 50px;
    background: #e18d5e;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.2s;
  }
  .product-detail .info .actions .offer-btn:hover {
    background: rgb(220.1937172775, 122.7361256545, 68.2062827225);
  }
  .product-detail .info .actions .request-btn {
    height: 50px;
    background: #1F1F1F;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
  }
  .product-detail .info .actions .request-btn:hover {
    background: rgb(41.2, 41.2, 41.2);
  }
  .product-detail .info .shipping {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #dcdcdc;
  }
  .product-detail .info .shipping h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  .product-detail .info .shipping .row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }
  .product-detail .info .shipping .row:last-child {
    border-bottom: none;
  }
  .product-detail .info .shipping .row .label {
    color: rgb(18.4363636364, 45.3227272727, 66.0636363636);
    font-size: 14px;
  }
  .product-detail .info .shipping .row .value {
    color: #1F1F1F;
    font-weight: 500;
  }
}/*# sourceMappingURL=product-detail.css.map */