/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */


/* Breadcrumb */
.pd-breadcrumb {
  max-width: var(--container);
  margin: 0 auto;
  padding: 17px 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #A8A29E;
}

.pd-breadcrumb a {
  color: #A8A29E;
  transition: color 0.2s;
}

.pd-breadcrumb a:hover {
  color: var(--black);
}

.pd-breadcrumb .current {
  color: var(--black);
}

/* Config Summary Bar */
.pd-config-bar-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 320;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 0.28s ease, opacity 0.2s ease;
}

.pd-config-bar-wrapper.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.pd-config-bar {
  max-width: var(--container);
  height: 96px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 56px;
  background: var(--white);
  position: relative;
  z-index: 120;
}

.pd-config-bar__thumb-mask {
  position: relative;
  flex: 1 1 567px;
  max-width: 567px;
  min-width: 0;
  height: 95px;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.pd-config-bar__thumb-mask.is-dragging {
  cursor: grabbing;
}

.pd-config-bar__thumb-mask::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 86px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.88) 62%, var(--white) 100%);
  pointer-events: none;
  z-index: 2;
}

.pd-config-bar__thumb-list {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 95.6px;
  padding: 12px 0;
  margin-left: 2px;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  touch-action: pan-y;
  overscroll-behavior-inline: contain;
}

.pd-config-bar__thumb-list::-webkit-scrollbar {
  display: none;
}

.pd-config-bar__thumb-item {
  flex: 0 0 56px;
  width: 56px;
  height: 71.6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5.6px;
}

.pd-config-bar__thumb-item img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8.4px;
  box-shadow: 0 0 0 3px var(--white), 0 1px 6px rgba(0, 0, 0, 0.24);
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.pd-config-bar__thumb-item span {
  font-size: 8.4px;
  font-weight: 400;
  line-height: 10.17px;
  letter-spacing: 0;
  color: var(--black);
  white-space: nowrap;
}

.pd-config-bar__checkout {
  flex: 0 0 697px;
  width: 697px;
  height: 96px;
  display: flex;
  align-items: center;
}

.pd-config-bar__divider {
  flex: 0 0 1px;
  width: 1px;
  height: 80px;
  background: var(--black);
}

.pd-config-bar__panel {
  width: 696px;
  height: 96px;
  padding: 20px 0 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.pd-config-bar__prices {
  flex: 0 0 200px;
  width: 200px;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.pd-config-bar__price-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.pd-config-bar__price-item--optional {
  width: 123px;
  padding-left: 16px;
  border-left: 1px solid rgba(0, 0, 0, 0.16);
}

.pd-config-bar__amount {
  font-size: 20px;
  font-weight: 600;
  line-height: 24.2px;
  letter-spacing: 0;
  color: var(--black);
  white-space: nowrap;
}

.pd-config-bar__amount--optional {
  font-weight: 400;
  color: var(--brand);
}

.pd-config-bar__label {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.52px;
  letter-spacing: 0;
  color: #A8A29E;
  white-space: nowrap;
}

.pd-config-bar__actions {
  flex: 0 0 440px;
  width: 440px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.pd-config-bar__btn {
  width: 200px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  letter-spacing: 0;
  white-space: nowrap;
  transition: opacity 0.2s, border-color 0.2s;
}

.pd-config-bar__btn svg {
  flex: 0 0 24px;
}

.pd-config-bar__btn--outline {
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--black);
}

.pd-config-bar__btn--brand {
  color: var(--white);
  background: var(--brand);
}

.pd-config-bar__btn:hover {
  opacity: 0.88;
}

/* Config Details Drawer */
body.pd-config-drawer-open,
body.pd-cart-drawer-open,
body.pd-option-guide-drawer-open,
body.pd-shipping-modal-open,
body.pd-chat-modal-open,
body.pd-gallery-lightbox-open {
  overflow: hidden;
}

.pd-config-drawer[hidden] {
  display: none;
}

.pd-config-drawer {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
}

.pd-config-drawer.is-open {
  pointer-events: auto;
}

.pd-config-drawer__scrim {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.28s ease;
  cursor: default;
  z-index: 1;
}

.pd-config-drawer.is-open .pd-config-drawer__scrim {
  opacity: 1;
}

.pd-config-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(738px, 100vw);
  height: 100vh;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -12px 0 28px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.pd-config-drawer.is-open .pd-config-drawer__panel {
  transform: translateX(0);
}

.pd-config-drawer__scroll {
  height: calc(100% - 181px);
  padding: 0 32px 64px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  background: var(--white);
}

.pd-config-drawer__scroll::-webkit-scrollbar {
  display: none;
}

.pd-config-drawer__head {
  width: 100%;
  height: 77px;
  padding: 24px 32px 0px;
}

.pd-config-drawer__head h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 29.05px;
  letter-spacing: 0;
  color: var(--black);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  padding-bottom: 22px;
}

.pd-config-drawer__group {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 40px;
}

.pd-config-drawer__group+.pd-config-drawer__group {
  padding-top: 40px;
}

.pd-config-drawer__group-title {
  display: flex;
  align-items: center;
  gap: 5px;
  min-height: 24px;
  color: var(--black);
}

.pd-config-drawer__group-title img {
  width: 24px;
}

.pd-config-drawer__group-title span:not(.pd-config-drawer__count) {
  font-size: 20px;
  font-weight: 600;
  line-height: 24.2px;
  letter-spacing: 0;
}

.pd-config-drawer__count {
  width: 20px;
  height: 20px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  line-height: 14.52px;
}

.pd-config-drawer__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pd-config-drawer__item {
  width: 100%;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.pd-config-drawer__item-main {
  width: 297px;
  min-width: 0;
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.pd-config-drawer__item-main img {
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
}

.pd-config-drawer__item-copy {
  width: 185px;
  height: 100px;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.pd-config-drawer__item-copy div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pd-config-drawer__item-copy h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.36px;
  letter-spacing: 0;
  color: var(--black);
}

.pd-config-drawer__item-copy p {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.52px;
  letter-spacing: 0;
  color: #A8A29E;
  white-space: nowrap;
}

.pd-config-drawer__item-copy span {
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  letter-spacing: 0;
  color: var(--black);
}

.pd-config-drawer__item-edit {
  flex: 0 0 109px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--brand);
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  letter-spacing: 0;
  white-space: nowrap;
}

.pd-config-drawer__item-edit svg {
  flex: 0 0 20px;
}

.pd-config-drawer__item-edit:hover {
  opacity: 0.82;
}

.pd-config-drawer__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 104px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.pd-config-drawer__total {
  width: 200px;
  height: 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.pd-config-drawer__total span {
  font-size: 20px;
  font-weight: 600;
  line-height: 24.2px;
  letter-spacing: 0;
  color: var(--brand);
}

.pd-config-drawer__total small {
  font-size: 12px;
  font-weight: 400;
  line-height: 14.52px;
  letter-spacing: 0;
  color: #A8A29E;
}

.pd-config-drawer__label--mobile,
.pd-config-drawer__btn-text--mobile {
  display: none;
}

.pd-config-drawer__btn {
  width: 217px;
  height: 56px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  letter-spacing: 0;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.pd-config-drawer__btn--outline {
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--black);
}

.pd-config-drawer__btn--brand {
  color: var(--white);
  background: var(--brand);
}

.pd-config-drawer__btn:hover {
  opacity: 0.88;
}

/* Cart Drawer */
.pd-cart-drawer[hidden] {
  display: none;
}

.pd-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 540;
  pointer-events: none;
}

.pd-cart-drawer.is-open {
  pointer-events: auto;
}

.pd-cart-drawer__scrim {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.28s ease;
  cursor: default;
  z-index: 1;
}

.pd-cart-drawer.is-open .pd-cart-drawer__scrim {
  opacity: 1;
}

.pd-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(699px, 100vw);
  height: 100vh;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -12px 0 28px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.pd-cart-drawer.is-open .pd-cart-drawer__panel {
  transform: translateX(0);
}

.pd-cart-drawer__head {
  width: 100%;
  height: 100px;
  padding: 32px 32px 32px;
  /* display: flex;
  align-items: center;
  justify-content: space-between; */
  background: var(--white);

}

.pd-cart-drawer__head-wrapper {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.pd-cart-drawer__head h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 29.05px;
  letter-spacing: 0;
  color: var(--black);
  padding-bottom: 32px;
}

.pd-cart-drawer__close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1A1C1C;
  color: var(--white);
  transition: opacity 0.2s;
  margin-top: -7px;
}

.pd-cart-drawer__close:hover {
  opacity: 0.86;
}

.pd-cart-drawer__list {
  height: calc(100% - 278px);
  padding: 0 32px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  background: var(--white);
}

.pd-cart-drawer__list::-webkit-scrollbar {
  display: none;
}

.pd-cart-drawer__item {
  min-height: 316px;
  padding: 30px 0;
  display: flex;
  gap: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pd-cart-drawer__item:last-child {
  border-bottom: none;
}

.pd-cart-drawer__image {
  flex: 0 0 84px;
  width: 84px;
  height: 124px;
  object-fit: cover;
  border-radius: 8px;
}

.pd-cart-drawer__content {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 236px;
  display: flex;
  flex-direction: column;
}

.pd-cart-drawer__top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pd-cart-drawer__top h3 {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 24.2px;
  letter-spacing: 0;
  color: #1A1C1C;
}

.pd-cart-drawer__top span,
.pd-cart-drawer__price {
  font-size: 20px;
  font-weight: 300;
  line-height: 24.2px;
  letter-spacing: 0;
  color: #44403C;
  white-space: nowrap;
}

.pd-cart-drawer__top span {
  flex: 0 0 auto;
}

.pd-cart-drawer__price {
  margin-top: 16px;
}

.pd-cart-drawer__options {
  max-width: 100%;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pd-cart-drawer__item.is-options-open {
  min-height: 613px;
}

.pd-cart-drawer__item.is-options-open .pd-cart-drawer__content {
  min-height: 533px;
}

.pd-cart-drawer__option {
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #44403C;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  letter-spacing: 0;
  text-align: left;
}

.pd-cart-drawer__option--single {
  cursor: default;
}

.pd-cart-drawer__option span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pd-cart-drawer__option--toggle svg {
  flex: 0 0 16px;
  transition: transform 0.2s ease;
}

.pd-cart-drawer__option--toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.pd-cart-drawer__option-list {
  width: 100%;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pd-cart-drawer__option-list[hidden] {
  display: none;
}

.pd-cart-drawer__option-text {
  max-width: 423px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  letter-spacing: 0;
  color: #44403C;
}

.pd-cart-drawer__tools {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 60px;
}

.pd-cart-drawer__qty {
  width: 176px;
  height: 54px;
  padding: 0 20px;
  border: 1px solid var(--black);
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  color: var(--black);
}

.pd-cart-drawer__qty button {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pd-cart-drawer__qty span {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.36px;
  letter-spacing: 0;
  color: var(--black);
}

.pd-cart-drawer__remove {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--black);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}

.pd-cart-drawer__qty button:hover,
.pd-cart-drawer__remove:hover,
.pd-cart-drawer__option--toggle:hover {
  opacity: 0.78;
}

.pd-cart-drawer__footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 178px;
  padding: 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--white);
  box-shadow: 0px -6px 10px 0px rgba(0, 0, 0, 0.06);

}

.pd-cart-drawer__summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-cart-drawer__summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pd-cart-drawer__summary-row span {
  font-size: 20px;
  font-weight: 700;
  line-height: 24.2px;
  letter-spacing: 0;
  color: #1A1C1C;
}

.pd-cart-drawer__summary-row strong {
  font-size: 20px;
  font-weight: 600;
  line-height: 24.2px;
  letter-spacing: 0;
  color: var(--black);
}

.pd-cart-drawer__summary p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  letter-spacing: 0;
  color: #44403C;
}

.pd-cart-drawer__footer-actions {
  display: flex;
  gap: 20px;
}

.pd-cart-drawer__btn {
  width: calc((100% - 20px) / 2);
  height: 56px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  letter-spacing: 0;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.pd-cart-drawer__btn--outline {
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--black);
}

.pd-cart-drawer__btn--brand {
  color: var(--white);
  background: var(--brand);
}

.pd-cart-drawer__btn svg {
  flex: 0 0 24px;
}

.pd-cart-drawer__btn:hover {
  opacity: 0.88;
}

/* Option Guide Drawer */
.pd-option-guide-drawer[hidden] {
  display: none;
}

.pd-option-guide-drawer {
  position: fixed;
  inset: 0;
  z-index: 560;
  pointer-events: none;
}

.pd-option-guide-drawer.is-open {
  pointer-events: auto;
}

.pd-option-guide-drawer__scrim {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.28s ease;
  cursor: default;
  z-index: 1;
}

.pd-option-guide-drawer.is-open .pd-option-guide-drawer__scrim {
  opacity: 1;
}

.pd-option-guide-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(738px, 100vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -12px 0 28px rgba(0, 0, 0, 0.08);
  z-index: 2;
  overflow: hidden;
}

.pd-option-guide-drawer.is-open .pd-option-guide-drawer__panel {
  transform: translateX(0);
}

.pd-option-guide-drawer__head {
  flex: 0 0 69px;
  height: 69px;
  padding: 20px 32px 0;
  background: var(--white);
}

.pd-option-guide-drawer__head h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 29.05px;
  letter-spacing: 0;
  color: var(--black);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pd-option-guide-drawer__body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 32px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
}

