/* Product detail page */

.product-detail-container { max-width: 1240px; margin: 30px auto; padding: 0 24px; display: grid; grid-template-columns: 460px 1fr; gap: 40px; }
@media (max-width: 960px) { .product-detail-container { grid-template-columns: 1fr; } }

.gallery-wrapper { display: flex; gap: 16px; }
@media (max-width: 500px) { .gallery-wrapper { flex-direction: column-reverse; } }
.thumbnails-column { display: flex; flex-direction: column; gap: 12px; }
@media (max-width: 500px) { .thumbnails-column { flex-direction: row; } }
.thumb-img { width: 68px; height: 68px; border-radius: 12px; object-fit: cover; border: 2px solid transparent; cursor: pointer; background: var(--white); box-shadow: var(--shadow); transition: all .2s; }
.thumb-img:hover, .thumb-img.active { border-color: var(--saffron-deep); transform: scale(1.05); }
.main-image-container { position: relative; width: 360px; height: 400px; background: var(--white); border-radius: var(--radius); border: 1px solid rgba(43,27,46,0.08); box-shadow: var(--shadow); overflow: hidden; cursor: crosshair; }
.main-image-container img { width: 100%; height: 100%; object-fit: contain; padding: 16px; }
.zoom-result { position: absolute; top: 0; left: 380px; width: 400px; height: 400px; background: var(--white); border: 1px solid rgba(43,27,46,0.15); border-radius: var(--radius); box-shadow: 0 12px 36px rgba(0,0,0,0.15); display: none; z-index: 90; background-repeat: no-repeat; }

.details-column { display: flex; flex-direction: column; }
.product-category-tag { font-size: 12px; font-weight: 700; color: var(--saffron-deep); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.product-main-title { font-family: 'Cinzel', serif; font-size: 26px; color: var(--night); line-height: 1.3; margin-bottom: 8px; }
.rating-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.rating-badge { background: var(--green); color: #fff; font-size: 12px; font-weight: 700; padding: 3px 8px; border-radius: 6px; display: flex; align-items: center; gap: 4px; }
.rating-count { font-size: 13px; color: var(--ink-soft); }

.price-container { background: var(--white); padding: 16px 20px; border-radius: var(--radius); border: 1px solid rgba(43,27,46,0.08); margin-bottom: 20px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.price-current { font-size: 28px; font-weight: 700; color: var(--night); }
.price-mrp { font-size: 15px; color: var(--ink-soft); text-decoration: line-through; }
.discount-pill { background: var(--green-bg); color: var(--green); font-size: 13px; font-weight: 700; padding: 4px 10px; border-radius: 6px; }

.shipping-timer-box { background: linear-gradient(135deg, var(--cream-2), #FFF0E0); border: 1.5px dashed var(--saffron-light); border-radius: var(--radius); padding: 14px 18px; margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.timer-icon { font-size: 24px; }
.shipping-text { font-size: 13.5px; color: var(--night); }
.shipping-text strong { color: var(--saffron-deep); }
.countdown-clock { display: inline-block; background: var(--night); color: var(--gold); padding: 2px 8px; border-radius: 6px; font-family: monospace; font-weight: 700; }

.action-section { display: flex; align-items: center; gap: 16px; margin-bottom: 30px; flex-wrap: wrap; }
.qty-picker { display: flex; align-items: center; background: var(--white); border: 1.5px solid rgba(43,27,46,0.15); border-radius: 999px; overflow: hidden; }
.qty-btn { width: 36px; height: 36px; border: none; background: transparent; font-size: 16px; font-weight: 700; cursor: pointer; color: var(--night); }
.qty-btn:hover { background: var(--cream-2); }
.qty-val { width: 36px; text-align: center; font-size: 14px; font-weight: 600; }
.btn-buy-now { background: linear-gradient(135deg, var(--saffron), var(--saffron-deep)); color: #fff; border: none; padding: 12px 28px; border-radius: 999px; font-size: 14px; font-weight: 700; cursor: pointer; box-shadow: 0 6px 18px rgba(232,93,4,0.25); transition: transform .2s; font-family: inherit; }
.btn-buy-now:hover { transform: translateY(-2px); }
.btn-add-cart-outline { background: var(--white); color: var(--night); border: 2px solid var(--night); padding: 10px 24px; border-radius: 999px; font-size: 14px; font-weight: 700; cursor: pointer; transition: all .2s; font-family: inherit; }
.btn-add-cart-outline:hover { background: var(--night); color: #fff; }

.specs-section { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border: 1px solid rgba(43,27,46,0.06); margin-bottom: 40px; }
.section-heading { font-family: 'Cinzel', serif; font-size: 18px; color: var(--night); margin-bottom: 16px; border-bottom: 2px solid var(--cream-2); padding-bottom: 8px; }
.specs-grid { display: grid; grid-template-columns: 140px 1fr; row-gap: 12px; font-size: 13.5px; }
.spec-label { color: var(--ink-soft); font-weight: 500; }
.spec-value { color: var(--night); font-weight: 600; }

.related-section { max-width: 1240px; margin: 0 auto 60px; padding: 0 24px; }
