:root {
    --primary: #EE1F52;
    --primary-light: #ff7f9f;
    --primary-dark: #db1d4d;
    /* --primary: #fbb216;
    --primary-light: #ffecc3;
    --primary-dark: #ce8d00; */
    --secondary: #1B2021;
    --secondary-light: #80a7ea;
    --secondary-dark: #10141c;
    --accent: #2f7a4a;
    --muted: #6c757d;
    --hero-img: url('/static/images/hero.jpg');
    --light-gray: #c4c4c4;
}

html {
  scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #222;
}

.primary-text {
    color: var(--primary);
}  

.secondary-text{
    color: var(--secondary);
}

.background-primary{
    background-color: var(--primary);
}

.background-secondary{
    background-color: var(--secondary);
}

.button {
    background-color: transparent;
    border: 1px solid transparent;
    padding: 15px 32px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    transition-duration: 0.4s;
}

.button-sm{
    padding: 0.25rem .5rem;
    font-size: 0.875rem;
}

.primary-button {
    background-color: var(--primary);
    color: #fff;
}

.primary-button:hover {
    background-color: var(--primary-dark);
    color: #fff;
}

.secondary-button {
    background-color: var(--secondary);
    color: #fff;
}

.secondary-button:hover {
    background-color: var(--secondary-dark);
    color: var(--primary-dark);
}

.button-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    background-color: transparent;
}

.button-outline-primary:hover {
    color: #fff;
    border-color: var(--primary);
    background-color: var(--primary);
}

.pt-60 {
    padding-top: 60px;
}

.pb-60 {
    padding-bottom: 60px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pb-70 {
    padding-bottom: 70px;
}

.mt-70 {
    margin-top: 70px;
}

.mb-70 {
    margin-bottom: 70px;
}

.pt-80 {
    padding-top: 80px;
}

.pb-80 {
    padding-bottom: 80px;
}

.mt-80 {
    margin-top: 80px;
}

.mb-80 {
    margin-bottom: 80px;
}

.pt-90 {
    padding-top: 90px;
}

.pb-90 {
    padding-bottom: 90px;
}

.mt-90 {
    margin-top: 90px;
}

.mb-90 {
    margin-bottom: 90px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mt-100 {
    margin-top: 100px;
}

.mb-100 {
    margin-bottom: 100px;
}

.pt-110 {
    padding-top: 110px;
}

.pb-110 {
    padding-bottom: 110px;
}

.mt-110 {
    margin-top: 110px;
}

.mb-110 {
    margin-bottom: 110px;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}

.mt-120 {
  
    margin-top: 120px;
}
.mb-120 {
    margin-bottom: 120px;
}

.pt-130 {
    padding-top: 130px;
}

.pb-130 {
    padding-bottom: 130px;
}

.mt-130 {
    margin-top: 130px;
    margin-bottom: 130px;
}

.pt-140 {
    padding-top: 140px;
}


.pb-140 {
    padding-bottom: 140px;
}

.mt-140 {
    margin-top: 140px;
}

.mb-140 {
    margin-bottom: 140px;
}

.pt-150 {
    padding-top: 150px;
}

.pb-150 {
    padding-bottom: 150px;
}

.mt-150 {
    margin-top: 150px;
}

.mb-150 {
    margin-bottom: 150px;
}

/* TOP NOTIFICATION */
.top-notification {
    background-color: var(--primary);
    color: #fff;
}

.top-notification .content-wrapper .left-content span,
.top-notification .content-wrapper .right-content span {
    color: #fff;
}

.social-network-icons a {
    background-color: var(--primary);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #fff;
    font-size: 14px;
    color: #fff;
    margin-right: 5px;
    display: inline-flex;
    display: -webkit-inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.social-network-icons a:last-child {
    margin-right: 0;
}

.top-notification .content-wrapper .right-content .social-network-icons a:hover {
    color: var(--primary);
    background-color: #fff;
    border: 1px solid #fff;
}        

/* ---------- NAV ---------- */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.brand-logo {
    font-family: 'Merriweather', serif;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: .5px;
    color: #fff;
}

/* ---------- HERO ---------- */
.hero {
    background-image: linear-gradient(rgba(18,18,18,0.6), rgba(18,18,18,0.6)), var(--hero-img);
    background-size: cover;
    background-position: center center;
    height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero .eyebrow {
    letter-spacing: 3px;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    line-height: 1.02;
    margin-bottom: 1.25rem;
    color: #fff;
    text-shadow: 0 3px 18px rgba(0,0,0,0.45);
}

.hero p.lead {
    color: rgba(255,255,255,0.92);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

/* ---------- CATEGORIES ---------- */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}
.category-card img {
    transition: transform 0.5s ease;
    filter: brightness(0.7);
}
.category-card:hover img {
    transform: scale(1.1);
    filter: brightness(1);
}
.card-img-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.5s ease;
}
.category-card:hover .card-img-overlay {
    background-color: rgba(0, 0, 0, 0);
}
.card-title {
    opacity: 1;
    transition: opacity 0.5s ease;
}
.category-card:hover .card-title {
    opacity: 0;
}

/* ---------- PRODUCTS ---------- */
.filter-btn.active {
    background-color: var(--primary);
    color: #fff;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    cursor: pointer;
}
.product-card img {
    transition: transform 0.4s ease;
}
.product-card:hover img {
    transform: scale(1.05);
}

/* ---------- USP ---------- */
.usp-icon {
    font-size: 1.6rem;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(47,122,74,0.08);
    color: var(--accent);
    margin-right: .8rem;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial {
    background: #f8f9fa;
    border-radius: .6rem;
    padding: 1.25rem;
    height: 100%;
}

/* ---------- NEWSLETTER ---------- */
.newsletter {
    background: linear-gradient(90deg, rgba(47,122,74,0.04), rgba(47,122,74,0.02));
    border-radius: .6rem;
    padding: 1.4rem;
}

footer {
    background-color: rgb(226 232 240);
    /* background: var(--secondary); */
    color: #F5F5F5;
}
footer a {
    /* color: #e9f6ee;  */
    color: #6c757d;
    text-decoration: none; 
}

footer p {
    color: #6c757d;
    text-decoration: none; 
}

footer a:hover{
    text-decoration: underline;
}

footer .muted { color: #97a198; }

@media (max-width: 767.98px){
    .hero { min-height: 68vh; padding-top: 3.5rem; padding-bottom: 3.5rem; }
    .navbar-brand { font-size: 1rem; }
}