@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* Fix for fixed header blocking content */
main {
    padding-top: 140px;
}
/* Ensure home page hero doesn't get double padding if not needed, but here it's safer to have it */
body.home main {
    padding-top: 0; 
}
/* Actually, let's just apply to all pages except maybe where hero handles it. 
   Shop, Contact, About all use <main> with <section>. 
   Let's check if home uses <main> and if hero inside pushes it. 
   In many cases, simple padding-top on main works best for internal pages. 
*/
main { 
    margin-top: 50px; /* Small push */
}
/* Special fix for pages with header overlapping */
body:not(.home-page) main {
    padding-top: 100px;
}

:root {
    --primary-color: #28A745;
    --primary-dark: #1e7e34;
    --primary-light: #34ce57;
    --primary-glow: rgba(40, 167, 69, 0.3);
    --secondary-color: #6c757d;
    --accent-color: #FFD700;
    --text-dark: #2d3436;
    --text-light: #636e72;
    --bg-light: #f8f9fa;
    --bg-gradient: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 30px 60px rgba(0, 0, 0, 0.2);
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Advanced Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

/* Advanced Button System */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px var(--primary-glow);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.1);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

/* Glassmorphism Header */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    position: fixed;
    /* Changed from sticky to fixed */
    top: 40px;
    /* Account for top bar height roughly, JS can adjust this or we set top:0 if we want it at very top */
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Adjust top bar to be fixed as well if desired, or let header slide over content */
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
}

header {
    top: 42px;
    /* Height of top-bar */
}

header.scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

nav ul li a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

nav ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

nav ul li a:hover::before {
    width: 100%;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.nav-icons {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-icons a {
    color: var(--text-dark);
    font-size: 1.3rem;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.nav-icons a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--primary-glow);
    transform: scale(0);
    transition: var(--transition);
}

.nav-icons a:hover::before {
    transform: scale(1);
}

.nav-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: 6px;
    right: 6px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 800;
    box-shadow: 0 2px 8px var(--primary-glow);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* Hero Section with Advanced Effects */
.hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s infinite ease-in-out;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(40, 167, 69, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out reverse;
    filter: blur(50px);
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(40px, -40px) rotate(90deg);
    }

    50% {
        transform: translate(0, -80px) rotate(180deg);
    }

    75% {
        transform: translate(-40px, -40px) rotate(270deg);
    }
}

.hero-content h1 {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 60%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, var(--primary-glow), transparent);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: glow 4s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.95);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
    animation: heroFloat 6s infinite ease-in-out;
    position: relative;
    z-index: 1;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(2deg);
    }
}

/* Advanced Product Cards */
.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(40, 167, 69, 0.08) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.product-card:hover img {
    transform: scale(1.15) rotate(2deg);
}

.product-info {
    padding: 24px;
    position: relative;
    z-index: 2;
}

