/* --- Base Styles --- */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
}

/* --- TOP BAR --- */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #000;
    color: #fff;
    padding: 8px 5%;
    font-size: 14px;
    flex-wrap: wrap;
}

.top-bar .social a,
.top-bar .right-icons a {
    color: #fff;
    margin: 0 5px;
    font-size: 16px;
    transition: color 0.3s;
}

.top-bar .social a:hover,
.top-bar .right-icons a:hover {
    color: #ffc107;
}

.top-bar .contact {
    color: #ffc107;
    font-weight: bold;
}

/* --- NAVBAR --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: #fff;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    position: relative;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo span {
    margin-right: 8px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #ffc107;
}

.nav-right input {
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* --- Hamburger --- */
.hamburger {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
}

/* --- MEDIA QUERIES --- */
@media (max-width: 992px) {
    .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
        margin-top: 10px;
        gap: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .nav-right {
        width: 100%;
        margin-top: 10px;
    }

    .nav-right input {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 12px;
    }

    .logo {
        font-size: 1.2em;
    }

    .nav-links li a {
        font-size: 14px;
    }
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    padding: 0;
    margin: 0;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    padding: 8px 10px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff6600;
}

/* 🔥 3rd menu item “HOT” label */
.nav-links li:nth-child(3)::after {
    content: "HOT";
    position: absolute;
    top: -12px;
    /* distance above link */
    right: 5px;
    /* position adjust */
    background: #ff3b3b;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    text-transform: uppercase;
    animation: pulse 1.5s infinite;
}

/* Optional animation for attention */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.cart-link {
    position: relative;
    display: inline-block;
    color: #333;
    text-decoration: none;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #FFD700;
    /* Gold / yellow color */
    color: #000;
    /* Black text for contrast */
    font-size: 12px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

button {
    border: none;
}

.btn-design {

    background-color: #ff5722;
    border: none;
    color: #fff;
    padding: 14px 14px;
    border-radius: 0 25px 25px 0;
    /* right rounded */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 14px;
}

/* Hover effect */
.btn-design:hover {
    background-color: #e64a19;
    transform: scale(1.05);
}

/* Icon inside button */
.btn-design i {
    font-size: 14px;
}