/** Shopify CDN: Minification failed

Line 1669:48 Expected "*/" to terminate multi-line comment

**/
/* ================================================================
   PRODUCT DETAIL PAGE (PDP)
================================================================ */

/* Breadcrumb */
.page-breadcrumb {
  padding: 0.875rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  flex-wrap: wrap;
}

.breadcrumb__item a {
  font-size: 0.8125rem;
  color: #888888;
  text-decoration: none;
  transition: color 150ms ease;
}

.breadcrumb__item a:hover {
  color: #83324C;
}

.breadcrumb__sep {
  font-size: 0.8125rem;
  color: #cccccc;
}

.breadcrumb__item--active {
  font-size: 0.8125rem;
  color: #1a1a1a;
  font-weight: 500;
}

/* PDP layout */
.pdp {
  padding: 2.5rem 0;
  background-color: #FBF9F4;
}

.pdp__grid {
  display: flex;
  gap: clamp(24px, 5.5vw, 80px);
  align-items: start;
}

/* ---- Gallery ---- */
.pdp-gallery {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: sticky;
  top: 100px;
}

@media (max-width: 980px) {
  .pdp__grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .pdp-gallery {
    position: static;
    width: 100%;
    max-width: 100%;
  }

  .pdp-info {
    width: 100%;
    max-width: 100%;
  }
}

.pdp-gallery__main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f5f1ef;
  aspect-ratio: 1 / 1;
}

.pdp-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 200ms ease;
}

.pdp-gallery__main-img--placeholder {
  width: 100%;
  aspect-ratio: 1/1;
}

.pdp-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none;
  transition: background 150ms ease;
  z-index: 2;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.pdp-gallery__arrow:hover {
  background: transparent;
}

.pdp-gallery__arrow--prev {
  left: 0.75rem;
}

.pdp-gallery__arrow--next {
  right: 0.75rem;
}

.pdp-gallery__thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}

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

.pdp-gallery__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: #f5f1ef;
  transition: border-color 150ms ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

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

.pdp-gallery__thumb.is-active {
  border-color: #8F9AA380;
}

.pdp-gallery__thumb:hover:not(.is-active) {
  border-color: #ddd;
}

/* ---- Product Info ---- */
.pdp-info {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pdp-info__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pdp-info__name {
  font-size: clamp(1.375rem, 2vw, 1.75rem);
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.25;
  margin: 0;
  flex: 1;
}

.pdp-info__wishlist-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  --pdp-wishlist-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 15'%3E%3Cpath d='M1.29328 1.35171C1.6868 0.930852 2.16163 0.594216 2.68901 0.362171C3.2164 0.130127 3.78538 0.007498 4.36153 0.00170599C4.96359 -0.0151077 5.56263 0.0926647 6.12108 0.318264C6.67953 0.543863 7.18534 0.882421 7.60678 1.31271C7.682 1.38799 7.77133 1.44772 7.86965 1.48847C7.96797 1.52922 8.07335 1.55019 8.17978 1.55019C8.28621 1.55019 8.39159 1.52922 8.48991 1.48847C8.58823 1.44772 8.67756 1.38799 8.75278 1.3127C9.17541 0.88402 9.68143 0.546516 10.2396 0.321031C10.7978 0.0955466 11.3962 -0.0131322 11.998 0.00170466C12.5742 0.00749647 13.1432 0.130125 13.6705 0.362169C14.1979 0.594214 14.6728 0.930849 15.0663 1.3517C16.8228 3.2312 16.7913 5.8517 15.0078 7.99295C14.2923 9.0317 10.6023 14.218 8.18278 14.218C5.76328 14.218 2.07028 9.0317 1.38553 8.03345C-0.428721 5.85396 -0.463221 3.23121 1.29328 1.35171Z'/%3E%3C/svg%3E");
}

