* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  background: #f5f5f5;
  min-height: 100vh;
  position: flex;
}

/* Header Styles */
.product-header {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-icons {
  display: flex;
  gap: 15px;
}

.back-btn,
.share-btn,
.cart-btn,
.menu-btn {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Product Image Styles */
.product-image {
  position: flex;
  width: 100%;
  background: white;
}

.product-image img {
  width: 100%;
  height: auto;
  display: block;

}

.image-counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.8rem;
}

/* Product Info Styles */
.product-info {
  padding: 15px;
  background: white;
  margin-top: 1px;
}

.price-section {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 15px;
}

.price {
  color: #ff4d4f;
  font-size: 1.5rem;
  font-weight: bold;
}

.currency {
  font-size: 1rem;
}

.original-price {
  color: #999;
  text-decoration: line-through;
}

.discount-tag {
  color: #ff4d4f;
  font-size: 0.9rem;
}

.product-title {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #333;
}

/* Shipping Info Styles */
.shipping-info {
  background: #fff9e6;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.shipping-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #666;
}

.shipping-item:last-child {
  margin-bottom: 0;
}

.product-stats {
  color: #666;
  font-size: 0.9rem;
}

/* Footer Styles */
.product-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-width: 600px;
  background: white;
  padding: 10px 15px;
  box-shadow: 0 -1px 5px rgba(0, 0, 0, 0.1);
}

.footer-actions {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

.footer-actions button {
  background: none;
  border: none;
  color: #666;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 3px;
}

.main-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.add-to-cart,
.buy-now {
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
}

.add-to-cart {
  background: #ffa500;
  color: white;
}

.buy-now {
  background: #ff4d4f;
  color: white;
}
/* Responsive Styles */
.golden-button {
  touch-action: manipulation;
  display: inline-block;
  outline: none;
  font-family: inherit;
  font-size: 1em;
  box-sizing: border-box;
  border: none;
  border-radius: 0.3em;
  height: 2.75em;
  line-height: 2.5em;
  text-transform: uppercase;
  padding: 0 1em;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(110, 80, 20, 0.4),
    inset 0 -2px 5px 1px rgba(139, 66, 8, 1),
    inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
  background-image: linear-gradient(
    160deg,
    #a54e07,
    #b47e11,
    #fef1a2,
    #bc881b,
    #a54e07
  );
  border: 1px solid #a55d07;
  color: rgb(120, 50, 5);
  text-shadow: 0 2px 2px rgba(250, 227, 133, 1);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background-size: 100% 100%;
  background-position: center;
}

.golden-button:focus,
.golden-button:hover {
  background-size: 150% 150%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23),
    inset 0 -2px 5px 1px #b17d10, inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
  border: 1px solid rgba(165, 93, 7, 0.6);
  color: rgba(120, 50, 5, 0.8);
}

.golden-button:active {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(110, 80, 20, 0.4),
    inset 0 -2px 5px 1px #b17d10, inset 0 -1px 1px 3px rgba(250, 227, 133, 1);
}
