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

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #000000;
  color: #333;
} 

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header {
  background: #3f3e3e;
  border-bottom: 1px solid #eee;
 padding: 10px 0;
}


.logo img {
  height:150px;
  object-fit: contain;
}


header nav {
  float: right;
}

header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/*slider image hover effect shop now*/
.hero-content .btn:hover {
  background: #e91e63; /* your brand color or any accent */
  transform: scale(1.05);
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 100%;
  height:200%;
  animation: slideAnimation 10s infinite;
}

.slides img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* ✅ Keeps full image visible without zoom */
  background-color: #000; /* optional: black background around image */
}

/* Text on top of slider */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 10;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-content .btn {
  padding: 0.75rem 1.5rem;
  background: #222;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

/* Slide animation */
@keyframes slideAnimation {
  0%   { transform: translateX(0%); }
  45%  { transform: translateX(0%); }
  50%  { transform: translateX(-100%); }
  95%  { transform: translateX(-100%); }
  100% { transform: translateX(0%); }
}


/* Products */
.products {
  padding: 3rem 0;
}

.products h2 {
  text-align: center;
  margin-bottom: 2rem;
}

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

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-card img {
  max-width: 100%;
  border-radius: 4px;
}

.product-card h3 {
  margin: 1rem 0 0.5rem;
}

.product-card p {
  color: #444;
  font-weight: bold;
}

.product-card button:hover {
  background: #444;
}

/*footer working*/
footer {
  background: #222;
  color: white;
  text-align: center;
 padding: 15px 10;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  text-align: left;
  position: relative;
}

.footer-nav {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 2rem;
}

.footer-nav a {
  margin: 0.5rem 0;
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.socials {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.socials a {
  margin: 0.5rem 0;
  color: white;
  font-size: 1.2rem;
  text-decoration: none;
}

.footer-logo {
  flex: 1 1 30%;
  text-align: right;
  padding-right: 0rem;
}

.footer-logo img {
  height: 100px;
  object-fit: contain;
}

.footer-bottom {
  text-align: center;
  margin-top: 1.5rem;
  color: #aaa;
  font-size: 1.1rem; /* ✅ increased from 0.9rem */
}
/* footer Menu Links Hover Effect*/
.footer-nav a,
.socials a {
  margin: 0.5rem 0;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-nav a:hover,
.socials a:hover {
  color: #e91e63;
  transform: translateX(5px);
}


/*Add Hover Effect on "Add to Cart" Button */
.product-card button {
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background: #111;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.product-card button:hover {
  background: #e91e63; /* change to pink or your brand color */
  transform: scale(1.05);
}

/*product hover setting*/
.product-card {
  border: 1px solid #eee;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  background: white;
  transition: 0.3s ease;
  cursor: pointer;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: scale(1.03);
}
/* Hover on Logo in Header and Footer*/
.logo img,
.footer-logo img {
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.logo img:hover,
.footer-logo img:hover {
  transform: scale(1.05);
}

header nav a:hover {
  color: #e91e63; /* or any accent color you like */
 
}

/*add to card setting*/
.cart-button {
  position: relative;
}

#cart-btn {
  padding: 10px 15px;
  background: #e91e63;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}

#cart-count {
  background: yellow;
  color: black;
  border-radius: 50%;
  padding: 3px 8px;
  font-size: 14px;
  margin-left: 5px;
  font-weight: bold;
}


/* NEWSLETTER */
.newsletter {
  background: #fffbe6;
  padding: 50px 0;
  text-align: center;
}

.newsletter_box h2 {
  font-size: 26px;
  margin-bottom: 10px;
  font-weight: 600;
}

.newsletter_box p {
  font-size: 16px;
  margin-bottom: 20px;
}

.newsletter_form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.newsletter_form input[type="email"] {
  padding: 12px 15px;
  width: 300px;
  max-width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.newsletter_form button {
  padding: 12px 25px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: background 0.3s ease;
}

.newsletter_form button:hover {
  background-color:#e91e63
}


#map iframe {
  width: 100%;
  height: 350px;
  border: none;
}
