/* ==========================================================================
   ACCESSORIES SHOWROOM STYLES
   ========================================================================== */

.accessories-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;
}

.accessories-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;
}

.accessories-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;
}

.accessories-hero-title {
    font-size: 44px;
    color: var(--white);
    line-height: 1.15;
    margin: 16px 0;
}

.accessories-hero-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 520px;
}

.accessories-hero-cta { display: flex; gap: 16px; }

.btn-hero-white {
    background: var(--white);
    color: #0057B8;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
}

.btn-hero-wa {
    background: #25D366;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
}

/* Hero Floating Badges */
.accessories-display-wrapper { position: relative; display: flex; justify-content: center; }
.main-accessories-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) */
.accessory-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.accessory-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;
}

.accessory-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 */
.accessory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.accessory-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.accessory-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;
}

.accessory-img-wrap {
    height: 230px;
    background: #F8FAFC;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.accessory-img-wrap img { max-height: 100%; max-width: 100%; object-fit: contain; }

.accessory-card-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.accessory-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; }

.specs-pill-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; background: #F8FAFC; padding: 10px; border-radius: 10px; }
.spec-pill { font-size: 12px; color: var(--secondary-gray); }

.accessory-price-block { margin-top: auto; margin-bottom: 16px; }
.price-title { font-size: 12px; color: var(--secondary-gray); display: block; }
.price-amount { font-size: 20px; font-weight: 800; color: var(--dark-text); }

.btn-wa-order {
    display: block;
    width: 100%;
    background: #25D366;
    color: var(--white);
    text-align: center;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
}

/* Buying Guide Colors */
.work-guide { background: #E0F2FE; color: #0369A1; padding: 20px; border-radius: 16px 16px 0 0; }
.travel-guide { background: #DBEAFE; color: #1E40AF; padding: 20px; border-radius: 16px 16px 0 0; }
.gaming-guide { background: #F1F5F9; color: #0F172A; padding: 20px; border-radius: 16px 16px 0 0; }

/* Responsive Grid Rules */
@media (max-width: 1024px) { .accessory-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
    .accessory-grid { grid-template-columns: 1fr; }
    .accessories-hero-container { grid-template-columns: 1fr; text-align: center; }
    .tag-1, .tag-2 { display: none; }
}