.sealed-page {
    padding-bottom: 2.5rem;
}

.sealed-hero {
    background: linear-gradient(
        135deg,
        rgba(34, 211, 238, 0.22) 0%,
        rgba(249, 115, 22, 0.14) 100%
    );
    border: 1px solid var(--border);
    color: var(--text);
    padding: 2.75rem 2rem;
    border-radius: 18px;
    margin-bottom: 1.5rem;
    text-align: center;
    box-shadow: var(--glow);
}

.sealed-hero h1 {
    margin: 0 0 0.75rem 0;
    font-size: clamp(1.7rem, 2.3vw, 2.4rem);
    letter-spacing: -0.02em;
}

.sealed-hero p {
    margin: 0;
    opacity: 0.9;
    font-size: 1.05rem;
}

.info-banner {
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.22);
    border-left: 4px solid var(--primary);
    padding: 1rem 1.1rem;
    border-radius: 14px;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.search-sort-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}

.search-box {
    flex: 1;
    min-width: 240px;
    position: relative;
}

.search-box::before {
    content: "🔍";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0.9;
}

/* Keep sealed page inputs consistent with dark theme */
.sealed-page input[type="text"],
.sealed-page select {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    color: var(--text);
}

.sealed-page input[type="text"]::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.search-box input {
    width: 100%;
    padding: 0.8rem 0.95rem 0.8rem 2.25rem;
    border-radius: 14px;
}

.sort-dropdown {
    width: auto;
    min-width: 210px;
    border-radius: 14px;
    padding: 0.8rem 0.95rem;
    cursor: pointer;
}

.advanced-filters {
    background: var(--card);
    padding: 1.25rem;
    border-radius: 16px;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border);
}

.advanced-filters h3 {
    margin: 0 0 1rem 0;
    font-size: 1.05rem;
    color: var(--text);
}

.filter-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem 1.25rem;
}

.filter-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-section label {
    font-weight: 650;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
}

.filter-section input[type="range"] {
    width: 100%;
}

.filter-section.checkbox-row label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 600;
}

.price-range-display {
    color: var(--primary);
    font-weight: 700;
}

.filter-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.results-info {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin: 0.25rem 0 1rem;
}

.filter-bar {
    display: flex;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-label-bold {
    font-weight: 750;
    color: rgba(255, 255, 255, 0.85);
    margin-right: 0.25rem;
}

.filter-btn {
    padding: 0.55rem 1rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.15s ease, border-color 0.2s ease, background 0.2s ease;
}

.filter-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

.filter-btn.active {
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.32), rgba(249, 115, 22, 0.18));
    border-color: rgba(34, 211, 238, 0.45);
    color: var(--text);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.product-card {
    background: var(--card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.18);
}

.product-card.featured::before {
    content: "FEATURED";
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(249, 115, 22, 0.95);
    color: #0b0b0b;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.25);
}

.product-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.03);
}

.product-info {
    padding: 1.1rem 1.1rem 1.25rem;
}

.product-category {
    display: inline-block;
    background: rgba(34, 211, 238, 0.22);
    border: 1px solid rgba(34, 211, 238, 0.28);
    color: rgba(255, 255, 255, 0.95);
    padding: 0.22rem 0.6rem;
    border-radius: 999px;
    font-size: 0.82rem;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.12rem;
    font-weight: 800;
    margin: 0.45rem 0 0.25rem;
    color: var(--text);
    letter-spacing: -0.01em;
}

.product-type {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    margin: 0 0 0.5rem;
}

.product-price {
    font-size: 1.55rem;
    font-weight: 850;
    color: var(--primary);
    margin: 0.75rem 0 0.75rem;
}

.product-description {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    margin: 0 0 0.9rem;
    line-height: 1.55;
}

.product-highlights {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 0.9rem 0.95rem;
    border-radius: 14px;
    margin-bottom: 0.9rem;
}

.product-highlights h4 {
    font-size: 0.92rem;
    margin: 0 0 0.55rem;
    color: rgba(255, 255, 255, 0.9);
}

.product-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-highlights li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.35rem;
    padding-left: 1.15rem;
    position: relative;
}

.product-highlights li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
}

.buy-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.buy-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--text);
    text-decoration: none;
    border-radius: 14px;
    font-weight: 750;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.15s ease, filter 0.2s ease;
}

.buy-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.03);
}

.buy-btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: rgba(255, 255, 255, 0.92);
}

.retailer-badge {
    font-size: 0.82rem;
    opacity: 0.9;
    white-space: nowrap;
}

.retailers-section {
    background: var(--card);
    padding: 1.6rem;
    border-radius: 18px;
    border: 1px solid var(--border);
    margin-top: 1.5rem;
}

.partners-heading {
    margin: 0 0 0.35rem;
}

.partners-description {
    margin: 0 0 1.25rem;
    color: rgba(255, 255, 255, 0.72);
}

.retailers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.retailer-card {
    text-align: center;
    padding: 1.1rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    transition: transform 0.18s ease, border-color 0.18s ease;
}

.retailer-card:hover {
    transform: translateY(-3px);
    border-color: rgba(34, 211, 238, 0.35);
}

.partner-icon {
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.partner-specialty {
    margin: 0.35rem 0 0.6rem;
    color: rgba(255, 255, 255, 0.7);
}

.commission-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.18);
    border: 1px solid rgba(16, 185, 129, 0.28);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.85rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
    white-space: nowrap;
}

