.header {
    background: #fff;
    border: 3px solid orange;
    padding: 10px;
    text-align: center;
}
.header h1 {
    color: red;
    margin: 5px 0;
}
.header p {
    font-weight: bold;
}
/* LAYOUT */
.container {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    gap: 10px;
    padding: 10px;
}
/* SIDEBAR */
.sidebar {
    background: #e5e5e5;
    padding: 10px;
}
.sidebar h3 {
    background: #444;
    color: #fff;
    padding: 8px;
    margin: 10px 0 5px;
    font-size: 14px;
}
.sidebar ul {
    list-style: none;
    padding: 0;
}
.sidebar li {
    background: #fff;
    padding: 8px;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}
/* MAIN CONTENT */
.main {
    background: #fff;
    padding: 10px;
}
.notice {
    background: #7b2d2d;
    color: #fff;
    padding: 15px;
    text-align: center;
    margin-bottom: 10px;
}
.shipping {
    text-align: center;
    color: red;
    margin: 10px 0;
}
.title {
    text-align: center;
    font-size: 20px;
    color: #b00000;
    margin-bottom: 10px;
}
/* CATEGORY ICONS */
.categories {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
}
.cat-box {
    padding: 10px;
    text-align: center;
    width: 14%;
    font-size: 12px;
}
/* IMAGE BANNER */
.store-img {
    width: 100%;
    background: #ccc;
    margin: 10px 0;
}
/* NEW ARRIVALS */
.new-arrivals {
    background: #444;
    color: #fff;
    padding: 8px;
    text-align: center;
    margin-bottom: 10px;
}
.products {
    display: flex;
    justify-content: space-between;
}
.product {
    width: 18%;
    text-align: center;
    padding: 0 1px;
}

.product img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    object-position: center;
    background: #fff;
}
/* RIGHT PANEL */
.rightbar {
    background: #e5e5e5;
    padding: 10px;
}
.brand {
    background: #fff;
    padding: 10px;
    margin-bottom: 10px;
    text-align: center;
    border: 1px solid #ccc;
}
/* BUTTON */
.direction-btn {
    margin-top: 20px;
    background: #fff;
    border: 2px solid red;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}
.banner-container {
    max-width: 1440px;
    overflow: hidden;
    position: relative;
    background: #fff;
    margin: 10px auto;
}
.carousel {
    display: flex;
    transition: transform 0.7s ease-in-out;
}
.carousel img {
    width: 100%;
    object-fit: cover;
    flex-shrink: 0;
}
/* Navigation Buttons */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 18px;
}
.prev {
    left: 10px;
}
.next {
    right: 10px;
}
.nav:hover {
    background: rgba(0, 0, 0, 0.8);
}
