.w-icon-whatsapp i {
    color : #FFFFFF;
}

/* If you're using FontAwesome 6 */
.w-icon-tiktok i {
    color : #000000;
}

@media only screen and (max-width: 767px) {
    .category-products .banner {
        background-size: contain !important;
    }
}

/* Auth Buttons Styling */
.auth-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-auth {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-auth i {
    margin-right: 5px;
    font-size: 16px;
}

.btn-signin {
    background-color: #f7f8fa;
    color: #333;
    border: 1px solid #e5e7ea;
}

.btn-signin:hover {
    background-color: #e5e7ea;
    color: #000;
}

.btn-signup {
    background-color: #ffb74d;
    color: #fff;
    border: 1px solid #ffb74d;
}

.btn-signup:hover {
    background-color: #ff9800;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media only screen and (max-width: 767px) {
    .auth-buttons {
        gap: 8px;
    }

    .btn-auth {
        padding: 5px 10px;
        font-size: 13px;
    }
}


@media only screen and (max-width: 575px) {
    .header-top .container {
        padding: 0 10px;
    }

    .auth-buttons {
        gap: 8px;
    }

    .btn-auth {
        min-width: 90px;
        padding: 4px 12px;
    }
}

/* Explore Menu Title Styling */
.top-category .title {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem !important;
    padding: 0.5rem 1rem;
    display: block;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.top-category .title a {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    padding: 0.5rem 1.5rem;
    display: inline-block;
}

.top-category .title::before,
.top-category .title::after {
    content: '';
    position: absolute;
    height: 2px;
    width: 0;
    background-color: #ffb74d;
    transition: width 0.5s ease;
}

.top-category .title::before {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.top-category .title::after {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.top-category .title:hover::before,
.top-category .title:hover::after {
    width: 80%;
}

.top-category .title a:hover {
    color: #ff9800;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Add a subtle animation */
@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 183, 77, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 183, 77, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 183, 77, 0);
    }
}

.top-category .title {
    animation: pulse-border 2s infinite;
}

/* Responsive styles */
@media only screen and (max-width: 767px) {
    .top-category .title a {
        font-size: 1.8rem;
        padding: 0.4rem 1rem;
    }

    .top-category .title {
        padding: 0.3rem 0.8rem;
    }
}

@media only screen and (max-width: 575px) {
    .top-category .title a {
        font-size: 1.5rem;
        padding: 0.3rem 0.8rem;
    }
}