@charset "UTF-8";
/* ==================== PRODUCT DETAIL - NEW DESIGN ==================== */
/* === Layout === */
.layout-productDetail-new {
  background: #FAFAFA; }

.layout-productDetail-new .productDetail-main {
  display: grid;
  grid-template-columns: 810px 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
  padding-top: 24px; }

.layout-productDetail-new .productDetail-gallery {
  grid-column: 1;
  grid-row: 1; }

.layout-productDetail-new .productDetail-info {
  grid-column: 2;
  grid-row: 1 / 3; }

.layout-productDetail-new .productDetail-tabs {
  grid-column: 1;
  grid-row: 2; }

/* === Info Card === */
.pd-info-card {
  background: #fff;
  border: 1px solid #F5F5F5;
  border-radius: 8px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 130px; }

/* Breadcrumb */
.pd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap; }
  .pd-breadcrumb a, .pd-breadcrumb span {
    font-family: 'Averta', sans-serif;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: -0.5px;
    color: #0A0A0A;
    text-decoration: none; }
  .pd-breadcrumb span.active {
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden; }
  .pd-breadcrumb .separator {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; }
    .pd-breadcrumb .separator svg {
      width: 6px;
      height: 10px; }

/* Title + Meta */
.pd-title {
  font-family: 'Averta', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -2.5px;
  color: #0A0A0A;
  margin: 0; }

.pd-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 10px;
  font-family: 'Averta', sans-serif;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: #404040; }

.pd-meta__divider {
  width: 1px;
  height: 19px;
  background: #0A0A0A;
  flex-shrink: 0; }

.pd-meta strong {
  font-weight: 600; }

/* Price */
.pd-price {
  font-family: 'Averta', sans-serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 30px;
  letter-spacing: -0.1px;
  color: #034EA2;
  margin: 0; }

/* Description */
.pd-desc {
  font-family: 'Averta', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -0.5px;
  color: #404040;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0; }
  .pd-desc.is-expanded {
    -webkit-line-clamp: unset;
    overflow: visible; }

.pd-readmore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Averta', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.2px;
  color: #0A0A0A;
  text-decoration: underline;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-top: 16px; }
  .pd-readmore svg {
    width: 24px;
    height: 24px; }

/* CTA Buttons */
.pd-cta {
  display: flex;
  flex-direction: column;
  gap: 12px; }

.pd-btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 50px;
  padding: 10px 40px;
  background: #034EA2;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Averta', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 0; }
  .pd-btn-contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, #00AEEF 0.08%, #034EA2 99.97%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: 0; }
  .pd-btn-contact span, .pd-btn-contact svg {
    position: relative;
    z-index: 1; }
  .pd-btn-contact:hover {
    color: #fff; }
    .pd-btn-contact:hover::before {
      transform: scaleX(1); }
  .pd-btn-contact svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0; }

