/* Product detail page — luxury polish (black + #FFD333 gold) */

.pdp {
    font-family: 'Roboto', sans-serif;
    color: #222;
}

/* ============ Gallery ============ */
.pdp-gallery__main {
    border: 1px solid #eee;
    background: #fafafa;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pdp-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pdp-gallery__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}
.pdp-gallery__thumb {
    width: 72px;
    height: 72px;
    padding: 0;
    border: 1px solid #e3e3e3;
    background: #fafafa;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}
.pdp-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pdp-gallery__thumb:hover {
    border-color: #d4af37;
    transform: translateY(-1px);
}
.pdp-gallery__thumb.is-active {
    border-color: #FFD333;
    box-shadow: 0 0 0 2px rgba(255, 211, 51, 0.35);
}

/* ============ Details column ============ */
.pdp-details__title {
    font-size: 1.85rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 18px;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.pdp-details__description {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 22px;
}
.pdp-details__description ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.pdp-details__description li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 8px;
}
.pdp-details__description li::before {
    content: "\f00c"; /* fa-check */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #d4af37;
    font-size: 0.85rem;
}
.pdp-details__description p {
    margin: 0 0 10px;
}

/* ============ Price block ============ */
.pdp-price {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin: 8px 0 6px;
}
.pdp-price__value {
    font-size: 1.9rem;
    font-weight: 700;
    color: #111;
    line-height: 1;
}
.pdp-price__currency {
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pdp-stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 22px;
}
.pdp-stock--in {
    background: #eaf6ee;
    color: #2a7c43;
}
.pdp-stock--out {
    background: #fcebea;
    color: #c0392b;
}
.pdp-stock__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

/* ============ Variant chips ============ */
.pdp-variants {
    margin-bottom: 22px;
}
.pdp-variants__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 10px;
}
.pdp-variants__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.pdp-chip {
    min-width: 54px;
    height: 36px;
    padding: 0 14px;
    border: 1px solid #222;
    background: #fff;
    color: #222;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}
.pdp-chip:hover:not(:disabled) {
    background: #f4f4f4;
}
.pdp-chip.is-active {
    background: #FFD333;
    border-color: #FFD333;
    color: #111;
    font-weight: 700;
}
.pdp-chip.is-oos {
    color: #bbb;
    border-color: #e2e2e2;
    text-decoration: line-through;
    cursor: not-allowed;
    background: #fafafa;
}

/* ============ Quantity row ============ */
.pdp-qty {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
}
.pdp-qty__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #555;
}

/* ============ Primary CTA ============ */
.pdp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    height: 50px;
    padding: 0 32px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: #FFD333;
    color: #111;
    border: 1px solid #FFD333;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, opacity 160ms ease;
}
.pdp-cta:hover:not(:disabled) {
    background: #f0c520;
    border-color: #f0c520;
}
.pdp-cta:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ============ Breadcrumb tweak (subtle) ============ */
.pdp-breadcrumb {
    background: transparent !important;
    padding: 0 0 20px !important;
    margin: 0 !important;
    font-size: 0.8rem;
}
.pdp-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #aaa;
}
.pdp-breadcrumb .breadcrumb-item a {
    color: #555;
    text-decoration: none;
    transition: color 140ms ease;
}
.pdp-breadcrumb .breadcrumb-item a:hover {
    color: #d4af37;
}
.pdp-breadcrumb .breadcrumb-item.active {
    color: #111;
    font-weight: 600;
}