/* Visible controller; the app's product and variant controls stay hidden. */
.pdp-smartwishlist-toggle {
  display: inline-flex;
  align-items: center !important;
  justify-content: center !important;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  opacity: 1 !important;
  transition: box-shadow 150ms ease, transform 150ms ease;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.pdp-smartwishlist-toggle:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

.pdp-smartwishlist-toggle:focus {
  outline: none !important;
}

/* Press + toggle feedback scale the whole button, border included. */
.pdp-smartwishlist-toggle:active {
  transform: scale(0.92);
}

.pdp-smartwishlist-toggle.sw-pop {
  animation: sw-wishlist-pop 340ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes sw-wishlist-pop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.22);
  }
  100% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pdp-smartwishlist-toggle:active,
  .pdp-smartwishlist-toggle.sw-pop {
    animation: none;
    transform: none;
  }
}

.pdp-smartwishlist-toggle::before {
  content: '';
  display: block;
  width: 22px;
  height: 20px;
  background-color: #4285f4;
  -webkit-mask-image: var(--pdp-wishlist-icon);
  mask-image: var(--pdp-wishlist-icon);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color 200ms ease;
}

/* Grey once the product has been removed from the wishlist. */
.pdp-smartwishlist-toggle.sw-removed::before {
  background-color: #c4cdd5;
}

/* Multi-variant products cannot be wishlisted until an option is picked. */
.pdp-smartwishlist-toggle.is-variant-required {
  cursor: not-allowed;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pdp-smartwishlist-toggle.is-variant-required::before {
  background-color: #c4cdd5;
}

.pdp-smartwishlist-toggle.is-variant-required:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pdp-smartwishlist-toggle.is-variant-required:active {
  transform: none;
}

/* App controls still handle persistence/cookies but never occupy layout. */
.pdp-smartwishlist-product-control,
.pdp-smartwishlist-variant-control {
  display: none !important;
}

/* Toast: ditampilkan setelah produk ditambahkan ke wishlist */
.sw-wishlist-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: fit-content;
  max-width: min(420px, calc(100vw - 32px));
  padding: 14px 12px 14px 16px;
  border-radius: 8px;
  background: #40484f;
  color: #ffffff;
  font-family: 'Google Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transform: translate(-50%, 12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.sw-wishlist-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.sw-wishlist-toast__icon {
  flex-shrink: 0;
  width: 14px;
  height: 13px;
  margin-top: 2px;
  background-color: #ffffff;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 15'%3E%3Cpath d='M1.29328 1.35171C1.6868 0.930852 2.16163 0.594216 2.68901 0.362171C3.2164 0.130127 3.78538 0.007498 4.36153 0.00170599C4.96359 -0.0151077 5.56263 0.0926647 6.12108 0.318264C6.67953 0.543863 7.18534 0.882421 7.60678 1.31271C7.682 1.38799 7.77133 1.44772 7.86965 1.48847C7.96797 1.52922 8.07335 1.55019 8.17978 1.55019C8.28621 1.55019 8.39159 1.52922 8.48991 1.48847C8.58823 1.44772 8.67756 1.38799 8.75278 1.3127C9.17541 0.88402 9.68143 0.546516 10.2396 0.321031C10.7978 0.0955466 11.3962 -0.0131322 11.998 0.00170466C12.5742 0.00749647 13.1432 0.130125 13.6705 0.362169C14.1979 0.594214 14.6728 0.930849 15.0663 1.3517C16.8228 3.2312 16.7913 5.8517 15.0078 7.99295C14.2923 9.0317 10.6023 14.218 8.18278 14.218C5.76328 14.218 2.07028 9.0317 1.38553 8.03345C-0.428721 5.85396 -0.463221 3.23121 1.29328 1.35171Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 17 15'%3E%3Cpath d='M1.29328 1.35171C1.6868 0.930852 2.16163 0.594216 2.68901 0.362171C3.2164 0.130127 3.78538 0.007498 4.36153 0.00170599C4.96359 -0.0151077 5.56263 0.0926647 6.12108 0.318264C6.67953 0.543863 7.18534 0.882421 7.60678 1.31271C7.682 1.38799 7.77133 1.44772 7.86965 1.48847C7.96797 1.52922 8.07335 1.55019 8.17978 1.55019C8.28621 1.55019 8.39159 1.52922 8.48991 1.48847C8.58823 1.44772 8.67756 1.38799 8.75278 1.3127C9.17541 0.88402 9.68143 0.546516 10.2396 0.321031C10.7978 0.0955466 11.3962 -0.0131322 11.998 0.00170466C12.5742 0.00749647 13.1432 0.130125 13.6705 0.362169C14.1979 0.594214 14.6728 0.930849 15.0663 1.3517C16.8228 3.2312 16.7913 5.8517 15.0078 7.99295C14.2923 9.0317 10.6023 14.218 8.18278 14.218C5.76328 14.218 2.07028 9.0317 1.38553 8.03345C-0.428721 5.85396 -0.463221 3.23121 1.29328 1.35171Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.sw-wishlist-toast__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  gap: 4px;
}