.pd-option-guide-drawer__body::-webkit-scrollbar {
  display: none;
}

.pd-option-guide-drawer__media {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 674 / 379;
  overflow: hidden;
  background: #D9D9D9;
}

.pd-option-guide-drawer__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.pd-option-guide-drawer__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-option-guide-drawer__body .pd-brand-video__wrap {
  flex: 0 0 auto;
}

.pd-option-guide-drawer__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.pd-option-guide-drawer__copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-option-guide-drawer__copy h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  color: var(--black);
}

.pd-option-guide-drawer__copy p {
  font-size: 14px;
  font-weight: 400;
  /* line-height: 16.94px; */
  line-height: 1.2;
  letter-spacing: 0;
  color: #44403C;
}

.pd-option-guide-drawer__footer {
  flex: 0 0 156px;
  height: 156px;
  padding: 0 32px 100px;
  background: var(--white);
}

.pd-option-guide-drawer__return {
  width: 200px;
  height: 56px;
  padding: 16px 24px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  letter-spacing: 0;
}

.pd-option-guide-drawer__return:hover {
  opacity: 0.88;
}

/* Main Layout */
.pd-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px 60px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* Gallery */
.pd-gallery {
  flex: 0 0 578px;
  display: flex;
  gap: 24px;
  position: sticky;
  top: 118px;
}

.pd-gallery__thumbs-wrap {
  position: relative;
  flex: 0 0 86px;
}

.pd-gallery__thumbs-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 97px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
}

.pd-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: calc(127px * 5 + 16px * 4);
  overflow-y: auto;
  scrollbar-width: none;
}

.pd-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.pd-gallery__thumb {
  width: 86px;
  height: 127px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  flex-shrink: 0;
}

.pd-gallery__thumb.active {
  border-color: var(--brand);
}

.pd-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-gallery__main {
  width: 468px;
  flex-shrink: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 692px;
}

.pd-gallery__main .swiper-wrapper {
  height: 100%;
}

.pd-gallery__main .swiper-slide {
  height: 100%;
  position: relative;
}

.pd-gallery__main .swiper-slide>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.pd-gallery__fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 15%;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  background: none;
  border: none;
  padding: 0;
  transition: opacity 0.3s;
}

.pd-gallery__fav img {
  width: 100%;
  height: auto;
  display: block;
}

.pd-gallery__main .swiper-slide:hover .pd-gallery__fav,
.pd-gallery__fav:focus-visible {
  opacity: 1;
}

.pd-gallery__pagination {
  display: none;
}

/* Gallery Lightbox */
.pd-gallery-lightbox[hidden] {
  display: none;
}

.pd-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: var(--white);
}

.pd-gallery-lightbox__counter {
  position: absolute;
  top: 20px;
  left: 12px;
  z-index: 2;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
}

.pd-gallery-lightbox__close {
  position: absolute;
  top: 16px;
  right: 22px;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: opacity 0.2s;
  outline: none;
}

.pd-gallery-lightbox__close:hover {
  opacity: 0.7;
}

.pd-gallery-lightbox__stage {
  /* width: min(80vw, 980px); */
  height: calc(100vh - 120px);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-gallery-lightbox__image {
  display: block;
  /* width: 100%; */
  height: 100%;
  object-fit: contain;
}

.pd-gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 0.2s, opacity 0.2s;
}

