/* Global */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

/* Promo Banner */
.promo-banner {
  background: #e91e63;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 40px;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-left a {
  text-decoration: none;
  color: #333;
  margin: 0 15px;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s;
}

.nav-left a:hover {
  color: #e91e63;
}

.nav-right {
  display: flex;
  gap: 20px;
}

.icon-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #333;
  transition: all 0.3s ease;
}

.icon-btn:hover {
  color: #e91e63;
  transform: scale(1.1);
}

#cart-count {
  background: #e91e63;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  margin-left: 5px;
  font-weight: bold;
}

/* Hero Banner */
.hero-banner {
  background: #fdfdfd;
  padding: 60px 40px;
}

/* Layout */
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Left Text */
.hero-text h2 {
  font-size: 34px;
  font-weight: 700;
  color: #c2185b;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Gold Button with Arrow */
.shop-btn {
  background: linear-gradient(45deg, #d4af37, #f5d76e);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.shop-btn i {
  font-size: 18px;
  color: #fff;
}
.shop-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Images */
.hero-image img,
.hero-portrait img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #d4af37; /* golden border */
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Subline */
.hero-subline {
  margin-top: 15px;
  font-size: 14px;
  color: #444;
  text-align: center;
  font-style: italic;
}

/* Golden Divider Lines */
.hero-banner::before,
.hero-banner::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  margin: 20px 0;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-text h2 { font-size: 26px; }
  .hero-image img, .hero-portrait img { height: 300px; }
}
/* Product Grid */
.product-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 40px 20px;
  flex-wrap: wrap;
}
.product {
  border: 1px solid #ddd;
  padding: 15px;
  text-align: center;
  width: 250px;
  background: #fff;
  border-radius: 8px;
  transition: transform 0.3s;
}
.product:hover {
  transform: translateY(-5px);
}
.product img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
}
.product h3 {
  margin: 10px 0;
  font-size: 18px;
  color: #c2185b;
}
.product p {
  font-size: 16px;
  margin-bottom: 10px;
}
.product button {
  background: #e91e63;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 4px;
}

/* Cart Panel */
#cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 360px;
  height: 100%;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0,0,0,0.25);
  padding: 20px;
  transition: transform 0.4s ease-in-out;
  transform: translateX(100%);
  z-index: 1000;
}
#cart-panel.active {
  transform: translateX(0);
}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.close-btn {
  cursor: pointer;
  font-size: 22px;
  color: #e91e63;
}
.checkout-btn {
  background: #e91e63;
  color: #fff;
  padding: 12px;
  border: none;
  width: 100%;
  margin-top: 10px;
  border-radius: 4px;
}

/* Footer */
footer {
  background: #f8f8f8;
  padding: 20px;
  text-align: center;
}
.footer-links {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}
.footer-links h4 {
  margin-bottom: 10px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin: 5px 0;
}
.footer-links ul li a {
  text-decoration: none;
  color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  #cart-panel {
    width: 100%;
  }
  .product-grid {
    flex-direction: column;
    align-items: center;
  }
  .footer-links {
    flex-direction: column;
    align-items: center;
  }
}
