/* Frontend ortak component CSS (default + e-commerce + luxury + cicektemasi + hktema) */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 10000; padding: .75rem 1rem; background: #111; color: #fff; }
.skip-link:focus { left: 1rem; top: 1rem; }

/* Toast notification (header) */
.toast-notification { position: fixed; top: 20px; right: 20px; background: #fff; border-left: 5px solid #2ecc71; border-radius: 4px; padding: 20px; display: flex; align-items: flex-start; gap: 15px; min-width: 300px; z-index: 9999; transform: translateX(120%); animation: slideIn 0.5s forwards; box-shadow: 0 2px 15px rgba(0,0,0,0.1); }
.toast-notification.type-error { border-left-color: #e74c3c; }
.toast-notification.type-info { border-left-color: var(--accent, #222222); }
.toast-icon i { font-size: 1.5rem; color: #2ecc71; }
.type-error .toast-icon i { color: #e74c3c; }
.type-info .toast-icon i { color: var(--accent, #222222); }
.toast-content h4 { margin: 0 0 5px; font-size: 1rem; color: #333; }
.toast-content p { margin: 0; color: #666; font-size: 0.9rem; }
.toast-close { background: none; border: none; cursor: pointer; color: #999; padding: 0; margin-left: auto; }
@keyframes slideIn { to { transform: translateX(0); } }
@keyframes slideOut { to { transform: translateX(120%); opacity: 0; } }
@keyframes toastSlideOut { to { transform: translateX(120%); opacity: 0; } }

/* FAQ */
.faq-container { max-width: 800px; margin: 40px auto; padding: 0 20px; }
.faq-item { margin-bottom: 15px; border: 1px solid #eee; border-radius: 8px; overflow: hidden; }
.faq-question { background: #f9f9f9; padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
.faq-question:hover { background: #f0f0f0; }
.faq-answer { display: none; padding: 20px; background: #fff; line-height: 1.6; border-top: 1px solid #eee; }
.faq-item.active .faq-answer { display: block; }
.faq-icon { transition: transform 0.3s; }
.faq-item.active .faq-icon { transform: rotate(180deg); }

/* QA */
.qa-list { display: flex; flex-direction: column; gap: 16px; }
.qa-item { background: #f9fafb; border-radius: 8px; padding: 16px; }
.qa-question { display: flex; gap: 10px; font-weight: 600; color: var(--primary, var(--text-color, var(--text-dark, #181c32))); margin-bottom: 8px; }
.qa-answer { display: flex; gap: 10px; color: var(--text-color, var(--text-dark, #3f4254)); padding-left: 22px; }
.qa-icon { flex-shrink: 0; width: 20px; color: var(--accent, #222222); }
.qa-content { flex: 1; }
.qa-meta { font-size: 0.75rem; color: #a1a5b7; margin-top: 6px; }
.qa-author { font-weight: 600; color: #7e8299; }

/* Reviews */
.reviews-section { margin-top: 30px; }
.empty-state { text-align: center; padding: 40px 20px; }
.empty-state.reviews-empty { background: #fff8e1; border-radius: 12px; color: #b08800; }
.empty-state.qa-empty { background: var(--bg-light, #f7f7f7); border-radius: 12px; color: var(--accent, #222222); }
.review-item { padding: 16px 0; border-bottom: 1px solid #f1f1f4; }
.review-item:last-child { border-bottom: none; }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.review-author { font-weight: 600; color: #181c32; }
.review-date { font-size: 0.8rem; color: #a1a5b7; }
.review-rating { color: #f39c12; }
.review-body { color: #3f4254; line-height: 1.5; }
.review-filters { display: flex; gap: 8px; margin-bottom: 16px; }
.filter-btn { padding: 6px 14px; border: 1px solid #e4e6ef; border-radius: 20px; background: #fff; color: #7e8299; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; }
.filter-btn:hover { border-color: var(--accent, #222222); color: var(--accent, #222222); }
.filter-btn.active { background: var(--primary, var(--accent, #222222)); color: #fff; border-color: var(--primary, var(--accent, #222222)); }

/* Profile layout grid (12+ dosyada ortak) */
.profile-layout-grid { display: grid; grid-template-columns: 280px 1fr; gap: 40px; max-width: 1280px; margin: 40px auto; padding: 0 20px; }
@media (max-width: 992px) { .profile-layout-grid { grid-template-columns: 1fr; gap: 20px; } }
.edit-card { background: #fff; border-radius: 12px; padding: 24px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 768px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 18px; }
.form-group .form-label { font-weight: 600; color: #3f4254; font-size: 0.85rem; margin-bottom: 6px; display: block; }
.input-wrapper { position: relative; }
.input-wrapper i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #a1a5b7; }
.input-wrapper .form-control { padding-left: 36px; }
.form-control, .form-select { border: 1px solid #e4e6ef; border-radius: 8px; padding: 10px 14px; font-size: 0.88rem; transition: border-color 0.2s; width: 100%; }
.form-control:focus, .form-select:focus { border-color: var(--accent, #222222); box-shadow: 0 0 0 3px rgba(0,0,0,0.08); outline: none; }

/* Empty state (returns, address, wishlist) */
.empty-state { text-align: center; padding: 60px 20px; color: #7e8299; }
.empty-state.gradient-state { background: linear-gradient(135deg, #f8f9fb 0%, #eef2f7 100%); border-radius: 12px; border: 2px dashed #c5cbd9; }
.empty-state .empty-icon { width: 80px; height: 80px; margin: 0 auto 20px; background: var(--accent-light, var(--bg-light, #f7f7f7)); border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: floatIcon 3s ease-in-out infinite; }
.empty-state .empty-icon i { font-size: 2rem; color: var(--accent, #222222); }
@keyframes floatIcon { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Notification list (shop) */
.notification-list { display: flex; flex-direction: column; gap: 8px; }
.notification-item { display: flex; align-items: center; gap: 14px; padding: 16px; border-radius: 10px; background: #fff; border: 1px solid #f1f1f4; transition: all 0.2s; cursor: pointer; }
.notification-item.unread { background: var(--bg-light, #f7f7f7); border-left: 3px solid var(--accent, #222222); }
.notification-item h3 { font-size: 0.9rem; margin: 0; color: #181c32; font-weight: 600; }
.notification-item p { margin: 4px 0 0; font-size: 0.82rem; color: #7e8299; }
.notification-item .date { font-size: 0.75rem; color: #a1a5b7; }

/* Contact, About responsive wrapper */
.contact-wrapper, .about-wrapper { max-width: 1200px; margin: 40px auto; padding: 0 20px; }

/* Returns policy card */
.page-header { background: linear-gradient(135deg, #f8f9fb 0%, #eef2f7 100%); padding: 60px 20px 40px; text-align: center; }
.page-title { font-family: serif; font-size: 2.4rem; font-weight: 700; color: #181c32; margin: 0; }
.policy-card { background: #fff; border-radius: 12px; padding: 50px; margin: 30px auto; max-width: 900px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.section-title { font-size: 1.3rem; font-weight: 700; color: #181c32; margin: 0 0 20px; display: flex; align-items: center; gap: 10px; }
.section-icon { width: 36px; height: 36px; background: var(--bg-light, #f7f7f7); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--accent, #222222); }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 24px; }
.blog-card { background: #fff; border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.blog-card .img-wrapper { overflow: hidden; position: relative; }
.blog-card .img-wrapper img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .img-wrapper img { transform: scale(1.05); }
.article-body p { line-height: 1.8; color: #3f4254; margin-bottom: 16px; }
.article-hero img { width: 100%; max-height: 460px; object-fit: cover; border-radius: 12px; }
@media (max-width: 768px) { .article-hero img { max-height: 300px; } }

/* Profile sidebar */
.profile-nav .nav-item { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-radius: 8px; color: #3f4254; text-decoration: none; font-weight: 500; transition: all 0.2s; }
.profile-nav .nav-item:hover { background: var(--bg-light, #f7f7f7); color: var(--primary, var(--accent, #222222)); }
.profile-nav .nav-item.active { background: var(--primary, var(--accent, #222222)); color: #fff; }
.profile-nav .nav-item i { width: 20px; text-align: center; }
.profile-nav .nav-item .arrow { margin-left: auto; opacity: 0.5; }
.profile-nav .nav-item.text-danger:hover { background: #fff5f8; color: #f1416c; }
.profile-nav .nav-item.text-danger.active { background: #f1416c; color: #fff; }

/* Section cards (order detail, etc.) */
.section-card { background: #fff; border-radius: 16px; padding: 30px; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.section-title-sm { font-size: 1rem; font-weight: 700; color: #181c32; margin: 0 0 16px; }
.border-danger-subtle { border-color: rgba(241,65,108,0.2); }
.bg-danger-subtle-light { background: #fff8f8; }

/* ===== SIDE CART ===== */
.side-cart-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.45); z-index: 9998; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.side-cart-overlay.active { opacity: 1; visibility: visible; }
.side-cart-drawer { position: fixed; top: 0; right: -420px; width: 420px; max-width: 100vw; height: 100%; background: #fff; z-index: 9999; box-shadow: -4px 0 20px rgba(0,0,0,0.08); transition: right 0.35s cubic-bezier(0.4,0,0.2,1); display: flex; flex-direction: column; overflow: hidden; }
.side-cart-drawer.active { right: 0; }
.side-cart-header { padding: 18px 20px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; background: #fff; flex-shrink: 0; }
.side-cart-title { font-size: 1.05rem; font-weight: 700; margin: 0; letter-spacing: 0.3px; color: #111; }
.side-cart-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: 4px 8px; line-height: 1; color: #888; transition: all 0.2s; border-radius: 4px; }
.side-cart-close:hover { color: #000; background: #f5f5f5; }
.side-cart-body { flex: 1; overflow-y: auto; padding: 0; -webkit-overflow-scrolling: touch; }
.side-cart-items { list-style: none; padding: 0; margin: 0; }
.side-cart-item { display: flex; gap: 14px; padding: 16px 20px; border-bottom: 1px solid #f2f2f2; align-items: flex-start; }
.side-cart-item:last-child { border-bottom: none; }
.side-cart-item-img-link { flex-shrink: 0; display: block; width: 80px; height: 100px; border-radius: 8px; overflow: hidden; background: #f7f7f7; border: 1px solid #eee; }
.side-cart-item-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.side-cart-item-img-link:hover .side-cart-item-img { transform: scale(1.05); }
.side-cart-item-info { flex: 1; display: flex; flex-direction: column; min-width: 0; gap: 8px; }
.side-cart-item-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.side-cart-item-title { font-weight: 500; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; text-decoration: none; color: #222; font-size: 0.85rem; line-height: 1.4; flex: 1; min-width: 0; margin: 0; }
.side-cart-item-title:hover { color: #000; text-decoration: underline; }
.side-cart-item-remove-btn { background: none; border: none; color: #bbb; cursor: pointer; padding: 2px 4px; font-size: 0.95rem; transition: color 0.2s; flex-shrink: 0; line-height: 1; }
.side-cart-item-remove-btn:hover { color: #dc3545; }
.side-cart-stock-warn { color: #d9534f; font-size: 0.7rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.side-cart-stock-low { color: #f0ad4e; font-size: 0.7rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }
.side-cart-item-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.side-cart-qty-control { display: inline-flex; align-items: center; height: 30px; border: 1px solid #e0e0e0; border-radius: 6px; overflow: hidden; flex-shrink: 0; background: #fff; }
.side-cart-qty-control button { width: 28px; height: 100%; border: none; background: #f8f8f8; cursor: pointer; display: flex; justify-content: center; align-items: center; font-size: 0.9rem; color: #555; transition: all 0.15s; line-height: 1; padding: 0; }
.side-cart-qty-control button:hover { color: #000; background: #eee; }
.side-cart-qty-control .qty-val { min-width: 30px; text-align: center; font-size: 0.82rem; font-weight: 600; color: #222; height: 100%; display: flex; align-items: center; justify-content: center; padding: 0 2px; background: #fff; border-left: 1px solid #e8e8e8; border-right: 1px solid #e8e8e8; }
.side-cart-item-price-group { display: flex; flex-direction: column; align-items: flex-end; gap: 1px; }
.side-cart-unit-price { font-size: 0.72rem; color: #999; text-decoration: line-through; white-space: nowrap; }
.side-cart-line-total { font-size: 0.9rem; font-weight: 700; color: #111; white-space: nowrap; }
.side-cart-footer { padding: 18px 20px; border-top: 1px solid #eee; background: #fafafa; flex-shrink: 0; }
.side-cart-coupon-area { margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px dotted #ddd; }
.side-cart-coupon-form { display: flex; gap: 8px; }
.side-cart-coupon-input { flex: 1; padding: 9px 12px; border: 1px solid #ddd; border-radius: 6px; font-size: 0.85rem; outline: none; transition: border-color 0.2s; min-width: 0; background: #fff; }
.side-cart-coupon-input:focus { border-color: #333; }
.side-cart-coupon-btn { padding: 9px 18px; background: #444; color: #fff; border: none; border-radius: 6px; cursor: pointer; font-size: 0.85rem; font-weight: 600; transition: background 0.2s; white-space: nowrap; flex-shrink: 0; }
.side-cart-coupon-btn:hover { background: #111; }
.side-cart-coupon-msg { font-size: 0.75rem; margin-top: 5px; min-height: 1rem; }
.side-cart-summary-group { margin-bottom: 16px; }
.side-cart-summary-line { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; font-size: 0.88rem; color: #555; }
.side-cart-summary-line.discount-line { border-top: 1px solid #f0f0f0; padding-top: 8px; }
.side-cart-summary-line.total-line { margin-top: 10px; margin-bottom: 0; padding-top: 10px; border-top: 2px solid #111; font-weight: 700; font-size: 1.05rem; color: #000; }
.discount-info small { font-size: 0.72rem; display: block; line-height: 1.2; font-weight: normal; }
.side-cart-drawer .text-danger { color: #dc3545; }
.side-cart-drawer .text-success { color: #198754; }
.side-cart-drawer .text-info { color: var(--accent, #222222); }
.side-cart-drawer .text-muted { color: #888; }
.side-cart-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn-side-cart { text-align: center; padding: 12px 16px; border-radius: 6px; text-decoration: none; font-weight: 600; font-size: 0.9rem; transition: all 0.2s; display: block; cursor: pointer; }
.btn-view-cart { background: #f0f0f0; color: #333; border: 1px solid #e0e0e0; }
.btn-view-cart:hover { background: #e0e0e0; color: #111; }
.btn-checkout { background: #111; color: #fff; }
.btn-checkout:hover { background: #333; color: #fff; }
.btn-checkout.disabled { opacity: 0.5; cursor: not-allowed; }
.side-cart-loading { display: flex; flex-direction: column; justify-content: center; align-items: center; height: 150px; color: #aaa; gap: 10px; font-size: 0.85rem; }
.empty-side-cart { text-align: center; padding: 60px 20px; color: #aaa; }
.empty-side-cart i { font-size: 3rem; margin-bottom: 15px; opacity: 0.2; display: block; }
.empty-side-cart p { font-size: 0.95rem; margin-bottom: 15px; }
.side-cart-error { padding: 20px; text-align: center; color: #dc3545; }
@media (max-width: 480px) { .side-cart-drawer { width: 100%; right: -100%; } .side-cart-item-img-link { width: 65px; height: 82px; } .side-cart-item { gap: 10px; padding: 14px 16px; } .side-cart-item-bottom { flex-wrap: wrap; gap: 8px; } }

/* ===== CHAT WIDGET ===== */
.chat-widget { position: fixed; bottom: 25px; right: 25px; width: 350px; background: #fff; border-radius: 12px; box-shadow: 0 5px 25px rgba(0,0,0,0.15); z-index: 1000; overflow: hidden; transition: all 0.3s ease; border: 1px solid #eee; }
.chat-widget.closed { height: 50px; width: 180px; cursor: pointer; }
.chat-header { background: #000; color: #fff; padding: 15px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.chat-body { height: 350px; padding: 15px; overflow-y: auto; background: #f9f9f9; display: flex; flex-direction: column; gap: 10px; }
.chat-input-area { padding: 10px; border-top: 1px solid #eee; display: flex; gap: 10px; background: #fff; }
.chat-input-area input { flex-grow: 1; padding: 8px; border: 1px solid #ddd; border-radius: 4px; outline: none; }
.chat-input-area button { background: #000; color: #fff; border: none; padding: 8px 15px; border-radius: 4px; cursor: pointer; }
.message { padding: 10px; border-radius: 8px; max-width: 80%; font-size: 0.9rem; line-height: 1.4; }
.message.system { background: #e9ecef; align-self: flex-start; color: #333; }
.message.user { background: #000; color: #fff; align-self: flex-end; }
.typing-indicator { font-style: italic; color: #888; font-size: 0.8rem; margin-left: 10px; }

/* Cart (5 temada ortak) */
.cart-page { max-width: 800px; margin: 0 auto; }
.empty-cart { text-align: center; padding: 40px; }
.cart-table { width: 100%; border-collapse: collapse; margin-top: 20px; }
.cart-table th, .cart-table td { padding: 15px; border-bottom: 1px solid #eee; text-align: left; }
.cart-table th { background: #f9f9f9; font-weight: 600; }
.cart-summary { margin-top: 30px; text-align: right; background: #f9f9f9; padding: 20px; border-radius: 8px; }
.cart-summary .total { font-size: 1.2rem; margin-bottom: 20px; }
.cart-summary .actions { display: flex; justify-content: flex-end; gap: 10px; }
.cart-btn-secondary { padding: 10px 20px; border: 1px solid #ddd; border-radius: 4px; color: #333; background: #fff; text-decoration: none; display: inline-block; }

/* Shop layout (products/category listing) */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 30px; max-width: 1280px; margin: 30px auto; padding: 0 20px; }
@media (max-width: 992px) { .shop-layout { grid-template-columns: 1fr; } }
.shop-sidebar { background: var(--card-bg, #fff); border-radius: 12px; padding: 20px; height: fit-content; }
.filter-group { margin-bottom: 20px; }
.filter-group h3 { font-size: 0.95rem; font-weight: 700; color: var(--primary, var(--text-dark, #181c32)); margin: 0 0 12px; }
.filter-list { display: flex; flex-direction: column; gap: 4px; }
.filter-list a, .filter-list a:visited { display: block; padding: 8px 12px; border-radius: 6px; color: var(--text-color, var(--text-dark, #3f4254)); text-decoration: none; font-size: 0.9rem; transition: all 0.15s; }
.filter-list a:hover, .filter-list a:focus-visible { background: var(--bg-light, #f7f7f7); color: var(--primary, var(--accent, #222222)); }
.filter-list a.active, .filter-list a.active:hover, .filter-list a.active:focus-visible { background: var(--primary, var(--accent, #222222)); color: #fff; }

/* Product detail responsive */
@media (max-width: 768px) { .product-detail-wrapper { grid-template-columns: 1fr !important; } .product-gallery { position: relative !important; top: auto !important; } }

/* Checkout responsive */
@media (max-width: 900px) { .checkout-layout { grid-template-columns: 1fr !important; } .checkout-progress { display: none; } }

/* Checkout (default/e-commerce) */
.checkout-page { max-width: 1200px; margin: 40px auto; padding: 0 20px; }
.checkout-progress { display: flex; justify-content: space-between; position: relative; max-width: 600px; margin: 0 auto 50px; }
.progress-line { position: absolute; top: 15px; left: 0; right: 0; height: 2px; background: #eee; z-index: 1; }
.checkout-progress .step { position: relative; z-index: 2; text-align: center; background: #fff; padding: 0 10px; }
.checkout-progress .step-icon { width: 35px; height: 35px; background: #eee; color: #999; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-weight: 600; transition: 0.3s; }
.checkout-progress .step.active .step-icon { background: var(--accent); color: #fff; box-shadow: 0 0 0 4px rgba(212,175,55,0.2); }
.checkout-progress .step.completed .step-icon { background: var(--primary); color: #fff; }
.checkout-progress .step span { font-size: 0.9rem; font-weight: 500; color: #999; }
.checkout-progress .step.active span { color: var(--primary); }
.checkout-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; }
.checkout-section { background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 30px; }
.checkout-section .section-heading { font-size: 1.2rem; margin-bottom: 25px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.checkout-section .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.payment-option { display: flex; align-items: center; justify-content: space-between; padding: 15px; border: 1px solid #ddd; border-radius: 4px; cursor: pointer; margin-bottom: 10px; transition: 0.2s; }
.payment-option:hover { border-color: var(--accent); }
.payment-option.active { border-color: var(--accent); background: #fffbf0; }
.payment-option input { display: none; }
.radio-custom { width: 18px; height: 18px; border: 2px solid #ddd; border-radius: 50%; margin-right: 18px; position: relative; }
.payment-option.active .radio-custom { border-color: var(--accent); }
.payment-option.active .radio-custom::after { content: ''; position: absolute; top: 3px; left: 3px; right: 3px; bottom: 3px; background: var(--accent); border-radius: 50%; }
.order-summary-card { background: #f9f9f9; padding: 30px; border-radius: 8px; position: sticky; top: 100px; }
.order-summary-card .summary-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: center; }
.order-summary-card .item-img { position: relative; width: 60px; height: 60px; }
.order-summary-card .item-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; border: 1px solid #ddd; }
.order-summary-card .item-qty { position: absolute; top: -8px; right: -8px; background: #666; color: #fff; width: 20px; height: 20px; border-radius: 50%; font-size: 0.7rem; display: flex; align-items: center; justify-content: center; }
.order-summary-card .summary-totals { border-top: 1px solid #ddd; padding-top: 20px; margin-top: 20px; }
.order-summary-card .total-row { display: flex; justify-content: space-between; margin-bottom: 10px; color: #666; }
.order-summary-card .total-row.grand-total { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-top: 15px; padding-top: 15px; border-top: 1px solid #ddd; }

/* GEO answer block: visible, factual product context for people and crawlers. */
.seo-answer-block { margin: 24px 0; padding: 20px; border: 1px solid #e8ebf0; border-radius: 12px; background: #fbfcfe; }
.seo-answer-block h2 { margin: 0 0 14px; font-size: 1.05rem; color: #181c32; }
.seo-answer-block dl { margin: 0; display: grid; gap: 8px; }
.seo-answer-block dl > div { display: grid; grid-template-columns: minmax(120px, 0.35fr) 1fr; gap: 16px; padding-bottom: 8px; border-bottom: 1px solid #eef0f4; }
.seo-answer-block dl > div:last-child { border-bottom: 0; padding-bottom: 0; }
.seo-answer-block dt { color: #6b7280; font-size: .9rem; }
.seo-answer-block dd { margin: 0; color: #202534; font-size: .9rem; }
@media (max-width: 576px) { .seo-answer-block dl > div { grid-template-columns: 1fr; gap: 2px; } }
