body { font-family: 'Poppins', sans-serif; background-color: #030303; color: #f3f4f6; }
.gold-text { color: #d4af37; }
.gold-bg { background-color: #d4af37; }
.gold-border { border-color: #d4af37; }
.gold-gradient { background: linear-gradient(135deg, #b38728, #fbf5b7, #daa520, #aa771c); }

/* Slider Custom Styling */
.slide { display: none; }
.slide.active { display: block; animation: fade 1.2s ease-in-out; }
@keyframes fade { from { opacity: 0.5 } to { opacity: 1 } }

/* Text Block Sync Fade Animation */
.slide-text-block { animation: textFade 1.2s ease-in-out; }
@keyframes textFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* Modal Overlay Custom */
.modal-overlay { display: none; background-color: rgba(0,0,0,0.9); }
.modal-overlay.active { display: flex; }

/* Medicine Capsule Clock Style */
.capsule-clock {
    width: 78px;  
    height: 26px;  
    border-radius: 50px;
    background: linear-gradient(135deg, #b38728, #fbf5b7, #daa520, #aa771c); 
    border: 1.5px solid rgba(255, 255, 255, 0.7); 
    box-shadow: 0 0 12px rgba(214, 175, 55, 0.5), inset 0 0 5px rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.clock-time-part { font-size: 11px; font-weight: 700; }
.clock-ampm-part { font-size: 8px; font-weight: 600; margin-left: 2px; }

/* Golden Social Icons with Neon Glow */
.social-gold-btn {
    width: 36px;
    height: 36px;
    border-radius: 50px;
    background: linear-gradient(135deg, #b38728, #fbf5b7, #daa520, #aa771c);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 0 8px rgba(214, 175, 55, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
}
.social-gold-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px #d4af37;
}

/* ================= VIP CHATBOT STYLES ================= */
#chat-widget-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #d4af37, #aa7c11);
    color: #0b0b0b;
    padding: 12px 22px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    z-index: 99999;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#chat-widget-button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

#chat-box {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 360px;
    max-width: 88vw;
    height: 500px;
    background: #141414;
    border: 1px solid #d4af37;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0,0,0,0.8);
    z-index: 99999;
    overflow: hidden;
    transition: all 0.3s ease;
}

.chat-hidden { display: none !important; }

.chat-header {
    background: linear-gradient(135deg, #1f1f1f, #0b0b0b);
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    color: #fff;
}

.header-info { display: flex; align-items: center; gap: 10px; }
.avatar {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, #d4af37, #aa7c11);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}

.chat-body {
    flex: 1;
    padding: 14px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #181818;
}

.msg-bot {
    background: #222222;
    color: #f1f1f1;
    padding: 12px;
    border-radius: 12px 12px 12px 2px;
    font-size: 12px;
    line-height: 1.5;
    border-left: 3px solid #d4af37;
}

.msg-user {
    background: #d4af37;
    color: #000;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 12px 12px 2px 12px;
    font-size: 12px;
    align-self: flex-end;
}

.btn-group { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }

.action-btn {
    background: #282828;
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 8px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
}

.action-btn:hover { background: #d4af37; color: #000; font-weight: 600; }
/* Smooth Infinite Auto Scroll for 5.5K Reviews */
@keyframes reviewScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.review-marquee-track {
    display: flex;
    width: max-content;
    animation: reviewScroll 35s linear infinite;
}

.review-marquee-track:hover {
    animation-play-state: paused;
}