@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
    url('../fonts/Montserrat-Regular.woff') format('woff'),
    url('../fonts/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
    url('../fonts/Montserrat-Bold.woff') format('woff'),
    url('../fonts/Montserrat-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  max-width: 480px;
  margin: 0 auto;
  padding: 15px;
  background: #2a432d;
  color: #333;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  display: block;
}

.header {
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}

.running-string {
  background: #f14635;
  color: white;
  padding: 3px 0;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(255, 68, 68, 0.3);
  font-weight: 600;
  font-size: 19px;
}

.running-string-text {
  display: inline-block;
  padding-left: 100%;
  animation: running-string 15s linear infinite;
}

@keyframes running-string {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100%, 0);
  }
}

.logo {
  background: #2a432d;
  padding: 0px 0 17px;
  position: relative;
}

.logo .logo-img {
  display: block;
  margin: 0 auto;
  width: 100px;
}
.logo-title {
  color: #fff;
  text-align: center;
  margin-top: 5px;
  font-size: 15px;
  line-height: 1.2;
}
.halal {
  position: absolute;
  width: 77px;
  right: 16px;
  top: 0px;
}

.title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 15px;
  color: #1a3c6e;
  text-transform: uppercase;
  line-height: 1.3;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.blinking {
  animation: blinking 1.5s infinite;
  color: #ff4444;
  font-weight: 800;
  text-shadow: 0 0 5px rgba(255, 68, 68, 0.3);
}

@keyframes blinking {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

.product-cards {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.product-card {
  background: #f8f8f8;
  border-radius: 16px;
  padding: 15px 12px 17px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  flex: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card.one {
  /* height: 496px; */
  padding-bottom: 15px;
  max-width: 201px;
}

.product-card.one .stars {
  width: 70px;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.popular-card {
  border: 4px solid #dd2c2c;
  box-shadow: 0 0px 16px #ffffff6e;
  background: linear-gradient(135deg, #fff 0%, #fff9f7 100%);
}

.discount-badge {
  position: absolute;
  top: 15px;
  right: 10px;
  background: #f14635;
  color: white;
  padding: 2px 2px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 14px;
  width: 50px;
  box-shadow: 0 3px 5px #dd2c2c4f;
  text-align: center;
}

.discount-badge.two {
  font-size: 13px;
  top: 14px;
  width: 158px;
  line-height: 1.5;
  padding: 5px 2px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.product-image {
  object-fit: contain;
  margin: 7px 0 0px;
  padding: 10px 0px 0;
}

.product-name {
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
  color: #1a3c6e;
}

.stars-box {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  margin-right: 15px;
}

.product-card.one .stars-box {
  margin-right: 0px;
}

.stars-box p {
  font-size: 11px;
  color: #777777;
  margin-top: 6.5px;
}

.stars {
  width: 80px;
  margin-top: 5px;
  margin-right: 3px;
}

.price-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

.new-price {
  font-size: 22px;
  font-weight: 800;
  color: #f14635;
}

.price-per-item {
  font-size: 12px;
  color: #4caf50;
  font-weight: 600;
  background: #f1f8e9;
  padding: 3px 8px;
  border-radius: 10px;
  margin-top: 5px;
}

.advantages {
  width: 100%;
  flex-grow: 1;
}

.advantage-item {
  display: flex;
  align-items: baseline;
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
}

.advantage-icon {
  margin-right: 6px;
  color: #4caf50;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 14px;
}

.order-button {
  display: block;
  width: 100%;
  padding: 16px 0;
  background: #f14635;
  color: white;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  box-shadow: 0 5px 10px rgb(255 24 11 / 35%);
  margin-top: auto;
}

.wrap-order-button {
  text-decoration: none;
}

.product-card.one .order-button {
  font-size: 15px;
  margin-top: 7px;
}

.order-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 30%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.378),
    rgba(255, 255, 255, 0.153),
    transparent
  );
  transform: rotate(30deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(30deg);
  }

  100% {
    transform: translateX(100%) rotate(30deg);
  }
}

.order-button:active {
  transform: translateY(1px);
}

.red-button {
  right: 0;
  animation: pulse 2s infinite;
  margin-top: 10px;
}

.saving-badge {
  background: #ff4444;
  color: white;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  margin: 8px 0;
  text-align: center;
  animation: pulse 1.5s infinite;
}

.guarantee-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 10px 0;
  font-size: 12px;
  color: #4caf50;
  font-weight: 600;
}

.accordion {
  width: 100%;
  margin-top: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.accordion-header {
  background: #f1f1f1;
  padding: 15px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s;
  border-bottom: 1px solid #ddd;
}

.accordion-header:hover {
  background: #e9e9e9;
}

.accordion-header.active {
  background: #e0e0e0;
}

.accordion-content {
  padding: 0;
  font-size: 13px;
  background: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.accordion-content.show {
  max-height: 500px;
  padding: 15px;
}

.accordion-content ul {
  padding-left: 20px;
  margin: 10px 0;
}

.accordion-content li {
  margin-bottom: 8px;
  line-height: 1.4;
}

.accordion-content p {
  margin-bottom: 10px;
  line-height: 1.5;
}
.site-footer {
  margin-top: 40px;
  padding: 20px 15px 35px;
  font-size: 13px;
  color: #777;
  text-align: center;
}

.footer-inner {
  max-width: 480px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
  margin: 0 6px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.separator {
  color: #bbb;
}

.footer-copy {
  font-size: 12px;
  color: #999;
}
