body {
    font-family: 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f9f9f9;
    line-height: 1.6;
}
header {
    background-color: #000;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
header h1 {
    font-family: 'Cinzel', serif;
    margin: 0;
    font-size: 2.5em;
    letter-spacing: 2px;
    text-transform: uppercase;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}
nav ul li {
    display: inline;
    margin: 0 20px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}
nav ul li a:hover {
    color: #d4af37; /* Gold */
}
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-image: url('hero-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4); /* Dark overlay for contrast */
    z-index: 0;
}
.hero h2, .hero p, .hero button {
    position: relative;
    z-index: 1;
}
.hero h2 {
    font-family: 'Cinzel', serif;
    font-size: 3.5em;
    margin: 0;
    letter-spacing: 2px;
}
.hero p {
    font-size: 1.3em;
    margin: 10px 0 20px;
    font-style: italic;
}
section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    column-gap: normal;
    margin-top: 40px;
}
.product {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    transition: box-shadow 0.3s;
}
.product:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.product img {
    max-width: 100%;
    height: auto;
.shop-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #000 !important; /* force black background */
  color: #fff !important; /* force white text */
  text-decoration: none !important;
  border-radius: 8px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}
.shop-button:hover {
  background-color: #333 !important; /* darker hover */
}
    
    
    
}
button {
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    transition: background 0.3s;
}
button:hover {
    background: #d4af37;
}
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
}
@media (max-width: 768px) {
    .hero h2 { font-size: 2.5em; }
    nav ul li { margin: 0 10px; }
}
