/* ===== PREMIUM THEME (CLEAN & SAFE) ===== */

:root {
  --primary: #0f172a;
  --accent: #d4af37;
  --bg: #f8fafc;
  --text: #111827;
}

/* ===== GLOBAL ===== */
body {
  background: var(--bg) !important;
  color: var(--text) !important;
  font-family: 'Inter', sans-serif !important;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
}

/* ===== NAVBAR (UPGRADE) ===== */
.navbar {
  background: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-links a {
  color: var(--text) !important;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: var(--accent) !important;
}

/* ===== HERO (ONLY NON-LAYOUT STYLES) ===== */
/* IMPORTANT: DO NOT redefine .hero background here */

.hero h1 {
  font-size: 3rem;
  line-height: 1.2;
}

.hero p {
  margin-top: 15px;
  font-size: 1.2rem;
  opacity: 0.9;
}

.hero-buttons {
  margin-top: 25px;
}

/* Buttons */
.btn-primary {
  background: var(--accent);
  color: black;
  padding: 12px 25px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
}

.btn-secondary {
  border: 1px solid white;
  padding: 12px 25px;
  border-radius: 999px;
  text-decoration: none;
  color: white;
}

/* ===== HERO CUSTOMERS ===== */
.hero-customers {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.hero-customers p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 10px;
}

.hero-customers .customer-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.hero-customers img {
  height: 65px;
  opacity: 0.85;
  transition: 0.3s;
}

.hero-customers img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* ===== PRODUCTS ===== */
.product-item {
  border-radius: 16px !important;
  border: 1px solid rgba(0,0,0,0.05);
  background: white !important;
  transition: all 0.3s ease;
}

.product-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}

.product-title {
  font-weight: 600;
}

.product-description {
  color: #666;
}

/* ===== ABOUT ===== */
.about-us-section {
  padding: 80px 20px !important;
  min-height: auto !important;
}

.about-us-section .content {
  max-width: 800px !important;
  padding: 25px !important;
  border-radius: 12px !important;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.1);
}

.about-title {
  font-size: 2.2rem !important;
}

.about-intro {
  font-size: 1.1rem !important;
}

.about-us-mission-vision {
  gap: 20px !important;
}

.vision, .mission {
  max-width: 350px !important;
  padding: 15px !important;
}

.why-choose-us {
  margin-top: 25px !important;
}

.why-choose-us li {
  font-size: 1.1rem !important;
  line-height: 1.6 !important;
}

/* ===== BUTTONS ===== */
button, .buy-now {
  background: var(--primary) !important;
  border-radius: 999px !important;
  color: white !important;
  border: none !important;
  transition: 0.3s;
}

button:hover {
  background: black !important;
  transform: translateY(-2px);
}

/* ===== CONTACT ===== */
.contact-form,
.contact-form form {
  border-radius: 12px !important;
  border: 1px solid #eee;
  box-shadow: none !important;
}

.contact-form input,
.contact-form textarea {
  border-radius: 8px;
}

/* ===== POPUP ===== */
.cart-popup-content {
  border-radius: 16px !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.cart-popup-header {
  background: var(--primary) !important;
}

/* ===== FOOTER ===== */
footer {
  background: #111 !important;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  background: var(--primary) !important;
  border-radius: 50%;
}

/* ===== CLEAN DEFAULT COLORS ===== */
* {
  outline-color: var(--accent);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .hero {
    text-align: center;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

}