.pd-gallery-lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.pd-gallery-lightbox__nav--prev {
  left: 12px;
}

.pd-gallery-lightbox__nav--next {
  right: 20px;
}

/* Product Info */
.pd-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
}

/* Brand */
.pd-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #A8A29E;
  transition: color 0.2s;
}

.pd-brand:hover {
  color: var(--black);
}

/* Title */
.pd-title {
  font-size: 32px;
  font-weight: 700;
  color: #1A1C1C;
  line-height: 1;
  padding: 16px 0;
}

/* Badges */
.pd-badges {
  display: flex;
  gap: 12px;
  padding: 8px 0 10px;
}

.pd-badge {
  display: inline-block;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
}

.pd-badge--luxus {
  background: #9C27B0;
}

.pd-badge--sale {
  background: #F6004E;
}

.pd-badge--hot {
  background: #FF3604;
}

/* Price Block */
.pd-price-block {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pd-price {
  display: flex;
  /* align-items: baseline; */
}

.pd-price__main {
  font-size: 40px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}

.pd-price__decimal {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-top: -7px;
}

.pd-price__currency {
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-left: 2px;
  margin-top: -7px;
}

.pd-price__old {
  font-size: 24px;
  font-weight: 300;
  color: #A8A29E;
  text-decoration: line-through;
  /* margin-left: 12px; */
}

.pd-tax {
  font-size: 14px;
  font-weight: 400;
  color: #44403C;
  padding: 14px 0 8px;
  display: inline-block;
}

.pd-tax a {
  text-decoration: underline;
}

/* Shipping bar */
.pd-shipping-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
}

.pd-shipping-bar span {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

/* Banner */
.pd-banner {
  border-radius: 12px;
  overflow: hidden;
}

.pd-banner img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

/* Features */
.pd-features {
  display: flex;
  gap: 38px;
  padding: 16px 20px 24px;
  /* flex: 1; */
}

.pd-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
}

.pd-feature__icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-feature__icon img {
  display: block;
  max-width: 100%;
}

.pd-feature__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.pd-feature__text strong {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  /* white-space: nowrap; */
  /* overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  display: block; */
  height: 22px;
  line-height: 22px;
  overflow: hidden;
}

.pd-feature__text span {
  font-size: 12px;
  font-weight: 400;
  color: #A8A29E;
  overflow: hidden;
  height: 15px;
  line-height: 15px;
}

/* Config Tabs */
.pd-config-tabs {
  display: flex;
  gap: 24px;
  padding: 20px 0 40px;
}

.pd-config-tab {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 20px;
  border-radius: 8px;
  background: var(--gray-1);
  border: 1px solid rgba(168, 162, 158, 0.4);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.pd-config-tab__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  color: var(--black);
}

.pd-config-tab__icon svg {
  display: block;
}

.pd-config-tab__text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pd-config-tab.active {
  background: rgba(245, 49, 68, 0.1);
  border-color: var(--brand);
}

.pd-config-tab__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}

.pd-config-tab__desc {
  font-size: 12px;
  font-weight: 400;
  color: #A8A29E;
}

.pd-config-tab.active .pd-config-tab__icon {
  color: var(--brand);
}

.pd-config-tab.active .pd-config-tab__title {
  color: var(--brand);
}

.pd-config-tab.active .pd-config-tab__desc {
  color: rgba(245, 49, 68, 0.5);
}

/* Options */
.pd-options {
  display: flex;
  flex-direction: column;
  gap: 40px;
  scroll-margin-top: 120px;
}

.pd-option {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  padding: 0 24px;
}

.pd-option__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.pd-option__header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pd-option__header-left img {
  width: 24px;
}

.pd-option__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}

.pd-option__discount {
  font-size: 14px;
  font-weight: 400;
  color: var(--brand);
  line-height: 1;
}

.pd-option__chevron {
  transition: transform 0.3s;
  flex-shrink: 0;
  width: 16px;
  height: 3px;
  background-color: #000000;
  position: relative;
}

.pd-option__chevron::after {
  position: absolute;
  content: '';
  display: block;
  height: 16px;
  width: 3px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background-color: #000000;
}

.pd-option.open .pd-option__chevron::after {
  display: none;
}

.pd-option__body {
  max-height: 0;
  overflow: hidden;
  /* padding-bottom: 32px; */
  transition: max-height 0.4s ease;
}

.pd-option.open .pd-option__body {
  max-height: 5000px;
}

.pd-option__desc {
  font-size: 12px;
  font-weight: 400;
  color: #A8A29E;
  padding: 16px 0 12px;
  line-height: 1.2;
}

.pd-option__warning_wrap {
  padding-top: 12px;
}

.pd-option__warning {
  font-size: 12px;
  font-weight: 400;
  color: var(--brand);
  line-height: 1.2;
  /* padding: 8px 0; */
  margin-bottom: 5px;
}

.pd-option__warning:last-child {
  margin-bottom: 0;
}

.pd-option__sub:last-child {
  padding-bottom: 20px;
}

/* Sub-option */
.pd-option__sub {
  padding: 16px 0 4px;
}

.pd-option__sub:last-child {
  border-bottom: none;
}

.pd-option__sub-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  /* margin-bottom: 12px; */
}

.pd-option__sub-left {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}

.pd-option__sub-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.pd-option__sub-desc {
  font-size: 14px;
  font-weight: 400;
  color: #A8A29E;
  line-height: 1.2;
}

.pd-option__sub-desc a,
.pd-option__sub-more {
  text-decoration: underline;
  color: rgba(68, 64, 60, 1);
  padding-left: 5px;
  font: inherit;
  line-height: inherit;
  display: inline;
  vertical-align: baseline;
}

/* .pd-option__expand {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  cursor: pointer;
  flex-shrink: 0;
} */

.pd-option__sub .pd-option__choices {
  padding-bottom: 0;
}

.pd-option__sub .pd-option__choices {
  padding-top: 20px;
}

/* Option Choices Grid */
.pd-option__choices {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 8px 0 32px;
}

.pd-option__choice {
  width: 86px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  position: relative;
}

.pd-option__choice.is-choice-hidden {
  display: none;
}

.pd-option__choice-img {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #fff;
  transition: border-color 0.2s;
  box-shadow: 0px 0px 4.74px 0px rgba(0, 0, 0, 0.25);
}

.pd-option__choice.selected .pd-option__choice-img {
  border-color: var(--brand);
}

.pd-option__choice-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-option__choice-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.pd-option__choice-name {
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.8);
  ;
  line-height: 1;
}

.pd-option__choice-price {
  font-size: 12px;
  font-weight: 400;
  color: var(--brand);
}

.pd-option__choice-price s {
  color: #A8A29E;
}

.pd-option__choice.disabled {
  cursor: not-allowed;
  filter: grayscale(100%);
  position: relative;
}

.pd-option__choice.disabled .pd-option__choice-info {
  flex-direction: row;
  /* align-items: center; */
  justify-content: center;
}

.pd-option__choice.disabled .pd-option__choice-info svg {
  margin-top: -3px;
}

.pd-option__choice.disabled .pd-option__choice-img {
  position: relative;
}

.pd-option__choice.disabled .pd-option__choice-img::after {
  position: absolute;
  z-index: 1;
  content: '';
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: url('/public/common/images/disable.png') no-repeat center;
  background-size: contain;
}

/* .pd-option__choice-disabled {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
} */

.pd-option__choice.style_1 .pd-option__choice-price {
  color: var(--black)
}

.pd-option__choices-toggle {
  flex: 0 0 86px;
  width: 86px;
  box-sizing: border-box;
  min-height: 84px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--black);
  cursor: pointer;
}

.pd-option__choices-toggle-inner {
  width: 84px;
  height: 84px;
  border: 2px solid var(--white);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: var(--white);
  /* box-shadow: 0 0 4.74px rgba(0, 0, 0, 0.25); */
  box-shadow: 0px 0px 4.74px 0px #00000040;

}

.pd-option__choices-toggle-label {
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  letter-spacing: 0;
}

.pd-option__choices-toggle svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.pd-option__choices-toggle.is-expanded .pd-option__choices-toggle-inner {
  flex-direction: column-reverse;
}

.pd-option__choices-toggle.is-expanded svg {
  transform: rotate(180deg);
}

