*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    background: #f9f9f9;
    color: #1a1a1a;
}

/* ── Container ── */
.pd-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Breadcrumb ── */
.pd-breadcrumb {
    font-size: 13px;
    color: #888;
    padding: 14px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.pd-breadcrumb a {
    color: #555;
    text-decoration: none;
}

.pd-breadcrumb a:hover {
    color: #c86118;
}

.pd-breadcrumb span {
    color: #aaa;
}

/* ── Main Layout ── */
.pd-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 60px;
}

/* ══ LEFT — Images ══ */
.pd-gallery {
    position: sticky;
    top: 20px;
}

.pd-main-img {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pd-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: opacity .2s;
}

.pd-thumbs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
    overflow-y: auto;
    max-height: 340px;
}

.pd-thumb-item {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color .2s;
    background: #fff;
}

.pd-thumb-item.active {
    border-color: #c86118;
}

.pd-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pd-gallery-inner {
    display: flex;
    gap: 12px;
}

.pd-thumb-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 72px;
    flex-shrink: 0;
}

.pd-main-col {
    flex: 1;
}

/* Prev/Next nav */
.pd-img-nav {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.pd-img-nav button {
    flex: 1;
    height: 32px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    font-size: 16px;
    color: #555;
    transition: all .2s;
}

.pd-img-nav button:hover {
    background: #c86118;
    color: #fff;
    border-color: #c86118;
}

/* ══ RIGHT — Details ══ */
.pd-detail {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 28px;
}

.pd-subcat-label {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

.pd-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 8px;
}

.pd-desc-short {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
}

/* ── MRP + bulk note ── */
.pd-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.pd-mrp-label {
    font-size: 15px;
    color: #444;
}

.pd-mrp {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: line-through;
}

.pd-bulk-note {
    font-size: 13px;
    color: #c86118;
    font-weight: 600;
}

/* ── USP bullets ── */
.pd-usp {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.pd-usp-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #444;
}

.pd-usp-item i {
    color: #22c55e;
    font-size: 16px;
}

/* ── Quantity slabs ── */
.pd-slabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.pd-slab {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all .15s;
    position: relative;
}

.pd-slab input[type=radio] {
    accent-color: #c86118;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.pd-slab-label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    flex: 1;
}

.pd-slab-price {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.pd-slab.best {
    background: #fff5f6;
    border-color: #c86118;
}

.pd-slab-badge {
    background: #c86118;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    margin-left: 6px;
}

/* ── CTA Buttons ── */
.pd-cta-primary {
    width: 100%;
    height: 52px;
    background: #c86118;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    transition: background .2s;
    margin-bottom: 12px;
}

.pd-cta-primary:hover {
    background: #c86118;
}

.pd-cta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 18px;
}

.pd-cta-sec {
    height: 46px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    color: #333;
    text-decoration: none;
    transition: all .2s;
}

.pd-cta-sec:hover {
    border-color: #c86118;
    color: #c86118;
}

.pd-cta-sec .wa-icon {
    color: #25d366;
    font-size: 18px;
}

/* ── Sample bar ── */
.pd-sample-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff9f0;
    border: 1px solid #fde8cc;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    gap: 10px;
}

.pd-sample-bar span {
    font-size: 13.5px;
    color: #555;
}

.pd-sample-bar strong {
    color: #1a1a1a;
}

.pd-sample-btn {
    height: 36px;
    padding: 0 16px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: "Plus Jakarta Sans", Arial, sans-serif;
    color: #333;
    transition: all .2s;
}

.pd-sample-btn:hover {
    border-color: #c86118;
    color: #c86118;
}

/* ── Customization table ── */
.pd-custom-table {
    font-size: 13px;
    color: #444;
    margin-bottom: 16px;
}

.pd-custom-table .ct-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.pd-custom-row {
    display: grid;
    grid-template-columns: 140px 1fr 1fr;
    padding: 6px 0;
    border-bottom: 1px solid #f5f5f5;
    gap: 8px;
}

.pd-custom-row:last-child {
    border-bottom: none;
}

/* ── Colors ── */
.pd-colors-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.pd-colors-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}

.pd-color-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.pd-color-dot {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 1.5px solid rgba(0, 0, 0, .12);
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
}

.pd-color-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

/* ── Sizes ── */
.pd-sizes-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.pd-sizes-label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
}

.pd-size-tag {
    padding: 5px 14px;
    border: 1.5px solid #ddd;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

/* ── Share ── */
.pd-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid #f0f0f0;
}

.pd-share-label {
    font-size: 13px;
    font-weight: 600;
    color: #777;
}

.pd-share a {
    color: #555;
    font-size: 18px;
    text-decoration: none;
    transition: color .15s;
}

.pd-share a:hover {
    color: #c86118;
}

/* ══ Accordion ══ */
.pd-accordion {
    margin-top: 24px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.acc-item {
    border-bottom: 1px solid #eee;
}

.acc-item:last-child {
    border-bottom: none;
}

.acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 18px;
    cursor: pointer;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    transition: background .15s;
    user-select: none;
}

.acc-header:hover {
    background: #fafafa;
}

.acc-icon {
    font-size: 13px;
    color: #999;
    transition: transform .25s;
}

.acc-item.open .acc-icon {
    transform: rotate(180deg);
}

.acc-body {
    display: none;
    padding: 14px 18px;
    background: #fff;
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}

.acc-item.open .acc-body {
    display: block;
}

.acc-body ul {
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.acc-body li {
    color: #555;
}

.acc-body p {
    color: #555;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .pd-layout {
        grid-template-columns: 1fr;
    }

    .pd-gallery {
        position: static;
    }

    .pd-detail {
        margin-top: 0;
    }
}

@media (max-width: 560px) {
    .pd-wrap {
        padding: 0 14px;
    }

    .pd-name {
        font-size: 20px;
    }

    .pd-cta-row {
        grid-template-columns: 1fr;
    }

    .pd-detail {
        padding: 18px;
    }
}
