/* HERO */
.hero-banner{
  background: var(--brand-primary);
  padding: 4.5rem 0;
  color: var(--brand-text);
  overflow: hidden;
}
.hero-inner{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.hero-copy h1{
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 1.02;
  color: var(--brand-text);
  margin-bottom: .6rem;
  font-weight: 700;
}
.hero-copy .lead{
  color: var(--muted);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
.hero-media .responsive-cover{
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform-origin: center;
}

/* Buttons */
.btn{
  display: inline-block;
  padding: .5rem 1.2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 300;
}
.btn-gold{
  background: var(--brand-accent);
  color: #111;
  box-shadow: 0 8px 22px rgba(212,175,55,0.15);
}
.btn-outline{
  background: transparent;
  border: 1px solid rgba(0,0,0,0.06);
  color: var(--brand-text);
}


/* Featured Collections */
.featured-collections {
  padding: 10px 0;
  background-color: var(--brand-secondary);
}

.section-title {
  margin-bottom: 4rem;
  font-size: 2.5rem;
  color: var(--brand-text);
}


.collections-grid{
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 2rem;
  padding-bottom: 1rem; /* Add some padding for scrollbar */
}

.collection-item{
  flex: 0 0 auto;
  width: 300px;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease, padding 0.3s ease, border-radius 0.3s ease;
  outline: none;
  box-shadow: none;
}

.collection-item:focus,
.collection-item:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.08);
  border-color: var(--brand-accent);
  background: var(--brand-primary);
  padding: 1rem;
  border-radius: 8px;
}

.collection-item a {
    text-decoration: none;
    color: inherit; /* Ensure text color is inherited from parent */
}

.collection-image-wrap{
  overflow: hidden;
  border-radius: 8px;
  background: var(--brand-secondary);
}

.collection-image-wrap img{
  width: 100%;
  height: 220px; /* Adjusted height */
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.9,.2,1);
}

.collection-item:hover .collection-image-wrap img,
.collection-item:focus .collection-image-wrap img{
  transform: scale(1.08);
}

.collection-title{
  margin-top: 1rem;
  font-weight: 700;
  color: var(--brand-text);
  font-size: 1.6rem;
}

.collection-cta .btn-outline-dark {
  border: 1px solid var(--brand-text);
  color: var(--brand-text);
  padding: 0.6rem 1.2rem;
  margin-top: 0.5rem;
}

.collection-cta .btn-outline-dark:hover {
  background-color: var(--brand-text);
  color: var(--brand-primary);
}

/* Promise section */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-item {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease, padding 0.3s ease, border-radius 0.3s ease;
  outline: none;
  box-shadow: none;
}

.product-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.08);
  border-color: var(--brand-accent);
  background: var(--brand-primary);
  padding: 1rem;
  border-radius: 8px;
}

.product-item img {
  width: 100%;
  height: 220px; /* Adjusted height */
  object-fit: cover;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.product-item h5,
.product-item p {
  color: var(--brand-text);
}

/* Promise section */
.brand-promise{
  padding: 3rem 0;
}

/* Accessibility: show focus outlines when tabbing */
html.show-focus a:focus, html.show-focus button:focus, html.show-focus .collection-item:focus {
  outline: 3px solid rgba(0,0,0,0.12);
  outline-offset: 3px;
}