/* Advanced Animation System */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }

    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.reveal {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.reveal-down {
    opacity: 0;
    animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.reveal-left {
    opacity: 0;
    animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.reveal-right {
    opacity: 0;
    animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.reveal-scale {
    opacity: 0;
    animation: scaleIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.reveal-rotate {
    opacity: 0;
    animation: rotateIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.3s;
}

.delay-4 {
    animation-delay: 0.4s;
}

.delay-5 {
    animation-delay: 0.5s;
}

.delay-6 {
    animation-delay: 0.6s;
}

/* Section Styling */
section {
    padding: 100px 0;
    position: relative;
}

section h2 {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

/* Footer Enhancement */
footer {
    background: linear-gradient(135deg, #2d3436 0%, #1e272e 100%);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

footer a:hover::after {
    width: 100%;
}

footer a:hover {
    color: var(--primary-color);
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.shadow-glow {
    box-shadow: 0 0 40px var(--primary-glow);
}

/* =========================================
   Top Notification Bar
   ========================================= */
.top-bar {
    background: linear-gradient(to right, #1e7e34, #28a745);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-contact a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.top-contact a:hover {
    opacity: 0.8;
}

.top-contact i,
.top-offer i {
    margin-right: 8px;
}

.top-offer {
    flex: 1;
    text-align: center;
    font-weight: 500;
}

.offer-text {
    animation: flashInfo 3s infinite;
}

@keyframes flashInfo {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.top-social a {
    color: white;
    margin-left: 15px;
    transition: transform 0.3s;
    display: inline-block;
}

.top-social a:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .top-contact,
    .top-offer {
        width: 100%;
        margin-right: 0;
    }

    .top-contact a {
        display: block;
        margin: 5px 0;
    }
}


/* =========================================
   Modern Hero Section
   ========================================= */
/* =========================================
   Modern Hero Section
   ========================================= */
.hero-modern {
    position: relative;
    min-height: 100vh;
    /* Increased to full viewport height */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 180px 0 100px;
    /* Increased top padding to clear header */
    background: #f8f9fa;
    color: var(--text-dark);
    margin-top: -100px;
    /* Pull up to sit behind transparent header if needed, but let's be careful */
}

/* Reset margin-top to avoid layout break for now, just use padding */
.hero-modern {
    margin-top: 0;
}

/* Background Slider */
.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: bgFade 15s infinite;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 50%, rgba(255, 255, 255, 0.6) 100%);
}

@keyframes bgFade {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

    10% {
        opacity: 1;
        transform: scale(1);
    }

    33% {
        opacity: 1;
        transform: scale(1);
    }

    43% {
        opacity: 0;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

.leaf {
    position: absolute;
    color: var(--primary-color);
    opacity: 0.2;
    font-size: 2rem;
    animation: floatingLeaf 10s infinite ease-in-out;
}

.leaf-1 {
    top: 10%;
    left: 5%;
    font-size: 3rem;
    animation-delay: 0s;
}

.leaf-2 {
    top: 60%;
    left: 90%;
    font-size: 2.5rem;
    animation-delay: 2s;
}

.leaf-3 {
    top: 80%;
    left: 15%;
    font-size: 2rem;
    animation-delay: 4s;
}

@keyframes floatingLeaf {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(20px, -30px) rotate(20deg);
    }
}

/* Hero Content */
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(40, 167, 69, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.hero-modern h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.highlight-text {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--accent-color);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
    transform: rotate(-2deg);
}

.hero-modern p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: var(--text-light);
}

/* Features List */
.hero-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-box {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: var(--shadow-sm);
    font-size: 1.1rem;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

/* CTA Group */
.cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-lg {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.btn-glass:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-stats .stat {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.hero-stats .divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    z-index: 10;
}

.main-hero-img {
    max-width: 100%;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.2));
    animation: floatImage 6s ease-in-out infinite;
}

.circle-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
    z-index: -1;
    border-radius: 50%;
}

.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    animation: floatCard 5s ease-in-out infinite;
}

.card-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 20%;
    right: -20px;
    animation-delay: 2.5s;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Wave Separator */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }

    .hero-features {
        justify-content: center;
    }

    .cta-group {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        border-top: none;
        padding-top: 0;
        margin-bottom: 40px;
    }

    .hero-visual {
        width: 100%;
        max-width: 500px;
    }
}
/* Blog Section */
.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.blog-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.blog-card:hover .blog-card-image {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.blog-card h3 a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 12px;
}


/* Force Light Mode Overrides */
body, .product-card, section { background-color: #ffffff !important; color: #333333 !important; }
.product-card h3, .product-card h4, .product-card strong { color: #000000 !important; }
.product-card p, .product-card span { color: #555555 !important; }
section { background: #f8f9fa !important; }
.hero { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important; }

/* =========================================
   PREMIUM PRODUCT CARD OVERRIDES
   ========================================= */

.product-card {
    background: var(--white);
    border-radius: 20px !important;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card::before, .product-card::after {
    display: none !important; /* Remove old effects */
}

.product-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
    border-color: transparent !important;
}

.product-card img {
    width: 100%;
    height: 300px !important; /* Taller image */
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1) !important;
}

.product-card:hover img {
    transform: scale(1.1) rotate(0deg) !important;
}

.product-info {
    padding: 24px;
    background: #fff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.product-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

/* Premium Button Styling for Cards */
/* Premium Button Styling for Cards */
.product-card .add-to-cart {
    border-radius: 50px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    letter-spacing: 1px;
    padding: 14px 24px !important;
    background-color: #2d3436 !important; /* Explicit Dark Color */
    color: #ffffff !important; /* Explicit White Text */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    transition: all 0.3s ease !important;
    width: 100%;
    border: none !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.product-card .add-to-cart:hover {
    background-color: #28a745 !important; /* Primary Color Hover */
    color: #ffffff !important;
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.4) !important;
    transform: translateY(-2px) !important;
}

/* =========================================
   HERO FIXES (Overlap & Padding)
   ========================================= */

.hero-modern {
    padding-top: 180px;
    padding-bottom: 300px; /* Large padding to avoid wave overlap */
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

.hero-container {
    z-index: 10 !important; /* Ensure high priority over wave */
    position: relative;
}

.hero-wave {
    z-index: 1 !important; /* Lower priority than content */
    pointer-events: none;
}

@media (max-width: 992px) {
    .hero-modern {
        padding-bottom: 200px;
        padding-top: 140px;
    }
}

@media (max-width: 768px) {
    .hero-modern {
        padding-bottom: 150px; /* Wave is smaller on mobile */
        padding-top: 120px;
    }
}
/ * 
 
 N e w 
 
 C a t e g o r y 
 
 S t y l e s 
 
 * / 
 
 /* New Category Styles */

/* =========================================
   Modern Category Section UI
   ========================================= */
.categories-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(40,167,69,0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.category-card-modern {
    position: relative;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    background: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
    text-decoration: none;
}

.category-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.cat-img-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f8f9fa;
    transition: background 0.3s ease;
}

.category-card-modern:hover .cat-img-wrapper {
    background: #ecfdf5;
}

.cat-circle-bg {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 1;
    opacity: 0.5;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.category-card-modern:hover .cat-circle-bg {
    transform: scale(1.5);
}

.cat-img-wrapper img {
    width: 80%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
}

.category-card-modern:hover .cat-img-wrapper img {
    transform: scale(1.15) rotate(5deg) translateY(-10px);
}

.cat-content {
    padding: 25px;
    background: #ffffff;
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0,0,0,0.03);
}

.cat-info {
    flex: 1;
}

.cat-subtitle {
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.category-card-modern:hover .cat-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.cat-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.cat-action {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f1f2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.4s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.category-card-modern:hover .cat-action {
    background: var(--primary-color);
    color: #ffffff;
    transform: rotate(-45deg);
}


/* Category Name Overlay Styles */
.cat-overlay-title {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    white-space: nowrap;
    z-index: 10;
    transition: all 0.3s ease;
    opacity: 0.9;
    border: 1px solid rgba(0,0,0,0.05);
}

.category-card-modern:hover .cat-overlay-title {
    transform: translateX(-50%) translateY(-5px);
    background: var(--primary-color);
    color: white;
    opacity: 1;
    box-shadow: 0 15px 30px rgba(40, 167, 69, 0.3);
}


/* Fix invisible category text */
.cat-overlay-title {
    color: #000000 !important; /* Force black text by default */
}

.category-card-modern:hover .cat-overlay-title {
    color: #ffffff !important; /* Force white text on hover */
}


/* Fix Dual Color Text */
.dual-color-highlight {
    color: var(--primary-color) !important;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.dual-color-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--accent-color);
    opacity: 0.3;
    z-index: -1;
    transform: rotate(-2deg);
}

