/* =========================================
   Ibn e Kabir Fragrance - Final Style.css
========================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  background: #fdfdfd;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
}

/* =========================================
   Header
========================================= */

header {
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  background: linear-gradient(to right, #ff8a00, #e52e71);
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

:not(:lang(ur)) {
  header h1 {
       letter-spacing: 1px;
  }
}

.tagline {
  font-size: 1rem;
  opacity: 0.95;
  margin-bottom: 1rem;
}

/* =========================================
   Language Switch
========================================= */

.language-switch {
  gap: 10px;
  display: flex;
  margin-top: 15px;
  justify-content: center;
}

.lang-btn {
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 25px;
  padding: 8px 18px;
  color: #222;
  background: rgba(255,255,255,0.75);
  transition: all 0.3s ease;
}

.lang-btn:hover {
  transform: translateY(-2px);
  background: white;
}

.active-lang {
  color: white !important;
  background: #111 !important;
  box-shadow: 0 0 10px rgba(0,0,0,0.25);
}

/* =========================================
   Navbar
========================================= */

.navbar {
  margin-top: 1rem;
}

.navbar ul {
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
}

.navbar li {
  margin: 0;
}

.navbar a {
  color: #000;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
  display: inline-block;
  background: rgba(255,255,255,0.25);
  transition: all 0.3s ease;
}

.navbar a:hover {
  transform: translateY(-2px) scale(1.03);
  background: rgba(255,255,255,0.6);
}

/* =========================================
   WhatsApp Contact
========================================= */

.whatsapp-contact {
  margin-top: 1rem;
  font-size: 1rem;
  text-align: center;
}

.whatsapp-contact a {
  color: #063;
  font-weight: bold;
  border-radius: 40px;
  padding: 0.7rem 1.2rem;
  text-decoration: none;
  display: inline-block;
  background: #25D366;
  transition: all 0.3s ease;
}

.whatsapp-contact a:hover {
  background: #1ebd5b;
  transform: scale(1.03);
}

/* =========================================
   Hero Banner
========================================= */

.hero-banner {
  padding: 3rem 1.5rem;
  text-align: center;
  background: white;
}

.hero-banner h2 {
  color: #e52e71;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-banner p {
  max-width: 850px;
  margin: auto;
  color: #555;
  font-size: 1rem;
}

/* =========================================
   CTA Buttons
========================================= */

.cta-buttons {
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  justify-content: center;
}

.cta-buttons a {
  font-size: 1rem;
  font-weight: bold;
  border-radius: 40px;
  padding: 0.9rem 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-whatsapp {
  color: white;
  background: #25D366;
}

.btn-whatsapp:hover {
  background: #1ebd5b;
  transform: translateY(-2px);
}

.btn-products {
  color: white;
  background: #111;
}

.btn-products:hover {
  background: #333;
  transform: translateY(-2px);
}

/* =========================================
   Main Products Area
========================================= */

main {
  gap: 2rem;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  justify-content: center;
}

/* =========================================
   Product Card
========================================= */

.product-card {
  width: 320px;
  display: flex;
  overflow: hidden;
  background: white;
  border-radius: 15px;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.product-card img {
  width: 100%;
  height: 700px;
  object-fit: cover;
}

/* =========================================
   Product Details
========================================= */

.product-details {
  flex: 1;
  display: flex;
  padding: 1rem;
  flex-direction: column;
  justify-content: space-between;
}

.product-details h2 {
  color: #e52e71;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.product-details p {
  margin: 0.25rem 0;
}

/* =========================================
   Bottom Section
========================================= */

.bottom-section {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* =========================================
   Price List
========================================= */

.price-list {
  margin-top: auto;
}

.price-list div {
  padding: 0.7rem;
  border-radius: 8px;
  background: #f4f4f4;
  margin-bottom: 0.5rem;
  transition: 0.3s ease;
}

.price-list div:hover {
  background: #ececec;
}

/* =========================================
   Availability
========================================= */

.availability {
  padding: 0.7rem;
  font-weight: bold;
  margin-top: 0.7rem;
  text-align: center;
  border-radius: 8px;
}

.available {
  color: #155724;
  background: #d4edda;
  border: 1px solid #c3e6cb;
}

.coming {
  color: #856404;
  background: #fff3cd;
  border: 1px solid #ffeeba;
}

/* =========================================
   Social Section
========================================= */

.social-section {
  padding: 3rem 1.5rem;
  text-align: center;
  background: white;
}

.social-section h3 {
  color: #e52e71;
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.social-links {
  gap: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.social-links a {
  color: #333;
  font-weight: bold;
  border-radius: 30px;
  padding: 0.8rem 1.3rem;
  text-decoration: none;
  background: #f3f3f3;
  transition: all 0.3s ease;
}

.social-links a:hover {
  color: white;
  transform: translateY(-2px);
  background: linear-gradient(to right, #ff8a00, #e52e71);
}

/* =========================================
   Footer
========================================= */

footer {
  width: 100%;
  color: white;
  padding: 1.5rem;
  text-align: center;
  background: linear-gradient(to right, #111, #222);
}

footer p {
  margin: 0.4rem 0;
}

.footer-links {
  margin-top: 1rem;
}

.footer-links a {
  color: #ffb347;
  margin: 0 10px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

/* =========================================
   Responsive
========================================= */

@media (max-width: 768px) {

  header h1 {
    font-size: 1.6rem;
  }

  .tagline {
    font-size: 0.95rem;
  }

  .hero-banner h2 {
    font-size: 1.5rem;
  }

  .hero-banner p {
    font-size: 0.95rem;
  }

  .navbar ul {
    gap: 0.5rem;
  }

  .navbar a {
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
  }

  .lang-btn {
    padding: 7px 15px;
    font-size: 0.9rem;
  }

.product-card {
  width: 320px;
  display: flex;
  overflow: hidden;
  background: white;
  border-radius: 15px;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

  .product-card img {
    height: 500px;
  }

  main {
    padding: 1rem;
  }

  .social-links a {
    font-size: 0.9rem;
  }
}
