/* book-details.css */

.book-details-page { padding: 40px 0; background: #f8f9fa; }
.book-main { background: white; border-radius: 20px; padding: 40px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
.book-image-container { position: relative; border-radius: 15px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.book-image-container img { width: 100%; height: auto; display: block; }
.book-badge-large { position: absolute; top: 20px; left: 20px; background: var(--accent); color: white; padding: 10px 20px; border-radius: 50px; font-weight: 700; font-size: 1rem; }
.book-info h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 15px; color: var(--primary); }
.book-meta { display: flex; flex-wrap: wrap; gap: 20px; margin-bottom: 25px; }
.book-meta-item { display: flex; align-items: center; gap: 8px; color: #6c757d; }
.book-meta-item i { color: var(--accent); }
.book-price-large { font-size: 3rem; font-weight: 800; color: var(--accent); margin: 25px 0; }
.book-price-large .original { font-size: 1.5rem; color: #6c757d; text-decoration: line-through; margin-left: 15px; }
.rating-large { display: flex; align-items: center; gap: 15px; margin-bottom: 25px; }
.rating-large .stars { font-size: 1.5rem; }
.rating-large .reviews { color: #6c757d; font-size: 1.1rem; }
.action-buttons { display: flex; gap: 15px; margin-top: 30px; }
.btn-add-cart { flex: 1; background: linear-gradient(135deg, var(--accent) 0%, #d35400 100%); color: white; border: none; padding: 18px 40px; border-radius: 50px; font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s ease; }
.btn-add-cart:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(230,126,34,0.3); color: white; }
.btn-order { flex: 1; background: #25D366; color: white; border: none; padding: 18px 40px; border-radius: 50px; font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s ease; }
.btn-order:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(37,211,102,0.3); color: white; }
.btn-wishlist { width: 70px; height: 70px; border-radius: 50%; border: 2px solid #dee2e6; background: white; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #6c757d; }
.book-features { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top:40px; padding-top:40px; border-top:1px solid #dee2e6; }
.feature-item { display:flex; align-items:center; gap:15px; }
.feature-icon { width:50px; height:50px; background:#f8f9fa; border-radius:12px; display:flex; align-items:center; justify-content:center; font-size:1.5rem; color:var(--accent); }
.related-section { margin-top:60px; }
@media (max-width:768px) {
    .book-main { padding:20px; }
    .book-info h1 { font-size:1.8rem; }
    .book-price-large { font-size:2rem; }
}