  #timeChart, #calorieChart {
        width: 100% !important;
        height: 200px !important;
    }
    :root {
        --brand-color: #A0937D;
        --text-color: #5C5C5C;
        --heading-color: #3C3C3C;
        --background-color: #F8F5F2;
        --accent-color: #E1C16E;
    }
    body {
        font-family: 'Montserrat', sans-serif;
        color: var(--text-color);
        background-color: var(--background-color);
    }
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Playfair Display', serif;
        color: var(--heading-color);
    }
    .secondary-font {
        font-family: 'Lora', serif;
    }
    .btn-primary {
        background-color: var(--brand-color);
        color: white;
        border: 1px solid var(--brand-color);
    }
    .btn-primary:hover {
        background-color: #8C7F6C;
    }
    .btn-secondary {
        color: var(--brand-color);
        border: 1px solid var(--brand-color);
        background-color: transparent;
    }
    .btn-secondary:hover {
        background-color: var(--brand-color);
        color: white;
    }
    .text-brand {
        color: var(--brand-color);
    }
    .border-brand {
        border-color: var(--brand-color);
    }
    .ring-brand:focus-within {
        --tw-ring-color: var(--brand-color);
    }
    .form-input {
        border-color: #D1C7B8;
    }
    .form-input:focus {
        border-color: var(--brand-color);
        box-shadow: 0 0 0 1px var(--brand-color);
    }
    .accent-border {
        border-color: var(--accent-color);
    }
    .timeline-container {
    display: flex;
    align-items: center;
    min-width: 100%;
    gap: 6rem;
    padding: 0 2rem;
    position: relative;
    scroll-snap-type: x mandatory;
}

/* Timeline Line */
.timeline-container::before {
    content:'';
    position: absolute;
    top: 50%;
    left:0;
    width:100%;
    height:4px;
    background:#233748;
    transform: translateY(-50%);
    z-index:1;
}

/* Timeline Item */
.timeline-item {
    display:flex;
    flex-direction: column;
    align-items:center;
    position: relative;
    scroll-snap-align: center;
    z-index:2;
    min-width:200px;
}

/* Circle */
.timeline-item .circle {
    width:80px;
    height:80px;
    border-radius:50%;
    background:#b6b9bc;
    border:4px solid #111a22;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    flex-shrink:0;
}
.timeline-item .circle span { width:12px; height:12px; background:#fff; border-radius:50%; }

/* WhatsApp notification bubble */
.timeline-item .whatsapp-badge {
    position:absolute;
    top:-10px;
    right:-10px;
    width:24px;
    height:24px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:bold;
    color:#fff;
    box-shadow:0 2px 6px rgba(0,0,0,0.3);
}

/* Card */
.timeline-item .card {
    margin-top:1rem;
    background:#1a2632;
    border:1px solid #233748;
    padding:1rem;
    border-radius:1rem;
    text-align:center;
    width:200px;
    position:relative;
}

/* Message / Reminder badge */
.timeline-item .card .message-badge {
    position:absolute;
    top:5px;
    right:5px;
    width:20px;
    height:20px;
    background:#f55a00;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:bold;
}

/* Custom Horizontal Scrollbar */
section::-webkit-scrollbar { height:10px; }
section::-webkit-scrollbar-track { background:#1a2632; border-radius:5px; }
section::-webkit-scrollbar-thumb { background:#138aec; border-radius:5px; }
section::-webkit-scrollbar-thumb:hover { background:#0f6ad6; }

/* Responsive */
@media(max-width:768px){
    .timeline-container { gap:3rem; padding:0 1rem; }
    .timeline-item .card { width:150px; padding:0.8rem; }
    .timeline-item .circle { width:60px; height:60px; }
}
/* Animations */
@keyframes fadeIn { 0%{opacity:0; transform:translateY(20px);} 100%{opacity:1; transform:translateY(0);} }
.animate-fade-in { animation: fadeIn 1s forwards; }
.delay-200 { animation-delay:0.2s; }

@keyframes pulseSlow { 0%,100%{transform:scale(1); opacity:0.6;} 50%{transform:scale(1.1); opacity:0.8;} }
.animate-pulse-slow { animation: pulseSlow 6s infinite; }

/* Carousel Styles */
.carousel-item {
    transition: opacity 1s ease-in-out;
}

.carousel-nav {
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

.carousel-dot {
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-dot.active {
    background-color: white !important;
    transform: scale(1.2);
}

.carousel-dot:hover {
    transform: scale(1.1);
}