.sw-wishlist-toast__message {
  white-space: nowrap;
}

.sw-wishlist-toast__text strong {
  font-weight: 600;
}

.sw-wishlist-toast__link {
  display: block;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  text-align: center;
}

.pdp-info__subtitle {
  font-size: 0.9375rem;
  color: #888888;
  margin: 0.25rem 0 0;
}

.pdp-info__price {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pdp-info__price--compare {
  font-size: 1rem;
  font-weight: 400;
  color: #aaaaaa;
  text-decoration: line-through;
}

.pdp-info__divider {
  height: 1px;
  background: #f0ece9;
}

/* ---- Option selectors ---- */
.pdp-option {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 16px;
}

.pdp-option:last-child {
  margin-bottom: 0px;
}

.pdp-option__label {
  font-size: 0.9rem;
  color: #555555;
  margin: 0;
}

.pdp-option__selected {
  color: #1a1a1a;
}

.pdp-option--color-header {
  margin-top: 14px;
}

.pdp-option--color-header .pdp-option__label {
  margin-bottom: 12px;
  font-weight: 600;
  font-family: 'Google Sans', sans-serif;
  text-transform: capitalize;
  font-size: 14px;
  letter-spacing: 0px;
  color: #000000;
}

.pdp-option--color-header .pdp-option__selected {
  font-weight: 500;
  color: #1a1a1a;
  display: inline;
}

/* Color swatches */
.pdp-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-bottom: 6px;
  /* max-width: calc(6 * 28px + 5 * 10px); */
}

.pdp-swatch {
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  cursor: pointer;
  transition: outline-color 150ms ease;
  outline: 1.5px solid transparent;
  outline-offset: 2px;
  position: relative;
}

.pdp-swatch:not(.is-disable):hover,
.pdp-swatch:not(.is-disable).is-active,
button.pdp-swatch:not(.is-disable):hover,
button.pdp-swatch:not(.is-disable).is-active {
  outline: 2px solid #40484F !important;
  border: 2px solid rgba(0, 0, 0, 0.04);
}

.pdp-swatch.is-disable {
  cursor: not-allowed;
  border: 1px solid #8F9AA3 !important;
  outline: none !important;
  box-shadow: none !important;
}

.pdp-swatch.is-disable::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
}

