/* Shop page styles - externalized from inline <style> blocks */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span.sep {
    opacity: 0.5;
}

.shop-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
}

.shop-panel-link {
    font-size: 0.88rem;
    color: #7dd3fc;
    text-decoration: none;
    white-space: nowrap;
}

.shop-panel-link:hover {
    text-decoration: underline;
    color: #93e0fd;
}

.shop-nav-separator {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 0 0 1.5rem 0;
}

/* ===== Product Layout ===== */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .product-left {
        display: contents;
    }

    .product-image-wrap {
        order: 1;
    }

    .product-right {
        order: 2;
    }

    .product-ratings {
        order: 3;
    }

    .guarantee-detail {
        order: 4;
    }
}

/* Left Column */
.product-left {
    position: sticky;
    top: 100px;
    align-self: start;
}

@media (max-width: 768px) {
    .product-left {
        position: static;
    }
}

.product-image-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.2rem;
    text-align: center;
    margin-bottom: 1.2rem;
}

.product-image-wrap img {
    max-width: 100%;
    border-radius: 10px;
}

.product-ratings {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
}

.product-ratings h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.rating-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.15rem;
    flex-wrap: wrap;
}

.rating-label {
    min-width: 55px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.85rem;
}

.rating-stars {
    display: inline-flex;
    gap: 1px;
}

.rating-stars .star-on {
    color: #FFD700;
    font-size: 1rem;
}

.rating-stars .star-off {
    color: rgba(255, 255, 255, 0.12);
    font-size: 1rem;
}

.rating-stars .star-glow {
    color: #FFD700;
    font-size: 1rem;
    animation: starGlow 1.5s ease-in-out infinite;
}

