/* ==========================================================================
   LAPTOP SHOWROOM SPECIFIC STYLES
   ========================================================================== */

/* Hero Section Override */
.laptop-hero-section {
    min-height: 480px;
    background: linear-gradient(135deg, #0057B8 0%, #0A84FF 100%);
    color: var(--white);
    padding: 60px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.laptop-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.laptop-hero-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.laptop-hero-title {
    font-size: 44px;
    color: var(--white);
    line-height: 1.15;
    margin: 16px 0;
}

.highlight-white {
    color: #EAF4FF;
}

.laptop-hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 520px;
}

.laptop-hero-cta {
    display: flex;
    gap: 16px;
}

.btn-hero-white {
    background: var(--white);
    color: var(--primary-blue);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
}

.btn-hero-white:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
}

.btn-hero-wa {
    background: var(--whatsapp-green);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
}

/* Floating Laptop Visual & Badges */
.laptop-display-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.main-laptop-img {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}

.tech-tag {
    position: absolute;
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.tag-1 { top: 20px; left: -20px; }
.tag-2 { bottom: 20px; right: -20px; }

.tag-icon { font-size: 20px; }
.tag-text strong { display: block; font-size: 13px; }
.tag-text small { color: #9CA3AF; font-size: 11px; }

/* Floating Animations */
.floating-slow { animation: float 7s ease-in-out infinite; }
.floating-reverse { animation: floatReverse 6s ease-in-out infinite; }

@keyframes floatReverse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

/* Category Cards */
.laptop-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.laptop-cat-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 28px;
    transition: var(--transition);
    cursor: pointer;
}

.laptop-cat-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.cat-card-icon { font-size: 36px; margin-bottom: 12px; }
.cat-card-link { font-weight: 700; color: var(--primary-blue); font-size: 14px; }

/* Filter Section */
.filter-section {
    background: var(--bg-light);
    padding: 32px 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.search-box input {
    width: 100%;
    height: 55px;
    padding: 0 20px 0 54px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(0, 87, 184, 0.1);
}

.filter-dropdowns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.custom-select {
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--white);
    font-size: 14px;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    flex: 1;
    min-width: 160px;
}

.btn-reset {
    background: transparent;
    border: 1px dashed var(--secondary-gray);
    color: var(--secondary-gray);
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
}

.btn-reset:hover {
    border-color: var(--dark-text);
    color: var(--dark-text);
}

/* Laptop Showroom Cards */
.laptop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.laptop-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.laptop-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary-blue);
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.laptop-img-wrap {
    height: 220px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.laptop-img-wrap img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.laptop-card:hover .laptop-img-wrap img {
    transform: scale(1.06) rotate(-1deg);
}

.laptop-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-rating { font-size: 12px; margin-bottom: 6px; }

.laptop-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.specs-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.spec-pill {
    background: var(--light-blue);
    color: var(--primary-blue);
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.laptop-price-block {
    margin-top: auto;
    margin-bottom: 16px;
}

.price-title { font-size: 12px; display: block; }
.price-amount { font-size: 22px; font-weight: 800; color: var(--dark-text); }

.btn-wa-order {
    display: block;
    width: 100%;
    background: var(--whatsapp-green);
    color: var(--white);
    text-align: center;
    padding: 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-wa-order:hover {
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
    transform: translateY(-2px);
}

/* Comparison Guide */
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.guide-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
}

.guide-card.featured {
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.guide-header {
    padding: 24px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.guide-header.student { background: #4B5563; }
.guide-header.business { background: var(--primary-blue); }
.guide-header.creator { background: var(--dark-text); }

.guide-tag {
    background: rgba(255, 255, 255, 0.25);
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 700;
}

.guide-body { padding: 28px; }
.guide-body ul { margin: 16px 0 24px 0; }
.guide-body li { margin-bottom: 8px; font-size: 14px; }

.guide-rec {
    background: var(--bg-light);
    padding: 16px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.guide-rec p { font-size: 13px; font-weight: 600; color: var(--dark-text); margin-top: 4px; }

/* Trust Banner */
.trust-banner-box {
    background: var(--light-blue);
    border-radius: 24px;
    padding: 48px;
    margin-top: 48px;
}

.trust-check-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.t-check-item { display: flex; gap: 16px; }
.check-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.laptop-brands-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.l-brand {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #9CA3AF;
    transition: var(--transition);
}

.l-brand:hover { color: var(--primary-blue); }

.no-results-box {
    text-align: center;
    padding: 64px 0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .laptop-hero-container { grid-template-columns: 1fr; text-align: center; }
    .laptop-hero-title { font-size: 32px; }
    .laptop-hero-cta { justify-content: center; }
    .laptop-display-wrapper { margin-top: 32px; }
    .tag-1, .tag-2 { display: none; }
    .filter-dropdowns { flex-direction: column; }
    .custom-select { width: 100%; }
}