.breadcrumb-modern{
    margin:0 0 16px;
    padding:0;
    list-style:none;
    color:var(--muted);
    font-size:14px;
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    align-items:center;
}

.product-hero{
    display:grid;
    grid-template-columns:minmax(320px,520px) minmax(0,1fr);
    gap:24px;
    padding:24px;
    border:1px solid var(--line);
    border-radius:24px;
    background:linear-gradient(180deg,#fff,#fafafa);
    box-shadow:var(--shadow);
    transition:all .2s ease;
}

.product-hero-media{
    background:#fff;
    border:1px solid var(--line);
    border-radius:20px;
    padding:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:420px;
}

.product-hero-media img{
    max-width:100%;
    max-height:520px;
    object-fit:contain;
    display:block;
}

.product-hero-body{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.product-badges{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}

.badge{
    display:inline-flex;
    align-items:center;
    min-height:32px;
    padding:0 10px;
    border-radius:999px;
    background:#fff1f3;
    color:var(--primary);
    border:1px solid #fecdd3;
    font-size:13px;
    font-weight:700;
}

.badge-neutral{
    background:#f3f4f6;
    border-color:#e5e7eb;
    color:#374151;
}

.product-title-main{
    margin:0;
    font-size:34px;
    line-height:1.15;
    text-wrap:balance;
}

.product-price-main{
    font-size:36px;
    font-weight:800;
    color:#990099;
    line-height:1;
}

.product-price-old{
    text-decoration:line-through;
    color:#6b7280;
    font-size:18px;
}

.product-price-note{
    margin:0;
    font-size:14px;
    color:var(--muted);
}

.product-meta{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    padding:14px;
    border:1px solid var(--line);
    border-radius:16px;
    background:#fff;
}

.meta-item strong{
    display:block;
    font-size:13px;
    color:#374151;
    margin-bottom:4px;
}

.meta-item span{
    font-size:14px;
    color:var(--text);
}

.product-description{
    padding:16px;
    border:1px solid var(--line);
    border-radius:16px;
    background:#fff;
    line-height:1.6;
    color:var(--text);
}

.product-actions{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    align-items:center;
}

.product-actions a{
    min-height:48px;
    transition:all .2s ease;
}

.merchant-logo-box{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    min-width:120px;
    padding:0 14px;
    border:1px solid var(--line);
    border-radius:999px;
    background:#fff;
    box-shadow:0 4px 12px rgba(0,0,0,.04);
    transition:all .2s ease;
}

.merchant-logo-inline{
    max-height:28px;
    max-width:96px;
    width:auto;
    height:auto;
    object-fit:contain;
    display:block;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin:20px 0;
}

.product-card{
    display:flex;
    flex-direction:column;
    border:1px solid var(--line);
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 4px 12px rgba(0,0,0,.05);
    transition:all .2s ease;
}

.product-card.featured{
    border:2px solid #fecdd3;
    box-shadow:0 10px 24px rgba(223,0,29,.08);
}

.product-card:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(0,0,0,.08);
}

.product-actions a:hover,
.merchant-logo-box:hover{
    transform:translateY(-1px);
}

.product-image-wrap{
    aspect-ratio:4/3;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:14px;
    background:#fff;
    border-bottom:1px solid var(--line);
}

.product-image-wrap img{
    max-width:100%;
    max-height:220px;
    object-fit:contain;
    display:block;
}

.product-body{
    padding:14px;
    display:flex;
    flex-direction:column;
    gap:10px;
    flex:1;
}

.product-price{
    font-size:24px;
    font-weight:800;
    color:#990099;
}

.product-title{
    font-size:15px;
    font-weight:700;
    color:var(--text);
    line-height:1.35;
}

.product-desc{
    font-size:13px;
    color:var(--muted);
    line-height:1.45;
}

.product-meta-mini{
    font-size:12px;
    color:var(--muted);
    margin-top:auto;
}

.product-actions-mini{
    display:flex;
    gap:8px;
    flex-wrap:wrap;
}

.category-item{
    display:flex;
    justify-content:space-between;
    gap:12px;
    padding:6px 0;
}

.category-count{
    font-size:12px;
    color:var(--muted);
}

.top-product-item:last-child{
    padding-bottom:0;
    border-bottom:0;
}

.top-product-item{
    display:flex;
    gap:10px;
    align-items:flex-start;
    padding-bottom:10px;
    border-bottom:1px solid var(--line);
}

.top-product-item img{
    flex:0 0 56px;
    width:56px;
    height:56px;
    object-fit:contain;
    border:1px solid var(--line);
    border-radius:8px;
    background:#fff;
}

.top-product-item > div{
    min-width:0;
    flex:1;
}

.top-product-title{
    font-size:13px;
    color:var(--text);
    line-height:1.3;
    margin-bottom:4px;
}

.top-product-price{
    font-size:13px;
    font-weight:700;
    color:var(--primary);
    line-height:1.2;
}

@media (max-width:1200px){
    .products-grid{grid-template-columns:repeat(3,1fr)}
    .product-hero{grid-template-columns:1fr 1fr}
}

@media (max-width:980px){
    .product-hero{grid-template-columns:1fr}
    .product-meta{grid-template-columns:1fr 1fr}
}

@media (max-width:900px){
    .products-grid{grid-template-columns:repeat(2,1fr)}
}

@media (max-width:640px){
    .products-grid{grid-template-columns:1fr}
    .product-meta{grid-template-columns:1fr}
    .product-title-main{font-size:28px}
    .product-price-main{font-size:30px}

    .product-actions{
        flex-direction:column;
        align-items:stretch;
    }

    .product-actions a,
    .merchant-logo-box{
        width:100%;
    }
}

.info-faq-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:20px;
    align-items:stretch;
    margin:20px 0;
    width:100%;
    clear:both;
}