.pd-option__choices-toggle:hover {
  opacity: 0.86;
}

.pd-option-preview {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 620;
  width: 280px;
  height: 329px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  transform: translate3d(var(--preview-x, 0), var(--preview-y, 0), 0) scale(0.98);
  transform-origin: center center;
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.pd-option-preview.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(var(--preview-x, 0), var(--preview-y, 0), 0) scale(1);
}

.pd-option-preview__image {
  width: 280px;
  height: 280px;
  border: 3px solid var(--white);
  border-radius: 12px;
  object-fit: cover;
}

.pd-option-preview__caption {
  height: 49px;
  padding: 16px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  letter-spacing: 0;
  color: var(--black);
  text-align: center;
}



/* Note box */
/* .pd-option__note-box {
  background: var(--gray-1);
  border-radius: 8px;
  padding: 16px;
  margin-top: 8px;
}
.pd-option__note-box span { font-size: 12px; color: #A8A29E; } */

.pd-option--notes {
  margin-bottom: 40px;
}

.pd-note {
  padding: 20px 0;
}

.note-header {
  margin-bottom: 20px;
}

.pd-note__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.pd-note__words {
  font-weight: 400;
  font-size: 12px;
  color: #A8A29E;
  line-height: 1;
}

.pd-note__textarea {
  display: block;
  height: 120px;
  background-color: #F5F5F5;
  width: 100%;
  border-radius: 8px;
  padding: 12px 20px;
  font-size: 12px;
  resize: none;
  border: 1px solid #A8A29E66;

}

/* Summary */
.pd-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px 0 24px;
  /* border-top: 1px solid rgba(0,0,0,0.1); */
}

.pd-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #1A1C1C;
  line-height: 1;
}

.pd-summary__row--total {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}

.pd-summary__total {
  color: var(--brand);
  font-weight: 600;
}

/* Action Buttons */
.pd-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.pd-btn-wishlist {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  cursor: pointer;
  transition: border-color 0.2s;
}

.pd-btn-wishlist:hover {
  border-color: var(--black);
}

.pd-btn-cart {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  background: var(--brand);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  transition: opacity 0.2s;
}

.pd-btn-cart:hover {
  opacity: 0.88;
}

/* Points */
.pd-points {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: #FFEBEE;
  border: 1px solid rgba(245, 49, 68, 0.2);
  border-radius: 12px;
}

.pd-points__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: block;
}

.pd-points__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #44403C;
}

/* Share */
.pd-share {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
}

.pd-share__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.pd-share__icons {
  display: flex;
  gap: 24px;
}

.pd-share__icons a {
  transition: opacity 0.2s;
}

.pd-share__icons a:hover {
  opacity: 0.7;
}

/* Info banner (below share) */
.pd-info-banner {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 32px;
}

.pd-info-banner img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  display: block;
}

/* Product Data */
.pd-data {}

.pd-data__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  cursor: pointer;
  /* margin-bottom: 32px; */
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pd-data__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  flex: 1;
}

.pd-data__discount {
  font-size: 14px;
  font-weight: 400;
  color: var(--brand);
}

/* .pd-data__chevron { transition: transform 0.3s; flex-shrink: 0; }
.pd-data.open .pd-data__chevron { transform: rotate(180deg); } */
.pd-data__body {
  /* max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0; */
}

.pd-data.open .pd-data__body {
  max-height: 3000px;
  padding-bottom: 20px;
}

.pd-data__intro {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #44403C;
  padding: 32px 0 20px;
}

.pd-data__image {
  overflow: hidden;
}

.pd-data__image img {
  width: 100%;
  height: 223px;
  object-fit: cover;
  display: block;
}

/* Spec table */
.pd-spec {
  display: flex;
  gap: 40px;
}

.pd-spec__col {
  flex: 1;
  min-width: 0;
}

.pd-spec__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pd-spec__row--last {
  border-bottom: none;
}

.pd-spec__label {
  font-size: 14px;
  font-weight: 500;
  color: #A8A29E;
}

.pd-spec__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

/* Material tags */
.pd-data__tags-header {
  padding: 32px 0 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.pd-data__tags-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
}

.pd-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.pd-tag {
  padding: 12px 20px;
  background: var(--gray-1);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
}

/* ============================================
   BOTTOM SECTIONS
   ============================================ */
.pd-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px 130px;
}

.pd-divider {
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
}

/* Brand Info */
.pd-brand-info {
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pd-brand-info__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd-brand-info h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 44px;
  color: var(--black);
  text-align: center;
}

.pd-brand-info__desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #44474C;
}

.pd-brand-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.pd-brand-gallery__item {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: inherit;
  text-decoration: none;
}

.pd-brand-gallery__image {
  aspect-ratio: 315 / 250;
  overflow: hidden;
  position: relative;
}

.pd-brand-gallery__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
}

.pd-brand-gallery__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pd-brand-gallery__item:hover .pd-brand-gallery__image img {
  transform: scale(1.06);
}

.pd-article {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pd-article h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #191C1D;
  transition: color 0.2s;
}

.pd-brand-gallery__item:hover .pd-article h3 {
  color: var(--brand);
}

.pd-article p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #44474C;
}

.pd-brand-info__banner {
  overflow: hidden;
  position: relative;
}

.pd-brand-info__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.pd-brand-info__banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Brand Video */
.pd-brand-video {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.pd-brand-video__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.pd-brand-video h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 44px;
  color: var(--black);
  text-align: center;
}

.pd-brand-video__head p {
  font-size: 14px;
  color: #44474C;
  text-align: center;
  max-width: 531px;
}

.pd-brand-video__wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.pd-brand-video__video {
  display: block;
  width: 100%;
  height: auto;
  background: rgba(0, 0, 0, 0.2);
}

.pd-brand-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9.09%;
  height: auto;
  aspect-ratio: 1 / 1;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, opacity 0.3s;
}

.pd-brand-video__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.pd-brand-video__play.is-playing {
  opacity: 0;
  pointer-events: none;
}

.pd-brand-video__play svg {
  display: block;
  width: 35%;
  height: auto;
}

/* FAQ */
.pd-faq {
  margin-bottom: 40px;
  width: 768px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.pd-faq__heading {
  text-align: center;
}

.pd-faq__heading h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 44px;
  color: var(--black);
}

.pd-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pd-faq__item {
  border-bottom: 1px solid rgba(196, 198, 204, 0.3);
}

.pd-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 600;
  color: #191C1D;
  line-height: 28px;
  text-align: left;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
}

.pd-faq__icon {
  flex-shrink: 0;
  transition: transform 0.3s;
}

.pd-faq__item.open .pd-faq__icon {
  transform: rotate(180deg);
}

.pd-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.pd-faq__item.open .pd-faq__answer {
  max-height: 200px;
}

.pd-faq__answer p {
  padding: 0 0 16px;
  font-size: 14px;
  line-height: 20px;
  color: #44474C;
}

/* Reviews Empty State */
.pd-reviews-empty {
  margin: 0 -40px 40px;
  padding: 60px 40px;
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.pd-reviews-empty .btn-underline {
  align-self: center;
}

.pd-reviews-empty__intro {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pd-reviews-empty__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}

.pd-reviews-empty__icon svg {
  display: block;
  width: 56px;
  height: 56px;
}

.pd-reviews-empty__textblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.pd-reviews-empty h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  line-height: 44px;
  color: var(--black);
}

.pd-reviews-empty p {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.78px;
  color: var(--text-secondary);
}

.pd-reviews-empty__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--black);
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: var(--black);
}

/* Reviews */
.pd-reviews {
  margin: 0 -40px 60px;
  padding: 60px 40px 80px;
  background: var(--gray-1);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pd-reviews__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.pd-reviews h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 44px;
  color: var(--black);
  margin-bottom: 8px;
}

.pd-reviews__subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 21.78px;
  color: var(--text-secondary);
}

.pd-reviews__head .btn-underline {
  margin-bottom: 4px;
  align-self: flex-end;
}