.pdp-swatch svg {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.pdp-swatch.is-disable svg {
  display: block;
  transform: scale(1.06);
  transform-origin: center;
}

/* Tooltip */
.pdp-swatch[data-label]::after {
  content: attr(data-label);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #1a1a1a;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  padding: 3px 7px;
  border-radius: 5px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 120ms ease;
}

.pdp-swatch:hover[data-label]::after {
  opacity: 1;
}

/* Size pills */
.pdp-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pdp-pill {
  padding: 8px 16px;
  font-family: 'Google Sans', sans-serif;
  border: 1px solid #ffffff;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
  color: #40484F;
  background-color: #ffffff;
  cursor: pointer;
  transition: all 150ms ease;
  position: relative;
}

.pdp-pill:hover {
  border-color: #9CA3AF;
  color: #111827;
}

.pdp-pill.is-active {
  background-color: #40484F;
  border-color: #40484F;
  color: #ffffff;
}

.pdp-pill.is-disable {
  cursor: not-allowed;
  border-color: #E5E7EB !important;
  color: #D1D5DB !important;
  background-color: #ffffff !important;
  opacity: 1 !important;
}

.pdp-pill svg {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pdp-pill.is-disable svg {
  display: block;
}

.pdp-pill.is-unavailable {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ---- Actions row ---- */
.pdp-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pdp-qty {
  display: flex;
  align-items: center;
  border: 1.5px solid #40484F;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.pdp-qty__btn {
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #1a1a1a;
  transition: background 150ms ease;
  flex-shrink: 0;
}

.pdp-qty__btn:hover {
  background: #f5f5f5;
}

.pdp-qty__input {
  width: 48px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  outline: none;
  color: #1a1a1a;
  background: transparent;
  height: 48px;
  appearance: textfield;
  -moz-appearance: textfield;
}

.pdp-qty__input::-webkit-inner-spin-button,
.pdp-qty__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.pdp-atc {
  flex: 1;
  min-width: 180px;
  padding: 0 1.5rem;
  height: 48px;
  background: #2d2d2d;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 150ms ease;
  font-family: 'Figtree', sans-serif;
}

.pdp-atc:hover {
  background: #40484F;
}

.pdp-atc:disabled {
  background: #aaaaaa;
  cursor: not-allowed;
}

.pdp-atc.is-loading {
  pointer-events: none;
  opacity: 0.7;
}

.pdp-wishlist {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1.5px solid #e0e0e0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #888888;
  transition: border-color 150ms ease, color 150ms ease, background 150ms ease;
  flex-shrink: 0;
}

.pdp-wishlist:hover {
  border-color: #83324C;
  color: #83324C;
}

.pdp-wishlist.is-active {
  border-color: #83324C;
  color: #83324C;
  background: #fff0f5;
}

.pdp-wishlist.is-active svg {
  fill: #83324C;
}

/* ---- Accordion ---- */
.pdp-accordion {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #f0ece9;
}

.pdp-accordion__item {
  border-bottom: 1px solid #f0ece9;
}

.pdp-accordion__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a1a1a;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.pdp-accordion__icon {
  flex-shrink: 0;
  transition: transform 250ms ease;
}

.pdp-accordion__item.is-open .pdp-accordion__icon {
  transform: rotate(45deg);
}



.pdp-accordion__body ul {
  margin: 0 0 0.75rem 1.25rem;
  padding: 0;
}

.pdp-accordion__body li {
  margin-bottom: 0.25rem;
}

.pdp-accordion__body p {
  margin: 0 0 0.5rem;
  text-align: justify;
}

/* ---- YMAL Section ---- */
.pdp-ymal {
  padding: 0 0 64px;
  background: #FBF9F4;
}

.pdp-ymal__track-wrap {
  position: relative;
}

/* ---- Figma aligned desktop refinement ---- */
.pdp .container,
.pdp-ymal .container {
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 72px;
}

.page-breadcrumb {
  padding: 12px 0;
  background-color: #FBF9F4; 
}

.breadcrumb {
  align-items: center;
  gap: 8px;
}

.breadcrumb__item,
.breadcrumb__sep {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.breadcrumb__item a,
.breadcrumb__sep,
.breadcrumb__item--active {
  font-family: 'Figtree', sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
}

.breadcrumb__item a {
  display: inline-flex;
  align-items: center;
  color: #8F9AA3;
}

.breadcrumb__item--active {
  color: #40484F;
}

.breadcrumb__sep {
  color: #8F9AA3;
  transform: translateY(-0.5px);
}

.pdp-gallery {
  gap: 16px;
  top: 96px;
}

.pdp-gallery__main {
  border-radius: 10px;
  background: transparent;
  aspect-ratio: 1 / 1;
}

.pdp-gallery__main-img {
  object-fit: contain;
  padding: 0;
}

.pdp-gallery__arrow {
  width: 40px;
  height: 40px;
  background: transparent;
  color:#40484F;
  box-shadow: none;
}

.pdp-gallery__arrow--prev {
  left: 17.5px;
}

.pdp-gallery__arrow--next {
  right: 17.5px;
}

.pdp-gallery__thumbs {
  gap: 10px;
  padding-bottom: 0;
}

.pdp-gallery__thumb {
  width: 65px;
  height: 65px;
  border-radius: 0px;
  border: 1px solid transparent;
}

.pdp-gallery__thumb:hover,
.pdp-gallery__thumb.is-active {
  border-color: 8F9AA380;
}

.pdp-gallery__thumb img {
  object-fit: contain;
  padding: 3px;
}

.pdp-info {
  gap: 18px;
  padding-top: 25px;
  max-width: 620px;
}

.pdp-info__name {
  font-family: 'Google Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 140%;
  color: #000000;
}

.pdp-info__subtitle {
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #737E87;
  margin-top: 6px;
}

.pdp-info__price {
  font-family: 'Google Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0;
  color: #000000;
  gap: 10px;
  margin-top: 6px;
}

.pdp-info__price--compare {
  font-size: 14px;
  color: #9AA2A9;
}

.pdp-info__divider {
  display: none;
}

.pdp-option {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pdp-option__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.pdp-option__label {
  font-family: 'Google Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  text-transform: capitalize;
  margin: 0;
}

.pdp-option__size-links {
  display: flex;
  gap: 16px;
}

.pdp-option__size-link {
  font-family: 'Google Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #737E87;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 150ms ease;
}

.pdp-option__size-link:hover {
  color: #40484F;
}

.pdp-size-guide {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 12px;
}

.pdp-option__selected {
  color: #40484F;
  font-weight: 400;
}

.pdp-swatches {
  gap: 10px;
  padding-bottom: 0;
}

.pdp-swatch {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  outline: 1.5px solid transparent;
  outline-offset: 2px;
  transition: outline-color 150ms ease;
  overflow: hidden;
}

.pdp-swatch .product-swatches__disabled-line {
  display: none !important;
}

.pdp-swatch:not(.is-disable):hover,
.pdp-swatch:not(.is-disable).is-active {
  outline: 1.5px solid #40484F !important;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.pdp-actions {
  display: grid;
  grid-template-columns: 92px minmax(220px, 1fr);
  gap: 16px;
  width: 100%;
  margin-top: 25px;
  align-items: center;
  flex-wrap: nowrap;
}

.pdp-qty {
  width: 95px;
  height: 44px;
  border: 1px solid #ffffff;
  border-radius: 0;
}

.pdp-qty__btn {
  width: 28px;
  height: 44px;
}

.pdp-qty__input {
  width: 36px;
  height: 44px;
}

.pdp-qty__input {
  font-family: 'Figtree', sans-serif;
  font-size: 12px;
  font-weight: 500;
}

.pdp-atc {
  max-width: 100%;
  width: 100%;
  height: 36px;
  border-radius: 4px;
  background: #40484F;
  font-family: 'Google Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.pdp-wishlist {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: #ffffff;
  border-color: #E0E0E0;
}

.pdp-accordion {
  margin-top: 4px;
  border-top: 1px solid #EDEDED;
}

.pdp-sticky-bar {
  display: none !important;
}

.pdp-accordion__item {
  border-bottom: 1px solid #EDEDED;
}

.pdp-accordion__trigger {
  padding: 16px 0;
  font-family: 'Google Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}

.pdp-accordion__icon line:first-child {
  transition: opacity 160ms ease;
}

.pdp-accordion__item.is-open .pdp-accordion__icon {
  transform: none;
}

.pdp-accordion__item.is-open .pdp-accordion__icon line:first-child {
  opacity: 0;
}

.pdp-accordion__body {
  padding-bottom: 18px;
  font-family: 'Google Sans', sans-serif;
  font-size: 12px;
  line-height: 1.7;
  color: #000000;
}


.pdp-ymal .section-heading {
  margin-bottom: 24px;
}

.pdp-ymal .section-heading__title {
  font-family: 'Google Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  margin-left: 16px;
}

.pdp-ymal__swiper {
  overflow: hidden;
}

/* ---- PDP YMAL ("Pasangkan Dengan") Price Styling ---- */
.pdp-ymal .product-card__price-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.pdp-ymal .product-card__price {
  font-size: 12px;
  font-weight: 500;
  color: #40484F;
}

.pdp-ymal .product-card__price--sale {
  font-family: 'Google Sans', sans-serif;
  background-color: #BE0A0A !important;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  display: inline-block;
  line-height: 1.2;
}

.pdp-ymal .product-card__price-percent {
  display: inline !important;
}

.pdp-ymal .product-card__price--original {
  font-size: 12px;
  font-weight: 500;
  color: #B0B8BF;
  text-decoration: line-through;
  line-height: 1;
}

.pdp-ymal__swiper .product-card__badges {
  justify-content: flex-end;
  top: 1.3rem;
}

.pdp-ymal__swiper .product-card__badge {
  border-radius: 0;
}

.pdp-ymal__swiper .product-card__badge--new {
  background: #E0C7C5;
  color: #40484F;
  font-size: 10px;
  font-weight: 600;
  font-family: 'Figtree', sans-serif;
  line-height: 100%;
  letter-spacing: 1px;
}

.pdp-ymal__swiper .product-card__badge--hot {
  border-radius: 0;
  font-size: 10px;
  font-weight: 600;
  font-family: 'Figtree', sans-serif;
  line-height: 100%;
  letter-spacing: 1px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pdp-ymal__swiper .product-card {
  height: auto;
  box-shadow: none;
  border-radius: 0;
}

.pdp-ymal__swiper .product-card:hover {
  transform: none;
  box-shadow: none;
  border: none !important;
  outline: none !important;
}

.pdp-ymal__swiper .product-card__media {
  background: transparent;
  aspect-ratio: 1 / 1;
}

.pdp-ymal__swiper .product-card__media:hover,
.pdp-ymal__swiper .product-card__img:hover {
  outline: none !important;
  border: none !important;
}

.pdp-ymal__swiper .product-card__img {
  object-fit: contain;
}

.pdp-ymal__swiper .product-card__price {
  font-size: 12px;
}

.pdp-ymal__swiper .product-card__price--original {
  font-size: 10px;
}

.pdp-ymal__swiper .product-card__description {
  display: none;
}

.pdp-ymal__swiper .product-card__footer {
  display: flex;
  justify-content: flex-start;
  padding: 16px 0 0;
}

.pdp-ymal__swiper .product-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #40484F;
  font-family: 'Figtree', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  gap: 8px;
}

.pdp-ymal__swiper .product-card__cta--solid,
.pdp-ymal__swiper .product-card__cta:hover {
  background: transparent;
  color: #40484F;
  transform: none;
}

/* ---- Responsive ---- */
@media (max-width: 980px) {
  .page-breadcrumb {
    display: none;
  }


  .pdp-option__header {
    margin-top: 8px;
  }



  .pdp .container,
  .pdp-ymal .container {
    padding-inline: 16px;
  }

  .pdp {
    padding: 18px 0 26px;
    background: #FBF9F4;
  }

  .pdp__grid {
    flex-direction: column;
    gap: 18px;
  }

  .pdp-gallery,
  .pdp-info {
    flex: none;
    width: 100%;
    min-width: 0;
  }

  .pdp-gallery {
    position: static;
    gap: 12px;
  }

  .pdp-gallery__main {
    border-radius: 0;
    background: #fcf8f9;
    aspect-ratio: 1 / 1;
  }

  .pdp-gallery__main-img {
    padding: 0;
    object-fit: contain;
  }

  .pdp-gallery__arrow {
    display: none !important;
  }

  .pdp-gallery__thumbs {
    gap: 7px;
    padding: 0 0 2px;
    width: calc(100% + 16px);
    padding-inline-end: 16px;
  }

  .pdp-gallery__thumb {
    width: 16%;
    height: auto;
    border-radius: 2px;
    border: 1px solid #E2D8D8;
  }

  .pdp-gallery__thumb img {
    padding: 2px;
  }

  .pdp-info {
    max-width: none;
    gap: 12px;
    padding-top: 0;
  }

  .pdp-info__name {
    font-size: 20px;
    line-height: 1.2;
    color: #000000;
    max-width: 92%;
  }

  .pdp-info__subtitle {
    margin-top: 4px;
    font-size: 16px;
    line-height: 1.3;
  }

  .pdp-info__price {
    font-size: 14px;
    gap: 8px;
  }

  .pdp-info__price--compare {
    font-size: 12px;
  }

  .pdp-info__divider {
    display: none;
  }

  .pdp-option {
    gap: 16px;
  }

  .pdp-option__label {
    font-size: 14px;
    margin-bottom: 0 !important;
  }

  .pdp-swatches {
    gap: 12px;
    flex-wrap: wrap;
    padding: 4px;
    max-width: 100%;
  }

  .pdp-option__size-link {
    text-underline-offset: 8px;
  }

  .pdp-swatch {
    width: 56px;
    height: 56px;
    outline-width: 1.5px;
    outline-offset: 2px;
  }

  .pdp-pills {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .pdp-pills::-webkit-scrollbar {
    display: none;
  }

  .pdp-pill {
    flex: 1;
    min-width: max-content;
    padding: 10px 8px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
    background-color: #ffffff;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }

  .pdp-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
  }

  .pdp-qty {
    width: auto;
    height: 48px;
    border-radius: 4px;
    border: 1px solid #F8F8F8;
    background: #FFFCFC;
    flex-shrink: 0;
  }

  .pdp-qty__btn {
    width: 40px;
    height: 48px;
  }

  .pdp-qty__btn svg {
    width: 20px;
    height: 20px;
    color: #000000;
  }

  .pdp-qty__input {
    width: 36px;
    height: 48px;
    font-size: 14px;
    font-weight: 500;
  }

  .pdp-atc {
    flex: 1;
    height: 48px;
    padding: 0 16px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 4px;
    background: #40484FB2;
  }

  .pdp-atc:disabled {
    background-color: #797C7F !important;
    color: #ffffff !important;
    cursor: not-allowed;
    opacity: 1;
  }

  .pdp-atc:not(:disabled) {
    background-color: #40484F !important;
    color: #ffffff !important;
  }

  /* ---- Sticky Bottom Action Bar ---- */
  .pdp-sticky-bar {
    display: block !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #E6DCD1;
    padding: 16px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 600ms cubic-bezier(0.25, 1, 0.5, 1), transform 600ms cubic-bezier(0.25, 1, 0.5, 1), visibility 600ms;
    pointer-events: auto;
  }
  .pdp-sticky-bar.is-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    pointer-events: none;
  }
  body.template-product {
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    background: #ffffff !important;
  }

  .pdp-sticky-bar__inner {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .pdp-sticky-bar__qty {
    width: auto;
    height: 39px;
    border-radius: 4px;
    border: 1px solid #E5E7EB;
    background: #ffffff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  .pdp-sticky-bar__qty .pdp-qty__btn {
    width: 34px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .pdp-sticky-bar__qty .pdp-qty__input {
    width: 32px;
    height: 44px;
    border: none;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    background: transparent;
  }

  .pdp-sticky-bar__btn {
    flex: 1;
    height: 39px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 4px;
    border: none;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
  }

  .pdp-sticky-bar__btn:disabled {
    background-color: #797C7F !important;
    color: #ffffff !important;
    cursor: not-allowed;
    opacity: 1;
  }

  .pdp-sticky-bar__btn:not(:disabled) {
    background-color: #40484F !important;
    color: #ffffff !important;
    cursor: pointer;
  }

  .pdp-accordion {
    margin-top: 10px;
  }

  .pdp-accordion__trigger {
    padding: 13px 8px;
  }

  .pdp-accordion__icon {
    width: 20px;
    height: 20px;
  }

  .pdp-accordion__body {
    padding-bottom: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .pdp-accordion__body ul {
    margin-left: 14px;
  }

  .pdp-ymal {
    padding: 0 0 24px;
    background: #FBF9F4;
  }

  .pdp-ymal .container {
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
  }

  .pdp-ymal .section-heading {
    margin-bottom: 12px;
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
  }

  .pdp-ymal .section-heading__title {
    font-size: 14px;
    margin-left: 0;
  }

  .pdp-ymal__track-wrap {
    overflow: hidden;
    padding-inline: 0px;
  }

  .pdp-ymal__swiper {
    overflow: hidden;
    width: 100%;
  }

  .pdp-ymal__swiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px 12px !important;
    transform: none !important;
    width: 100% !important;
  }

  .pdp-ymal__item {
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    margin-right: 0 !important;
  }

  /* Limit max 4 products in mobile view */
  .pdp-ymal__item:nth-child(n+5) {
    display: none !important;
  }

  .pdp-ymal__swiper .product-card__media {
    aspect-ratio: 1 / 1;
  }



}

.pdp-option.is-hidden-color {
  display: none !important;
}

/* ============================================================
   SIZE GUIDE POPUP MODAL (FIGMA SPECIFICATIONS)