﻿body {
}
/* Example with a custom purple */
:root {
    --bs-primary: #00abc;
    --bs-primary-rgb: 0, 171, 193;
}

a {
    color: #00abc1 !important;
}

    a :hover {
        color: #1f4f51 !important;
    }

.product-card a {
    color: #00abc1 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .product-card a:hover {
        color: #1f4f51 !important;
    }

.card-title a {
    color: #00abc1 !important;
}

    .card-title a:hover {
        color: #1f4f51 !important;
    }
/* Override primary button */
.btn-primary {
    color: white !important;
    background-color: #00abc1 !important;
    border-color: #00abc1 !important;
}

    .btn-primary:hover {
        background-color: #1f4f51 !important;
        border-color: #1f4f51 !important;
    }

/* Override primary text */
.text-primary {
    color: #00abc1 !important;
}

/* Override primary background */
.bg-primary {
    background-color: #00abc1 !important;
}

/* Override primary border */
.border-primary {
    border-color: #00abc1 !important;
}

.navbar-nav .nav-link {
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        color: #00abc1 !important;
    }

/* Optional: Add underline effect on hover */
.navbar-nav .nav-link {
    position: relative;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -2px;
        left: 0;
        background-color: #00abc1;
        transition: width 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }

    .navbar-nav .nav-link:hover {
        color: #00abc1 !important;
    }
/* Vertical navigation hover effects */
.nav.flex-column .nav-link {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0 !important;
    border-radius: 4px;
}

    .nav.flex-column .nav-link:hover {
        color: #00abc1 !important;
        padding-left: 8px !important;
        background-color: rgba(0, 171, 193, 0.05);
    }

    /* Optional: Add a left border indicator on hover */
    .nav.flex-column .nav-link::before {
        content: '';
        position: absolute;
        left: -4px;
        top: 0;
        height: 100%;
        width: 0;
        background-color: #00abc1;
        transition: width 0.3s ease;
        border-radius: 0 2px 2px 0;
    }

    .nav.flex-column .nav-link:hover::before {
        width: 3px;
    }

.whatsapp-chat {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.whatsapp-chat-button {
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    cursor: pointer;
    font-size: 2rem;
    margin-bottom: 8px;
    position: relative;
}
.chat-notification {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ff3b3b;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
.whatsapp-chat-box {
    display: none;
    width: 350px;
    max-width: 90vw;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    overflow: hidden;
    margin-bottom: 8px;
}
@media (max-width: 600px) {
    .whatsapp-chat {
        right: 12px;
        bottom: 12px;
    }
    .whatsapp-chat-box {
        width: 100vw;
        max-width: 100vw;
        left: 0;
        right: 0;
        border-radius: 0;
        position: fixed;
        bottom: 0;
        margin: 0;
        z-index: 10000;
    }
    .whatsapp-chat-button {
        width: 48px;
        height: 48px;
        font-size: 1.6rem;
    }
}

.whatsapp-chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

    .whatsapp-chat-button i {
        font-size: 28px;
        color: white;
    }

.chat-header {
    background: #075e54;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-avatar {
    width: 40px;
    height: 40px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-body {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
    background: #e5ddd5;
}

.chat-message {
    background: white;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.message-content p {
    margin-bottom: 5px;
    line-height: 1.4;
}

.message-time {
    color: #666;
    font-size: 11px;
}

.chat-footer {
    padding: 15px;
    background: white;
    border-top: 1px solid #eee;
}

/*headline*/
.headline-container {
    width: 100%;
    overflow: hidden;
    background-color: #00abc1;
    white-space: nowrap;
    box-sizing: border-box;
}
/*
.headline-track {
    display: inline-block;
    white-space: nowrap;
    animation: scrollLeft 15s linear infinite;
}

.headline {
    display: inline-block;
    color: white;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.5px;
    padding-right: 60px; 
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}
.headline-container:hover .headline-track {
    animation-play-state: paused;
}*/
/*Product details page tooltip icon styling*/
.option-tooltip-icon {
    width: 18px;
    height: 18px;
    font-size: 0.85em;
    background: #3e3e3e;
    color: #fff !important;
    border-radius: 50%;
    text-align: center;
    justify-content: center;
    align-items: center;
    transition: background 0.2s;
    cursor: pointer;
}

.option-tooltip-icon i {
    color: #fff !important;
    font-size: 1em;
    margin: 0;
}

.option-tooltip-icon:hover, .option-tooltip-icon:focus {
    background: rgba(35, 39, 43, 0.4);
}