.pd-reviews__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pd-review {
  background: var(--white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.pd-review__main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pd-review__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pd-review__author {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pd-review__avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.pd-review__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-review__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.pd-review__name {
  font-size: 16px;
  font-weight: 600;
  line-height: 19.36px;
  color: #1A1C1C;
}

.review-stars {
  display: flex;
  gap: 4px;
}

.pd-review__date {
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  color: rgba(0, 0, 0, 0.5);
}

.pd-review__text {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: #44403C;
  line-height: 1;
}

.pd-review__images {
  display: flex;
  gap: 20px;
}

.pd-review__img {
  /* width: 240px; */
  width: calc((100% - 80px) / 5);
  aspect-ratio: 1;
  overflow: hidden;
  flex-shrink: 0;
}

.pd-review__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Pagination (matches products.html .pl-pagination) */
.pl-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 0 0;
}

.pl-page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  /* background: var(--white); */
  font-size: 14px;
  color: rgba(0, 0, 0, 0.46);
  cursor: pointer;
  border: none;
  font-family: var(--font);
  transition: background 0.15s, border-color 0.15s;
}

.pl-page-btn.not-allow-click {
  background-color: #A2A2A2 !important;
  color: #fff !important;
}

.pl-page-btn:hover {
  border-color: var(--black);
}

.pl-page-num--active {
  color: var(--black);
  position: relative;
}

.pl-page-num:hover {
  color: var(--black);
}

.pl-page-num--active::after {
  position: absolute;
  content: '';
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 5px;
  background-color: var(--black);
}

.pl-page-prev,
.pl-page-next {
  border-color: rgba(0, 0, 0, 0.15);
  width: 42px;
  height: 42px;
  background-color: var(--black);
  color: #fff;
}

.pl-page-ellipsis {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.4);
  padding: 0 4px;
  line-height: 36px;
}

/* Product Cards (Similar/Recent) — matches homepage RECOMMENDED PRODUCTS */
.pd-similar {
  margin-bottom: 60px;
}

.pd-recent {
  margin-bottom: 0;
}

.pd-similar h2,
.pd-recent h2 {
  font-size: 32px;
  font-weight: 800;
  line-height: 44px;
  color: var(--black);
  margin-bottom: 40px;
  text-align: center;
}

.pd-similar__grid,
.pd-recent__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.pd-similar__grid .product-card,
.pd-recent__grid .product-card {
  flex: 0 0 calc(20% - 16px);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.3s;
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(246, 0, 78, 0.2);
}

.product-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: #E5E7EB;
}

.product-img-wrap .product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  -webkit-user-drag: none;
  user-select: none;
}

.product-card:hover .product-img-wrap .product-img {
  transform: scale(1.2);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-block;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 3;
  height: 24px;
  line-height: 24px;
}

.fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 15%;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s;
  background: none;
  border: none;
  padding: 0;
}

.fav-btn img {
  width: 100%;
  height: auto;
  display: block;
}

.product-card:hover .fav-btn {
  opacity: 1;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 12px 12px;
}

