/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Microsoft JhengHei', 'PingFang TC', -apple-system, BlinkMacSystemFont, sans-serif; background: #f5f5f5; color: #333; font-size: 14px; line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

/* ===== Grid Row ===== */
.row { display: flex; flex-wrap: wrap; margin: 0 -15px; }
.row > [class*="col-md-"] { padding: 0 15px; }
.col-md-5 { flex: 0 0 41.66667%; max-width: 41.66667%; }
.col-md-7 { flex: 0 0 58.33333%; max-width: 58.33333%; }

/* ===== Header ===== */
.site-header { background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 100; }
.header-top { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.header-top-right { display: flex; align-items: center; gap: 12px; }
.logo { font-size: 20px; font-weight: 700; color: #333; white-space: nowrap; letter-spacing: 1px; }
.search-box form { display: flex; }
.search-box input { padding: 8px 14px; border: 1px solid #ddd; border-right: none; border-radius: 4px 0 0 4px; font-size: 13px; width: 200px; outline: none; }
.search-box input:focus { border-color: #333; }
.search-box button { padding: 8px 18px; background: #333; color: #fff; border: none; border-radius: 0 4px 4px 0; cursor: pointer; font-size: 13px; }
.search-box button:hover { background: #555; }

/* Header Cart Button */
.header-cart-btn { position: relative; width: 40px; height: 40px; border: 1px solid #ddd; border-radius: 50%; background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; color: #555; transition: all 0.2s; }
.header-cart-btn:hover { border-color: #c0392b; color: #c0392b; }
.header-cart-btn.is-flash { animation: cartFlash 0.6s ease; }
@keyframes cartFlash { 0%,100% { transform: scale(1); } 50% { transform: scale(1.3); border-color: #c0392b; color: #c0392b; } }
.header-cart-count { position: absolute; top: -6px; right: -6px; background: #c0392b; color: #fff; font-size: 11px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 0 4px; }

.header-nav { background: #333; }
.main-nav { display: flex; gap: 0; overflow-x: auto; }
.nav-link { padding: 12px 20px; color: rgba(255,255,255,0.8); font-size: 14px; white-space: nowrap; transition: all 0.2s; border-bottom: 2px solid transparent; }
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-link.active { color: #fff; background: rgba(255,255,255,0.15); border-bottom: 2px solid #fff; }

/* ===== Filter Section ===== */
.filter-section { background: #fff; padding: 14px 0; border-bottom: 1px solid #eee; }
.filter-bar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-label { font-weight: 600; color: #333; margin-right: 4px; font-size: 14px; }
.filter-tag { padding: 6px 16px; border: 1px solid #ddd; border-radius: 20px; color: #666; font-size: 13px; transition: all 0.2s; }
.filter-tag:hover { border-color: #333; color: #333; }
.filter-tag.active { background: #333; color: #fff; border-color: #333; }

/* ===== Product Grid ===== */
.main-content { padding: 24px 0; min-height: calc(100vh - 250px); }
.product-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

/* ===== Product Card ===== */
.product-card { background: #fff; border-radius: 4px; overflow: hidden; transition: all 0.3s; border: 1px solid #eee; }
.product-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); transform: translateY(-2px); }
.product-link { display: block; }
.product-thumb { width: 100%; aspect-ratio: 3 / 4; overflow: hidden; background: #f9f9f9; }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-thumb img { transform: scale(1.05); }
.product-info { padding: 12px 10px; text-align: center; }
.product-no { font-size: 13px; color: #666; margin-bottom: 8px; font-weight: 500; letter-spacing: 0.5px; }
.product-sales { display: inline-block; padding: 4px 20px; background: #333; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; border-radius: 2px; }

/* Empty State */
.empty-state { text-align: center; padding: 80px 20px; color: #999; }
.empty-state p { font-size: 16px; }

/* ===== Pagination ===== */
.pagination { margin-top: 32px; text-align: center; padding-bottom: 20px; list-style: none; padding-left: 0; }
.pagination li { display: inline-block; margin: 0 3px; }
.pagination li a, .pagination li span { display: inline-block; padding: 8px 16px; border: 1px solid #ddd; border-radius: 4px; color: #555; font-size: 14px; text-decoration: none; transition: all 0.2s; background: #fff; }
.pagination li a:hover { border-color: #333; color: #333; background: #f5f5f5; }
.pagination li.active span { background: #333; border-color: #333; color: #fff; }
.pagination li.disabled span { color: #ccc; cursor: not-allowed; background: #f9f9f9; }

/* ===== Footer ===== */
.site-footer { background: #333; color: #aaa; padding: 24px 0; text-align: center; margin-top: 40px; }
.site-footer p { font-size: 13px; }

/* ===== Breadcrumb ===== */
.breadcrumb { padding: 16px 0; font-size: 13px; color: #999; display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.breadcrumb a { color: #666; }
.breadcrumb a:hover { color: #333; }
.breadcrumb .sep { margin: 0 2px; color: #ccc; }
.breadcrumb .current { color: #333; font-weight: 500; }

/* ===== Doll Product Page ===== */
.doll-product-page { margin-bottom: 24px; }

.doll-product-hero { background: #fff; padding: 32px; border-radius: 4px; margin-bottom: 24px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }

/* Gallery */
.doll-product-gallery { margin-bottom: 16px; }
.doll-product-main-image-wrap { width: 100%; aspect-ratio: 3 / 4; overflow: hidden; border-radius: 4px; background: #f9f9f9; margin-bottom: 12px; border: 1px solid #eee; }
.doll-product-main-image { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.doll-product-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.doll-product-thumb { width: 72px; height: 96px; border-radius: 4px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; flex-shrink: 0; }
.doll-product-thumb:hover, .doll-product-thumb.active { border-color: #333; }
.doll-product-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Only Thumbs Grid (no main image) */
.doll-product-thumbs-only { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.doll-product-thumbs-only .doll-product-thumb { width: 100%; height: auto; aspect-ratio: 2 / 3; border-radius: 6px; }

/* Summary */
.doll-product-summary { padding-left: 8px; }
.doll-product-ribbon { display: inline-block; padding: 4px 16px; background: #c0392b; color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1px; border-radius: 2px; margin-bottom: 12px; }
.doll-product-title { font-size: 22px; font-weight: 600; color: #333; margin-bottom: 8px; line-height: 1.5; word-break: break-all; overflow-wrap: break-word; }
.doll-product-no { font-size: 13px; color: #999; margin-bottom: 12px; }

.doll-product-intro { font-size: 13px; color: #666; line-height: 1.8; margin-bottom: 16px; white-space: pre-line; }

/* Quantity */
.doll-qty-group { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.doll-qty-group > label { font-size: 14px; color: #555; font-weight: 500; }
.doll-qty-controls { display: flex; align-items: center; }
.doll-qty-btn { width: 36px; height: 36px; border: 1px solid #ddd; background: #f9f9f9; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; color: #555; }
.doll-qty-btn:hover { background: #eee; border-color: #ccc; }
.doll-qty-btn:first-child { border-radius: 4px 0 0 4px; }
.doll-qty-btn:last-child { border-radius: 0 4px 4px 0; }
.doll-qty-input { width: 60px; height: 36px; border: 1px solid #ddd; border-left: none; border-right: none; text-align: center; font-size: 14px; outline: none; -moz-appearance: textfield; }
.doll-qty-input::-webkit-inner-spin-button, .doll-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

/* Actions */
.doll-product-actions { display: flex; align-items: center; gap: 10px; }
.doll-cart-button { flex: 1; padding: 14px 24px; background: #c0392b; color: #fff; border: none; border-radius: 4px; font-size: 16px; font-weight: 700; cursor: pointer; transition: background 0.2s; letter-spacing: 1px; }
.doll-cart-button:hover { background: #a93226; }
.doll-round-button { width: 44px; height: 44px; border: 1px solid #ddd; border-radius: 50%; background: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; color: #888; transition: all 0.2s; }
.doll-round-button:hover { border-color: #c0392b; color: #c0392b; }
.doll-round-button.is-copied { border-color: #27ae60; color: #27ae60; }

/* ===== Doll Attr Panel ===== */
.doll-product-panel { background: #fff; border-radius: 4px; margin-bottom: 24px; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.doll-product-panel-title { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; border-bottom: 2px solid #333; }
.doll-product-panel-title h2 { font-size: 18px; font-weight: 600; color: #333; margin: 0; }

.doll-attr-expand-button { background: #fff; border: 1px solid #ddd; border-radius: 4px; padding: 6px 16px; font-size: 13px; cursor: pointer; transition: all 0.2s; color: #555; }
.doll-attr-expand-button:hover { border-color: #c0392b; color: #c0392b; }

.doll-attr-panel { padding: 20px 24px; }
.doll-attr-tools { margin-bottom: 16px; font-size: 13px; color: #888; }

.doll-attr-scroll { max-height: 500px; overflow-y: auto; transition: max-height 0.3s; }
.doll-attr-scroll.is-full-open { max-height: none; }

.doll-attr-group { margin-bottom: 24px; border: 1px solid #f0f0f0; border-radius: 6px; padding: 16px; }
.doll-attr-group:last-child { margin-bottom: 0; }
.doll-attr-group-title { font-size: 15px; font-weight: 600; color: #333; margin-bottom: 12px; }
.doll-attr-required { display: inline-block; background: #c0392b; color: #fff; font-size: 11px; padding: 2px 8px; border-radius: 2px; margin-left: 6px; font-weight: 500; vertical-align: middle; }

.doll-attr-options { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.doll-attr-options li { position: relative; }
.doll-attr-options li input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }
.doll-attr-options label { display: flex; flex-direction: column; align-items: center; padding: 10px; border: 2px solid #eee; border-radius: 6px; cursor: pointer; transition: all 0.2s; min-width: 80px; text-align: center; position: relative; }
.doll-attr-options label:hover { border-color: #c0392b; }
.doll-attr-options input:checked + label { border-color: #c0392b; background: #fef9f9; }
.doll-attr-options input:checked + label .fa-check-circle { display: block; }
.doll-attr-options label .fa-check-circle { display: none; position: absolute; top: 4px; right: 4px; color: #c0392b; font-size: 14px; }
.doll-attr-options li.is-selected label { border-color: #c0392b; background: #fef9f9; }

.doll-attr-img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; margin-bottom: 6px; }
.doll-attr-title { font-size: 12px; color: #555; margin-top: 2px; word-break: break-all; }
.doll-attr-price { font-size: 12px; color: #c0392b; font-weight: 600; margin-top: 2px; }

/* ===== Doll Product Content ===== */
.doll-product-content { padding: 24px; }
.doll-product-content .product-specs { margin: 0 0 20px; }
.doll-product-content .intro-content { line-height: 1.8; color: #555; }
.doll-product-content .intro-content img { max-width: 100%; height: auto; border-radius: 4px; margin: 12px 0; }

/* Intro Text - 娃娃尺寸 */
.doll-intro-text { font-size: 14px; color: #444; line-height: 2; white-space: pre-line; margin-bottom: 20px; padding: 16px; background: #fafafa; border-radius: 4px; border: 1px solid #f0f0f0; }

/* Intro Images */
.intro-images { margin: 20px 0; }
.intro-images img { width: 100%; border-radius: 4px; margin-bottom: 12px; }

/* Specs */
.product-specs { margin: 20px 0; }
.specs-title { font-size: 15px; font-weight: 600; color: #333; margin-bottom: 12px; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table td { padding: 10px 14px; border: 1px solid #eee; font-size: 13px; }
.specs-table .spec-name { background: #f9f9f9; color: #666; width: 130px; font-weight: 500; white-space: nowrap; }
.specs-table .spec-value { color: #333; }

/* ===== Related Products ===== */
.doll-related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 20px; }
.doll-related-card { display: block; background: #fff; border: 1px solid #eee; border-radius: 6px; overflow: hidden; transition: all 0.3s; }
.doll-related-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); transform: translateY(-2px); border-color: #ddd; }
.doll-related-card > img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.doll-related-card-body { padding: 12px; }
.doll-related-card-body h3 { font-size: 14px; font-weight: 600; color: #333; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.4; }
.doll-related-card-body p { font-size: 12px; color: #888; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== Floating Selected Panel (目前已選) ===== */
.doll-selected-float { position: fixed; bottom: 80px; right: 20px; width: 320px; max-height: calc(100vh - 160px); background: #fff; border-radius: 8px; box-shadow: 0 4px 24px rgba(0,0,0,0.15); z-index: 95; display: flex; flex-direction: column; overflow: hidden; border: 1px solid #e0e0e0; }
.doll-selected-float-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; background: #333; color: #fff; }
.doll-selected-float-header span { font-size: 14px; font-weight: 600; }
.doll-selected-float-toggle { background: none; border: 1px solid rgba(255,255,255,0.4); color: #fff; padding: 3px 12px; border-radius: 3px; font-size: 12px; cursor: pointer; transition: all 0.2s; }
.doll-selected-float-toggle:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.6); }

.doll-selected-float-body { flex: 1; overflow-y: auto; padding: 12px 16px; transition: max-height 0.3s ease, padding 0.3s ease; }
.doll-selected-float-body.is-collapsed { max-height: 0 !important; padding-top: 0; padding-bottom: 0; overflow: hidden; }

.doll-selected-meta { margin-bottom: 10px; }
.doll-selected-meta-card { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; background: #f9f9f9; border-radius: 4px; border: 1px solid #eee; }
.doll-selected-meta-card.is-total span { font-size: 14px; color: #555; font-weight: 500; }
.doll-selected-meta-card.is-total strong { font-size: 18px; color: #c0392b; }

.doll-selected-list { list-style: none; margin: 0; padding: 0; }
.doll-selected-list li { display: flex; align-items: center; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 13px; }
.doll-selected-list li:last-child { border-bottom: none; }
.doll-selected-list li.doll-selected-empty { color: #999; justify-content: center; padding: 16px 0; }
.doll-selected-choice { display: flex; flex-wrap: wrap; gap: 2px; flex: 1; min-width: 0; }
.doll-selected-choice-name { color: #888; white-space: nowrap; }
.doll-selected-choice-value { color: #333; font-weight: 500; }
.doll-selected-list li > b { color: #c0392b; font-size: 13px; white-space: nowrap; margin-left: 8px; }

.doll-selected-float-actions { padding-top: 10px; border-top: 1px solid #eee; margin-top: 8px; }
.doll-selected-add-cart-btn { width: 100%; padding: 10px; background: #c0392b; color: #fff; border: none; border-radius: 4px; font-size: 14px; font-weight: 700; cursor: pointer; transition: background 0.2s; letter-spacing: 1px; }
.doll-selected-add-cart-btn:hover { background: #a93226; }

/* ===== Bottom Floating Bar ===== */
.doll-bottom-bar { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 2px solid #c0392b; z-index: 90; transform: translateY(100%); transition: transform 0.3s ease; box-shadow: 0 -4px 16px rgba(0,0,0,0.1); }
.doll-bottom-bar.is-visible { transform: translateY(0); }
.doll-bottom-bar-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; gap: 16px; }
.doll-bottom-bar-info { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.doll-bottom-bar-thumb { width: 48px; height: 64px; object-fit: cover; border-radius: 4px; flex-shrink: 0; border: 1px solid #eee; }
.doll-bottom-bar-name { font-size: 14px; font-weight: 600; color: #333; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.doll-bottom-bar-attr { font-size: 12px; color: #888; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-top: 2px; }
.doll-bottom-bar-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.doll-bottom-bar-price { font-size: 20px; font-weight: 700; color: #c0392b; white-space: nowrap; }
.doll-bottom-bar-cart-btn { padding: 12px 28px; background: #c0392b; color: #fff; border: none; border-radius: 4px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background 0.2s; white-space: nowrap; letter-spacing: 1px; }
.doll-bottom-bar-cart-btn:hover { background: #a93226; }

/* ===== Cart Drawer (Side Panel) ===== */
.doll-cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; opacity: 0; visibility: hidden; transition: all 0.3s; }
body.doll-cart-open .doll-cart-overlay { opacity: 1; visibility: visible; }

.doll-cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: 90vw; background: #fff; z-index: 201; transform: translateX(100%); transition: transform 0.3s ease; display: flex; flex-direction: column; box-shadow: -4px 0 20px rgba(0,0,0,0.15); }
body.doll-cart-open .doll-cart-drawer { transform: translateX(0); }

.doll-cart-drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 2px solid #333; flex-shrink: 0; }
.doll-cart-drawer-head h2 { font-size: 18px; font-weight: 600; margin: 0; display: flex; align-items: center; gap: 8px; }
.doll-cart-drawer-close { width: 36px; height: 36px; border: none; background: none; font-size: 24px; cursor: pointer; color: #999; transition: color 0.2s; display: flex; align-items: center; justify-content: center; }
.doll-cart-drawer-close:hover { color: #333; }

.doll-cart-drawer-body { flex: 1; overflow-y: auto; padding: 20px; }

.doll-cart-empty { text-align: center; padding: 60px 20px; color: #ccc; }
.doll-cart-empty i { font-size: 48px; margin-bottom: 12px; display: block; }
.doll-cart-empty p { font-size: 15px; color: #999; }

.doll-cart-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid #f0f0f0; }
.doll-cart-item:last-child { border-bottom: none; }
.doll-cart-item-thumb { width: 64px; height: 85px; object-fit: cover; border-radius: 4px; flex-shrink: 0; border: 1px solid #eee; }
.doll-cart-item-info { flex: 1; min-width: 0; }
.doll-cart-item-name { font-size: 13px; font-weight: 600; color: #333; margin-bottom: 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.doll-cart-item-opt { font-size: 11px; color: #888; margin-bottom: 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.doll-cart-item-bottom { display: flex; align-items: center; justify-content: space-between; }
.doll-cart-item-price { font-size: 14px; font-weight: 700; color: #c0392b; }
.doll-cart-item-del { border: none; background: none; color: #ccc; cursor: pointer; font-size: 14px; padding: 4px; transition: color 0.2s; }
.doll-cart-item-del:hover { color: #c0392b; }

.doll-cart-drawer-foot { border-top: 2px solid #333; padding: 16px 20px; flex-shrink: 0; }
.doll-cart-total { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.doll-cart-total span { font-size: 15px; color: #555; }
.doll-cart-total strong { font-size: 22px; color: #c0392b; }
.doll-cart-checkout-btn { width: 100%; padding: 14px; background: #c0392b; color: #fff; border: none; border-radius: 4px; font-size: 16px; font-weight: 700; cursor: pointer; transition: background 0.2s; letter-spacing: 1px; }
.doll-cart-checkout-btn:hover { background: #a93226; }

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .product-grid { grid-template-columns: repeat(4, 1fr); }
    .doll-related-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .col-md-5, .col-md-7 { flex: 0 0 100%; max-width: 100%; }
    .doll-related-grid { grid-template-columns: repeat(3, 1fr); }
    .doll-product-hero { padding: 20px; }
    .row { flex-direction: column; }
}
@media (max-width: 768px) {
    .header-top { flex-wrap: wrap; height: auto; padding: 12px 0; gap: 12px; }
    .header-top-right { flex-wrap: wrap; }
    .main-nav { overflow-x: auto; }
    .search-box input { width: 140px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .doll-product-title { font-size: 18px; }
    .filter-bar { overflow-x: auto; flex-wrap: nowrap; }
    .doll-related-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .doll-product-hero { padding: 16px; }
    .doll-product-summary { padding-left: 0; }
    .doll-attr-options { gap: 6px; }
    .doll-attr-options label { min-width: 65px; padding: 8px; }
    .doll-attr-img { width: 48px; height: 48px; }
    .doll-bottom-bar-name { max-width: 120px; }
    .doll-bottom-bar-price { font-size: 16px; }
    .doll-bottom-bar-cart-btn { padding: 10px 16px; font-size: 13px; }
    .doll-selected-float { width: 280px; right: 10px; bottom: 70px; }
}
@media (max-width: 480px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .product-info { padding: 8px 6px; }
    .product-no { font-size: 11px; }
    .product-sales { font-size: 10px; padding: 2px 10px; }
    .doll-related-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .doll-product-actions { flex-wrap: wrap; }
    .doll-cart-button { min-width: 100%; }
    .doll-product-thumb { width: 56px; height: 74px; }
    .doll-bottom-bar-inner { flex-wrap: wrap; }
    .doll-bottom-bar-info { flex: 1 1 100%; }
    .doll-bottom-bar-right { flex: 1 1 100%; justify-content: space-between; }
}