.info-faq-grid > .info-faq-card{
    height:100%;
    min-width:0;
    margin:0;
}

.info-faq-grid + .content-card,
.info-faq-grid + section,
.info-faq-grid + div{
    margin-top:20px;
    clear:both;
}

@media (max-width:900px){
    .info-faq-grid{
        grid-template-columns:1fr;
    }
}

.info-faq-card h2{
    margin-top:0;
}

.info-faq-card h3{
    margin-top:18px;
    margin-bottom:8px;
}

.info-faq-card p,
.info-faq-card ul{
    margin-top:0;
}

.side-column-premium{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.side-column-premium .sidebar-card{
    border:1px solid var(--line);
    border-radius:20px;
    background:linear-gradient(180deg,#ffffff,#fcfcfc);
    box-shadow:0 8px 24px rgba(0,0,0,.05);
    padding:18px;
}

.side-column-premium .sidebar-card h2{
    margin:0 0 10px;
    font-size:20px;
    line-height:1.25;
}

.side-column-premium .sidebar-card p{
    margin:0 0 12px;
    color:var(--muted);
    line-height:1.6;
    font-size:14px;
}

.sidebar-card-highlight{
    border:1px solid #fbcfe8;
    background:linear-gradient(180deg,#fff7fb,#ffffff);
}

.sidebar-card-brand{
    border:1px solid #e9d5ff;
    background:linear-gradient(180deg,#faf5ff,#ffffff);
}

.sidebar-badge{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:0 10px;
    margin-bottom:10px;
    border-radius:999px;
    background:#f8fafc;
    border:1px solid var(--line);
    color:#475569;
    font-size:12px;
    font-weight:700;
}

.sidebar-btn-full{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    line-height:1.3;
    padding:10px 12px;
}

.sidebar-category-list{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.category-item-premium{
    padding:10px 0;
    border-bottom:1px solid var(--line);
}

.category-item-premium:last-child{
    border-bottom:0;
    padding-bottom:0;
}

.category-count-premium{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:28px;
    height:28px;
    padding:0 8px;
    border-radius:999px;
    background:#f8fafc;
    border:1px solid var(--line);
    font-size:12px;
    font-weight:700;
    color:#475569;
}

.top-product-item-premium{
    padding:10px 0;
    transition:all .2s ease;
}

.top-product-item-premium:hover{
    transform:translateY(-1px);
}

.top-product-item-premium img{
    border-radius:12px;
    width:64px;
    height:64px;
    background:#fff;
}

@media (max-width:980px){
    .side-column-premium{
        margin-top:20px;
    }
}

.product-meta-note{
    margin:10px 0 0;
    font-size:14px;
    line-height:1.5;
    color:var(--muted);
}

.faq-bottom-link{
    margin-top:16px;
    font-size:14px;
    line-height:1.5;
}

.detected-features-card{
    margin:22px 0;
    padding:20px;
    border:1px solid var(--line);
    border-radius:20px;
    background:linear-gradient(180deg,#fff 0%,#fafafa 100%);
    box-shadow:0 6px 18px rgba(0,0,0,.05);
    width:100%;
    grid-column:1 / -1;
}

.detected-features-card h2{
    margin:0 0 8px;
    font-size:26px;
    line-height:1.2;
}

.detected-features-intro{
    margin:0 0 16px;
    font-size:14px;
    line-height:1.6;
    color:var(--muted);
}

.detected-features-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    margin:16px 0 0;
}

.detected-feature-item{
    padding:14px 16px;
    border:1px solid #e5e7eb;
    border-radius:16px;
    background:#fff;
    box-shadow:0 3px 10px rgba(0,0,0,.03);
}

.detected-feature-item strong{
    display:block;
    margin-bottom:6px;
    font-size:12px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.04em;
    color:#6b7280;
}

.detected-feature-item span{
    display:block;
    font-size:16px;
    font-weight:700;
    line-height:1.35;
    color:var(--text);
}

.detected-feature-item-full{
    grid-column:1 / -1;
}

.detected-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:4px;
}

.detected-tag{
    display:inline-flex;
    align-items:center;
    min-height:32px;
    padding:0 10px;
    border-radius:999px;
    background:#f3f4f6;
    border:1px solid #e5e7eb;
    color:#374151;
    font-size:13px;
    font-weight:600;
}

.detected-features-note{
    margin:16px 0 0;
    font-size:13px;
    line-height:1.5;
    color:var(--muted);
}

@media (max-width:800px){
    .detected-features-grid{
        grid-template-columns:1fr;
    }

    .detected-features-card h2{
        font-size:22px;
    }
}

.product-rating{
    display:flex;
    align-items:center;
    gap:10px;
    margin:12px 0 6px;
    flex-wrap:wrap;
}

.rating-stars{
    color:#ffb400;
    letter-spacing:3px;
    font-size:24px;
    line-height:1;
    display:inline-block;
    text-shadow:0 1px 0 rgba(0,0,0,.08);
}

.rating-value{
    font-weight:700;
    color:#1f2937;
    font-size:16px;
}

.product-availability{
    margin:10px 0 4px;
    font-size:15px;
    color:var(--muted);
}
.rating-count {
    font-size: 0.85em;
    color: #aaa;
    position: relative;
    top: -2px;
}
.similar-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.similar-rating-value {
    font-size: 0.95rem;
    color: #222;
}

.similar-rating-count {
    font-size: 0.85em;
    color: #777;
}
.similar-rating {
    font-size: 12px;
    line-height: 1.2;
    margin-top: 4px;
}

.similar-rating {
    font-size: 13px;
}

.similar-rating .rating-stars {
    font-size: 15px;
}

.similar-rating-value,
.similar-rating-count {
    font-size: 11px;
}
