.a {
  background: linear-gradient(to right, #E6B34B 0%, #FFF4BD 50%, #E6B34B 100%);
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.b {
  margin-left: 100px;
}

.b1 {
  margin-right: 50px;
}

.a a:hover {
  border-bottom: 2px solid black;
}

.b2-img {
  width: 100%;
  height: 10px;
  object-fit: cover;
  object-position: center;
}

.b3 {
  background: linear-gradient(to right, #E6B34B 0%, #FFF4BD 50%, #E6B34B 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.b4 {
  text-shadow: 2px 2px 2px gray;
}

.b5 {
  text-shadow: 2px 2px 5px rgb(37, 36, 36);
}

.b6 {
  box-shadow: 2px 2px 6px 6px gray;
}

.b7 {
  border-radius: 10px;
}

.b8 {
  border: 2px solid black;
}

.c1 {
  scale: 1;
  transition: scale 2s ease;
}

.c1:hover {
  scale: 1.1;
}

.c2 {
  overflow: hidden;
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
}

.c3 {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px;
}

.c4 {
  flex: 0 0 40%;
  max-width: 200px;
}

.c5 {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

.pc6 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c6 {
  overflow-x: auto;
  display: block;
}

.d1 {
  background-color: grey;
}

.d2 {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, #b89742, #f3e0aa, #b89742) 1;
  outline: none;
  background: transparent;
  font-size: 16px;
}

table {
  border: 4px solid #d4af37;
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border: 4px solid #d4af37;
  padding: 12px;
  text-align: center;
  vertical-align: middle;
}

.product-card img {
  height: 225px;
  object-fit: contain;
}

.product-card.c2 {
  max-height: none;
}

.product-card {
  height: 100%;
}

.product-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.product-card .card-body .btn {
  margin-top: auto;
  max-width: 100%;
  white-space: normal;
}

.detail-main-image {
  max-height: 400px;
  object-fit: contain;
}

.thumb-image {
  height: 90px;
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.thumb-image.active {
  border: 3px solid black;
}

.admin-card {
  flex: 1;
  min-width: 200px;
  background-color: blue;
  padding: 20px;
  border-radius: 10px;
  color: white;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f8f6ef;
}

.admin-login-card {
  width: min(100%, 420px);
  padding: 28px;
  background: #fff;
  border: 1px solid #e6d7a7;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
}

.admin-topbar a {
  text-decoration: none;
}

@media (max-width: 991px) {
  .b {
    margin-left: 0;
  }

  .b1 {
    margin-right: 0;
  }

  .c1:hover {
    scale: 1;
  }

  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
}
