/* ============================
   BereaMall Theme — Navy + Gold
   ============================ */

/* Global Colors */
:root {
    --primary-color: #0A1A2F;   /* Deep Navy */
    --accent-color: #D4A017;    /* Gold */
    --light-bg: #F5F5F5;
    --dark-text: #1A1A1A;
    --border-color: #D9D9D9;
}

/* HEADER */
header, .top-header, .main-header {
    background-color: #0A1A2F;
    color: white;
}

header a, .main-header a, nav a {
    color: white;
    text-decoration: none;
}

header a:hover, nav a:hover {
    color: #D4A017;
}


/* Navigation Links */
nav a {
    color: white;
}

nav a:hover {
    color: var(--accent-color);
}

/* BUTTONS */
button, .btn, .add-to-cart-btn {
    background-color: #0A1A2F;
    color: white;
    border-radius: 6px;
    border: none;
    padding: 10px 16px;
    transition: 0.2s ease;
}

button:hover, .btn:hover, .add-to-cart-btn:hover {
    background-color: #D4A017;
    color: #0A1A2F;
}

/* PRODUCT CARDS */
.product-card {
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    background: white;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}


/* MINI CART */
.mini-cart {
    border: 2px solid #0A1A2F;
}

.mini-cart-title {
    color: #0A1A2F;
}

/* FOOTER */
footer {
    background-color: #0A1A2F;
    color: white;
    padding: 30px 0;
}

footer a {
    color: #D4A017;
}

footer a:hover {
    color: white;
}
/* MAIN CATEGORY BUTTONS — FORCE THEME */
.cat-toggle {
    width: 100%;
    text-align: left;
    background-color: #0A1A2F !important; /* Navy */
    color: white !important;
    border: none;
    padding: 10px 12px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s ease;
}

.cat-toggle .cat-label,
.cat-toggle .arrow {
    color: inherit !important;
}

/* SUBCATEGORY LINKS (inside sub-item) */
.sub-item a {
    color: #0A1A2F; /* Navy */
    padding: 6px 12px;
    display: block;
    text-decoration: none;
    transition: 0.2s ease;
}

.sub-item a:hover {
    color: #D4A017; /* Gold */
    text-decoration: underline;
}
/* QUICK NAV BUTTONS */
.quick-links .quick-btn {
    display: inline-block;
    padding: 8px 14px;
    margin-right: 10px;
    background-color: #0A1A2F; /* Navy */
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s ease;
}

.quick-links .quick-btn:hover {
    background-color: #D4A017; /* Gold */
    color: #0A1A2F;
}
/* HERO SECTION — Soft White to Navy Fade */
.hb-hero {
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #f5f7fa 25%,
        #e8ecf2 45%,
        #cfd6e0 65%,
        #0A1A2F 100%
    );
    padding: 120px 20px;
    text-align: center;
    color: #0A1A2F;
}

/* FORCE SHOP NOW BUTTON TO GOLD */
.hb-hero a[href="shop.php"] {
    background-color: #D4A017 !important; /* Gold */
    color: #0A1A2F !important;            /* Navy text */
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s ease;
}

.hb-hero a[href="shop.php"]:hover {
    background-color: #0A1A2F !important; /* Navy */
    color: white !important;
}
.hb-weekly-spotlight {
    background: #f5f7fa;
    padding: 40px 20px;
}
/* SPOTLIGHT BUTTON THEME */
.hb-ws-button {
    background: #D4A017 !important; /* Gold */
    color: #0A1A2F !important;      /* Navy text */
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s ease;
}
.hb-ws-button:hover {
    background: #0A1A2F !important; /* Navy */
    color: #ffffff !important;
}
.hb-ws-card {
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    border-radius: 10px;
    background: #ffffff;
}

