
body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
  }
  
  .shop-hero {
    text-align: center;
    padding: 2.5rem 1rem;
    background-color: #7b1e1e;
    color: #fff;
  }
  
  .shop-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  


  /* Make links inside headings bold, white, and underlined */
.shop-hero h1 a, 
.shop-hero a,
.shop-hero h3 a,
.shop-hero h4 a,
.shop-hero h5 a, 
.shop-hero a {
    color: #fff; /* white */
    font-weight: bold;
    text-decoration: underline;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
    color: #f0f0f0; /* slightly lighter on hover */
    text-decoration: underline;
}
  .shop-hero p {
    font-size: 1rem;
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .product-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.06);
    padding: 1rem;
    text-align: center;
    transition: transform 0.2s ease;
  }
  
  .product-card:hover {
    transform: translateY(-5px);
  }
  
  .product-card img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    border-radius: 4px;
  }
  
  .product-card h3 {
    font-size: 1.1rem;
    margin: 0.75rem 0 0.5rem;
  }
  
  .product-card .price {
    font-size: 1rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 1rem;
  }
  
  .product-card button {
    background-color: #7b1e1e;
    color: #fff;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .product-card button:hover {
    background-color: #5e1515;
  }
  
  .btn-join {
    display: inline-block;
    background-color: #7b1e1e;
    color: #fff !important;
    border: none;
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    text-align: center;
    margin-top: 0.5rem;
  }
  
  .btn-join:hover {
    background-color: #5e1515;
  }
  
  /* =============================
   Breadcrumbs Section
   ============================= */
.breadcrumb-container {
    background-color: #f8f8f8; /* subtle light background */
    padding: 15px 30px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.product-breadcrumbs {
    font-size: 1.2rem; /* larger font */
    color: #7A3B4E;
    font-weight: 500;
}

.product-breadcrumbs .breadcrumb-link {
    color: #7A3B4E;
    text-decoration: none;
}

.product-breadcrumbs .breadcrumb-link:hover {
    text-decoration: underline;
}

.product-breadcrumbs .breadcrumb-current {
    font-weight: 700;
}

.product-breadcrumbs .breadcrumb-separator {
    margin: 0 8px;
    color: #555; /* slightly muted separator color */
}

/* Make links inside headings bold, white, and underlined */
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    color: #fff; /* white */
    font-weight: bold;
    text-decoration: underline;
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
    color: #f0f0f0; /* slightly lighter on hover */
    text-decoration: underline;
}


/* ===============================
   Collection Image Styling
   =============================== */
.collection-img {
  width: 100%;
  max-width: 700px;           /* limits how wide the image can get */
  height: auto;               /* maintain aspect ratio */
  max-height: 380px;          /* prevents the image from being too tall */
  object-fit: scale-down;          /* ensures the image scales nicely */
  display: block;
  margin: 0 auto 1.5rem;      /* centers the image */
  border-radius: 12px;        /* soft corners */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08); /* subtle shadow */
}


/* Hover effect for interactivity */
.collection-img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ===============================
   Responsive Adjustments
   =============================== */
@media (max-width: 1024px) {
  .collection-img {
    max-width: 90%;
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .collection-img {
    max-width: 80%;
    margin-bottom: 1rem;
    border-radius: 10px;
  }
}

@media (max-width: 480px) {
  .collection-img {
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }
}




  @media (max-width: 500px) {
    .shop-hero h1 {
      font-size: 1.5rem;
    }
  
    .shop-hero h1 a, 
    .shop-hero a,
    .shop-hero h3 a,
    .shop-hero h4 a,
    .shop-hero h5 a, 
    .shop-hero a {
    font-size: 1.5rem;
    color: #fff; /* white */
    font-weight: bold;
    text-decoration: underline;
}

    .product-card h3 {
      font-size: 1rem;
    }
  
    .product-card .price {
      font-size: 0.95rem;
    }
  }
  