/* =========================================================
   CRICKET STATION — PRODUCT DETAIL PAGE STYLES
   Prefix: pdp- (Product Detail Page)
========================================================= */

/* ---------- GLOBAL ---------- */
.pdp-label {
    font-family: 'Cinzel', serif;
    color: #C9A15A;
    letter-spacing: 0.4em;
    font-size: 0.75rem;
    margin-bottom: 1rem;
}
.pdp-section-title {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: 0.05em;
}
.pdp-section-title span { color: #C9A15A; font-style: italic; }
.pdp-section-desc {
    color: #D1D5DB;
    max-width: 600px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
}
.pdp-section-header { margin-bottom: 4rem; }

/* ---------- BREADCRUMB ---------- */
.pdp-breadcrumb-wrap {
    padding: 7rem 0 1rem;
    background: #0D1B17;
}
.pdp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #D1D5DB;
    flex-wrap: wrap;
}
.pdp-breadcrumb a {
    color: #D1D5DB;
    transition: color 0.3s;
    text-transform: uppercase;
}
.pdp-breadcrumb a:hover { color: #C9A15A; }
.pdp-breadcrumb span { color: #C9A15A; }
.pdp-breadcrumb i { font-size: 0.6rem; color: rgba(201,161,90,0.5); }

/* ---------- HERO (Showcase + Info) ---------- */
.pdp-hero { padding: 3rem 0 6rem; }
.pdp-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Gallery */
.pdp-main-img {
    position: relative;
    aspect-ratio: 1/1;
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
}
.pdp-main-img-inner {
    width: 100%; height: 100%;
    overflow: hidden;
}
.pdp-main-img-inner img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease, opacity 0.5s ease;
}
.pdp-main-img:hover .pdp-main-img-inner img { transform: scale(1.08); }

.pdp-view-360, .pdp-zoom-btn {
    position: absolute;
    width: 48px; height: 48px;
    background: rgba(13,27,23,0.85);
    border: 1px solid rgba(201,161,90,0.4);
    border-radius: 50%;
    color: #C9A15A;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}
.pdp-view-360 {
    bottom: 1rem; left: 1rem;
    flex-direction: column;
    font-size: 0.6rem;
    gap: 0.1rem;
}
.pdp-view-360 span { font-family: 'Cinzel', serif; letter-spacing: 0.1em; }
.pdp-zoom-btn { top: 1rem; right: 1rem; }
.pdp-view-360:hover, .pdp-zoom-btn:hover {
    background: #C9A15A;
    color: #0D1B17;
    transform: scale(1.1);
}

.pdp-thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}
.pdp-thumb {
    aspect-ratio: 1/1;
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}
.pdp-thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.pdp-thumb:hover img { transform: scale(1.1); }
.pdp-thumb.active {
    border-color: #C9A15A;
    box-shadow: 0 0 20px rgba(201,161,90,0.2);
}
.pdp-thumb-video i {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A15A;
    background: rgba(13,27,23,0.6);
    font-size: 1.2rem;
}

/* Info */
.pdp-info { padding-top: 1rem; }
.pdp-cat {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: #C9A15A;
    margin-bottom: 1rem;
}
.pdp-title {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.1;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.pdp-title span { color: #C9A15A; font-style: italic; }
.pdp-subtitle {
    color: #D1D5DB;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.pdp-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.pdp-stars { color: #C9A15A; letter-spacing: 0.15em; }
.pdp-rating-text { font-size: 0.85rem; color: #D1D5DB; }

.pdp-price-row {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}
.pdp-price {
    font-family: 'Cinzel', serif;
    color: #C9A15A;
    font-size: 2.5rem;
    font-weight: 600;
}
.pdp-price-note {
    font-size: 0.8rem;
    color: #D1D5DB;
    letter-spacing: 0.1em;
}

.pdp-availability {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(127,183,126,0.1);
    border: 1px solid rgba(127,183,126,0.3);
    border-radius: 2px;
    font-size: 0.8rem;
    color: #7FB77E;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}
.pdp-avail-dot {
    width: 8px; height: 8px;
    background: #7FB77E;
    border-radius: 50%;
    animation: pdp-pulse 2s infinite;
}
@keyframes pdp-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.pdp-desc {
    color: #D1D5DB;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(143,106,53,0.2);
}

.pdp-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(143,106,53,0.2);
}
.pdp-meta-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}
.pdp-meta-item span:first-child {
    color: #D1D5DB;
    letter-spacing: 0.1em;
}
.pdp-meta-item span:last-child { color: #F5F1E8; }

.pdp-actions {
    display: flex;
    gap: 0.75rem;
}
.pdp-action-btn {
    width: 48px; height: 48px;
    background: transparent;
    border: 1px solid rgba(201,161,90,0.4);
    border-radius: 50%;
    color: #C9A15A;
    cursor: pointer;
    transition: all 0.3s;
}
.pdp-action-btn:hover {
    background: #C9A15A;
    color: #0D1B17;
    transform: translateY(-3px);
}

/* ---------- CONFIGURATOR ---------- */
.pdp-config-section {
    padding: 6rem 0;
    background: #16261F;
}
.pdp-config-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.pdp-configurator {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 6px;
    padding: 2.5rem;
}

/* Steps Nav */
.pdp-steps-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(143,106,53,0.2);
}
.pdp-step-btn {
    padding: 0.6rem 1rem;
    background: transparent;
    border: 1px solid rgba(143,106,53,0.3);
    border-radius: 2px;
    color: #D1D5DB;
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.pdp-step-btn span {
    color: #C9A15A;
    font-weight: 600;
}
.pdp-step-btn:hover {
    border-color: #C9A15A;
    color: #F5F1E8;
}
.pdp-step-btn.active {
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    color: #0D1B17;
    border-color: #C9A15A;
}
.pdp-step-btn.active span { color: #0D1B17; }

/* Progress */
.pdp-progress {
    position: relative;
    height: 2px;
    background: rgba(143,106,53,0.2);
    margin-bottom: 0.75rem;
    border-radius: 2px;
    overflow: hidden;
}
.pdp-progress-fill {
    position: absolute;
    inset: 0;
    width: 10%;
    background: linear-gradient(90deg, #C9A15A, #E3BE74);
    transition: width 0.5s ease;
}
.pdp-progress-text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: #C9A15A;
    margin-bottom: 2rem;
}

/* Panels */
.pdp-panels { min-height: 400px; }
.pdp-panel {
    display: none;
    animation: pdp-fadeIn 0.5s ease;
}
.pdp-panel.active { display: block; }
@keyframes pdp-fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.pdp-panel-title {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.pdp-panel-desc {
    color: #D1D5DB;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Option Cards */
.pdp-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.pdp-options-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.pdp-option-card {
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 4px;
    background: #0D1B17;
    transition: all 0.4s;
    overflow: hidden;
}
.pdp-option-card input { position: absolute; opacity: 0; }
.pdp-option-card:hover {
    border-color: rgba(201,161,90,0.5);
    transform: translateY(-4px);
}
.pdp-option-card.selected,
.pdp-option-card:has(input:checked) {
    border-color: #C9A15A;
    background: linear-gradient(135deg, rgba(201,161,90,0.08), transparent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 1px #C9A15A;
}
.pdp-option-inner { padding: 1.5rem; text-align: center; }
.pdp-option-icon {
    width: 60px; height: 60px;
    margin: 0 auto 1rem;
    border: 1px solid #C9A15A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A15A;
    font-size: 1.5rem;
    transition: all 0.4s;
}
.pdp-option-card.selected .pdp-option-icon,
.pdp-option-card:has(input:checked) .pdp-option-icon {
    background: #C9A15A;
    color: #0D1B17;
    transform: rotate(360deg);
}
.pdp-option-card h4 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.pdp-option-card p {
    font-size: 0.8rem;
    color: #D1D5DB;
    line-height: 1.5;
}

/* Visual diagrams */
.pdp-option-visual {
    height: 100px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pdp-bat-diagram {
    width: 30px;
    height: 90px;
    background: linear-gradient(180deg, #C9A15A 0%, #8F6A35 100%);
    border-radius: 15px 15px 4px 4px;
    position: relative;
}
.pdp-bat-weight {
    position: absolute;
    width: 14px; height: 14px;
    background: #E3BE74;
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(227,190,116,0.8);
}
.pdp-bat-weight.high { top: 10px; }
.pdp-bat-weight.mid { top: 40px; }
.pdp-bat-weight.low { top: 70px; }

.pdp-blade-diagram {
    width: 60px; height: 90px;
    background: linear-gradient(180deg, #C9A15A, #8F6A35);
    border-radius: 4px;
}
.pdp-blade-diagram.straight { border-radius: 4px; }
.pdp-blade-diagram.slight { border-radius: 4px 4px 30px 30px / 4px 4px 15px 15px; }
.pdp-blade-diagram.full { border-radius: 4px 4px 40px 40px / 4px 4px 25px 25px; }

.pdp-edge-diagram {
    width: 80px; height: 20px;
    background: linear-gradient(90deg, #C9A15A, #8F6A35);
    border-radius: 2px;
}
.pdp-edge-diagram.standard { height: 14px; }
.pdp-edge-diagram.thick { height: 22px; }
.pdp-edge-diagram.extra { height: 30px; }

.pdp-toe-diagram {
    width: 60px; height: 30px;
    background: linear-gradient(180deg, #C9A15A, #8F6A35);
}
.pdp-toe-diagram.rounded { border-radius: 0 0 50% 50%; }
.pdp-toe-diagram.square { border-radius: 0; }
.pdp-toe-diagram.semi { border-radius: 0 0 30% 30%; }

/* Grade Cards */
.pdp-grade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.pdp-grade-card {
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 4px;
    background: #0D1B17;
    transition: all 0.4s;
    overflow: hidden;
}
.pdp-grade-card input { position: absolute; opacity: 0; }
.pdp-grade-card:hover {
    border-color: rgba(201,161,90,0.5);
    transform: translateY(-4px);
}
.pdp-grade-card.selected,
.pdp-grade-card:has(input:checked) {
    border-color: #C9A15A;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 1px #C9A15A;
}
.pdp-grade-inner { display: flex; flex-direction: column; }
.pdp-grade-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}
.pdp-grade-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.pdp-grade-card:hover .pdp-grade-img img { transform: scale(1.08); }
.pdp-grade-badge {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    padding: 0.3rem 0.7rem;
    background: rgba(13,27,23,0.9);
    color: #C9A15A;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    font-family: 'Cinzel', serif;
    border: 1px solid rgba(201,161,90,0.3);
    border-radius: 2px;
}
.pdp-grade-info { padding: 1.25rem; }
.pdp-grade-info h4 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}
.pdp-grade-info p {
    font-size: 0.8rem;
    color: #D1D5DB;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}
.pdp-grade-price {
    font-family: 'Cinzel', serif;
    color: #C9A15A;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* Weight Slider */
.pdp-weight-wrap {
    background: #0D1B17;
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 4px;
    padding: 2.5rem;
}
.pdp-weight-display {
    text-align: center;
    margin-bottom: 2rem;
}
.pdp-weight-value {
    font-family: 'Cinzel', serif;
    color: #C9A15A;
    font-size: 3rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}
.pdp-weight-guide {
    color: #D1D5DB;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}
.pdp-slider {
    width: 100%;
    height: 4px;
    background: rgba(143,106,53,0.3);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    margin-bottom: 1rem;
}
.pdp-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px; height: 24px;
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(201,161,90,0.5);
    border: 2px solid #E3BE74;
}
.pdp-slider::-moz-range-thumb {
    width: 24px; height: 24px;
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #E3BE74;
}
.pdp-weight-marks {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: #D1D5DB;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}
.pdp-weight-guide-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.pdp-guide-card {
    text-align: center;
    padding: 1rem;
    background: rgba(201,161,90,0.05);
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.pdp-guide-card i { color: #C9A15A; font-size: 1.25rem; }
.pdp-guide-card span { font-size: 0.75rem; color: #D1D5DB; letter-spacing: 0.1em; }

/* Knock-in Cards */
.pdp-knockin-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.pdp-knockin-card {
    cursor: pointer;
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 4px;
    background: #0D1B17;
    transition: all 0.4s;
}
.pdp-knockin-card input { position: absolute; opacity: 0; }
.pdp-knockin-card:hover { border-color: rgba(201,161,90,0.5); }
.pdp-knockin-card.selected,
.pdp-knockin-card:has(input:checked) {
    border-color: #C9A15A;
    background: linear-gradient(135deg, rgba(201,161,90,0.08), transparent);
    box-shadow: 0 0 0 1px #C9A15A;
}
.pdp-knockin-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
}
.pdp-knockin-icon {
    width: 60px; height: 60px;
    flex-shrink: 0;
    border: 1px solid #C9A15A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A15A;
    font-size: 1.5rem;
    transition: all 0.4s;
}
.pdp-knockin-card.selected .pdp-knockin-icon,
.pdp-knockin-card:has(input:checked) .pdp-knockin-icon {
    background: #C9A15A;
    color: #0D1B17;
}
.pdp-knockin-inner h4 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}
.pdp-knockin-inner p {
    font-size: 0.85rem;
    color: #D1D5DB;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}
.pdp-knockin-price {
    font-family: 'Cinzel', serif;
    color: #C9A15A;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

/* Customisation */
.pdp-custom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.pdp-custom-field.full { grid-column: 1 / -1; }
.pdp-custom-field label {
    display: block;
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}
.pdp-custom-field input,
.pdp-custom-field select,
.pdp-custom-field textarea {
    width: 100%;
    background: #0D1B17;
    border: 1px solid rgba(143,106,53,0.3);
    border-radius: 2px;
    padding: 0.9rem 1rem;
    color: #F5F1E8;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
    font-family: 'Inter', sans-serif;
}
.pdp-custom-field textarea { min-height: 100px; resize: vertical; }
.pdp-custom-field input:focus,
.pdp-custom-field select:focus,
.pdp-custom-field textarea:focus { border-color: #C9A15A; }
.pdp-custom-note {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #C9A15A;
    letter-spacing: 0.1em;
}

.pdp-color-picker {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.pdp-color-swatch {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(143,106,53,0.3);
    cursor: pointer;
    transition: all 0.3s;
}
.pdp-color-swatch:hover { transform: scale(1.1); }
.pdp-color-swatch.active {
    border-color: #C9A15A;
    box-shadow: 0 0 0 3px rgba(201,161,90,0.3);
    transform: scale(1.1);
}

/* Nav Buttons */
.pdp-config-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(143,106,53,0.2);
}
.pdp-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.75rem;
    background: transparent;
    border: 1px solid rgba(201,161,90,0.4);
    border-radius: 2px;
    color: #F5F1E8;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    cursor: pointer;
    transition: all 0.4s;
}
.pdp-nav-btn:hover {
    background: #C9A15A;
    color: #0D1B17;
    border-color: #C9A15A;
}
.pdp-prev-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ---------- LIVE SUMMARY ---------- */
.pdp-summary {
    position: sticky;
    top: 100px;
    background: #1A2B24;
    border: 1px solid rgba(201,161,90,0.3);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.pdp-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, rgba(201,161,90,0.1), transparent);
    border-bottom: 1px solid rgba(143,106,53,0.2);
}
.pdp-summary-header h3 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1rem;
    letter-spacing: 0.1em;
}
.pdp-summary-badge {
    padding: 0.2rem 0.6rem;
    background: rgba(127,183,126,0.15);
    color: #7FB77E;
    border: 1px solid rgba(127,183,126,0.3);
    border-radius: 2px;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
}

.pdp-summary-body { padding: 1.5rem; }
.pdp-summary-product {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}
.pdp-summary-product img {
    width: 60px; height: 60px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(201,161,90,0.3);
}
.pdp-summary-product h4 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}
.pdp-summary-product p {
    font-size: 0.75rem;
    color: #C9A15A;
    letter-spacing: 0.15em;
}

.pdp-summary-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,161,90,0.3), transparent);
    margin: 1.25rem 0;
}

.pdp-summary-config h4,
.pdp-summary-accessories h4 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
}
.pdp-summary-accessories h4 span { color: #C9A15A; }

.pdp-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.85rem;
}
.pdp-summary-row span:first-child { color: #D1D5DB; }
.pdp-summary-row span:last-child { color: #F5F1E8; }

.pdp-summary-empty {
    font-size: 0.8rem;
    color: #D1D5DB;
    font-style: italic;
    text-align: center;
    padding: 0.75rem;
    opacity: 0.6;
}

.pdp-summary-acc-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.pdp-summary-acc-item {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    font-size: 0.8rem;
    animation: pdp-fadeIn 0.3s ease;
}
.pdp-summary-acc-item span:first-child { color: #D1D5DB; }
.pdp-summary-acc-item span:last-child { color: #C9A15A; }

.pdp-summary-grand {
    padding-top: 0.75rem !important;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(201,161,90,0.2);
}
.pdp-summary-grand span {
    font-family: 'Cinzel', serif !important;
    font-size: 1.1rem !important;
    color: #C9A15A !important;
    font-weight: 600;
}

.pdp-summary-qty {
    margin-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pdp-summary-qty label {
    font-size: 0.8rem;
    color: #D1D5DB;
    letter-spacing: 0.1em;
}
.pdp-qty-control {
    display: flex;
    align-items: center;
    border: 1px solid rgba(201,161,90,0.3);
    border-radius: 2px;
    overflow: hidden;
}
.pdp-qty-control button {
    width: 36px; height: 36px;
    background: transparent;
    border: none;
    color: #C9A15A;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}
.pdp-qty-control button:hover { background: rgba(201,161,90,0.1); }
.pdp-qty-control span {
    padding: 0 1rem;
    color: #F5F1E8;
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    min-width: 40px;
    text-align: center;
}

.pdp-summary-footer {
    padding: 1.25rem 1.5rem;
    background: rgba(13,27,23,0.5);
    border-top: 1px solid rgba(143,106,53,0.2);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.pdp-add-cart, .pdp-buy-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 2px;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.25em;
    cursor: pointer;
    transition: all 0.4s;
    border: none;
}
.pdp-add-cart {
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    color: #0D1B17;
}
.pdp-add-cart:hover {
    background: linear-gradient(135deg, #E3BE74, #C9A15A);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201,161,90,0.3);
}
.pdp-buy-now {
    background: transparent;
    border: 1px solid rgba(201,161,90,0.4);
    color: #F5F1E8;
}
.pdp-buy-now:hover {
    background: rgba(201,161,90,0.1);
    border-color: #C9A15A;
    color: #C9A15A;
}

/* ---------- ACCESSORIES ---------- */
.pdp-acc-section { padding: 6rem 0; }
.pdp-acc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
}
.pdp-acc-card {
    cursor: pointer;
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
}
.pdp-acc-card input { position: absolute; opacity: 0; }
.pdp-acc-card:hover {
    border-color: rgba(201,161,90,0.5);
    transform: translateY(-5px);
}
.pdp-acc-card:has(input:checked) {
    border-color: #C9A15A;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 1px #C9A15A;
}
.pdp-acc-img {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.pdp-acc-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.pdp-acc-card:hover .pdp-acc-img img { transform: scale(1.08); }
.pdp-acc-check-icon {
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    width: 32px; height: 32px;
    background: #C9A15A;
    color: #0D1B17;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s;
}
.pdp-acc-card:has(input:checked) .pdp-acc-check-icon {
    opacity: 1;
    transform: scale(1);
}
.pdp-acc-info {
    padding: 1rem;
    text-align: center;
}
.pdp-acc-info h4 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}
.pdp-acc-price {
    font-family: 'Cinzel', serif;
    color: #C9A15A;
    font-size: 0.9rem;
}

/* ---------- FEATURES ---------- */
.pdp-features { padding: 6rem 0; background: #16261F; }
.pdp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.pdp-feature-card {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    padding: 2.5rem 2rem;
    border-radius: 4px;
    text-align: center;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}
.pdp-feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,161,90,0.08), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}
.pdp-feature-card:hover {
    transform: translateY(-8px);
    border-color: #C9A15A;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.pdp-feature-card:hover::before { opacity: 1; }
.pdp-feature-icon {
    width: 60px; height: 60px;
    border: 1px solid #C9A15A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A15A;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}
.pdp-feature-card:hover .pdp-feature-icon {
    background: #C9A15A;
    color: #0D1B17;
    transform: rotate(360deg);
}
.pdp-feature-card h3 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}
.pdp-feature-card p {
    color: #D1D5DB;
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ---------- SPECS ---------- */
.pdp-specs { padding: 6rem 0; }
.pdp-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 6px;
    padding: 2rem;
}
.pdp-spec-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(143,106,53,0.15);
    transition: background 0.3s;
}
.pdp-spec-card:hover { background: rgba(201,161,90,0.05); }
.pdp-spec-label {
    color: #D1D5DB;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}
.pdp-spec-value {
    color: #F5F1E8;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

/* ---------- GALLERY ---------- */
.pdp-gallery-section { padding: 6rem 0; background: #16261F; }
.pdp-gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 1rem;
}
.pdp-gal-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    display: block;
}
.pdp-gal-item.pdp-gal-tall { grid-row: span 2; }
.pdp-gal-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.pdp-gal-item:hover img { transform: scale(1.1); }
.pdp-gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,27,23,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A15A;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s;
}
.pdp-gal-item:hover .pdp-gal-overlay { opacity: 1; }

/* ---------- REVIEWS ---------- */
.pdp-reviews { padding: 6rem 0; }
.pdp-review-card {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    padding: 2.5rem;
    border-radius: 4px;
    margin: 1rem;
}
.pdp-review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.pdp-review-header img {
    width: 60px; height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #C9A15A;
}
.pdp-review-header h4 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}
.pdp-review-header p {
    font-size: 0.75rem;
    color: #D1D5DB;
    letter-spacing: 0.15em;
}
.pdp-verified {
    color: #7FB77E;
    margin-left: 0.5rem;
}
.pdp-review-stars {
    color: #C9A15A;
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
}
.pdp-review-text {
    font-family: 'Cinzel', serif;
    font-style: italic;
    color: #F5F1E8;
    font-size: 1.05rem;
    line-height: 1.8;
}
.pdp-reviews-pagination { margin-top: 2rem; text-align: center; }
.swiper-pagination-bullet {
    background: rgba(201,161,90,0.3) !important;
    opacity: 1 !important;
    width: 30px !important;
    height: 2px !important;
    border-radius: 0 !important;
}
.swiper-pagination-bullet-active {
    background: #C9A15A !important;
    width: 50px !important;
}

/* ---------- FAQ ---------- */
.pdp-faq { padding: 6rem 0; background: #16261F; }
.pdp-faq-item {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.2);
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.4s;
}
.pdp-faq-item.active { border-color: #C9A15A; }
.pdp-faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: #F5F1E8;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}
.pdp-faq-question:hover { color: #C9A15A; }
.pdp-faq-question i {
    color: #C9A15A;
    transition: transform 0.4s;
}
.pdp-faq-item.active .pdp-faq-question i { transform: rotate(45deg); }
.pdp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.pdp-faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #D1D5DB;
    line-height: 1.7;
}

/* ---------- RELATED ---------- */
.pdp-related { padding: 6rem 0; }
.pdp-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.pdp-related-card {
    background: #1A2B24;
    border: 1px solid rgba(143,106,53,0.15);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.5s;
}
.pdp-related-card:hover {
    border-color: #C9A15A;
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}
.pdp-related-img {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.pdp-related-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s;
}
.pdp-related-card:hover .pdp-related-img img { transform: scale(1.08); }
.pdp-related-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: rgba(13,27,23,0.85);
    color: #C9A15A;
    padding: 0.35rem 0.9rem;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    font-family: 'Cinzel', serif;
    border: 1px solid rgba(201,161,90,0.3);
    z-index: 2;
}
.pdp-related-badge.gold {
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    color: #0D1B17;
    border-color: transparent;
}
.pdp-related-actions {
    position: absolute;
    top: 1rem; right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s;
    z-index: 2;
}
.pdp-related-card:hover .pdp-related-actions {
    opacity: 1;
    transform: translateX(0);
}
.pdp-related-actions button {
    width: 40px; height: 40px;
    background: rgba(13,27,23,0.9);
    color: #C9A15A;
    border: 1px solid rgba(201,161,90,0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}
.pdp-related-actions button:hover {
    background: #C9A15A;
    color: #0D1B17;
}
.pdp-related-info { padding: 1.25rem; }
.pdp-related-info p {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: #C9A15A;
    margin-bottom: 0.4rem;
}
.pdp-related-info h3 {
    font-family: 'Cinzel', serif;
    color: #F5F1E8;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}
.pdp-related-price {
    font-family: 'Cinzel', serif;
    color: #C9A15A;
    font-size: 1.3rem;
    font-weight: 600;
}

/* ---------- MOBILE STICKY CART ---------- */
.pdp-mobile-cart {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(13,27,23,0.95);
    backdrop-filter: blur(18px);
    border-top: 1px solid rgba(201,161,90,0.3);
    padding: 0.75rem 1rem;
    z-index: 90;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}
.pdp-mobile-cart-info {
    display: flex;
    flex-direction: column;
}
.pdp-mobile-cart-price {
    font-family: 'Cinzel', serif;
    color: #C9A15A;
    font-size: 1.3rem;
    font-weight: 600;
}
.pdp-mobile-cart-label {
    font-size: 0.7rem;
    color: #D1D5DB;
    letter-spacing: 0.15em;
}
.pdp-mobile-cart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, #C9A15A, #8F6A35);
    color: #0D1B17;
    border: none;
    border-radius: 2px;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    cursor: pointer;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .pdp-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .pdp-config-layout { grid-template-columns: 1fr; }
    .pdp-summary { position: static; }
    .pdp-related-grid { grid-template-columns: repeat(2, 1fr); }
    .pdp-options-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .pdp-configurator { padding: 1.5rem; }
    .pdp-steps-nav { gap: 0.3rem; }
    .pdp-step-btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.65rem;
    }
    .pdp-options-grid,
    .pdp-options-grid.cols-3 { grid-template-columns: 1fr; }
    .pdp-custom-grid { grid-template-columns: 1fr; }
    .pdp-weight-guide-cards { grid-template-columns: 1fr; }
    .pdp-gallery-masonry { grid-template-columns: repeat(2, 1fr); }
    .pdp-mobile-cart { display: flex; }
    .pdp-summary-footer { display: none; }
    .pdp-specs-grid { grid-template-columns: 1fr; padding: 1rem; }
    body { padding-bottom: 80px; }
}
@media (max-width: 480px) {
    .pdp-thumbs { grid-template-columns: repeat(4, 1fr); }
    .pdp-related-grid { grid-template-columns: 1fr; }
    .pdp-acc-grid { grid-template-columns: repeat(2, 1fr); }
}