/* Shop PC Gaming Page Styles */

/* Hero trust pills */
.hero-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: inherit;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.trust-pill i {
    font-size: 0.75rem;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .hero-trust-pills {
        justify-content: center;
    }
}

/* Price trust box */
.price-trust-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-trust-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--card-bg);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.25rem;
}

.price-trust-item i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.price-trust-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
    color: var(--dark);
}

.price-trust-item p {
    font-size: 0.85rem;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

.price-trust-highlight {
    border-color: var(--primary);
    background: #f0f9ff;
}

.price-trust-highlight i {
    color: #0369a1;
}

/* Build tier badges */
.build-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.badge-entry {
    background: #dcfce7;
    color: #15803d;
}

.badge-mid {
    background: #dbeafe;
    color: #1d4ed8;
}

.badge-high {
    background: #ede9fe;
    color: #6d28d9;
}

.badge-pro {
    background: #fef3c7;
    color: #b45309;
}

/* Price display */
.build-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0.5rem 0 1rem;
    line-height: 1.2;
}

.build-price span {
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
}

/* Spec list in product cards */
.build-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.build-specs li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: var(--dark);
    position: relative;
    padding-left: 1.4rem;
    line-height: 1.4;
}

.build-specs li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Target use label */
.build-target {
    font-size: 0.85rem;
    color: #64748b;
    background: var(--light-bg);
    border-left: 3px solid var(--primary);
    padding: 0.5rem 0.75rem;
    border-radius: 0 6px 6px 0;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

/* Divider inside card */
.card-divider {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 1rem 0;
}

/* Featured build */
.featured-build-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 0 1rem;
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    background: #fefce8;
    color: #a16207;
    border-left: 4px solid #eab308;
}

.featured-build-card {
    border: 2px solid #eab308;
    margin-bottom: 2rem;
}

.featured-build-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.featured-build-title {
    margin: 0.4rem 0 0;
    font-size: 1.2rem;
}

.featured-build-price {
    text-align: right;
    flex-shrink: 0;
}

.featured-build-specs {
    columns: 2;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .featured-build-specs {
        columns: 1;
    }

    .featured-build-top {
        flex-direction: column;
    }

    .featured-build-price {
        text-align: left;
    }
}

/* Brand section headers */
.brand-section-header {
    display: flex;
    align-items: center;
    margin: 2rem 0 1rem;
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
}

.brand-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-intel {
    background: #e8f4fd;
    color: #0071c5;
    border-left: 4px solid #0071c5;
}

.brand-amd {
    background: #fff4ec;
    color: #ed5a00;
    border-left: 4px solid #ed5a00;
}

/* Compare table brand label */
.compare-brand-label {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Tier colored text in table headers */
.badge-entry-text { color: #15803d; font-weight: 700; }
.badge-mid-text   { color: #1d4ed8; font-weight: 700; }
.badge-high-text  { color: #6d28d9; font-weight: 700; }

/* Note below card grid */
.shop-note {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* Comparison table */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.compare-table th,
.compare-table td {
    padding: 0.6rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    text-align: left;
}

.compare-table th {
    font-weight: 700;
    color: var(--dark);
    background: var(--light-bg);
}

.compare-table td:first-child {
    font-weight: 600;
    color: #475569;
}

@media (max-width: 768px) {
    .build-price {
        font-size: 1.4rem;
    }

    .compare-table {
        font-size: 0.8rem;
    }

    .compare-table th,
    .compare-table td {
        padding: 0.5rem 0.6rem;
    }
}
