html, body {
    overflow-x: hidden;
}

#logo {
    width: 140px;
    height: 60px;
}

#navbar-logo, .navbar{
    background-color: #1e3a5f !important;
    height: 80px;
}

#navbar-logo ul li a{
    color: white;
    font-size: 1rem;
    font-family: "Outfit", Sans-serif, serif;
}

#search-from-navbar{
    border-color: white !important;
    color: white !important;
}

.navbar-toggler {
    background-color: white;
    margin-right: 20px;
}
.navbar-collapse{
    background-color: #1e3a5f !important;
}
.navbar-collapse li{
    padding-left: 20px;
    margin-top: 10px;
}


.btn-warning{
    background-color: #F2672E !important;
    border-color: #1e3a5f !important;
    color: white !important;
    font-size:0.75rem;
    font-family: "Outfit", Sans-serif, serif;
    font-weight: 550;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    background-color: rgba(242, 103, 46, 1);
    width: 1rem;
}

.footer {
    background-color: #1e3a5f;
    color: white;
    padding: 40px 0 20px 0;
    margin-top: auto;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #87ceeb;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #87ceeb;
    color: #1e3a5f;
    transform: translateY(-2px);
}

.whatsapp-contact {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.whatsapp-btn {
    background-color: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #20ba5a;
    color: white;
    transform: translateY(-2px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 4px;
    transition: background 0.3s;
}

.carousel-control:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 10;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
}

.carousel-indicator.active {
    background: white;
}

/* Inventory Badge */
.inventory-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 5;
}

.inventory-badge.in-stock {
    background: #28a745;
    color: white;
}

.inventory-badge.low-stock {
    background: #ffc107;
    color: #000;
}

.inventory-badge.out-of-stock {
    background: #dc3545;
    color: white;
}


@media (min-width: 426px) {
    .navbar-toggler {
        margin-right: 30px;
    }
}

@media (min-width: 600px) {
    .navbar-toggler {
        margin-right: 35px;
    }
}
@media (min-width: 700px) {
    .navbar-toggler {
        margin-right: 40px;
    }
}

@media (min-width: 1024px) {
    #logo {
        margin-left: 30px;
    }
}