.pd-btn-download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 50px;
  padding: 10px 24px;
  background: #DEF3FF;
  color: #034EA2;
  border: 1px solid #034EA2;
  border-radius: 4px;
  font-family: 'Averta', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer; }
  .pd-btn-download svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0; }
  .pd-btn-download:hover {
    background: #EFFAFF;
    color: #034EA2; }

.pd-btn-buynow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 50px;
  padding: 10px 40px;
  background: #00AEEF;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Averta', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 0; }
  .pd-btn-buynow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, #034EA2 0.08%, #00AEEF 99.97%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: 0; }
  .pd-btn-buynow span, .pd-btn-buynow svg {
    position: relative;
    z-index: 1; }
  .pd-btn-buynow:hover {
    color: #fff; }
    .pd-btn-buynow:hover::before {
      transform: scaleX(1); }
  .pd-btn-buynow svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0; }

.pd-buynow-form {
  width: 100%;
  margin: 0;
  padding: 0; }

/* === Gallery === */
.pd-gallery {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #F5F5F5; }

.pd-gallery .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 1/1;
  object-fit: contain; }

.pd-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 8px -2px rgba(16, 24, 40, 0.1), 0 2px 4px -2px rgba(16, 24, 40, 0.06);
  outline: none !important; }
  .pd-gallery-nav svg {
    width: 24px;
    height: 24px; }
  .pd-gallery-nav.pd-gallery-prev {
    left: 28px;
    background: #fff;
    border: 1px solid #034EA2;
    color: #034EA2; }
  .pd-gallery-nav.pd-gallery-next {
    right: 28px;
    background: #fff;
    border: 1px solid #034EA2;
    color: #034EA2; }
  .pd-gallery-nav:hover {
    background: #034EA2;
    border: none;
    color: #fff; }

/* Gallery pagination — custom pill indicators */
.pd-gallery-pagination {
  position: absolute;
  bottom: 42px !important;
  left: 50% !important;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: auto !important;
  z-index: 2; }

.pd-gallery-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 4px;
  border-radius: 2px;
  background: #0A0A0A;
  opacity: 0.4;
  margin: 0 !important;
  transition: width 0.3s, opacity 0.3s; }

.pd-gallery-pagination .swiper-pagination-bullet-active {
  width: 40px;
  opacity: 1; }

/* === Tabs Section === */
.pd-tabs {
  margin-top: 40px;
  border-radius: 8px;
  overflow: hidden; }

.pd-tabs__nav {
  display: flex; }

.pd-tabs__tab {
  flex: 1;
  min-width: 0;
  padding: 16px 32px;
  text-align: left;
  font-family: 'Averta', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -1px;
  color: #737373;
  background: #F5F5F5;
  border: none;
  border-bottom: 1px solid #D4D4D4;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  outline: none !important; }
  .pd-tabs__tab.active {
    color: #034EA2;
    background: #fff;
    border-bottom: 3px solid #034EA2; }

.pd-tabs__content {
  background: #fff;
  border: 1px solid #F5F5F5;
  border-top: none;
  padding: 32px 20px 20px; }

.pd-tabs__panel {
  display: none; }
  .pd-tabs__panel.active {
    display: block; }

/* Spec Table */
.pd-spec-title {
  font-family: 'Averta', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -1px;
  color: #0A0A0A;
  margin: 0 0 16px; }

.pd-spec-table {
  width: 100%;
  border-collapse: collapse; }
  .pd-spec-table td {
    padding: 12px 24px;
    font-family: 'Averta', sans-serif;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: -0.5px;
    color: #0A0A0A;
    background: #FAFAFA;
    border: 1px solid #F5F5F5;
    width: 50%; }
    .pd-spec-table td strong {
      font-weight: 600; }

.pd-spec-table__header td {
  background: #00AEEF !important;
  border-color: #DEF3FF !important;
  color: #fff !important;
  font-weight: 600; }

/* Tab Description Content */
.pd-tab-desc {
  font-family: 'Averta', sans-serif;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: -0.5px;
  color: #0A0A0A; }
  .pd-tab-desc img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0; }

/* === Related Products === */
.pd-related {
  padding: 72px 0; }
  .pd-related__title {
    font-family: 'Averta', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 62px;
    letter-spacing: -2.5px;
    color: #034EA2;
    margin: 0 0 40px; }
  .pd-related__slider-wrap {
    position: relative; }
  .pd-related__slider {
    overflow: hidden; }
  .pd-related__slider .swiper-slide {
    height: auto;
    min-width: 338px; }
  .pd-related__slider .swiper-slide .product-loop {
    height: 100%;
    padding: 0;
    width: 100% !important;
    max-width: 100%; }
  .pd-related__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 25px;
    right: 25px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 2; }
  .pd-related__prev, .pd-related__next {
    pointer-events: auto;
    width: 50px;
    height: 50px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px -2px rgba(16, 24, 40, 0.1), 0 2px 4px -2px rgba(16, 24, 40, 0.06); }
    .pd-related__prev svg, .pd-related__next svg {
      width: 24px;
      height: 24px; }
    .pd-related__prev:hover, .pd-related__next:hover {
      background: #034EA2;
      border: none;
      color: #fff;
      outline: none !important; }
  .pd-related__prev {
    background: #fff;
    border: 1px solid #034EA2;
    color: #034EA2; }
  .pd-related__next {
    background: #fff;
    border: 1px solid #034EA2;
    color: #034EA2; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1199px) {
  .layout-productDetail-new .productDetail-main {
    grid-template-columns: 55% 1fr;
    gap: 16px; }
  .pd-title {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -1.7px; }
  .pd-price {
    font-size: 24px; } }

@media (max-width: 991px) {
  .layout-productDetail-new .productDetail-main {
    display: flex;
    flex-direction: column; }
  .layout-productDetail-new .productDetail-gallery {
    order: 1; }
  .layout-productDetail-new .productDetail-info {
    order: 2; }
  .layout-productDetail-new .productDetail-tabs {
    order: 3; }
  .pd-info-card {
    position: static;
    padding: 24px 16px; }
  .pd-title {
    font-size: 28px;
    line-height: 38px; }
  .pd-tabs__tab {
    font-size: 14px;
    padding: 16px 8px; }
  .pd-related__title {
    font-size: 32px;
    line-height: 42px; }
  .pd-related__prev, .pd-related__next {
    width: 40px;
    height: 40px; } }

@media (max-width: 767px) {
  .pd-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.7px; }
  .pd-price {
    font-size: 20px; }
  .pd-meta {
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 14px; }
  .pd-gallery-nav {
    width: 36px;
    height: 36px; }
    .pd-gallery-nav.pd-gallery-prev {
      left: 12px; }
    .pd-gallery-nav.pd-gallery-next {
      right: 12px; }
  .pd-gallery-pagination {
    bottom: 20px !important; }
  .pd-tabs__nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
  .pd-tabs__tab {
    white-space: nowrap;
    min-width: auto;
    font-size: 16px;
    padding: 12px 16px;
    line-height: 23px; }
  .pd-tabs__content {
    padding: 20px 12px; }
  .pd-related__title {
    font-size: 24px;
    line-height: 32px; }
  .pd-related__nav {
    left: 8px;
    right: 8px; }
  .pd-related__prev, .pd-related__next {
    width: 36px;
    height: 36px; }
    .pd-related__prev svg, .pd-related__next svg {
      width: 18px;
      height: 18px; } }

/* ===== Responsive Scale Rule — Product detail ===== */
@media (min-width: 1200px) and (max-width: 1599px) {
  .pd-title {
    font-size: 36px;
    line-height: 48px; }
  .pd-related {
    padding: 64px 0; }
  .pd-related__title {
    font-size: 40px;
    line-height: 52px; } }

@media (min-width: 992px) and (max-width: 1199px) {
  .pd-related {
    padding: 60px 0; }
  .pd-related__title {
    font-size: 36px;
    line-height: 48px; } }

@media (max-width: 991px) {
  .pd-related {
    padding: 48px 0; } }

@media (max-width: 575px) {
  .pd-related {
    padding: 40px 0; } }

/* ==================== VARIANTS (product detail) ==================== */
.pd-variants .selector-wrapper {
  display: none; }

.pd-variants .select-swatch .swatch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 0 8px; }
  .pd-variants .select-swatch .swatch .title-swap {
    min-width: auto;
    width: 110px;
    flex: 0 0 auto;
    margin-bottom: 0; }
  .pd-variants .select-swatch .swatch .select-swap {
    flex: 1;
    width: auto; }

/* ==================== QUANTITY (product detail) ==================== */
.pd-quantity {
  display: flex;
  align-items: center;
  gap: 16px; }
  .pd-quantity__label {
    font-family: 'Averta', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: -0.5px;
    color: #0A0A0A; }

.pd-qty-box {
  display: inline-flex;
  align-items: center;
  border: 1px solid #E5E5E5;
  border-radius: 4px;
  overflow: hidden;
  background: #fff; }

.pd-qty-btn {
  width: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAFA;
  border: none;
  color: #0A0A0A;
  cursor: pointer;
  transition: background 0.2s; }
  .pd-qty-btn:hover {
    background: #EFFAFF;
    color: #034EA2; }

.pd-qty-input {
  width: 56px;
  height: 44px;
  padding: 0;
  text-align: center;
  border: none;
  border-left: 1px solid #E5E5E5;
  border-right: 1px solid #E5E5E5;
  background: #fff;
  font-family: 'Averta', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #0A0A0A;
  border-radius: 0; }
  .pd-qty-input:focus {
    outline: none; }