.hb-ws h2,
.hb-ws h1,
.hb-ws-title {
    border-bottom: 3px solid #D4A017;
    padding-bottom: 8px;
    color: #0A1A2F;
    display: inline-block;
}
/* CORRECT GOLD ACCENT UNDER SPOTLIGHT TITLE */
.hb-ws-title {
    display: inline-block;
    border: none !important;                 /* remove any existing borders */
    border-bottom: 3px solid #D4A017 !important; /* gold line BELOW text */
    padding-bottom: 6px;
    color: #0A1A2F;
    margin-bottom: 20px;
}
/* GLOBAL TOP HEADER — NAVY DIVIDER + LIGHT GRAY BACKGROUND */
body > *:first-child {
    background: #f2f4f7 !important;        /* subtle gray */
    border-bottom: 3px solid #0A1A2F !important; /* navy line */
    position: relative;
    z-index: 1000;
}
/* WEEKLY SPECIALS / SPOTLIGHT HEADER — NAVY BACKGROUND + WHITE TEXT + GOLD LINE */
.hb-ws-header {
    background: #0A1A2F !important;   /* navy background */
    color: #ffffff !important;         /* white text */
    padding: 30px 20px !important;     /* spacing */
    text-align: center;
}

/* Title inside Spotlight header */
.hb-ws-header .hb-ws-title {
    display: inline-block;
    color: #ffffff !important;         /* white title text */
    border-bottom: 3px solid #D4A017 !important; /* gold underline */
    padding-bottom: 6px;
    margin-bottom: 10px;
}

/* Subtitle text (if you have a <p> under the title) */
.hb-ws-header p {
    color: #e8e8e8 !important;         /* soft white/gray for subtitle */
    margin-top: 10px;
}
.hb-ws-header {
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.hb-ws-header .hb-ws-title {
    text-shadow: 0 0 4px rgba(212,160,23,0.3);
}
/* SEASONAL SECTION */
.hb-seasonal {
    background: #0A1A2F; /* navy */
    padding: 60px 20px;
    text-align: center;
    color: #ffffff;
    margin-top: 40px;
}

.hb-seasonal-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    border-bottom: 3px solid #D4A017; /* gold underline */
    display: inline-block;
    padding-bottom: 6px;
}

.hb-seasonal-subtitle {
    font-size: 16px;
    color: #d9d9d9;
    margin-bottom: 25px;
}

.hb-seasonal-btn {
    background: #D4A017; /* gold */
    color: #0A1A2F;      /* navy text */
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
}

/* SUBSCRIPTION BOX */
.hb-subscribe {
    background: #f2f4f7;
    padding: 50px 20px;
    text-align: center;
    margin-top: 40px;
}

.hb-subscribe-inner h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.hb-subscribe-inner p {
    color: #555;
    margin-bottom: 20px;
}

.hb-subscribe-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hb-subscribe-form input {
    padding: 12px 15px;
    width: 260px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.hb-subscribe-form button {
    padding: 12px 20px;
    background: #0A1A2F; /* navy */
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}
/* =========================================================
   SEASONAL PAGE STYLES
   These styles control seasonal.php layout and product cards
   ========================================================= */

/* Seasonal Banner */
.seasonal-banner img {
    width: 50%;
    border-radius: 6px;
    margin-bottom: 30px;
}

/* Seasonal Intro Section */
.seasonal-intro {
    text-align: center;
    margin: 40px 0;
}

.seasonal-intro h1 {
    font-size: 32px;
    color: #0A1A2F; /* BereaMall navy */
    margin-bottom: 10px;
}

.seasonal-intro p {
    color: #555;
}

/* Seasonal Product Grid */
.seasonal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    padding: 20px 0 40px;
}

/* Seasonal Product Card */
.seasonal-item {
    background: #fff;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.seasonal-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.seasonal-item img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
}

.seasonal-item h3 {
    margin-bottom: 8px;
    color: #0A1A2F;
    font-size: 18px;
    font-weight: 600;
}

.seasonal-price {
    margin-bottom: 10px;
    font-weight: 600;
    color: #0A1A2F;
}

/* Seasonal Button */
.seasonal-item .btn {
    display: inline-block;
    background: #D4A017; /* BereaMall gold */
    color: #0A1A2F;
    padding: 10px 18px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.seasonal-item .btn:hover {
    background: #b88b12;
}
.seasonal-hero {
    width: 100%;
    height: 260px;
    background: linear-gradient(135deg, #ffb347, #ffcc33);
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.seasonal-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 3px 8px rgba(0,0,0,0.3);
    margin-bottom: 10px;
}

.seasonal-hero-content p {
    font-size: 18px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}







