/* =============================================
   Shop Page Styles - Dark Theme
   ============================================= */

.page-hero {
    background: var(--gray-900);
    border-bottom: 1px solid var(--gray-700);
    color: var(--white);
    padding: 60px 0 40px;
    margin-top: calc(var(--topbar-h) + var(--header-h));
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 3px;
    margin: 10px 0 12px;
    font-weight: 700;
}

.page-hero p {
    font-size: 14px;
    color: var(--gray-400);
    font-family: var(--font-condensed);
    letter-spacing: 1px;
}

.page-hero p a { color: var(--gray-400); transition: color var(--transition); }
.page-hero p a:hover { color: var(--white); }

/* Shop Layout */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar */
.shop-sidebar {
    position: sticky;
    top: calc(var(--topbar-h) + var(--header-h) + 20px);
}

.sidebar-widget {
    background: var(--gray-900);
    border: 1px solid var(--gray-700);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-widget h4 {
    font-family: var(--font-condensed);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-700);
}

.cat-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 14px;
    color: var(--gray-400);
    border-bottom: 1px solid var(--gray-800);
    transition: color var(--transition);
    font-family: var(--font-body);
    text-decoration: none;
}

.cat-list li a:hover,
.cat-list li a.active {
    color: var(--white);
    font-weight: 600;
}

.cat-list li a span {
    font-size: 12px;
    color: var(--gray-600);
    font-weight: 400;
}

.sidebar-search {
    display: flex;
    gap: 8px;
}

.sidebar-search input {
    flex: 1;
    border: 1px solid var(--gray-600);
    padding: 9px 12px;
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
    background: var(--gray-800);
    color: var(--white);
    transition: border-color var(--transition);
}

.sidebar-search input::placeholder { color: var(--gray-500); }
.sidebar-search input:focus { border-color: var(--white); }

.sidebar-search button {
    background: var(--white);
    color: var(--black);
    border: none;
    padding: 9px 14px;
    cursor: pointer;
    font-size: 13px;
    transition: background var(--transition);
    font-weight: 700;
}

.sidebar-search button:hover { background: var(--gray-300); }

/* Shop Main */
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-700);
}

.prod-count {
    font-family: var(--font-condensed);
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--gray-500);
    text-transform: uppercase;
}

/* No Products */
.no-products {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-500);
}

.no-products i { font-size: 56px; margin-bottom: 20px; display: block; }
.no-products h3 { font-family: var(--font-display); font-size: 28px; letter-spacing: 2px; color: var(--white); margin-bottom: 10px; font-weight: 700; }
.no-products p { margin-bottom: 24px; font-size: 15px; }

/* Pagination */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 48px;
}

.page-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--gray-600);
    font-family: var(--font-condensed);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-400);
    transition: all var(--transition);
    text-decoration: none;
}

.page-btn:hover,
.page-btn.active {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* Responsive */
@media (max-width: 900px) {
    .shop-layout { grid-template-columns: 1fr; }
    .shop-sidebar { position: static; }
}