/* DEXPRESS DARK MODE v2.0 (Stable) */

/* 1. RESET & BACKGROUNDS */
body, #page, .site-content {
    background-color: #0b0e11 !important; /* Binance Black */
    color: #eaecef !important;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
}

/* 2. HEADER LAYOUT (The 3 Columns) */
.site-header {
    background-color: #181a20;
    border-bottom: 1px solid #2d333b;
    padding: 15px 0;
}

.dexpress-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 30px;
}

/* Brand */
.header-brand a {
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    color: #fff !important;
    text-transform: uppercase;
}
.header-brand .highlight { color: #f0b90b; }

/* Search Bar (Wide) */
.header-search { flex: 1; } /* Takes up all available space */

.woocommerce-product-search { display: flex; width: 100%; }
.woocommerce-product-search input[type="search"] {
    width: 100%;
    background-color: #fff !important;
    color: #000 !important;
    border: none;
    padding: 12px 15px;
    border-radius: 4px 0 0 4px;
}
.woocommerce-product-search button {
    background-color: #f0b90b !important;
    color: #000 !important;
    border: none;
    padding: 0 25px;
    font-weight: bold;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* Actions (Icons) */
.header-actions { display: flex; gap: 20px; align-items: center; }

.header-action-link, .dexpress-cart-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #eaecef !important;
    text-decoration: none;
    font-size: 11px;
    position: relative;
}

.dashicons { font-size: 22px; width: 22px; height: 22px; margin-bottom: 4px; }

/* 3. PRODUCT CARDS (Glass Look) */
.product, .wcfm-store-list-container {
    background-color: #1e2329 !important;
    border: 1px solid #2d333b;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

/* 4. TEXT & LINKS */
a { color: #f0b90b; text-decoration: none; }
h1, h2, h3, h4, h5 { color: #fff !important; }
.price { color: #f0b90b !important; font-size: 1.2em; font-weight: bold; }

/* 5. MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .dexpress-header-container { flex-wrap: wrap; gap: 15px; }
    .header-brand { order: 1; flex: 1; }
    .header-actions { order: 2; }
    .header-search { order: 3; width: 100%; flex: 100%; }
}
/* --- HOMEPAGE LAYOUT --- */

/* 1. Hero Banner */
.dexpress-hero {
    background: linear-gradient(135deg, #1e2329 0%, #0b0e11 100%);
    padding: 80px 20px;
    text-align: center;
    border-bottom: 1px solid #2d333b;
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #848e9c;
    margin-bottom: 30px;
}

.hero-btn {
    background-color: #f0b90b;
    color: #000 !important;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 5px;
    font-size: 16px;
    display: inline-block;
}

/* 2. Category Strip */
.dexpress-categories-strip {
    max-width: 1400px;
    margin: 0 auto 40px auto;
    padding: 0 20px;
}

.dexpress-categories-strip h2 {
    border-left: 4px solid #f0b90b;
    padding-left: 15px;
    margin-bottom: 20px;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.cat-card {
    background-color: #1e2329;
    border: 1px solid #2d333b;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    color: #eaecef;
    cursor: pointer;
    transition: all 0.2s;
}

.cat-card:hover {
    border-color: #f0b90b;
    transform: translateY(-5px);
}

/* 3. Product Feed */
.dexpress-product-feed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #2d333b;
    padding-bottom: 10px;
}

/* 4. WooCommerce Grid Adjustments */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.woocommerce ul.products li.product {
    width: 100% !important; /* Force grid width */
    margin: 0 !important;
}

.woocommerce ul.products li.product img {
    border-radius: 8px;
    margin-bottom: 10px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    color: #fff;
}
​<!-- end list -->