header, header * {
  background-color: #1a0100 !important;
  color: #ffffff !important;
}

body {
  background: linear-gradient(to bottom right, #050505, #1a0100);
  color: #da0001;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main, .content {
  flex: 1;
}

.banner-slider {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  margin-bottom: 40px;
  z-index: 1;
}

.banner-slider a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.banner-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.banner-slider img.active {
  opacity: 1;
  z-index: 1;
}

footer, .footer, #footer {
  background-color: #1a0100 !important;
  color: #ffffff !important;
  padding: 20px 0;
  text-align: center;
}

footer *, footer a {
  color: #ffffff !important;
  background-color: #1a0100 !important;
}

footer img {
  background-color: #ffffff !important;
  padding: 6px;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.1);
}

.category-title {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  color: #ffffff;
  margin: 40px 0 20px;
}

.product-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0 15px 40px;
}

.product-card {
  background: linear-gradient(to bottom right, #050505, #1a0100);
  border: 1px solid #da0001;
  border-radius: 12px;
  width: 300px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.product-card h3 {
  color: #ffffff;
  font-size: 16px;
  margin: 10px 0;
  min-height: 40px;
}

.product-card .price-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  margin-bottom: 10px;
}

.product-card .old-price {
  color: #ffffff;
  text-decoration: line-through;
  font-size: 14px;
  opacity: 0.7;
}

.product-card .new-price {
  color: #da0001;
  font-weight: bold;
  font-size: 18px;
  animation: bouncePrice 1.5s infinite alternate;
}

@keyframes bouncePrice {
  from {
    transform: translateY(0px);
  }
  to {
    transform: translateY(-5px);
  }
}

.product-card a.button {
  background-color: #da0001;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.3s;
}
.product-card a.button:hover {
  background-color: #a80000;
}

h1, h1 *, .product-name, .product-name  * {
  color: #ffffff !important;
}

.promo-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px auto;
  max-width: 100%;
  padding: 0 10px;
  align-items: center;
}

.promo-banner {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.promo-banner:hover {
  transform: scale(1.02);
}


.content.content--single-page h1 {
    color: #000 !important;
    text-align: center;
    margin-bottom: 45px;
    background: #cccccc4f;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
}




.accordion-title {
    cursor: pointer;
    background-color: #eee;
    padding: 10px;
    font-weight: bold;
    border: 1px solid #ccc;
    color: #262525;
    position: relative;
}

.accordion-title:after {
    content: "▼";
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: rgb(85, 85, 85);
}

.accordion-content {
    display: none;
    padding: 10px;
    border: 1px solid #ccc;
    border-top: none;
}

.accordion-content a {
    color: #0f6ebf;
    text-decoration: underline;
}

.accordion-content li {
    display: block;
    margin-bottom: 10px;
}

.accordion-content li:before {
    content: "🔗";
    margin-left: 5px;
}