.product__details-tag {
    color: white;
}

.breadcrumb__menu ul {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: -ms-inline-flexbox;
    gap: 20px;
    justify-content: center;
}

.product__details-tag {
    color: white;
}

.breadcrumb__title {
    font-size: 4vh;
    font-weight: 700;
    color: #681ff2;
    margin-top: 20px;
    margin-bottom: 20px;
}

.breadcrumb__subtitle {
    font-size: 3vh;
    font-weight: 700;
    color: #681ff2;
    margin-bottom: 20px;
}

.breadcrumb__menu ul {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: -ms-inline-flexbox;
    gap: 20px;
    justify-content: center;
}

.breadcrumb__menu ul li {
    list-style: none;
    position: relative;
    line-height: 1;
}

.breadcrumb__menu ul li.active span {
    color: #681ff2;
}

.breadcrumb__menu ul li span {
    font-size: 16px;
    text-transform: capitalize;
    font-weight: var(--bd-fw-medium);
    color: #ab80fc;
}

.breadcrumb__menu ul li span a {
    font-weight: var(--bd-fw-medium);
}

.breadcrumb__menu ul li span a:hover {
    color: #5900ff;
}

@media (max-width: 600px) {
  .breadcrumb__menu .bc-all {
    display: none;
  }
  .breadcrumb__menu {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .breadcrumb__menu li {
    font-size: 1.1em;
  }
}

#cart-success-msg {
    display: none;
    background-color: #d4edda;      /* Light green background */
    color: #155724;                 /* Dark green text */
    border: 2px solid #28a745;      /* Green border */
    border-radius: 8px;             /* Rounded corners */
    padding: 16px 24px;             /* Spacious padding */
    font-weight: bold;              /* Bold text */
    font-size: 1.2em;               /* Slightly larger font */
    box-shadow: 0 2px 8px rgba(40,167,69,0.15); /* Subtle greenish shadow */
    text-align: center;             /* Centered text */
    z-index: 1000;                  /* On top of other elements */
}

.dodatne-slike-section .row {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dodatne-slike-section .col-md-3,
.dodatne-slike-section .col-6,
.dodatne-slike-section .mb-3 {
    max-width: 100%;
    flex: 0 0 100%;
}

.dodatne-slike-section img {
    width: 400%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .dodatne-slike-section img {
        max-width: 80vw;
    }
}

@media (max-width: 650px) {
    .dodatne-slike-section img {
        max-width: 90vw;
    }
}