.rating-stars .star-none {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

.rating-value {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.78rem;
    margin-left: 5px;
}

.rating-desc {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.72rem;
    flex-basis: 100%;
    line-height: 1.3;
    margin-bottom: 0.3rem;
    padding-left: 0;
}

@keyframes starGlow {

    0%,
    100% {
        text-shadow: 0 0 6px rgba(255, 215, 0, 0.8), 0 0 12px rgba(255, 215, 0, 0.4);
    }

    50% {
        text-shadow: 0 0 12px rgba(255, 215, 0, 1), 0 0 24px rgba(255, 215, 0, 0.6);
    }
}

@keyframes rainbowStar {
    0% { color: #ff4d4d; }
    14% { color: #ff8c00; }
    28% { color: #ffd700; }
    42% { color: #4ade80; }
    57% { color: #6495ed; }
    71% { color: #8b5cf6; }
    85% { color: #ec4899; }
    100% { color: #ff4d4d; }
}

.rating-stars .star-rainbow {
    font-size: 1.1rem;
    animation: rainbowStar 2s linear infinite;
    text-shadow: 0 0 8px currentColor;
}

.ratings-placeholder {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
    text-align: center;
    padding: 1rem 0;
}

/* Right Column */
.product-right h1 {
    font-size: 1.6rem;
    margin-bottom: 0.3rem;
}

.product-platform {
    color: #ff0000;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.product-platform.pf-twitter { color: #1d9bf0; }
.product-platform.pf-note { color: #41c9b4; }
.product-platform.pf-instagram { color: #E1306C; }
.product-platform.pf-line { color: #06c755; }

.product-price-range {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
}

.product-price-range strong {
    color: #fff;
    font-size: 1.3rem;
}

/* Step Sections */
.step-section {
    margin-bottom: 1.4rem;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.step-label .step-num {
    display: inline-flex;
    width: 22px;
    height: 22px;
    background: var(--primary-color, #3b82f6);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Choice Cards */
.choice-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
}

@media (max-width: 500px) {
    .choice-cards {
        grid-template-columns: 1fr;
    }
}

.choice-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.choice-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(59, 130, 246, 0.08);
}

.choice-card.selected {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.15);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.2);
}

.choice-card .card-icon {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
}

.choice-card .card-title {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.choice-card .card-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.35;
}

.choice-card.member-card {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
}

.choice-card.member-card:hover {
    border-color: rgba(255, 215, 0, 0.55);
    background: rgba(255, 215, 0, 0.1);
}

.choice-card.member-card.selected {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.2);
}

/* Quantity Selector */
.qty-select-wrap {
    position: relative;
}

.qty-select {
    width: 100%;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    appearance: none;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}

.qty-select:focus {
    border-color: #3b82f6;
}

.qty-select option {
    background: #1a1f35;
    color: #fff;
}

.qty-select-wrap::after {
    content: '▼';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
}

/* Price Display */
.price-display {
    background: rgba(59, 130, 246, 0.1);
    border: 1.5px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    margin-top: 1rem;
}

.price-display .price-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.3rem;
}

.price-display .price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.price-display .price-value .tax {
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 0.3rem;
}

.price-display .price-per-unit {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.2rem;
}

.price-display .selected-svc-name {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Panel Link Button */
.panel-move-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.4rem;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    margin-top: 0.8rem;
    transition: opacity 0.2s;
}

.panel-move-btn:hover {
    opacity: 0.85;
}

/* Service Notes */
.service-notes {
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
}

.service-notes h3 {
    font-size: 0.92rem;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
}

.service-notes ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-notes ul li {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
    line-height: 1.45;
}

.service-notes ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.3);
}

/* Guarantee Detail (left column) */
.guarantee-detail {
    margin-top: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 1.2rem 1.4rem;
}

.guarantee-detail h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
}

.guarantee-bar-bg {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.6rem;
}

.guarantee-bar-fill {
    height: 100%;
    border-radius: 5px;
    transition: width 0.5s ease;
}

.guarantee-summary {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.guarantee-summary strong {
    color: #fff;
}

.guarantee-example {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    margin-top: 0.5rem;
    line-height: 1.5;
}

.guarantee-no {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 8px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.guarantee-no .warn-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* URL input */
.url-input-section {
    margin-top: 1.2rem;
}

.url-input-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.url-input-label .required {
    color: #ef4444;
    font-size: 0.85rem;
}

.url-input-hint {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.5rem;
}

.url-input {
    width: 100%;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #fff;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.url-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.url-input:focus {
    border-color: #3b82f6;
}

/* Coupon input */
.coupon-section {
    margin-top: 1rem;
}

.coupon-toggle {
    font-size: 0.85rem;
    color: #7dd3fc;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.coupon-toggle:hover {
    color: #93e0fd;
}

.coupon-input-wrap {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.coupon-input {
    flex: 1;
    padding: 0.6rem 0.9rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 0.88rem;
    outline: none;
    text-transform: uppercase;
    box-sizing: border-box;
}

.coupon-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
    text-transform: none;
}

.coupon-input:focus {
    border-color: #3b82f6;
}

.coupon-apply-btn {
    padding: 0.6rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1.5px solid rgba(59, 130, 246, 0.4);
    border-radius: 8px;
    color: #7dd3fc;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.coupon-apply-btn:hover {
    background: rgba(59, 130, 246, 0.3);
}

.coupon-msg {
    font-size: 0.8rem;
    margin-top: 0.3rem;
    min-height: 1.2em;
}

.coupon-msg.success {
    color: #4ade80;
}

.coupon-msg.error {
    color: #f87171;
}

/* Info tooltip for ratings */
.rating-info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    font-size: 0.6rem;
    color: white;
    cursor: default;
    -webkit-user-select: none;
    user-select: none;
    vertical-align: middle;
    margin-left: 4px;
    position: relative;
}

.rating-info-popup {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(100, 149, 237, 0.4);
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    white-space: normal;
    min-width: 180px;
    max-width: 260px;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    line-height: 1.4;
}

/* Order Button */
.order-btn {
    display: block;
    width: 100%;
    padding: 0.9rem 1.4rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    margin-top: 1rem;
}

.order-btn.disabled {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.3);
    cursor: not-allowed;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-btn.active {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.order-btn.active:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.order-btn.member-login {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    text-decoration: none;
}

.order-btn.member-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3);
}

/* Guarantee disclaimer */
.guarantee-disclaimer {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 0.4rem;
}

.guarantee-disclaimer a {
    color: rgba(100, 149, 237, 0.7);
    text-decoration: underline;
}

/* Hidden utility */
.hidden {
    display: none !important;
}

/* Smooth transition for steps */
.step-section {
    animation: fadeSlideIn 0.3s ease;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Placeholder page styles */
.genre-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}
.genre-hero {
    text-align: center;
    padding: 2rem 1rem;
}
.genre-hero .genre-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}
.genre-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}
.genre-hero .genre-pf {
    color: #E1306C;
    font-size: 1rem;
    font-weight: 600;
}
.genre-pf {
    color: #E1306C;
    font-size: 1rem;
    font-weight: 600;
}
.coming-soon {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-top: 1rem;
}

/* Fast plan - contact request card */
.fast-notice-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin-top: .5rem;
}
.fast-notice-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0 0 1.2rem 0;
}
.fast-request-btn {
    display: inline-block;
    padding: .75rem 2rem;
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    border-radius: 10px;
    transition: transform .2s, box-shadow .2s;
}
.fast-request-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(99,102,241,.35);
}

/* Cross-link banner */
.cross-link {
    display: block;
    font-size: .88rem;
    color: #7dd3fc;
    text-decoration: none;
    margin-top: .8rem;
    margin-bottom: 1.2rem;
    padding: .55rem .9rem;
    background: rgba(125, 211, 252, .06);
    border: 1px solid rgba(125, 211, 252, .15);
    border-radius: 8px;
    transition: all .2s;
}

.cross-link:hover {
    background: rgba(125, 211, 252, .12);
    color: #93e0fd;
    text-decoration: none;
}

/* ========================================
   Shop Landing Page (shop.html)
   ======================================== */

.shop-tabs-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.shop-tabs-row:last-child {
    margin-bottom: 1rem;
}

/* Member info tooltip */
.member-info-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 215, 0, 0.5);
    color: #FFD700;
    font-size: 0.7rem;
    font-weight: 700;
    cursor: pointer;
    margin-left: 0.4rem;
    position: relative;
    flex-shrink: 0;
}

