:root {
    --primary-bg: #FFFFFF;
    --secondary-bg: #F9F9F9;
    /* Light grey for page background */
    --header-text: #000000;
    --nav-bg: #000000;
    --nav-text: #FFFFFF;
    --accent-blue: #007AFF;
    --accent-red: #FF4B4B;
    --hero-bg: #0B1221;
    --text-grey: #666666;
    --border-color: #E0E0E0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--secondary-bg);
    color: #000;
    font-size: 14px;
    line-height: 1.5;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

/* Top Banner */
.top-banner {
    background-color: #EFDEDE;
    /* Pinkish tone */
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.top-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Header */
.site-header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
}

.main-logo {
    height: 50px;
    object-fit: contain;
    object-position: left;
    display: block;
}



.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
    font-size: 13px;
    font-weight: 400;
}

.city-selector {
    cursor: pointer;
    margin-right: 10px;
}

.arrow-down {
    font-size: 9px;
    margin-left: 3px;
    vertical-align: middle;
}

.top-nav {
    display: flex;
    gap: 20px;
}

.top-nav a {
    color: #333;
}

.top-nav a:hover {
    color: #000;
}

.top-nav .red-link {
    color: #FF5500;
    /* Distinct orange-red */
}

.badge {
    background: #eee;
    padding: 1px 5px;
    border-radius: 4px;
    font-size: 10px;
    margin-left: 2px;
}

.user-actions {
    margin-left: 5px;
}

.contact-info {
    text-align: right;
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.contact-info .phone {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

.contact-info .work-hours {
    font-size: 11px;
    color: #888;
}

/* Navbar */
.navbar {
    background-color: #000;
    color: #fff;
    height: 54px;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #bbb;
    padding: 5px;
    transition: color 0.2s;
}

.search-btn:hover {
    color: white;
}

.main-menu {
    display: flex;
    gap: 25px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    /* Looks uppercase in screenshot or just Title Case? Title Case. */
    text-transform: none;
    /* Actually Title Case */
}

.main-menu a {
    color: #ddd;
}

.main-menu a:hover {
    color: #fff;
}

.main-menu .highlight-orange {
    color: #FF7043;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-link {
    display: flex;
    align-items: center;
    position: relative;
    color: #ddd;
}

.icon-link:hover {
    color: #fff;
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #007AFF;
    color: white;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

/* Link Resets in Main */
main a:hover {
    opacity: 0.8;
}

/* Main Grid Layout */
.main-top-grid {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 480px;
    /* Fixed height for Hero row */
}

/* Dark Slider Block */
.hero-slider-block {
    flex: 3;
    /* Take up ~75% */
    background-color: var(--hero-bg);
    color: white;
    position: relative;
    overflow: hidden;
    padding: 60px;
    display: flex;
    justify-content: space-between;
}

.hero-content {
    max-width: 45%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.btn-white {
    display: inline-block;
    background: white;
    color: black;
    padding: 14px 40px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
    text-align: center;
    align-self: flex-start;
}

.hero-dots {
    margin-top: 60px;
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.dot.active {
    background: #007AFF;
}

.hero-collage {
    position: relative;
    width: 50%;
    /* Flex grid for images */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
}

/* Just basic boxes for placeholders as requested to look like blocks */
.hero-collage .collage-item {
    background: #1C2436;
    border: 1px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
}

.item-1 {
    grid-row: 1 / 3;
}

/* Tall item */
.item-2 {}

.item-3 {}


/* Hero of the Day Block */
.hero-day-block {
    flex: 1;
    /* ~25% */
    background: white;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-label {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 12px;
    font-weight: 600;
    color: #000;
}

.hero-day-img {
    margin-top: 40px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder-lg {
    width: 120px;
    height: 180px;
    background: #f0f0f0;
}

.hero-day-info {
    margin-top: 20px;
    text-align: center;
    padding-bottom: 20px;
}

.hero-day-info h3 {
    font-size: 13px;
    font-weight: 400;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.4;
}

.hero-day-info .price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

/* Categories Bar */
.categories-bar {
    background: #fff;
    padding: 25px 0;
    margin-bottom: 20px;
}

.categories-bar .container {
    display: flex;
    justify-content: center;
    gap: 60px;
    /* Space out items */
}

.cat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.cat-item img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 4px;
    /* Optional */
}

.cat-item span {
    font-size: 14px;
    color: #444;
    font-weight: 500;
}

/* Promo Banners Grid */
.promo-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1.2fr;
    /* Match visual proportions */
    gap: 20px;
    margin-bottom: 40px;
}

.promo-card {
    height: 180px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bg-pink {
    background-color: #F4E8E8;
}

.bg-blue-light {
    background-color: #D3DBEB;
}

.bg-dark-banner {
    background-color: #000;
}

.promo-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
    z-index: 2;
    position: relative;
}

.promo-text p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    z-index: 2;
    position: relative;
}

.text-white h3,
.text-white p {
    color: white;
}

.link-white {
    color: white;
    text-decoration: underline;
    font-size: 13px;
}

.card-black {
    background: black;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
    transform: rotate(-5deg);
    /* playful angle */
    position: absolute;
    right: 20px;
    bottom: 30px;
}

/* Bestsellers */
.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: #fff;
    padding: 20px;
    /* Optional, if cards have no bg */
}

.product-card {
    background: #fff;
    padding: 20px;
    text-align: center;
    transition: box-shadow 0.2s;
    /* border: 1px solid transparent; */
}

.product-card:hover {
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
    /* z-index: 10; */
}

.prod-img img {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
}

.prod-info {
    text-align: center;
}

.prod-title {
    font-size: 13px;
    color: #444;
    line-height: 1.4;
    margin-bottom: 15px;
    height: 40px;
    /* Fixed height for alignment */
    overflow: hidden;
}

.prod-price-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

.old-price {
    font-size: 13px;
    text-decoration: line-through;
    color: #999;
}