.product-name {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: rgba(168, 162, 158, 1);
  margin-bottom: -4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-des {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(26, 28, 28, 1);
  margin-bottom: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 63px;
}

.product-price {
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.price-current {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  display: flex;
  color: var(--black);
}

.price-current .price-sup {
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  margin-top: 4px;
}

.price-original {
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: line-through;
  line-height: 32px;
}

/* Floating Action Buttons */
.pd-fab {
  position: fixed;
  right: 40px;
  bottom: 100px;
  z-index: 250;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pd-fab__btn {
  width: 56px;
  height: 56px;
  border-radius: 99px;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pd-fab__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.pd-fab__btn--top {
  color: var(--black);
}

.pd-fab__btn--chat {
  color: var(--brand);
}

/* Mobile Bottom Bar */
.pd-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 12px 12px 24px;
  z-index: 300;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pd-mobile-bar__prices {
  display: flex;
  gap: 16px;
}

.pd-mobile-bar__price-item {
  display: flex;
  flex-direction: column;
  position: relative;
}

.pd-mobile-bar__price-item:last-child {
  padding-left: 10px;
}

.pd-mobile-bar__price-item:last-child::after {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  height: 33px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.pd-mobile-bar__amount {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
}

.pd-mobile-bar__label {
  font-size: 10px;
  font-weight: 400;
  color: #A8A29E;
}

.pd-mobile-bar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pd-mobile-bar__cart-count {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 10px;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
}

.pd-mobile-bar__cart-count span {
  font-size: 12px;
  color: #fff;
  background-color: #000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 20px;
}

.pd-mobile-bar__buy {
  padding: 12px 26px;
  background: var(--brand);
  color: var(--white);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-reviews-more {
  display: none;
}

/* ============================================
   RESPONSIVE – TABLET (≤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .pd-config-bar-wrapper {
    display: none;
  }

  .pd-config-bar {
    display: none;
  }

  .pd-main {
    flex-direction: column;
    padding: 16px 24px 40px;
    gap: 32px;
  }

  .pd-gallery {
    flex: none;
    width: 100%;
    position: static;
  }

  .pd-gallery__main {
    height: auto;
    aspect-ratio: 2 / 3;
  }

  .pd-info {
    width: 100%;
  }

  .pd-features {
    gap: 20px;
    flex-wrap: wrap;
  }

  .pd-brand-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .pd-similar__grid .product-card,
  .pd-recent__grid .product-card {
    flex: 0 0 calc(33.333% - 14px);
  }

  .pd-reviews {
    margin-left: -24px;
    margin-right: -24px;
    padding: 40px 24px;
  }

  .pd-review__images {
    flex-wrap: wrap;
    gap: 8px
  }

  .pd-review__img {
    flex: 0 0 calc(50% - 4px);
    width: auto;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .pd-bottom {
    padding: 0 24px 60px;
  }

  .pd-gallery__thumbs-wrap {
    display: none;
  }

  .pd-gallery__main {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    border-radius: 0;
  }

  .pd-gallery__pagination {
    display: block;
    bottom: 12px;
  }

  .pd-gallery__pagination .swiper-pagination-bullet {
    width: 20px;
    height: 2px;
    border-radius: 1px;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
  }

  .pd-gallery__pagination .swiper-pagination-bullet-active {
    background: var(--black);
    width: 30px;
  }

  .pd-mobile-bar {
    display: flex;
  }
}

/* ============================================
   RESPONSIVE – MOBILE (≤768px)
   ============================================ */
@media (max-width: 768px) {
  body {
    padding-bottom: 87px;
  }

  .pd-fab {
    right: 12px;
    bottom: 104px;
    gap: 12px;
  }

  .pd-fab__btn {
    width: 44px;
    height: 44px;
  }

  .pd-fab__btn svg {
    width: 24px;
    height: 24px;
  }

  .pl-pagination {
    display: none;
  }

  .pd-config-drawer__panel {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: calc(100vh - 115px);
    max-height: 90vh;
    min-height: 560px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    transform: translateY(100%);
    box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.12);
  }

  .pd-config-drawer.is-open .pd-config-drawer__panel {
    transform: translateY(0);
  }

  .pd-config-drawer__scroll {
    height: calc(100% - 161px);
    padding: 0 16px 32px;
  }

  .pd-config-drawer__head {
    height: 77px;
    padding: 24px 16px 23px;
  }

  .pd-config-drawer__head h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
  }

  .pd-config-drawer__group {
    gap: 20px;
    padding-top: 32px;
  }

  .pd-config-drawer__group+.pd-config-drawer__group {
    padding-top: 32px;
  }

  .pd-config-drawer__group-title {
    gap: 8px;
  }

  .pd-config-drawer__group-title span:not(.pd-config-drawer__count) {
    font-size: 20px;
    font-weight: 600;
    line-height: 24.2px;
  }

  .pd-config-drawer__list {
    gap: 20px;
  }

  .pd-config-drawer__item {
    min-height: 80px;
    gap: 16px;
  }

  .pd-config-drawer__item-main {
    width: 246px;
    gap: 12px;
  }

  .pd-config-drawer__item-main img {
    flex-basis: 80px;
    width: 80px;
    height: 80px;
  }

  .pd-config-drawer__item-copy {
    width: 154px;
    height: 80px;
    padding: 8px 0;
  }

  .pd-config-drawer__item-copy h3 {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
  }

  .pd-config-drawer__item-copy p {
    width: 154px;
    font-size: 10px;
    line-height: 12.1px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pd-config-drawer__item-copy span {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
  }

  .pd-config-drawer__item-edit {
    flex: 0 0 89px;
    height: 15px;
    font-size: 12px;
    font-weight: 400;
    line-height: 14.52px;
  }

  .pd-config-drawer__item-edit svg {
    flex-basis: 14px;
    width: 14px;
    height: 14px;
  }

  .pd-config-drawer__footer {
    height: 84px;
    padding: 12px 12px 24px;
    gap: 12px;
  }

  .pd-config-drawer__total {
    width: 96px;
    height: 48px;
    gap: 4px;
    padding: 0 10px;
  }

  .pd-config-drawer__total span {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
  }

  .pd-config-drawer__total small {
    font-size: 10px;
    line-height: 12.1px;
  }

  .pd-config-drawer__label--desktop,
  .pd-config-drawer__btn-text--desktop,
  .pd-config-drawer__btn--brand svg {
    display: none;
  }

  .pd-config-drawer__label--mobile,
  .pd-config-drawer__btn-text--mobile {
    display: inline;
  }

  .pd-config-drawer__btn {
    height: 48px;
    padding: 16px 24px;
    font-size: 14px;
    line-height: 16.94px;
  }

  .pd-config-drawer__btn--outline {
    width: 100px;
  }

  .pd-config-drawer__btn--brand {
    width: 196px;
  }

  .pd-cart-drawer__panel {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100vw;
    max-width: none;
    height: 100dvh;
    min-height: 640px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateX(100%);
    box-shadow: none;
  }

  .pd-cart-drawer.is-open .pd-cart-drawer__panel {
    transform: translateX(0);
  }

  .pd-cart-drawer__head {
    flex: 0 0 56px;
    height: 56px;
    padding: 0 0 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .pd-cart-drawer__head h2 {
    font-size: 24px;
    font-weight: 600;
    /* line-height: 29.05px; */
    line-height: 1;
    padding-bottom: 20px;

  }

  .pd-cart-drawer__head-wrapper {
    border-bottom: none;
  }

  .pd-cart-drawer__close {
    width: 32px;
    height: 32px;
  }

  .pd-cart-drawer__close svg {
    width: 16px;
    height: 16px;
  }

  .pd-cart-drawer__list {
    flex: 0 1 auto;
    min-height: 0;
    height: auto;
    padding: 0;
    overflow-y: auto;
  }

  .pd-cart-drawer__item {
    min-height: 272px;
    padding: 40px 0;
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    column-gap: 28px;
    row-gap: 16px;
    align-items: start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .pd-cart-drawer__item.is-options-open {
    min-height: 548px;
  }

  .pd-cart-drawer__image {
    grid-column: 1;
    grid-row: 1 / 4;
    width: 84px;
    height: 124px;
  }

  .pd-cart-drawer__content {
    display: contents;
  }

  .pd-cart-drawer__top {
    grid-column: 2;
    grid-row: 1;
    display: block;
  }

  .pd-cart-drawer__top h3 {
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    line-height: 19.36px;
  }

  .pd-cart-drawer__top span {
    display: none;
  }

  .pd-cart-drawer__price {
    grid-column: 2;
    grid-row: 2;
    margin-top: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
  }

  .pd-cart-drawer__options {
    grid-column: 2;
    grid-row: 3;
    margin-top: 0;
  }

  .pd-cart-drawer__option {
    gap: 10px;
    font-size: 12px;
    font-weight: 400;
    line-height: 14.52px;
  }

  .pd-cart-drawer__option span {
    max-width: 211px;
  }

  .pd-cart-drawer__option--toggle[aria-expanded="false"] span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .pd-cart-drawer__option--toggle[aria-expanded="true"] span,
  .pd-cart-drawer__option--single span {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .pd-cart-drawer__option--single span {
    max-width: 296px;
  }

  .pd-cart-drawer__option--toggle svg {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
  }

  .pd-cart-drawer__option-list {
    margin-top: 16px;
    gap: 16px;
  }

  .pd-cart-drawer__option-text {
    max-width: 296px;
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-size: 12px;
    font-weight: 400;
    line-height: 14.52px;
  }

  .pd-cart-drawer__tools {
    grid-column: 1 / -1;
    grid-row: 4;
    height: 40px;
    margin-top: 12px;
    padding-right: 20px;
    gap: 24px;
  }

  .pd-cart-drawer__qty {
    width: 144px;
    height: 40px;
    padding: 0 20px;
    gap: 24px;
  }

  .pd-cart-drawer__remove {
    width: 40px;
    height: 40px;
  }

  .pd-cart-drawer__footer {
    position: static;
    flex: 0 0 143px;
    height: 143px;
    padding: 0;
    margin-top: auto;
    gap: 40px;
    box-shadow: none;
  }

  .pd-cart-drawer__summary {
    gap: 16px;
  }

  .pd-cart-drawer__summary-row span,
  .pd-cart-drawer__summary-row strong {
    font-size: 20px;
    font-weight: 600;
    line-height: 24.2px;
  }

  .pd-cart-drawer__summary p {
    font-size: 12px;
    font-weight: 400;
    line-height: 14.52px;
  }

  .pd-cart-drawer__footer-actions {
    gap: 20px;
  }

  .pd-cart-drawer__btn {
    width: calc((100% - 20px) / 2);
    height: 48px;
    padding: 16px 24px;
    font-size: 14px;
    line-height: 16.94px;
  }

  .pd-cart-drawer__btn svg {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  .pd-option-guide-drawer__panel {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    max-width: none;
    height: 635px;
    max-height: calc(100dvh - 24px);
    border-radius: 12px 12px 0 0;
    transform: translateY(100%);
    box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.12);
  }

  .pd-option-guide-drawer.is-open .pd-option-guide-drawer__panel {
    transform: translateY(0);
  }

  .pd-option-guide-drawer__head {
    flex-basis: 77px;
    height: 77px;
    padding: 24px 16px;
    border-bottom: none;
  }

  .pd-option-guide-drawer__head h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
  }

  .pd-option-guide-drawer__body {
    padding: 24px 16px 32px;
    gap: 24px;
  }

  .pd-option-guide-drawer__media {
    aspect-ratio: 408 / 217;
  }

  .pd-option-guide-drawer__content {
    gap: 0;
  }

  .pd-option-guide-drawer__copy {
    gap: 12px;
  }

  .pd-option-guide-drawer__copy h3 {
    font-size: 16px;
    line-height: 19.36px;
  }

  .pd-option-guide-drawer__copy p {
    font-size: 12px;
    /* line-height: 14.52px; */
    line-height: 1.2;
  }

  .pd-option-guide-drawer__footer {
    flex-basis: 76px;
    height: 76px;
    padding: 0 16px 20px;
  }

  .pd-option-guide-drawer__return {
    width: 100%;
    height: 56px;
    padding: 16px 24px;
    font-size: 14px;
    line-height: 16.94px;
  }

  .pd-breadcrumb {
    display: none;
  }

  .pd-main {
    padding: 0 0 30px;
    gap: 0;
  }

  .pd-gallery {
    display: block;
  }

  .pd-gallery__thumbs-wrap {
    display: none;
  }

  .pd-gallery__main {
    width: 100%;
    border-radius: 0;
    aspect-ratio: 2 / 3;
  }

  .pd-gallery__pagination {
    display: block;
    bottom: 12px;
  }

  .pd-gallery__pagination .swiper-pagination-bullet {
    width: 20px;
    height: 2px;
    border-radius: 1px;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
  }

  .pd-gallery__pagination .swiper-pagination-bullet-active {
    background: var(--black);
    width: 30px;
  }

  .pd-gallery-lightbox__counter {
    top: 14px;
    left: 12px;
    font-size: 14px;
  }

  .pd-gallery-lightbox__close {
    top: 10px;
    right: 12px;
  }

  .pd-gallery-lightbox__stage {
    width: calc(100vw - 48px);
    height: calc(100vh - 96px);
  }

  .pd-gallery-lightbox__nav {
    width: 40px;
    height: 40px;
  }

  .pd-gallery-lightbox__nav--prev {
    left: 12px;
  }

  .pd-gallery-lightbox__nav--next {
    right: 12px;
  }

  .pd-info {
    padding: 24px 16px;
    /* gap: 16px; */
  }

  .pd-title {
    font-size: 20px;
    padding: 12px 0;
    line-height: 1;
  }

  .pd-badge {
    font-size: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .pd-price-block {
    padding-top: 26px;
  }

  .pd-price__decimal,
  .pd-price__currency {
    font-size: 12px;
    margin-top: 0;
  }

  .pd-price__main {
    font-size: 24px;
  }

  .pd-price__old {
    font-size: 14px;
  }

  .pd-tax {
    padding-top: 10px;
    padding-bottom: 14px;
    font-weight: 500;
  }

  .pd-shipping-bar {
    padding-bottom: 20px;
  }

  .pd-shipping-bar span {
    font-size: 14px;
    line-height: 24px;
  }

  .pd-shipping-bar img {
    width: 24px !important;
    height: 24px !important;
  }

  .pd-features {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 16px 12px;
  }

  .pd-feature {
    flex: 0 0 calc(50% - 10px);
    align-items: flex-start;
  }

  .pd-feature__text {
    text-align: left;
    align-items: flex-start;
  }

  .pd-feature__text strong {
    height: 17px;
    line-height: 17px;
  }

  .pd-feature__text span {
    height: 15px;
    line-height: 15px;
  }

  .pd-feature {
    flex: 0 0 calc(50% - 10px);
    gap: 8px;
  }

  .pd-feature__icon {
    width: 36px;
    height: 36px;
  }

  .pd-config-tabs {
    gap: 12px;
  }

  .pd-config-tab {
    padding: 12px;
    gap: 6px;
  }

  .pd-config-tab__icon {
    width: 32px;
    height: 32px;
  }

  .pd-config-tab__icon svg {
    width: 32px;
    height: 32px;
  }

  .pd-config-tab__title {
    font-size: 16px;
    font-weight: 500;
  }

  .pd-config-tab__desc {
    font-size: 10px;
  }

  .pd-options {
    gap: 32px;
  }

  .pd-option {
    padding: 0 20px;
  }

  .pd-option__desc {
    padding-top: 20px;
  }

  .pd-option__choices {
    gap: 16px;
    padding-left: 2px;
  }

  .pd-option__choice {
    /* flex: 1 1 0; */
    width: calc((100% - 54px) / 4);
    /* width:calc((100% - 52px) / 4); */
    box-sizing: border-box;
  }

  .pd-option__choice.is-choice-hidden {
    display: none;
  }

  .pd-option__choices-toggle {
    flex: 0 0 calc((100% - 54px) / 4);
    width: calc((100% - 54px) / 4);
    min-width: 0;
    max-width: calc((100% - 54px) / 4);
    min-height: 0;
    /* width: calc((100% - 48px) / 4);
    box-sizing: border-box;
    min-height: 0;
    min-width: 0; */
  }

  .pd-option__choices-toggle-inner {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .pd-option__choices-toggle-label {
    font-size: 13.333px;
    line-height: 16.136px;
  }

  .pd-option__choices-toggle.is-expanded .pd-option__choices-toggle-label {
    font-size: 14px;
    line-height: 16.94px;
  }

  .pd-option__choice-img {
    width: 100%;
    height: auto;
  }

  .pd-option__choice-img img {
    width: 100%;
    aspect-ratio: 1;
  }

  .pd-option__sub {
    padding-top: 20px;
    padding-bottom: 28px;
  }

  .pd-option__sub:last-child {
    padding-bottom: 48px;
  }

  .pd-option__sub-title {
    margin-bottom: 8px;
  }

  .pd-option__warning_wrap {
    padding-top: 20px;
  }

  .pd-option--notes {
    padding: 0 24px;
  }

  .pd-note {
    padding-bottom: 24px;
  }

  .pd-data__intro {
    padding-top: 17px;
    padding-bottom: 32px;
    font-size: 12px;
  }

  .pd-spec {
    flex-direction: column;
    gap: 0;
  }

  .pd-spec__row {
    padding: 26px 12px;
  }

  .pd-spec__col:first-child .pd-spec__row--last {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .pd-actions {}

  .pd-btn-wishlist {
    width: 31%;
    flex: auto;
    height: 48px;
    gap: 4px
  }

  .pd-btn-cart {
    width: 57%;
    flex: auto;
    height: 48px;
    gap: 4px;
  }

  .pd-summary {}

  .pd-points {
    align-items: flex-start;
  }

  .pd-mobile-bar {
    display: flex;
  }

  .pd-bottom {
    padding: 0 16px 100px;
  }

  .pd-share {
    padding-top: 20px;
    padding-bottom: 32px;
  }

  .pd-info-banner {
    display: none;
  }

  .pd-data__tags-header {
    padding-top: 22px;
  }

  .pd-divider {
    margin-bottom: 40px;
    display: none;
  }

  .pd-brand-info h2,
  .pd-brand-video h2,
  .pd-faq h2,
  .pd-reviews h2,
  .pd-similar h2,
  .pd-recent h2 {
    font-size: 24px;
    line-height: 1;
  }

  .pd-brand-info {
    margin-bottom: 32px;
    gap: 24px;
  }

  .pd-brand-info__head {
    gap: 16px;
  }

  .pd-brand-info h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
    text-align: center;
  }

  .pd-brand-info__desc {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
  }

  .pd-brand-gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pd-brand-gallery__item {
    gap: 20px;
  }

  .pd-brand-gallery__image {
    aspect-ratio: 408 / 323;
  }

  .pd-brand-gallery .pd-article {
    gap: 10px;
    padding: 10px;
  }

  .pd-brand-gallery .pd-article h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
  }

  .pd-brand-gallery .pd-article p {
    font-size: 14px;
    font-weight: 400;
    line-height: 22.75px;
  }

  .pd-brand-info__banner {
    display: none;
  }

  .pd-brand-video {
    margin-bottom: 48px;
  }

  .pd-brand-video__play {
    width: 17.65%;
    height: auto;
    border-width: 2px;
  }

  .pd-brand-video__play svg {
    width: 38.89%;
    height: auto;
  }

  .pd-faq {
    margin-bottom: 40px;
    padding: 0;
    gap: 24px;
  }

  .pd-faq__item {
    border-bottom: none;
  }

  .pd-reviews-empty {
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: 24px;
    padding: 0px 16px 40px;
    gap: 35px;
    background-color: #fff;
  }

  .pd-reviews-empty .btn-underline {
    font-size: 12px;
  }

  .pd-reviews-empty .btn-underline::before {
    background-color: var(--brand);
  }

  .pd-reviews-empty__intro {
    gap: 10px
  }

  .pd-reviews-empty__icon,
  .pd-reviews-empty__icon svg {
    width: 56px;
    height: 56px;
  }

  .pd-reviews-empty h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
  }

  .pd-reviews-empty p {
    font-size: 14px;
    line-height: 1.2;
  }

  .pd-reviews-empty__button {
    font-size: 12px;
    line-height: 16px;
  }

  .pd-reviews {
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: 48px;
    padding: 0 16px 32px;
    gap: 24px;
    background-color: #fff;
  }

  .pd-reviews__head {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    text-align: center;
  }

  .pd-reviews h2 {
    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
    margin-bottom: 8px;
  }

  .pd-reviews__subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: rgba(168, 162, 158, 1);

  }

  .pd-reviews__head .btn-underline {
    font-size: 12px;
    line-height: 1;
    margin-bottom: 0;
    align-self: center;
  }

  .pd-reviews__head .btn-underline::before {
    background-color: var(--brand);
  }

  .pd-review {
    gap: 24px;
    padding: 20px 0;
  }

  .pd-review__main {
    gap: 24px;
  }

  .pd-review__name {
    font-size: 16px;
    font-weight: 600;
    line-height: 19.36px;
  }

  .pd-review__date {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
  }

  .pd-review__text {
    font-size: 14px;
    line-height: 20px;
  }

  .pd-reviews-more {
    display: block;
    border: 1px solid #000;
    font-size: 16px;
    padding: 12px 40px;
    margin: 0 auto;
    margin-top: 8px;
    margin-bottom: 20px;
  }

  .pd-similar {
    margin-bottom: 48px;
  }

  .pd-faq__question span {
    font-size: 16px;
  }

  .pd-similar__grid,
  .pd-recent__grid {
    gap: 12px;
  }

  .pd-similar__grid .product-card,
  .pd-recent__grid .product-card {
    flex: 0 0 calc(50% - 6px);
    gap: 12px;
  }

  .product-info {
    padding: 0 8px 8px;
    gap: 8px;
  }

  .product-name {
    font-size: 10px;
    margin-top: 4px;
    margin-bottom: 0;
  }

  .product-des {
    font-size: 12px;
    line-height: 1.2;
    height: 45px;
  }

  .price-current {
    font-size: 16px;
    line-height: 24px;
  }

  .price-original {
    font-size: 12px;
    line-height: 24px;
  }

  .product-badge {
    font-size: 10px;
    height: 20px;
    line-height: 20px;
    padding: 0 6px;
  }

  .fav-btn {
    opacity: 1;
  }
}

/* ============================================
   SHIPPING INFO MODAL
   ============================================ */
.pd-shipping-modal[hidden] {
  display: none;
}

.pd-shipping-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.pd-shipping-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pd-shipping-modal__scrim {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.pd-shipping-modal__dialog {
  position: relative;
  z-index: 1;
  width: 637px;
  max-width: 100%;
  height: min(793px, calc(100dvh - 48px));
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  outline: none;
}

.pd-shipping-modal__header {
  flex: 0 0 80px;
  height: 80px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  background: var(--white);
}

.pd-shipping-modal__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 24.2px;
  color: var(--black);
}

.pd-shipping-modal__close {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: none;
  color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: color 0.2s;
}

.pd-shipping-modal__close:hover {
  color: var(--black);
}

.pd-shipping-modal__body {
  flex: 1 1 auto;
  min-height: 0;
  padding: 32px 24px 48px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.5) rgba(0, 0, 0, 0.1);
}

.pd-shipping-modal__body::-webkit-scrollbar {
  width: 8px;
}

.pd-shipping-modal__body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 99px;
}

.pd-shipping-modal__body::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 99px;
}

.pd-shipping-modal__content {
  max-width: 557px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pd-shipping-modal__section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-shipping-modal__section--fees {
  gap: 24px;
}

.pd-shipping-modal__section h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.36px;
  color: var(--black);
}

.pd-shipping-modal__section p,
.pd-shipping-modal__copy {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #44403C;
}

.pd-shipping-modal__copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pd-shipping-modal__copy p {
  position: relative;
  padding-left: 14px;
}

.pd-shipping-modal__copy p span {
  position: absolute;
  left: 0;
}

/* ============================================
   CHAT MODAL
   ============================================ */
.pd-chat-modal[hidden] {
  display: none;
}

.pd-chat-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.pd-chat-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.pd-chat-modal__scrim {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.pd-chat-modal__dialog {
  position: relative;
  z-index: 1;
  width: 447px;
  max-width: 100%;
  background: var(--white);
  overflow: hidden;
  outline: none;
  border-radius: 18px;
}

.pd-chat-modal__header {
  position: relative;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  padding: 24px 48px;
}

.pd-chat-modal__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.36px;
  color: var(--white);
  text-align: center;
}

.pd-chat-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: color 0.2s;
}

.pd-chat-modal__close:hover {
  color: var(--white);
}

.pd-chat-modal__body {
  background: var(--white);
  padding: 20px 31px 32px;
}

.pd-chat-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pd-chat-form__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pd-chat-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pd-chat-field__label {
  font-size: 14px;
  font-weight: 500;
  line-height: 16.94px;
  color: #44403C;
}

.pd-chat-field__control {
  width: 100%;
  height: 52px;
  padding: 10px;
  border: 1px solid #A8A29E;
  border-radius: 4px;
  background: var(--white);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
}

.pd-chat-field__control::placeholder {
  color: #A8A29E;
  font-weight: 300;
}

.pd-chat-field__control:focus {
  border-color: var(--black);
}

.pd-chat-captcha {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pd-chat-captcha__input {
  flex: 0 0 170px;
}

.pd-chat-captcha__image {
  flex: 0 0 auto;
  width: 194px;
  height: 49px;
  display: block;
  object-fit: cover;
}

.pd-chat-field__control--textarea {
  height: 120px;
  resize: none;
}

.pd-chat-submit {
  width: 100%;
  height: 56px;
  padding: 16px 24px;
  border: none;
  border-radius: 4px;
  background: var(--brand);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  line-height: 19.36px;
  color: var(--white);
  cursor: pointer;
  transition: opacity 0.2s;
}

.pd-chat-submit:hover {
  opacity: 0.9;
}

/* ============================================
   LOGIN MODAL
   ============================================ */
.login-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-overlay.open {
  display: flex;
}

.login-modal {
  width: 447px;
  max-width: 100%;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
}

.login-modal__header {
  position: relative;
  background: var(--black);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.login-modal__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.login-modal__subtitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}

.login-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  color: var(--black);
  transition: background-color 0.2s;
}

.login-modal__close:hover {
  background: rgba(255, 255, 255, 0.7);
}

.login-modal__body {
  background: var(--white);
  padding: 20px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.login-modal__notice {
  background: rgba(244, 48, 67, 0.1);
  border: 1px solid var(--brand);
  border-radius: 4px;
  padding: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--brand);
  text-align: center;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.login-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login-field__labelrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.login-field__label {
  font-size: 14px;
  font-weight: 500;
  color: #44403C;
}

.login-field__input {
  height: 52px;
  padding: 10px;
  border: 1px solid #A8A29E;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
}

.login-field__input::placeholder {
  color: #A8A29E;
  font-weight: 300;
}

.login-field__input:focus {
  border-color: var(--black);
}

.login-submit {
  height: 56px;
  background: var(--brand);
  border: none;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: opacity 0.2s;
}

.login-submit:hover {
  opacity: 0.9;
}

.login-modal__footer {
  font-size: 14px;
  font-weight: 500;
  color: #A8A29E;
  text-align: center;
}

.login-modal__footer a {
  color: #305EF4;
}

.login-modal__footer a:hover {
  text-decoration: underline;
}

/* Register Modal */
.register-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.register-overlay.open {
  display: flex;
}

.register-modal {
  width: 447px;
  height: auto;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
}

.register-modal__header {
  position: relative;
  background: var(--black);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.register-modal__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
}

.register-modal__subtitle {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.register-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  color: var(--black);
  transition: background-color 0.2s;
}

.register-modal__close:hover {
  background: rgba(255, 255, 255, 0.7);
}

.register-modal__body {
  flex: 0 0 auto;
  background: var(--white);
  padding: 20px 32px 32px;
}

.register-form {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.register-form__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.register-form__row {
  display: flex;
  gap: 13px;
}

.register-field {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.register-field__label {
  font-size: 14px;
  font-weight: 500;
  color: #44403C;
}

.register-field__input {
  height: 52px;
  padding: 10px;
  border: 1px solid #A8A29E;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
}

.register-field__input::placeholder {
  color: #A8A29E;
  font-weight: 300;
}

.register-field__input:focus {
  border-color: var(--black);
}

.register-form__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.register-optin {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #A8A29E;
  font-size: 14px;
  font-weight: 300;
  line-height: 16px;
}

.register-optin__input {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  margin-top: 2.5px;
  appearance: none;
  border: 1px solid var(--black);
  background: var(--white);
  cursor: pointer;
}

.register-optin__input:checked {
  background: var(--brand);
  box-shadow: inset 0 0 0 3px #D9D9D9;
}

.register-submit {
  height: 56px;
  background: var(--brand);
  border: none;
  border-radius: 4px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: opacity 0.2s;
}

.register-submit:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .pd-shipping-modal {
    padding: 16px;
  }

  .pd-shipping-modal__dialog {
    width: 100%;
    height: min(793px, calc(100dvh - 32px));
  }

  .pd-shipping-modal__header {
    flex-basis: 72px;
    height: 72px;
    padding: 20px 16px;
  }

  .pd-shipping-modal__title {
    font-size: 18px;
    line-height: 22px;
  }

  .pd-shipping-modal__body {
    padding: 24px 16px 32px;
  }

  .pd-chat-modal__dialog {
    width: 100%;
    max-width: 400px;
  }

  .pd-chat-modal__body {
    padding: 20px 24px 32px;
  }

  .pd-chat-captcha {
    gap: 12px;
  }

  .pd-chat-captcha__input {
    flex: 1 1 0;
    min-width: 0;
  }

  .pd-chat-captcha__image {
    width: min(44vw, 194px);
    height: auto;
  }

  .login-modal {
    width: 100%;
    max-width: 400px;
  }

  .login-modal__body {
    padding: 20px 24px 32px;
  }

  .register-overlay {
    backdrop-filter: blur(30px);
    align-items: center;
    overflow-y: auto;
  }

  .register-modal {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .register-modal__body {
    padding: 20px 24px 32px;
  }

  .register-form__row {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 410px) {
  .pd-mobile-bar {}

  .pd-mobile-bar__prices {
    gap: 10px
  }

  .pd-mobile-bar__buy {
    padding: 12px;
  }
}