.member-info-trigger:hover {
    background: rgba(255, 215, 0, 0.15);
}

.member-info-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 41, 59, 0.98);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    width: 280px;
    max-width: 280px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
    font-weight: 400;
    white-space: normal;
    text-align: left;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    z-index: 50;
    pointer-events: none;
}

.member-info-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(255, 215, 0, 0.25);
}

.member-info-trigger:hover .member-info-tooltip {
    display: block;
}

/* Member toggle */
.member-toggle-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.member-toggle-row label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
}

.member-toggle-row input[type="checkbox"] {
    accent-color: #FFD700;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Nav bar (breadcrumb + panel link) */
.shop-nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0;
}

.shop-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: var(--text-secondary);
    flex-wrap: wrap;
}

.shop-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.shop-breadcrumb a:hover {
    text-decoration: underline;
}

.shop-breadcrumb .sep {
    opacity: 0.5;
}

.shop-breadcrumb span:last-child:not(.sep) {
    color: var(--text-secondary);
}

.shop-panel-link {
    font-size: 0.88rem;
    color: #7dd3fc;
    text-decoration: none;
    white-space: nowrap;
}

.shop-panel-link:hover {
    text-decoration: underline;
    color: #93e0fd;
}

/* Separator */
.shop-separator {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 0 0 1.5rem 0;
}

/* Member-only inline cards */
.shop-genre-card.member-only-card {
    border-color: rgba(255, 215, 0, 0.25) !important;
    background: rgba(255, 215, 0, 0.03) !important;
}

.shop-genre-card.member-only-card .card-img {
    background: rgba(255, 215, 0, 0.06) !important;
}

.shop-genre-card.member-only-card .card-title::after {
    content: ' 🛡️';
    font-size: 0.7rem;
}

.shop-genre-card.member-only-card .card-price {
    color: #FFD700 !important;
}

.member-only-card.hidden {
    display: none !important;
}

.shop-tab {
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.shop-tab:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.shop-tab.active {
    color: #fff;
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.15);
}

.shop-tab.member-tab.active {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
}

.shop-tab svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.genre-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.2rem;
    animation: fadeIn 0.4s;
}

.shop-genre-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.shop-genre-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.shop-genre-card .card-img {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.shop-genre-card .card-body {
    padding: 1rem 1.2rem 1.2rem;
}

.shop-genre-card .card-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.shop-genre-card .card-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.45);
}

.shop-genre-card .card-price {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 0.5rem;
}

.shop-genre-card .card-price.na {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 400;
}

.platform-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.platform-section-title svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.platform-group {
    margin-bottom: 2.5rem;
    display: none;
}

.platform-group.visible {
    display: block;
}

/* Platform card-img background colors */
.card-img-youtube { background: rgba(255, 0, 0, 0.08); }
.card-img-tiktok { background: rgba(0, 255, 255, 0.06); }
.card-img-instagram { background: rgba(225, 48, 108, 0.08); }
.card-img-twitter { background: rgba(29, 161, 242, 0.08); }
.card-img-note { background: rgba(65, 179, 73, 0.08); }
.card-img-twitch { background: rgba(145, 70, 255, 0.08); }
.card-img-line { background: rgba(6, 199, 85, 0.08); }

/* Shop page utilities */
.shop-main { padding-top: 1rem; }
.shop-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.shop-h1 { margin-top: 0; }

.note-logo {
    font-weight: 900;
    color: #41B349;
    font-size: 1rem;
}

.note-logo-lg {
    font-weight: 900;
    color: #41B349;
    font-size: 1.3rem;
}

/* Member section styles */
.member-section-title { color: #FFD700; }
.member-section-title-sub { color: #FFD700; margin-top: 2rem; }
.member-shield-icon { margin-left: 0.3rem; }
.member-card { border-color: rgba(255, 215, 0, 0.15); }
.card-img-member { background: rgba(255, 215, 0, 0.06); }

/* Star-rainbow animation delays (replaces inline style="animation-delay:Xs") */
.star-rainbow:nth-child(1) { animation-delay: 0s; }
.star-rainbow:nth-child(2) { animation-delay: 0.3s; }
.star-rainbow:nth-child(3) { animation-delay: 0.6s; }
.star-rainbow:nth-child(4) { animation-delay: 0.9s; }
.star-rainbow:nth-child(5) { animation-delay: 1.2s; }
.star-rainbow:nth-child(6) { animation-delay: 1.5s; }

/* Ratings coming-soon placeholder (replaces inline style) */
.ratings-coming-soon {
    text-align: center;
    padding: 1rem;
    opacity: 0.5;
}

/* Adjusting/unavailable order button (replaces inline style on adjusting btn) */
.order-btn.adjusting {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
}