@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --gold-light: #FBF1D3;
  --gold-main: #D4AF37;
  --gold-dark: #A58421;
  --green-dark: #0A1C15; /* Dark green from the image */
  --green-light: #163628;
  --text-main: #FFFFFF;
  --text-muted: rgba(255, 255, 255, 0.8);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --container-width: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
  font-family: var(--font-body); 
  color: var(--text-main); 
  /* Gold background gradient just like the image */
  background: linear-gradient(145deg, var(--gold-light), #F2D98D, var(--gold-main));
  background-attachment: fixed;
  line-height: 1.6; 
}
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--gold-main); }
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 15px; }

/* Top Bar */
.top-bar { background: var(--green-dark); color: var(--gold-light); padding: 8px 0; font-size: 0.85rem; border-bottom: 1px solid rgba(212, 175, 55, 0.2); }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.top-contact { display: flex; gap: 20px; }
.top-contact a { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.top-contact a:hover { color: var(--gold-main); }
.top-actions { display: flex; align-items: center; gap: 15px; }
.top-socials { display: flex; gap: 10px; }
.top-socials a { width: 28px; height: 28px; background: rgba(212, 175, 55, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.top-socials a:hover { background: var(--gold-main); color: var(--green-dark); }
.top-search { display: flex; align-items: center; background: rgba(255,255,255,0.1); border-radius: 20px; overflow: hidden; padding: 0 10px; height: 30px;}
.top-search input { border: none; outline: none; padding: 5px; font-size: 0.85rem; width: 150px; background: transparent; color: #fff; }
.top-search input::placeholder { color: rgba(255,255,255,0.5); }
.top-search button { background: transparent; border: none; color: var(--gold-main); cursor: pointer; }
.top-cart { display: flex; align-items: center; gap: 8px; font-weight: 600; cursor: pointer; }
.top-cart .badge { background: var(--gold-main); color: var(--green-dark); border-radius: 50%; padding: 2px 6px; font-size: 0.7rem; }

/* Header */
.main-header { background: var(--green-dark); box-shadow: 0 2px 10px rgba(0,0,0,0.3); position: sticky; top: 0; z-index: 1000; padding: 15px 0; transition: all 0.3s ease; border-bottom: 1px solid rgba(212, 175, 55, 0.3); }
.main-header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: var(--gold-main); display: flex; align-items: center; gap: 8px; text-transform: uppercase; }
.logo i { color: #4CAF50; font-size: 1.5rem; }
.main-nav { display: flex; gap: 30px; }
.main-nav a { font-weight: 600; font-size: 0.95rem; text-transform: uppercase; color: var(--gold-light); position: relative; }
.main-nav a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--gold-main); transition: width 0.3s ease; }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a:hover, .main-nav a.active { color: var(--gold-main); }
.menu-toggle { display: none; font-size: 1.5rem; color: #fff; cursor: pointer; }

/* Hero Slider */
.hero-slider { position: relative; width: 100%; height: 600px; overflow: hidden; background: #000; border-bottom: 2px solid var(--gold-main); }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease; display: flex; align-items: center; justify-content: center; }
.hero-slide.active { opacity: 1; z-index: 2; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; z-index: 1; opacity: 0.6; }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; max-width: 800px; padding: 0 20px; }
.hero-content h2 { font-size: 4rem; color: var(--gold-main); margin-bottom: 20px; text-shadow: 2px 2px 10px rgba(0,0,0,0.8); }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; text-shadow: 1px 1px 5px rgba(0,0,0,0.8); }
.btn-primary { display: inline-block; background: linear-gradient(to right, var(--gold-main), #F2D98D); color: var(--green-dark); padding: 12px 30px; border-radius: 30px; font-weight: 700; text-transform: uppercase; box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4); border: none; }
.btn-primary:hover { transform: scale(0.97); }
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 30px; z-index: 3; pointer-events: none; }
.slider-nav button { width: 50px; height: 50px; background: rgba(0,0,0,0.5); border: 1px solid var(--gold-main); border-radius: 50%; color: var(--gold-main); font-size: 1.5rem; cursor: pointer; pointer-events: auto; transition: background 0.3s; }
.slider-nav button:hover { background: var(--gold-main); color: var(--green-dark); }

/* About Section */
.section-padding { padding: 80px 0; }
.about-grid { display: flex; align-items: center; gap: 60px; background: var(--green-dark); padding: 40px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); border: 1px solid rgba(212, 175, 55, 0.4); }
.about-img { flex: 1; position: relative; }
.about-img img { border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.about-img::before { content: ''; position: absolute; top: -15px; left: -15px; right: 15px; bottom: 15px; border: 2px solid var(--gold-main); border-radius: 20px; z-index: -1; }
.about-text { flex: 1; }
.section-title { font-size: 2.5rem; margin-bottom: 20px; position: relative; padding-bottom: 15px; color: var(--gold-main); }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 3px; background: var(--gold-main); }
.about-text p { margin-bottom: 20px; color: var(--text-muted); font-size: 1.05rem; }

/* Products Section */
.products-wrapper { padding: 80px 0; }
.products-wrapper .section-title { color: var(--green-dark); text-align: center; font-size: 3rem; text-shadow: 1px 1px 0 rgba(255,255,255,0.5); }
.products-wrapper .section-title::after { left: 50%; transform: translateX(-50%); background: var(--green-dark); }
.products-wrapper .section-subtitle { text-align: center; margin-bottom: 50px; color: var(--green-dark); font-weight: 600; font-size: 1.1rem; }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.product-card { background: var(--green-dark); border-radius: 25px; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; border: 1px solid rgba(212, 175, 55, 0.6); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.4); }
.product-badge { position: absolute; top: 15px; left: 15px; background: var(--gold-main); color: var(--green-dark); padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 700; z-index: 2; text-transform: uppercase; }
.product-img { height: 250px; overflow: hidden; position: relative; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; opacity: 0.95; }
.product-card:hover .product-img img { transform: scale(1.1); }
.product-info { padding: 25px; text-align: left; }
.product-info h3 { font-size: 1.3rem; color: var(--gold-main); margin-bottom: 10px; font-family: var(--font-body); font-weight: 700; }
.product-info p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 15px; line-height: 1.5; min-height: 40px; }
.product-info .price { color: #fff; font-weight: 700; font-size: 1.3rem; margin-bottom: 20px; }
.btn-cart { display: inline-block; width: 100%; padding: 15px; background: linear-gradient(to right, var(--gold-main), #F2D98D); color: var(--green-dark); border: none; border-radius: 15px; font-weight: 700; cursor: pointer; transition: transform 0.2s; text-transform: uppercase; font-size: 0.95rem; box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3); }
.btn-cart:hover { transform: scale(0.97); }

/* Footer */
.main-footer { background: var(--green-dark); padding: 60px 0 20px; border-top: 2px solid var(--gold-main); color: var(--text-muted); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 40px; }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 20px; color: var(--gold-main); }
.footer-col p { margin-bottom: 10px; display: flex; align-items: flex-start; gap: 10px; }
.footer-col p i { color: var(--gold-main); margin-top: 5px; }
.footer-links a { display: block; color: var(--text-muted); margin-bottom: 10px; }
.footer-links a:hover { color: var(--gold-main); padding-left: 5px; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }

/* Responsive */
@media (max-width: 992px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { flex-direction: column; padding: 20px; }
  .about-img::before { display: none; }
  .hero-slider { height: 400px; }
  .hero-content h2 { font-size: 2.5rem; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--green-dark); padding: 20px; border-bottom: 1px solid var(--gold-main); }
  .main-nav.show { display: flex; }
  .menu-toggle { display: block; }
  .product-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .products-wrapper .section-title { font-size: 2.2rem; }
}
