body {
  background: #f8f8f8;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #111;
  margin: 0;
  padding: 20px;
}
.shop-header {
  text-align: center;
  background: #b32e2e;
  color: #fff;
  border-radius: 10px;
  padding: 12px 20px;
}
.shop-header h1 {
  margin: 0;
  font-size: 1.8rem;
}
.shop-header p {
  margin: 5px 0 0;
  font-size: 1rem;
}
.shop-logo {
  display: flex;
  align-items: center;
  justify-content: center;

}
.shop-logo img {
  height: 40px;
  width: 40px;
  border-radius: 20%;
  object-fit: cover;
  margin: 10px;
}

.shop-logo h1 {
  margin: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .shop-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .shop-logo img {
    height: 40px;
    width: 40px;
    border-radius: 20%;
    object-fit: cover;
  }

  .shop-logo h1 {
    margin: 0;
    text-align: left;
  }
}
.tabs {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  flex-wrap: wrap;
  gap: 8px;
}
.tab-btn {
  background: #ddd;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 1rem;
}
.tab-btn.active,
.tab-btn:hover {
  background: #b32e2e;
  color: #fff;
}
.tab-content {
  display: none;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.1);
}
.tab-content.active {
  display: block;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
th,
td {
  border: 1px solid #ccc;
  padding: 8px 10px;
  text-align: right;
  font-size: 1rem;
}
th {
  background-color: #b32e2e;
  color: white;
}
.contact-info {
  margin-top: 24px;
  text-align: center;
  font-size: 0.9rem;
  color: #333;
}
