﻿a {
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: MMCB, Arial, Helvetica, Verdana, sans-serif;
    text-rendering: optimizeSpeed;
}

.nav-underline .nav-link.active {
    color: #c00;
}

.nav-item .nav-link {
    text-align: left;
}

    .nav-item .nav-link .active {
        color: #c00;
        text-decoration: underline;
    }

.nav-pills {
    align-items: start;
}

    .nav-pills .nav-link.active {
        width: 100%;
        color: #c00;
        background-color: rgba(0, 0, 0, .03);
    }

.btn-danger {
    background-color: #c00;
}

.row {
    margin-left: 0;
    margin-right: 0;
}

.toast-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.toast {
    background-color: #333;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.4s, transform 0.4s;
    transform: translateY(10px);
    font-size: 15px;
    text-align: center;
}

    .toast.show {
        opacity: 1;
        transform: translateY(0);
    }

#productGallery .carousel-inner {
    height: 300px;
    overflow: hidden;
}

#productGallery .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}