/* Reset + Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
/* Remove default margin and padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  width: 100%;
  height: 100%;
}

/* Banner container */
.banner-container {
  width: 100%;
  max-height: 700px; /* Adjust to your desired height */
  overflow: hidden;
}

/* Banner image styling */
.banner-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* Header */
header {
  background: #111;
  color: #fff;
  padding: 20px 0;
}
header h1 {
  text-align: center;
  font-size: 2rem;
}
header nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  margin-top: 10px;
}
header nav ul li {
  margin: 0 15px;
  font-size:xx-large;
}
header nav ul li a {
  color: #fff;
  text-decoration: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 20px 0;
  background-color: #111; /* dark background for luxury */
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  padding: 10px 18px;
  font-size: 30px;
  border-radius: 253px;
  transition: 0.3s ease;
  font-weight: 600;
  background-color: transparent;
  border: 2px solid #bfa37a;
}

.nav-links li a:hover {
  background-color: #bfa37a;
  color: #111;
  box-shadow: 0 4px 15px rgba(191, 163, 122, 0.5);
  transform: translateY(-2px);
}


.cart-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #000000, #434343);
  color: white;
  padding: 12px 20px;
  border-radius: 40px;
  font-size: 36px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.25);
  z-index: 999;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.cart-button:hover {
  background: linear-gradient(135deg, #1e1e1e, #5a5a5a);
  transform: scale(1.05);
}

#cart-count {
  background-color: #f39c12;
  color: white;
  border-radius: 50%;
  padding: 10px 20px;
  font-size: 20px;
}
.cart-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff80;
  border-radius: 50px;
  padding: 10px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
  color: #000;
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: transform 0.3s;
}
.cart-float:hover {
  transform: scale(1.05);
}
.cart-items-container {
  padding: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.cart-item-details p {
  margin: 5px 0;
}

.cart-summary {
  padding: 20px;
  border-top: 2px solid #000;
}

.checkout-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: green;
  color: #fff;
  text-decoration: none;
  margin-top: 10px;
}

.clear-cart-button {
  margin-left: 20px;
  padding: 10px 20px;
  background-color: red;
  color: white;
  border: none;
  cursor: pointer;
}



/* Hero Section */
.hero {
  background: #e2d4c1;
  color: #111;
  padding: 100px 0;
  text-align: center;
}
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.hero .btn {
  background: #010101;
  color: #fff;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 5px;
}

/* Products Section */
.products {
  padding: 80px 0;
  background: #fff;
  text-align: center;
}
.products h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.product-card {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}
.product-card h3 {
  margin: 15px 0 5px;
  font-size: 1.2rem;
}
.product-card p {
  margin-bottom: 8px;
  color: #555;
}
.product-card .price {
  font-weight: bold;
  color: #111;
}
.add-to-cart {
  background-color: #bfa37a; /* Luxury gold-ish tone */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.add-to-cart:hover {
  background-color: #a3875d;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}


/* Custom Product Rows */
.product-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.center-row {
  justify-content: center;
}

/* Optional: Set max width to control layout on very large screens */
.product-card {
  width: 300px;
}


/* Footer */
footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}
/* About Section */
.about-section {
  background-color: #f3efe8; /* soft beige, matches perfume theme */
  padding: 60px 20px;
  text-align: center;
}

.about-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2.5rem;
  color: #1f1f1f;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Contact Section */
.contact-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.contact-section .container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #1f1f1f;
}

.contact-section p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #444;
}

.contact-icons {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.contact-link img {
  width: 24px;
  height: 24px;
}

.contact-link:hover {
  color: #000;
}

/* Contact Section */
.contact-section {
  background-color: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

.contact-container {
  max-width: 800px;
  margin: auto;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.social-links a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.social-links a img:hover {
  transform: scale(1.2);
}
