/* ==========================================================================
   DESKTOP SHOWROOM STYLES (Identical visual language to Laptop page)
   ========================================================================== */

.desktop-hero-section {
    min-height: 420px;
    background: linear-gradient(135deg, #0057B8 0%, #0A84FF 100%);
    color: var(--white);
    padding: 60px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.desktop-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;
}

.desktop-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;
}

.desktop-hero-title {
    font-size: 44px;
    color: var(--white);
    line-height: 1.15;
    margin: 16px 0;
}

.desktop-hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 520px;
}

.desktop-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-wa {
    background: var(--whatsapp-green);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
}

/* Hero Floating Badges */
.desktop-display-wrapper { position: relative; display: flex; justify-content: center; }
.main-desktop-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; }

/* Category Cards (260px x 200px) */
.desktop-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.desktop-cat-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    height: 200px;
    padding: 24px;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.desktop-cat-card:hover {
    transform: translateY(-8px);
    border-color: #0057B8;
    box-shadow: var(--shadow-lg);
}

.cat-card-icon { font-size: 32px; margin-bottom: 8px; }
.cat-card-link { font-weight: 700; color: #0057B8; font-size: 14px; margin-top: auto; }

/* Search & Filter Section */
.filter-section { background: #F8FAFC; 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%); }

.search-box input {
    width: 100%;
    height: 55px;
    padding: 0 20px 0 54px;
    border-radius: 30px;
    border: 1px solid #E5E7EB;
    font-size: 15px;
    outline: none;
}

.filter-dropdowns { display: flex; gap: 12px; flex-wrap: wrap; }
.custom-select { padding: 12px 20px; border-radius: 12px; border: 1px solid #E5E7EB; background: var(--white); flex: 1; min-width: 160px; }

/* Product Grid & Cards */
.desktop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.desktop-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.desktop-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card-badge {
    position: absolute;
    top: 16px; left: 16px;
    background: #0057B8;
    color: var(--white);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.desktop-img-wrap {
    height: 230px;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.desktop-img-wrap img { max-height: 100%; max-width: 100%; object-fit: contain; }

.desktop-card-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.desktop-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }

.btn-wa-order {
    display: block;
    width: 100%;
    background: #25D366;
    color: var(--white);
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
}

/* Responsive Grid Rules */
@media (max-width: 1024px) { .desktop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .desktop-grid { grid-template-columns: 1fr; }
    .desktop-hero-container { grid-template-columns: 1fr; text-align: center; }
    .tag-1, .tag-2 { display: none; }
}