:root {
  --white: #ffffff;
  --gold: #c9a44c;
  --dark: #111111;
  --gray: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: var(--white);
  border-bottom: 1px solid #eee;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  letter-spacing: 1px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
}

nav a.active {
  color: var(--gold);
}

/* Hero Section */
.hero {
  min-height: 85vh;
  background: linear-gradient(
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.55)
  ), 
  url("https://images.unsplash.com/photo-1722963220475-979db2dbf216?w=1200&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8b3JnYW5pemF0aW9ufGVufDB8fDB8fHww") center/cover no-repeat,
  #9a9a9a;
  display: flex;
  align-items: center;
  padding: 40px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  margin-bottom: 15px;
  color: #fff;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-buttons .btn {
  display: inline-block;
  text-align: center;
}

/* Buttons */
.btn {
  padding: 14px 28px;
  text-decoration: none;
  margin-right: 15px;
  border-radius: 30px;
  font-weight: 600;
}

.btn.gold {
  background: var(--gold);
  color: var(--white);
}

.btn.outline {
  border: 1px solid var(--white);
  color: var(--white);
}

/* Page Hero */
.page-hero, .shop-hero {
  padding: 100px 20px;
  background: var(--gray);
  text-align: center;
}

.page-hero h1, .shop-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 10px;
}

/* Services Grid */
.services-grid {
  padding: 80px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card p {
  line-height: 1.7;
  margin-top: 10px;
}

.service-card .btn {
  margin-top: 25px;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 500;
  text-align: center;
}

.service-card .btn:hover {
  background: #b8963f;
  transform: translateY(-2px);
  transition: 0.3s ease;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

/* Shop Grid */
.shop-grid,
.products {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card,
.product {
  background: var(--white);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  margin: 15px;
}

.product-card:hover,
.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.price-select {
  width: 100%;
  padding: 10px;
  margin: 15px 0;
}

.price {
  font-size: 18px;
  font-weight: 600;
}

.product-card button {
  margin-top: 15px;
  padding: 12px;
  width: 100%;
  background: var(--gold);
  border: none;
  color: white;
  border-radius: 30px;
}

/* Cart Bar (Fixed) */
.cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--dark);
  color: var(--white);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  z-index: 999;
}

.cart-bar .btn {
  padding: 12px 28px;
  background: var(--gold);
  color: var(--white);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* Intro Section */
.intro {
  padding: 80px;
  text-align: center;
}

/* Contact Section */
.contact-section {
  padding: 100px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.contact-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.10);
}

.contact-card .btn {
  margin-top: 25px;
  padding: 14px 28px;
  border-radius: 40px;
  font-weight: 500;
  text-align: center;
}

.contact-card .btn:hover {
  background: #b8963f;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
}

.contact-card p {
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-card .btn,
.contact-card a.btn {
  display: inline-block;
  margin-top: 10px;
}

/*About Section*/
.about-container {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.about-card {
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.about-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--gold);
}

.about-card p, .about-card ul {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark);
}

.about-card ul {
  padding-left: 20px;
}

.team-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.team-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 40px;
  color: var(--gold);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.team-card h3 {
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--dark);
}

.team-card p {
  font-size: 14px;
  color: #555;
}

.cta-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 60px 20px;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--gold);
}

.cta-section p {
  font-size: 16px;
  margin-bottom: 30px;
  color: var(--dark);
}

.cta-section .btn {
  margin: 0 10px 15px 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .about-container, .team-grid, .cta-section {
    gap: 20px;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero p {
    font-size: 16px;
  }
}

/* Checkout Section */
.checkout-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.checkout-container {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  width: 100%;
}

.order-summary, .customer-info {
  flex: 1;
  min-width: 300px;
  background: var(--white);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.order-summary table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.order-summary th, .order-summary td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.order-summary tfoot td {
  font-weight: 600;
}

.customer-info form {
  display: flex;
  flex-direction: column;
}

.customer-info label {
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: 500;
}

.customer-info input,
.customer-info textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.customer-info textarea {
  resize: none;
}

.customer-info .btn {
  margin-top: 25px;
  text-align: center;
}

/* Toast Notification */
#toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--gold);
  color: #fff;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 500;
  box-shadow: 0 5px 20px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease;
  z-index: 9999;
  pointer-events: none;
}
#toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 40px;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .shop-grid, .products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .checkout-section {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    padding: 20px;
  }

  nav {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  nav a {
    margin: 5px 10px 0 0;
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .intro {
    padding: 40px 20px;
  }

  .cart-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 15px 20px;
  }

  .cart-bar .btn {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .shop-grid, .products {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .product-card, .product {
    margin: 0;
  }

  .hero-content h1,
  .page-hero h1,
  .shop-hero h1 {
    font-size: 24px;
  }

  .hero, .page-hero, .shop-hero {
    padding: 30px 15px;
  }
}