/* Exact Replication Style for Powerhouse Express */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

:root {
    --primary-blue: #08213f;
    --accent-yellow: #fecb00;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #eaeaea;
    --background-light: #f4f4f4;
    --white: #ffffff;
    --font-family: 'Open Sans', sans-serif;
}

body {
    font-family: var(--font-family);
    margin: 0;
    padding: 0;
    color: var(--text-dark);
    background-color: var(--background-light);
    font-size: 14px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* TOP BAR */
.top-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 8px 0;
    font-size: 12px;
}
.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.top-links {
    display: flex;
    gap: 15px;
    align-items: center;
}
.top-links a {
    color: var(--white);
    font-weight: 600;
    text-transform: capitalize;
}
.top-links .icon-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* MAIN HEADER */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
}
.main-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo-container img {
    height: 45px;
}

.search-container {
    flex-grow: 1;
    max-width: 700px;
    margin: 0 40px;
    display: flex;
}
.search-container input {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-right: none;
    background-color: #fafafa;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    outline: none;
}
.search-container button {
    background-color: var(--accent-yellow);
    border: none;
    padding: 0 20px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}
.exclusives-img {
    height: 35px;
}
.cart-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
}

/* NAV BAR */
.nav-bar {
    background-color: var(--white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-nav {
    display: flex;
    gap: 25px;
}
.main-nav a {
    padding: 15px 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}
.view-all-cats {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

/* HOMEPAGE LAYOUT */
.home-layout {
    display: flex;
    margin-top: 20px;
}

/* SIDEBAR */
.sidebar {
    width: 260px;
    background-color: var(--white);
    flex-shrink: 0;
    padding: 15px 0;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.products-layout {
    align-items: flex-start;
}
.sidebar-menu li {
    list-style: none;
}
.sidebar-menu a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 25px;
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 600;
    transition: background 0.2s;
}
.sidebar-menu a:hover {
    background-color: #f9f9f9;
    color: var(--primary-blue);
}
.sidebar-menu .arrow {
    color: #999;
    font-weight: bold;
    font-size: 16px;
}

/* MAIN CONTENT (RIGHT) */
.main-content-area {
    flex-grow: 1;
    padding: 20px 20px 20px 30px;
    max-width: calc(100% - 260px);
}

/* HERO BANNER */
.hero-banner img {
    width: 100%;
    border-radius: 4px;
}

/* HERO TABS */
.hero-tabs {
    display: flex;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 4px 4px;
}
.hero-tab {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    border-right: 1px solid var(--border-color);
    cursor: pointer;
}
.hero-tab:last-child {
    border-right: none;
}
.hero-tab-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3px;
    color: var(--text-dark);
}
.hero-tab-subtitle {
    font-size: 11px;
    color: var(--text-light);
}

/* SMALL BANNERS */
.small-banners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}
.small-banners img {
    width: 100%;
    border-radius: 4px;
}

/* BRANDS STRIP */
.brands-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 15px 30px;
    margin-top: 20px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}
.brand-logo {
    height: 18px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: 0.3s;
}
.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* CIRCULAR CATEGORIES */
.circular-categories-container {
    margin-top: 30px;
    margin-bottom: 30px;
}
.circular-categories {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
}
.cat-circle-item {
    text-align: center;
    width: 180px;
}
.cat-circle-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    overflow: hidden;
}
.cat-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cat-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* PRODUCT SECTION */
.product-section {
    background: var(--white);
    padding: 30px;
    margin-top: 20px;
    border-radius: 4px;
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}
.section-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}
.view-all-link {
    font-size: 13px;
    font-weight: 600;
    text-decoration: underline;
    color: var(--text-dark);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.product-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 15px;
    transition: 0.2s;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.product-img-wrapper {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.product-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product-info h3 {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--text-dark);
    margin: 0 0 10px;
    height: 36px;
    overflow: hidden;
}
.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: auto;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .home-layout {
        flex-direction: column;
    }
    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    .main-content-area {
        max-width: 100%;
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    .main-header-content {
        flex-direction: column;
        gap: 15px;
    }
    .search-container {
        margin: 0;
        width: 100%;
    }
    .header-right {
        justify-content: center;
        width: 100%;
    }
    .nav-content {
        flex-direction: column;
    }
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-tabs {
        flex-wrap: wrap;
    }
    .hero-tab {
        flex: 1 1 50%;
        border-bottom: 1px solid var(--border-color);
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .top-bar-content {
        justify-content: center;
    }
    .top-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero-tab {
        flex: 1 1 100%;
        border-right: none;
    }
    .cat-circle-item {
        width: 140px;
    }
    .cat-circle-img {
        width: 120px;
        height: 120px;
    }
}
