/* =========================
   PRODUCT DETAIL PAGE
   ========================= */

/* Main Layout */
.product-detail {
    display: flex;
    gap: 40px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: 35px;
    margin-top: 10px;
}

/* Gallery */
.product-gallery {
    flex: 0 0 420px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f5f5f5;
}

.main-image-inner {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    transition: background 0.5s ease, transform 0.4s ease;
}

.product-badge-detail {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--color-discount);
    color: var(--color-white);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
    z-index: 3;
    letter-spacing: 0.5px;
}

.thumbnail-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 62px;
    height: 62px;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.thumbnail:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.14);
}

.thumbnail.active {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255,77,0,0.15);
}

/* Product Info */
.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-width: 0;
}

.brand-line {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info h1 {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.2;
    color: var(--color-text);
    font-family: var(--font-heading);
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    flex-wrap: wrap;
}

.stars {
    color: var(--color-rating);
    font-size: 18px;
}

.rating-count {
    color: var(--color-text-muted);
    font-size: 13px;
}

.single-price {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.single-price del {
    font-size: 18px;
    color: #bbb;
    font-weight: 400;
    margin-left: 8px;
}

.single-price ins {
    text-decoration: none;
}

/* Selector Section */
.selector-section {
    margin-bottom: 0;
}

.selector-section .label {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.selector-section .label .selected-name {
    color: var(--color-primary);
    font-weight: 700;
    word-break: break-word;
    overflow-wrap: break-word;
}

.selector-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.selector-btn {
    padding: 10px 16px;
    border-radius: 25px;
    border: 2px solid #e0e0e0;
    background: var(--color-white);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
    text-align: center;
    line-height: 1.3;
    font-family: var(--font-body);
    color: #444;
}

.selector-btn:hover {
    border-color: var(--color-primary);
    background: #fff9f6;
}

.selector-btn.active {
    border-color: var(--color-primary);
    background: #fff3ec;
    color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255,77,0,0.08);
}

.selector-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Nicotine specific */
.nicotine-btn .nico-badge {
    font-size: 10px;
    background: #f0f0f0;
    color: #666;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: 2px;
    font-weight: 500;
    transition: background 0.25s, color 0.25s;
}

.nicotine-btn.active .nico-badge {
    background: var(--color-primary);
    color: var(--color-white);
}

.nicotine-btn.recommended {
    position: relative;
}

.nicotine-btn.recommended::after {
    content: 'POPULAR';
    position: absolute;
    top: -8px;
    right: -4px;
    background: var(--color-hot);
    color: var(--color-white);
    font-size: 9px;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    pointer-events: none;
}

/* Quantity */
.qty-section {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 6px;
}

.qty-section .label {
    font-weight: 700;
    font-size: 14px;
    color: #333;
}

.qty-control {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 30px;
    overflow: hidden;
    background: var(--color-white);
}

.qty-control button {
    width: 42px;
    height: 42px;
    border: none;
    background: #f5f5f5;
    font-size: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    transition: background 0.2s, color 0.2s;
    user-select: none;
    font-family: inherit;
}

.qty-control button:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.qty-control input {
    width: 80px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 700;
    outline: none;
    color: #333;
    font-family: var(--font-body);
}

.qty-shortcuts {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.qty-shortcuts button {
    padding: 8px 14px;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    background: var(--color-white);
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.25s;
    color: #444;
    font-family: var(--font-body);
}

.qty-shortcuts button:hover {
    border-color: var(--color-primary);
    background: #fff9f6;
    color: var(--color-primary);
}

.qty-shortcuts button.active-qty {
    border-color: var(--color-primary);
    background: #fff3ec;
    color: var(--color-primary);
}

.qty-shortcuts button.disabled-qty {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
    border-color: #e8e8e8;
    color: #ccc;
}

/* Add to Cart Button */
.btn-add-cart {
    width: 100%;
    padding: 16px 28px;
    background: var(--color-primary);
    border: none;
    color: var(--color-white);
    font-size: 17px;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: background 0.3s, box-shadow 0.3s, transform 0.3s;
    box-shadow: 0 6px 20px rgba(255,77,0,0.3);
    font-family: var(--font-heading);
    margin-top: 6px;
    text-align: center;
}

.btn-add-cart:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 10px 28px rgba(255,77,0,0.4);
    transform: translateY(-2px);
}

.btn-whatsapp-inline {
    width: 100%;
    padding: 14px;
    background: #25D366;
    border: none;
    color: var(--color-white);
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: opacity 0.25s, transform 0.25s;
    font-family: var(--font-body);
    margin-top: 4px;
}

.btn-whatsapp-inline:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ==================== MIX & MATCH ==================== */
.mix-match-section {
    background: #fffdf9;
    border: 2px dashed #ffcc99;
    border-radius: 16px;
    padding: 24px 26px;
    position: relative;
    transition: border-color 0.3s, background 0.3s;
    margin-top: 28px;
}

.mix-match-section.moq-met {
    border-color: var(--color-success);
    border-style: solid;
    background: #fafff8;
}

.mix-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.mix-header .mix-title {
    font-size: 16px;
    font-weight: 900;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
}

.mix-header .mix-badge {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 700;
    white-space: nowrap;
}

.mix-header .mix-badge.met {
    background: var(--color-success);
}

.btn-sm {
    padding: 7px 14px;
    border-radius: 20px;
    border: 2px solid var(--color-primary);
    background: var(--color-white);
    color: var(--color-primary);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    transition: all 0.25s;
    font-family: var(--font-body);
}

.btn-sm:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* Nico Columns Layout */
.mix-nico-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.mix-nico-col {
    background: var(--color-white);
    border: 1px solid #f0e8e0;
    border-radius: 14px;
    overflow: hidden;
}

.mix-nico-col__header {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    font-family: var(--font-heading);
}

.mix-nico-col .mix-flavor-grid {
    padding: 10px;
    margin-bottom: 0;
    grid-template-columns: 1fr;
    gap: 8px;
}

.mix-nico-col .mix-flavor-item {
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
    border-radius: 10px;
}

.mix-nico-col .mix-flavor-emoji {
    font-size: 28px;
    margin-bottom: 0;
    flex-shrink: 0;
}

.mix-nico-col .mix-flavor-name {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
    font-size: 12px;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
    line-height: 1.3;
}

.mix-nico-col .mix-mini-qty {
    flex-shrink: 0;
}

.mix-flavor-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.mix-flavor-item {
    background: var(--color-white);
    border-radius: 12px;
    padding: 14px 12px;
    text-align: center;
    border: 2px solid #f0e8e0;
    transition: all 0.25s;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.mix-flavor-item:hover {
    border-color: #ffc8a0;
    box-shadow: 0 4px 14px rgba(255,77,0,0.08);
}

.mix-flavor-item.has-qty {
    border-color: var(--color-primary);
    background: #fff9f5;
    box-shadow: 0 4px 16px rgba(255,77,0,0.12);
}

.mix-flavor-emoji {
    font-size: 36px;
    display: block;
    margin-bottom: 4px;
}

.mix-flavor-name {
    font-size: 11px;
    font-weight: 700;
    color: #444;
    margin-bottom: 8px;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mix-mini-qty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.mix-mini-qty button {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: var(--color-white);
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #555;
    transition: all 0.2s;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: inherit;
}

.mix-mini-qty button:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.mix-mini-qty span {
    font-weight: 700;
    font-size: 15px;
    min-width: 30px;
    text-align: center;
    color: #333;
}

/* Mix Summary */
.mix-summary {
    background: var(--color-white);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    border: 1px solid #eee;
}

.mix-total-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.mix-total-pcs {
    font-size: 28px;
    font-weight: 900;
    color: #333;
    font-family: var(--font-heading);
}

.mix-total-pcs .unit {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-muted);
}

.mix-progress-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 140px;
}

.mix-progress-bar {
    flex: 1;
    height: 8px;
    background: #eee;
    border-radius: 10px;
    overflow: hidden;
    min-width: 80px;
}

.mix-progress-fill {
    height: 100%;
    background: var(--color-hot);
    border-radius: 10px;
    transition: width 0.4s ease, background 0.4s ease;
}

.mix-progress-fill.complete {
    background: var(--color-success);
}

.mix-progress-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.mix-progress-text.complete {
    color: var(--color-success);
}

.mix-price-info {
    text-align: right;
}

.mix-unit-price {
    font-size: 13px;
    color: var(--color-text-muted);
}

.mix-unit-price b {
    color: var(--color-primary);
    font-size: 16px;
}

.mix-total-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.mix-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn-mix-add {
    padding: 14px 28px;
    background: var(--color-primary);
    border: none;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(255,77,0,0.3);
    white-space: nowrap;
    font-family: var(--font-heading);
}

.btn-mix-add:hover:not(:disabled) {
    background: var(--color-primary-dark);
    box-shadow: 0 10px 28px rgba(255,77,0,0.4);
    transform: translateY(-2px);
}

.btn-mix-add:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-mix-reset {
    padding: 14px 22px;
    background: var(--color-white);
    border: 2px solid #e0e0e0;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
    font-family: var(--font-body);
}

.btn-mix-reset:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: #fff9f6;
}

/* ==================== TABS ==================== */
.product-tabs {
    margin-top: 28px;
    background: var(--color-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    overflow-x: auto;
}

.tab-btn {
    padding: 16px 24px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: all 0.25s;
    white-space: nowrap;
    font-family: var(--font-heading);
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: var(--color-text);
}

.tab-btn.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.tabs-content {
    padding: 24px 28px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.product-tab-content h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.product-tab-content p {
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 12px;
}

.product-tab-content ul {
    list-style: disc;
    padding-left: 20px;
    line-height: 2;
    color: var(--color-text-light);
}

/* 描述区图片/媒体尺寸约束 —— 防止大图在手机端溢出撑破布局 */
.product-tab-content {
    overflow-wrap: break-word;
    word-break: break-word;
}

.product-tab-content img,
.product-tab-content video,
.product-tab-content iframe {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 12px auto;
    border-radius: 8px;
}

.product-tab-content figure {
    max-width: 100%;
    margin: 12px 0;
}

.product-tab-content figure img {
    margin: 0 auto;
}

.product-tab-content a img {
    display: block;
    max-width: 100%;
    height: auto;
}

.product-tab-content table {
    max-width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 14px;
}

.pricing-table th,
.pricing-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #e8e8e8;
}

.pricing-table th {
    background: #fafafa;
    font-weight: 700;
    color: #333;
}

.pricing-table td {
    color: #555;
}

/* Responsive */
@media (max-width: 900px) {
    .product-detail {
        flex-direction: column;
        padding: 20px;
    }

    .product-gallery {
        flex: 0 0 auto;
    }

    .main-image {
        height: 300px;
    }

    .product-info h1 {
        font-size: 24px;
    }

    .single-price {
        font-size: 28px;
    }

    .mix-summary {
        flex-direction: column;
        align-items: stretch;
    }

    .tabs-header {
        flex-wrap: nowrap;
        overflow-x: auto;
    }

    .tab-btn {
        padding: 12px 16px;
        font-size: 13px;
    }
}

@media (max-width: 600px) {
    .product-detail {
        padding: 14px;
    }

    .main-image {
        height: 240px;
    }

    .product-gallery {
        flex: 0 0 auto;
    }

    .product-info h1 {
        font-size: 20px;
    }

    .tabs-content {
        padding: 16px;
    }

    .qty-section {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Tiered Pricing */
.tiered-pricing {
    background: #fff8f5;
    border: 1px solid #ffe0d0;
    border-radius: 12px;
    padding: 16px 20px;
}

.tiered-pricing__headline {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 14px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
}

.tiered-pricing__headline-price {
    font-size: 28px;
    font-weight: 900;
    font-family: var(--font-heading);
}

.tiered-pricing__headline-qty {
    font-size: 13px;
    opacity: 0.9;
}

.tiered-pricing__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.tiered-pricing__desc {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 12px;
    line-height: 1.5;
}

.tiered-pricing__list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
}

.tiered-pricing__row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 4px 0;
    flex: 0 0 auto;
}

.tiered-pricing__qty {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
}

.tiered-pricing__qty::after {
    content: ':';
    margin-left: 2px;
}

.tiered-pricing__price {
    font-size: 18px;
    font-weight: 900;
    color: var(--color-primary);
    font-family: var(--font-heading);
}
.tiered-pricing__current {
    margin-top:10px;
    padding:8px 12px;
    background:#fff4ed;
    border-radius:6px;
    font-size:14px;
    font-weight:600;
    color:#333;
}
.tiered-pricing__current #tierPriceDisplay {
    color:#ff4d00;
}
.tiered-pricing__current {
    margin-top:12px;
    padding:12px 16px;
    background:#fff8f5;
    border:2px solid #ff4d00;
    border-radius:8px;
    font-size:14px;
    font-weight:600;
}
.tiered-pricing__current .tiered-pricing__cart-row,
.tiered-pricing__current .tiered-pricing__add-row {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:4px 0;
}
.tiered-pricing__current .tiered-pricing__add-row {
    border-top:1px dashed #ffddd0;
    margin-top:4px;
    padding-top:8px;
}
.tiered-pricing__cart-label,
.tiered-pricing__add-label {
    font-size:13px;
    color:#888;
}
.tiered-pricing__cart-value,
.tiered-pricing__add-value {
    font-size:15px;
    font-weight:700;
    color:#333;
}
.tiered-pricing__cart-value #tierCartPrice,
.tiered-pricing__add-value #tierPriceDisplay {
    color:#ff4d00;
}
.tiered-pricing__current {
    margin-top:12px;
    padding:12px 16px;
    background:#fff8f5;
    border:2px solid #ff4d00;
    border-radius:8px;
    font-size:14px;
    font-weight:600;
}
.tiered-pricing__current .tiered-pricing__cart-row,
.tiered-pricing__current .tiered-pricing__add-row {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:4px 0;
}
.tiered-pricing__current .tiered-pricing__add-row {
    border-top:1px dashed #ffddd0;
    margin-top:4px;
    padding-top:8px;
}
.tiered-pricing__cart-label,
.tiered-pricing__add-label {
    font-size:13px;
    color:#888;
}
.tiered-pricing__cart-value,
.tiered-pricing__add-value {
    font-size:15px;
    font-weight:700;
    color:#333;
}
.tiered-pricing__note {
    margin-top:6px;
    font-size:13px;
    font-weight:600;
    text-align:center;
}
.product-current-price {
    margin:10px 0;
}
.product-current-price__label {
    font-size:11px;
    color:#999;
    letter-spacing:2px;
    font-weight:600;
}
.product-current-price__value {
    font-size:34px;
    font-weight:900;
    color:#ff4d00;
    line-height:1.1;
}
.product-short-desc {
    font-size:14px;
    color:#666;
    line-height:1.6;
    margin:6px 0 12px;
    padding-bottom:12px;
    border-bottom:1px solid #eee;
}
.tiered-pricing__row.current {
    background:#fff4ed;
    border:2px solid #ff4d00;
    border-radius:6px;
    margin:-1px 0;
    padding:8px 12px;
}
.tiered-pricing__row.current .tiered-pricing__price {
    color:#ff4d00;
    font-size:16px;
}
/* Reviews Tab */
#tab-reviews {
    padding:20px 0;
}
#tab-reviews #reviews {
    max-width:700px;
}
#tab-reviews #reviews #comments .woocommerce-Reviews-title {
    font-size:20px;
    font-weight:700;
    font-family:var(--font-heading);
    margin-bottom:16px;
    color:#333;
}
#tab-reviews #reviews #comments .commentlist {
    list-style:none;
    padding:0;
    margin:0;
}
#tab-reviews #reviews #comments .commentlist li {
    padding:18px 0;
    border-bottom:1px solid #eee;
}
#tab-reviews #reviews #comments .commentlist .comment_container {
    display:flex;
    gap:14px;
}
#tab-reviews #reviews #comments .commentlist .comment_container img.avatar {
    border-radius:50%;
    width:44px;
    height:44px;
    flex-shrink:0;
}
#tab-reviews #reviews #comments .commentlist .comment_container .comment-text {
    flex:1;
}
#tab-reviews #reviews #comments .commentlist .comment_container .star-rating {
    display:none;
}
#tab-reviews #reviews #comments .commentlist .comment_container .vapevin-star-rating {
    margin-bottom:4px;
}
#tab-reviews #reviews #comments .commentlist .comment_container .meta {
    font-size:13px;
    color:#888;
}
#tab-reviews #reviews #comments .commentlist .comment_container .meta .woocommerce-review__author {
    font-weight:600;
    color:#333;
}
#tab-reviews #reviews #comments .commentlist .comment_container .description p {
    font-size:14px;
    color:#555;
    margin:6px 0 0;
    line-height:1.6;
}
#tab-reviews #reviews #review_form_wrapper .comment-reply-title {
    font-size:18px;
    font-weight:600;
    color:#333;
    display:block;
    margin-bottom:4px;
}
#tab-reviews #reviews #review_form_wrapper .comment-notes {
    font-size:13px;
    color:#888;
    margin-bottom:14px;
}
#tab-reviews #reviews #review_form_wrapper label {
    display:block;
    font-weight:600;
    margin:12px 0 4px;
    font-size:14px;
    color:#444;
}
#tab-reviews #reviews #review_form_wrapper input[type="text"],
#tab-reviews #reviews #review_form_wrapper input[type="email"],
#tab-reviews #reviews #review_form_wrapper textarea {
    border:1px solid #ddd;
    border-radius:6px;
    padding:10px 12px;
    font-size:14px;
    width:100%;
    max-width:100%;
    font-family:inherit;
    box-sizing:border-box;
    outline:none;
    transition:border-color 0.2s;
}
#tab-reviews #reviews #review_form_wrapper input:focus,
#tab-reviews #reviews #review_form_wrapper textarea:focus {
    border-color:#ff4d00;
}
#tab-reviews #reviews #review_form_wrapper textarea {
    min-height:100px;
}
#tab-reviews #reviews #review_form_wrapper .form-submit {
    margin-top:14px;
}
#tab-reviews #reviews #review_form_wrapper .submit {
    background:#ff4d00;
    color:#fff;
    border:none;
    padding:11px 30px;
    border-radius:6px;
    font-size:14px;
    font-weight:600;
    cursor:pointer;
    transition:background 0.2s;
}
#tab-reviews #reviews #review_form_wrapper .submit:hover {
    background:#e04400;
}
/* 自定义星星选择器 */
.vapevin-review-stars {
    margin:12px 0;
}
.vapevin-review-stars label {
    display:block;
    font-weight:600;
    font-size:14px;
    color:#444;
    margin-bottom:6px;
}
.vapevin-stars-select {
    display:inline-flex;
    flex-direction:row-reverse;
}
.vapevin-stars-select .vapevin-star:hover,
.vapevin-stars-select .vapevin-star:hover ~ .vapevin-star {
    color:#ff9800 !important;
}
.tiered-pricing__shipping {
    display: block;
    font-size: 12px;
    color: #555;
    margin-top: 2px;
}
.tiered-pricing__shipping--free {
    color: #16a34a;
    font-weight: 600;
}
/* Gallery cursor */
.thumbnail { cursor: pointer; }
.thumbnail:hover { opacity: 0.85; }

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}
.lightbox-overlay.open {
    display: flex;
}
.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 6px;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    z-index: 1;
    line-height: 1;
}
.lightbox-close:hover {
    color: #ff4d00;
}
/* Gallery arrows */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.gallery-arrow:hover {
    background: #fff;
    color: #ff4d00;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.gallery-arrow--prev { left: 10px; }
.gallery-arrow--next { right: 10px; }
/* 手机端隐藏箭头 */
@media (max-width: 768px) {
    .gallery-arrow { display: none; }
}