
/* =========================
   MODERN NOTICE BOXES
========================= */

.notice-box {
  position: relative;
  width: 100%;
  padding: 18px 22px 18px 22px;
  border-left: 5px solid;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  overflow: hidden;
}

/* Optional schöner Glow */
.notice-box::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
}

/* INFO */
.notice-info {
  background: #eef5ff;
  border-color: #0057ff;
  color: #062b66;
}

.notice-info::before {
  background: linear-gradient(
    90deg,
    rgba(0, 87, 255, 0.06),
    transparent
  );
}

/* SUCCESS */
.notice-success {
  background: #edfdf3;
  border-color: #18b663;
  color: #0c5e33;
}

.notice-success::before {
  background: linear-gradient(
    90deg,
    rgba(24, 182, 99, 0.08),
    transparent
  );
}

/* WARNING */
.notice-warning {
  background: #fff8e8;
  border-color: #f5a524;
  color: #7a4b00;
}

.notice-warning::before {
  background: linear-gradient(
    90deg,
    rgba(245, 165, 36, 0.08),
    transparent
  );
}

/* ERROR */
.notice-error {
  background: #fff0f0;
  border-color: #e5484d;
  color: #7a1114;
}

.notice-error::before {
  background: linear-gradient(
    90deg,
    rgba(229, 72, 77, 0.08),
    transparent
  );
}
    .shop-detail-category {
  display: inline-block;
  color: #0057ff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
}

.product-big-img:not(.vs-carousel) .img img {
  width: 100%;
  display: block;
}

.process-highlight {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 25px rgba(227, 6, 19, 0.12);
}

.process-badge {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #e30613, #ff3b3b);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  border-radius: 30px;
  box-shadow: 0 0 14px rgba(227, 6, 19, 0.35);
}
.about-logo img {
  transform: rotate(270deg);
  width: 130px; /* Desktop */
  height: 170px;
  display: block;
}

/* Tablet */
@media (max-width: 991px) {
  .about-logo img {
    width: 90px;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .about-logo img {
    width: 70px;
  }
}

    .about-img {
  position: relative;
}

.about-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.85);
  border-left: 4px solid #e30613;
  padding: 10px 16px;
  border-radius: 6px;
  z-index: 2;
  backdrop-filter: blur(6px);
}

.about-badge span {
  display: block;
  font-size: 12px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-badge strong {
  display: block;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

    .empty-cart-message {
  text-align: center;
  padding: 40px 20px;
  color: #aaa;
}
.service-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-block__icon i {
  font-size: 38px;
  color: var(--theme-color, #e30613);
  line-height: 1;
  transition: all 0.3s ease;
}

/* Falls dein Theme beim Hover nicht automatisch das <i> mitnimmt */
.service-block--style1:hover .service-block__icon i {
  color: #ffffff;
}
.empty-cart-message i {
  font-size: 40px;
  margin-bottom: 10px;
  color: #ff2e2e;
}

.empty-cart-message p {
  font-size: 16px;
  font-weight: 500;
}

   .mobile-btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #B00C2C, #ef0f3a);
  color: #fff !important;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.mobile-btn:hover,
.mobile-btn:focus,
.mobile-btn:visited {
  color: #fff !important;
  background: linear-gradient(135deg, #ff4d4d, #ff1a1a);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.8);
  transform: scale(1.03);
}


.status-open {
  color: limegreen;
  font-weight: 700;
  text-shadow:
    0 0 5px rgba(50, 205, 50, 0.7),
    0 0 10px rgba(50, 205, 50, 0.5),
    0 0 15px rgba(50, 205, 50, 0.3);
  animation: sparkleGlow 1.8s infinite ease-in-out;
}

.status-closed {
  color: #ff3b3b;
  font-weight: 700;
  text-shadow:
    0 0 4px rgba(255, 59, 59, 0.4);
}

@keyframes sparkleGlow {
  0% {
    opacity: 0.9;
    text-shadow:
      0 0 5px rgba(50, 205, 50, 0.6),
      0 0 10px rgba(50, 205, 50, 0.4);
  }
  50% {
    opacity: 1;
    text-shadow:
      0 0 8px rgba(50, 205, 50, 0.9),
      0 0 16px rgba(50, 205, 50, 0.7),
      0 0 24px rgba(50, 205, 50, 0.4);
  }
  100% {
    opacity: 0.9;
    text-shadow:
      0 0 5px rgba(50, 205, 50, 0.6),
      0 0 10px rgba(50, 205, 50, 0.4);
  }
}

.link-change a {
  transition: color 0.3s ease;
  text-decoration: underline;
  font-weight: bold;
}

.link-change:hover a {
  color: #f82249 !important;
  text-decoration: underline;
  font-weight: bold;
}

.cart-nav-btn {
  position: relative;
}

.cart-dot {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #e30613;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 0 0 3px #fff;
}