/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 154, 58, 0.15) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}

.hero-eyebrow {
  position: relative;
  z-index: 1;
  display: block;
  color: #c59a3a;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero img {
  position: relative;
  z-index: 1;
  width: 250px;
  filter: drop-shadow(0 0 30px rgba(197, 154, 58, 0.6));
  transition: transform 0.4s ease;
}

.hero img:hover {
  transform: scale(1.03);
}

.hero h2 {
  position: relative;
  z-index: 1;
  font-size: 38px;
  font-weight: 400;
  margin: 28px 0;
  letter-spacing: 1px;
  line-height: 1.3;
  background: linear-gradient(135deg, #ffffff 30%, #e8d5a8 60%, #c59a3a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(197, 154, 58, 0.25);
}

.cta {
  position: relative;
  z-index: 1;
  background: transparent;
  color: #c59a3a;
  border: 1px solid #c59a3a;
  padding: 14px 40px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.35s ease;
}

.cta:hover {
  background: #c59a3a;
  color: #000;
  box-shadow: 0 8px 24px rgba(197, 154, 58, 0.4);
}
.cta:active {
  transform: translateY(-1px);
}

.section-divider {
  width: 60px;
  height: 2px;
  background: #c59a3a;
  margin: 0 auto 40px;
  opacity: 0.6;
}
/* Collections */
.collections {
  text-align: center;
  padding: 60px 0;
}

.collection-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.collection-item {
    text-align: center;
}

.collection-item img {
    width: 180px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    border: 1px solid rgba(197, 154, 58, 0.3);
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.collection-item:hover img {
    transform: scale(1.05);
    border-color: #c59a3a;
}

.collection-item h3 {
    transition: color 0.3s ease;
}

.collection-item:hover h3 {
    color: #c59a3a !important;
}

.collection-item p {
    margin-top: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

/* Iconic Selections */
.iconic {
  padding: 60px 0;
  text-align: center;
}

.section-header {
  position: relative;
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.view-all {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #c59a3a;
  text-decoration: none;
  font-size: 13px;
}

.view-all {
  color: #c59a3a;
  text-decoration: none;
  font-size: 13px;
}

.subtitle {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 30px;
}

.product {
  width: 225px;
  display: block;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.product:hover {
  transform: translateY(-6px);
}

.product-grid {
  display: flex;
  justify-content: center;
  gap: 45px;
  flex-wrap: wrap;
}

.product img {
  width: 225px;
  height: 270px;
  object-fit: contain;
  object-position: center;
  background: #111;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  transition: box-shadow 0.3s ease;
}

.product h4 {
  margin: 10px 0 5px;
}

.product p {
  font-size: 13px;  
}

.product:hover img {
  box-shadow: 0 10px 30px rgba(197, 154, 58, 0.2);
}
/* New Arrivals */
.new-arrivals {
  text-align: center;
  padding: 60px 0;
}

.tag {
  background-color: #c59a3a;
  color: #000;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 10px;
}


.icons i {
  margin-left: 15px;
  color: #c59a3a;   /* gold accent to match your brand */
  font-size: 20px;  /* increase size */
  cursor: pointer;
}

.icons i:hover {
  color: #e0b84a;   /* lighter gold on hover */
}

.product {
  width: 225px;
  display: block;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

.product img {
  width: 220px;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
}

.product h4 {
  color: #fff;
  font-size: 20px;
  margin: 18px 0 8px;
}

.product p {
  color: #ddd;
  font-size: 15px;
}

.old-price {
  color: #777;
  text-decoration: line-through;
  margin-right: 8px;
}

.no-product-image {
  width: 225px;
  height: 270px;
  border-radius: 8px;
  background: #1e1e1e;
  display: grid;
  place-items: center;
  color: #c59a3a;
  font-size: 28px;
  margin: 0 auto;
}

.empty-arrivals {
  color: #aaa;
}

.product-price {
  margin: 0;
}

.original-price {
  color: #888;
  font-size: 0.95rem;
  margin-right: 8px;
}

.discount-price {
  color: #d4af37;
  font-size: 1.1rem;
  font-weight: 700;
}

.price {
  color: #d4af37;
  font-size: 1.1rem;
  font-weight: 700;
}


