/* =========================
   RESET STYLES
   Removes default margin, padding, and sets box-sizing
============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* =========================
   BODY STYLE
============================ */
body {
  background-color: #f8f8f8;
  color: #222;
  line-height: 1.6;
}

/* =========================
   CONTAINER (CENTERS CONTENT)
============================ */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

/* =========================
   BUTTON STYLE
============================ */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #444;
}

/* =========================
   HEADER AND NAVBAR
============================ */
header {
  background-color: #111;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ff4500;
}

/* =========================
   HERO SECTION
============================ */
.hero {
  position: relative;
  height: 90vh;
  background: url('hero-video.mp4') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* =========================
   PRODUCT CARDS SECTION
============================ */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

.product-card {
  background-color: #fff;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.product-info {
  margin-top: 10px;
}

.product-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: #222;
}

.product-info p {
  font-size: 0.9rem;
  color: #555;
  min-height: 40px; /* To keep card heights uniform */
}

.price {
  color: #e60000;
  font-weight: bold;
  margin: 10px 0;
  font-size: 1.1rem;
}

/* =========================
   ADD TO CART BUTTON
============================ */
.add-to-cart {
  padding: 8px 12px;
  background-color: #e60000;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.add-to-cart:hover {
  background-color: #b30000;
}

/* =========================
   FOOTER
============================ */
footer {
  background-color: #111;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

footer .footer-links {
  margin-bottom: 15px;
}

footer .footer-links a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
  font-size: 0.9rem;
}

footer .footer-links a:hover {
  color: #fff;
}

footer p {
  font-size: 0.8rem;
  color: #aaa;
}

/* =========================
   MODALS (LOGIN / SIGNUP)
============================ */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal h2 {
  margin-bottom: 20px;
  color: #222;
}

.modal input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.modal button {
  width: 100%;
  padding: 10px;
  background-color: #111;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 24px;
  color: #aaa;
  font-weight: bold;
}

.close-modal:hover {
  color: #000;
}

/* =========================
   RESPONSIVE DESIGN
============================ */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background-color: #222;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    display: none;
  }

  nav ul.show {
    display: flex;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
header.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #222;
  color: white;
  flex-wrap: wrap;
}

.logo h1 {
  margin: 0;
  font-size: 24px;
}

nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

#search-input {
  padding: 6px 10px;
  border-radius: 4px;
  border: none;
}

button#wishlist-btn,
button#login-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 18px;
}

.cart-icon {
  font-size: 16px;
  color: white;
}

.hamburger {
  display: none; /* Show only on mobile if needed */
}
.featured-items {
  padding: 50px 30px;
  background-color: #f8f8f8;
  text-align: center;
}

.featured-items h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.product-card .btn {
  background-color: #222;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product-card .btn:hover {
  background-color: #444;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.hero-content .btn {
  padding: 12px 25px;
  background-color: #fff;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-content .btn:hover {
  background-color: #000;
  color: #fff;
}

/* Home Intro Section */
.home-intro {
  text-align: center;
  padding: 60px 20px;
  background-color: #f4f4f4;
}

.home-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.home-intro p {
  font-size: 1.1rem;
  color: #555;
}
/* Featured Items Section */
.featured-items {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.featured-items h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

/* Grid Layout for Products */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Product Card Styling */
.product-card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.3rem;
  margin: 10px 0;
  color: #222;
}

.product-card p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 15px;
}

.product-card .btn {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product-card .btn:hover {
  background-color: #333;
}
.newsletter-section {
  background-color: #ffffff; /* White background */
  color: #000000; /* Black text */
  padding: 50px 20px;
  text-align: center;
}

.newsletter-container {
  max-width: 600px;
  margin: auto;
}

.newsletter-section h3 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #000; /* Make heading black */
}

.newsletter-section p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #333; /* Darker gray for paragraph */
}

#newsletterForm {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

#newsletter-email {
  padding: 12px;
  width: 80%;
  max-width: 400px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.newsletter-section .btn {
  background-color: #d62828;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-section .btn:hover {
  background-color: #a30404;
}


/*footer index*/
footer {
  background-color: #222;
  color: #eee;
  padding: 30px 20px;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;  /* Left to right spread */
  flex-wrap: wrap;                  /* Responsive wrapping */
  gap: 20px;
  margin-bottom: 30px;
}

.footer-content > div {
  flex: 1 1 200px;  /* flexible width, min 200px */
}

.footer-content h4 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #ffffff; /* Accent color */
}

.footer-contact p, .footer-policies ul, .footer-customer-service ul {
  margin: 5px 0;
  font-size: 20px;
}

.footer-contact a, .footer-policies a, .footer-customer-service a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact a:hover, .footer-policies a:hover, .footer-customer-service a:hover {
  color: #b80202;
}

.footer-map iframe {
  border-radius: 8px;
  max-width: 100%;
}

.footer-social {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-icon {
  display: inline-block;
  background-color: #fffafa;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  color: #eee;
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s;
}

.social-icon:hover {
  background-color: #fd9c01;
  color: #ffffff;
}

/* Footer bottom (policies & customer service) */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-policies, .footer-customer-service {
  flex: 1 1 200px;
}

.footer-policies ul, .footer-customer-service ul {
  list-style: none;
  padding: 0;
}

.footer-policies ul li, .footer-customer-service ul li {
  margin-bottom: 8px;
}

/* Copyright text center */
.footer-copy {
  text-align: center;
  font-size: 13px;
  color: #777;
  border-top: 1px solid #444;
  padding-top: 15px;
}

/* Responsive for smaller screens */
@media (max-width: 768px) {
  .footer-content, .footer-bottom {
    flex-direction: column;
  }

  .footer-content > div, .footer-policies, .footer-customer-service {
    flex: 1 1 100%;
  }

  .footer-social {
    justify-content: start;
  }
}
.social-icon.facebook {
  color: #3b5998; /* Facebook Blue */
}

.social-icon.twitter {
  color: #1da1f2; /* Twitter Blue */
}

.social-icon.instagram {
  color: #e1306c; /* Instagram Pink */
}

.social-icon.linkedin {
  color: #0077b5; /* LinkedIn Blue */
}

/* Optional: On hover, thoda darken ya highlight karna ho */
.social-icon:hover {
  opacity: 0.8;
}

/* Product Grid Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Product Card Styling */
.product-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 20px;
  margin: 10px 0;
  color: #333;
}

.product-card p {
  margin: 5px 0;
  color: #666;
}

.product-card .price {
  font-weight: bold;
  color: #d62828;
}

.product-card .btn {
  background-color: #d62828;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-card .btn:hover {
  background-color: #a30404;
}

 /*product cards in product.html*/
/* Product Section */
.products {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.products h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

/* Grid Layout for Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 0 20px;
  max-width: 1200px;
  margin: auto;
}

/* Individual Product Card Styling */
.product-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 20px;
  margin: 10px 0;
}

.product-card p {
  font-size: 14px;
  margin: 4px 0;
}

.product-card .price {
  font-weight: bold;
  color: #d62828;
}

.product-card .btn {
  margin-top: 12px;
  padding: 10px 20px;
  background-color: #d62828;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.product-card .btn:hover {
  background-color: #a30404;
}

/* Header */
.site-header {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 28px;
  font-weight: bold;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 12px;
  transition: background-color 0.3s ease;
  border-radius: 6px;
}

.main-nav a:hover,
.main-nav a.active {
  background-color: #d62828;
}

/* Hamburger for Mobile */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .main-nav {
    display: none;
    width: 100%;
  }

  .main-nav ul {
    flex-direction: column;
    background: #111;
    padding: 10px;
    width: 100%;
  }

  .main-nav.active {
    display: block;
  }

  .hamburger {
    display: flex;
  }
}

/* Products Section */
.products {
  padding: 60px 20px;
  background-color: #f5f5f5;
  text-align: center;
}

.products .container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  font-size: 36px;
  margin-bottom: 30px;
  color: #111;
}

/* Search Bar */
.search-bar {
  width: 100%;
  max-width: 500px;
  padding: 12px 15px;
  font-size: 16px;
  margin-bottom: 40px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  transition: border 0.3s;
}

.search-bar:focus {
  border-color: #d62828;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.product-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.product-card h3 {
  margin-top: 15px;
  font-size: 20px;
  color: #222;
}

.product-card p {
  margin: 5px 0;
  font-size: 15px;
  color: #555;
}

.product-card .price {
  font-weight: bold;
  color: #d62828;
}

.product-card .btn {
  margin-top: 10px;
  background-color: #d62828;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-card .btn:hover {
  background-color: #a30404;
}
/*Login button style*/
#login-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;        /* icon size */
  color: #ffffff;              /* icon color */
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 8px 12px;
  border-radius: 8px;
}

#login-btn:hover {
  color: #007bff;           /* modern blue on hover */
  transform: scale(1.2);    /* subtle zoom on hover */
  background-color: rgba(0, 123, 255, 0.1); /* light blue background on hover */
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

/*wishlist */
/* Wishlist icon color */
#wishlist-btn i {
  color: #e63946;  /* example: nice red color */
  font-size: 1.4rem; /* thoda bada bhi kar sakte hain */
  transition: color 0.3s ease;
}

#wishlist-btn:hover i {
  color: #d62828; /* hover pe thoda dark red */
  cursor: pointer;
}

/* registration style*/
/* Reset & base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body.light-mode {
  background: #f5f7fa;
  color: #333;
  transition: background 0.3s ease, color 0.3s ease;
}

body.dark-mode {
  background: #121212;
  color: #e1e1e1;
  transition: background 0.3s ease, color 0.3s ease;
}

.register-container {
  max-width: 400px;
  background: #fff;
  padding: 2.5rem 2rem;
  margin: 4rem auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: background 0.3s ease, color 0.3s ease;
}

body.dark-mode .register-container {
  background: #1f1f1f;
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
  color: #e1e1e1;
}

.register-container h2:first-child {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}

.register-container h2:last-child {
  font-weight: 500;
  color: #666;
  margin-bottom: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  padding: 0.85rem 1rem;
  font-size: 1rem;
  border: 1.8px solid #ccc;
  border-radius: 8px;
  outline-offset: 2px;
  outline-color: #4a90e2;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  background: #fafafa;
  color: #333;
}

body.dark-mode input[type="text"],
body.dark-mode input[type="email"],
body.dark-mode input[type="password"] {
  background: #2a2a2a;
  border-color: #555;
  color: #eee;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #4a90e2;
  background: #fff;
}

.password-field {
  position: relative;
}

.password-field .toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.2rem;
  user-select: none;
  color: #666;
  transition: color 0.3s ease;
}

.password-field .toggle-password:hover {
  color: #4a90e2;
}

button.register-btn {
  padding: 0.95rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  background: #4a90e2;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 5px 12px rgba(74,144,226,0.6);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

button.register-btn:hover {
  background: #357ABD;
  box-shadow: 0 7px 15px rgba(53,122,189,0.7);
}

.error-msg {
  margin-top: 0.5rem;
  color: #e74c3c;
  font-weight: 600;
  font-size: 0.9rem;
  display: none;
}

.theme-toggle {
  margin-top: 1.75rem;
  font-size: 1rem;
  cursor: pointer;
  color: #4a90e2;
  user-select: none;
  transition: color 0.3s ease;
}

.theme-toggle:hover {
  color: #357ABD;
}

.register-footer {
  margin-top: 2rem;
  font-size: 0.95rem;
  color: #666;
}

body.dark-mode .register-footer {
  color: #aaa;
}

.register-footer a {
  color: #4a90e2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.register-footer a:hover {
  color: #357ABD;
}

/* Responsive */
@media (max-width: 480px) {
  .register-container {
    margin: 2rem 1rem;
    padding: 2rem 1.5rem;
  }
}

/*cart style optional*/
.cart-icon {
  margin-left: 15px;
  padding: 8px 12px;
  background-color: #f8f8f8;
  border-radius: 5px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cart-icon:hover {
  background-color: #ddd;
}

/* Style the header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #1a1a1a;
  color: white;
  flex-wrap: wrap;
}

/* Navigation menu */
header nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  padding: 0;
  margin: 0;
}

/* Cart icon alignment */
.cart-icon {
  font-size: 1rem;
  background-color: #ff4747;
  padding: 8px 15px;
  border-radius: 20px;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-icon {
    align-self: flex-end;
    margin-top: 10px;
  }
}

/* About Gallery Section */
.about-gallery {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.about-gallery h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #222;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 10px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* About Intro Section */
.about-intro {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.about-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.about-intro h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #ff4747;
  margin: 10px auto 0;
  border-radius: 2px;
}

.about-intro p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  color: #555;
}
/* Video Section Container */
.about-video {
  padding: 40px 20px;
  background-color: #fafafa;
}

.video-container {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
}

/* Video Box */
.video-box video {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  display: block;
}

/* Video Text Content */
.video-text {
  flex: 1;
  min-width: 280px;
}

/* Heading with Icon */
.video-text h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222;
}

.video-text .icon-play {
  color: #e63946;
  font-size: 2rem;
}

/* Paragraphs */
.video-description p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 10px;
}

/* Features List */
.features-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.features-list li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}

.features-list .icon-check {
  color: #2a9d8f;
  font-size: 1.2rem;
}

/* Explore Button */
.btn-explore {
  display: inline-block;
  background-color: #e63946;
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-explore:hover {
  background-color: #c5303f;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .video-container {
    flex-direction: column;
    gap: 25px;
  }

  .video-box video {
    max-width: 100%;
  }
}
/* Mission & Team Sections Common Styles */
.mission-section,
.team-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Headings */
.mission-section h3,
.team-section h3 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 15px;
  border-left: 5px solid #ff4747; /* red accent */
  padding-left: 12px;
}

/* Paragraphs */
.mission-section p,
.team-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
}
footer {
  background-color: #222;
  color: #eee;
  padding: 40px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-contact,
.footer-social {
  flex: 1 1 300px;
}

.footer-contact h4,
.footer-social h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #ff4747;
}

.footer-contact p {
  margin: 8px 0;
  font-size: 1rem;
}

.footer-contact p i.icon-red {
  color: #ff4747;
  margin-right: 8px;
}

.footer-contact a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ff4747;
}

.footer-social a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.5rem;
  color: #eee;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #ff4747;
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
  }
}
.footer-social a {
  display: inline-block;
  margin-right: 15px;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

/* Individual social icon colors */
.footer-social a[aria-label="Facebook"] {
  color: #1877F2; /* Facebook Blue */
}

.footer-social a[aria-label="Twitter"] {
  color: #1DA1F2; /* Twitter Blue */
}

.footer-social a[aria-label="Instagram"] {
  color: #E1306C; /* Instagram Pink */
}

.footer-social a[aria-label="LinkedIn"] {
  color: #0A66C2; /* LinkedIn Blue */
}

/* On hover, darken each color */
.footer-social a:hover[aria-label="Facebook"] {
  color: #125abd;
}

.footer-social a:hover[aria-label="Twitter"] {
  color: #0d95e8;
}

.footer-social a:hover[aria-label="Instagram"] {
  color: #b12758;
}

.footer-social a:hover[aria-label="LinkedIn"] {
  color: #084c8d;
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f8f9fa;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

header {
  background: #111;
  color: #fff;
  padding: 15px 0;
}
header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 24px;
}
nav ul {
  display: flex;
  list-style: none;
}
nav ul li {
  margin-left: 20px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
nav ul li a.active,
nav ul li a:hover {
  color: #f39c12;
}
.contact-page form {
  display: flex;
  flex-direction: column;
  align-items: center;
}


.contact-page {
  padding: 50px 20px;
  background: #fff;
  border-top: 4px solid #f39c12;
}
.contact-page h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
.contact-page p {
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
}
form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  max-width: 600px;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  resize: vertical;
}


form .btn {
  background-color: #a30202;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}
form .btn:hover {
  background-color: #be0303;
}
.status-message {
  margin-top: 10px;
  font-weight: bold;
  color: green;
}

footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  header .nav {
    flex-direction: column;
    align-items: flex-start;
  }
  nav ul {
    flex-direction: column;
    width: 100%;
  }
  nav ul li {
    margin: 10px 0;
  }
}


/* === Global Reset and Base Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;
}

/* === Header & Navigation === */
header {
  background: #111;
  color: #fff;
  padding: 1rem 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

nav h2 {
  font-size: 1.8rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover,
nav .active {
  color: #f0c040;
}

/* Global Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f4f4f4;
}

/* Header & Footer */
header,
footer {
  background: #111;
  color: white;
  padding: 1rem 2rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

nav a {
  color: white;
  text-decoration: none;
}

nav a.active {
  font-weight: bold;
  text-decoration: underline;
}

footer {
  background: #111;
  color: white;
  padding: 1.2rem 2rem;
  text-align: center;
  font-size: 1rem;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
  position: relative;
  bottom: 0;
  width: 100%;
}


.shop-banner {
  height: 900px; /* Increased height for better full image visibility */
  background-image: url('images/about.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
}

.shop-banner {
  height: 900px;
  background-image: url('images/about.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #000;
  color: #fff;

  display: flex;                /* Flexbox layout */
  flex-direction: column;       /* Arrange items vertically */
  justify-content: center;      /* Center vertically */
  align-items: center;          /* Center horizontally */

  text-align: center;
  padding: 4rem 1rem;
}

.btn.details-btn {
  background-color: #444; /* Darker or different color */
  margin-left: 10px;
  text-decoration: none;
  color: white;
  padding: 8px 14px;
  border-radius: 4px;
  display: inline-block;
}

.btn.details-btn:hover {
  background-color: #222;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.product-icons {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.product-image-wrapper:hover .product-icons {
  opacity: 1;
  pointer-events: auto;
}

.icon-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ccc;
  padding: 6px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.icon-btn:hover {
  background-color: #ff0000;
  color: white;
}
.product-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  cursor: pointer;
}

.product-icons {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.product-image-wrapper:hover .product-icons {
  opacity: 1;
  pointer-events: auto;
}

.icon-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ccc;
  padding: 6px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.icon-btn:hover {
  background-color: #ff0000;
  color: white;
}

footer {
  background-color: #111;
  color: #f1f1f1;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-content,
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 250px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: #fff;
}

.social-icon {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #bbb;
  transition: color 0.3s;
}

.social-icon:hover {
  color: #fff;
}

.footer-copy {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #aaa;
}

.product-detail-container {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  gap: 2rem;
  background: #f9f9f9;
}

.product-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 0 10px #ffffff;
}

.product-info {
  flex: 1;
}

.product-price {
  color: #e60023;
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.product-rating {
  color: gold;
  font-size: 1rem;
}

.product-buttons button {
  margin: 0.5rem 0.5rem 0 0;
  padding: 0.6rem 1rem;
  border: none;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}
.related-products {
  padding: 2rem;
  background-color: #f5f5f5;
  text-align: center;
}

.related-product-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.related-product-list a {
  display: block;
  width: 180px;
  text-decoration: none;
  color: #333;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.related-product-list a:hover {
  transform: translateY(-5px);
}

.related-product-list img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}
.product-rating .star i {
  color: #ccc;
  cursor: pointer;
  font-size: 24px;
  transition: color 0.3s;
}

.product-rating .star.hovered i,
.product-rating .star.selected i {
  color: gold;
}
.product-buttons {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.product-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.add-to-cart-btn {
  background-color: #28a745;
  color: white;
}

.wishlist-btn {
  background-color: #ffc107;
  color: white;
}

.buy-now-btn {
  background-color: #dc3545;
  color: white;
}

.product-buttons button:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .product-detail-container {
    flex-direction: column;
    padding: 10px;
  }
  .product-image img {
    width: 100%;
  }
}
.product-detail-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.product-image img {
  max-width: 100%;
  border-radius: 10px;
}

.product-info {
  flex: 1;
  min-width: 300px;
}

.product-price {
  font-size: 1.5rem;
  color: #e91e63;
  font-weight: bold;
}

.product-rating .star {
  color: gold;
  cursor: pointer;
}

.product-description {
  margin: 1rem 0;
}

.product-buttons button {
  margin-right: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.add-to-cart-btn {
  background-color: #28a745;
  color: white;
}

.wishlist-btn {
  background-color: #ff4081;
  color: white;
}

.buy-now-btn {
  background-color: #ffc107;
  color: white;
}
/* General Styling */
.product-detail-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  justify-content: center;
  align-items: flex-start;
}

.product-image {
  flex: 1 ;
max-width: 500px;
height: auto;
  text-align: center;
  padding-left: 60px; /* 👈 Add this line */
   padding-top: 60px;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.product-info {
  flex: 1 1 300px;
  max-width: 600px;
   padding-left: 60px;
}

.product-price {
  font-size: 1.5rem;
  color: #e91e63;
  font-weight: bold;
  margin: 10px 0;
}

.product-rating .star {
  color: gold;
  font-size: 20px;
  margin-right: 4px;
  cursor: pointer;
}

#rating-value {
  margin-left: 10px;
  font-size: 14px;
  color: #333;
}

.product-description {
  margin: 1rem 0;
  color: #444;
  line-height: 1.6;
}

input[type="number"] {
  width: 80px;
  padding: 5px;
  margin-bottom: 10px;
}

.product-buttons {
  margin: 1rem 0;
}

.product-buttons button {
  margin-right: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.add-to-cart-btn {
  background-color: #28a745;
  color: white;
}

.wishlist-btn {
  background-color: #ff4081;
  color: white;
}

.buy-now-btn {
  background-color: #ffc107;
  color: white;
}

.product-buttons button:hover {
  opacity: 0.85;
}

/* Product Features */
.product-info ul {
  list-style: disc inside;
  padding-left: 0;
  margin-top: 1rem;
}

.product-info h3 {
  margin-top: 2rem;
  font-size: 1.2rem;
}



/* ============================
   🔄 Responsive Adjustments 
   ============================ */

@media (max-width: 768px) {
  .product-detail-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 2rem 2rem 2.5rem; /* 👈 Left padding thoda zyada */
}


  .product-image, .product-info {
    max-width: 100%;
    text-align: center;
  }

  .product-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-buttons button {
    margin: 8px 0;
    width: 100%;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .product-price {
    font-size: 1.3rem;
  }

  .product-rating .star {
    font-size: 18px;
  }

  .product-buttons button {
    font-size: 14px;
    padding: 10px;
  }

  input[type="number"] {
    width: 60px;
  }
}

   /*          
   /* Container Styling */
.Product-detail-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0,0,0,0.1);
  justify-content: center;
  align-items: flex-start;
  margin: 40px auto;
  max-width: 1200px;
}

/* Product Image Styling */
.product-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.product-image img:hover {
  transform: scale(1.05);
}

/* Product Info Styling */
.product-info {
  flex: 1;
  max-width: 600px;
}

.product-info h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: 700;
}

.product-price {
  font-size: 2rem;
  color: #e74c3c;
  margin: 10px 0;
  font-weight: 600;
}





/* Product Description */
.product-description {
  font-size: 1.1rem;
  color: #555;
  margin: 20px 0;
  line-height: 1.6;
}

/* Quantity Section */
.quantity-section {
  margin: 20px 0;
  font-size: 1rem;
}

input[type="number"] {
  width: 80px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

/* Buttons Styling */
.product-buttons {
  margin: 20px 0;
}

.product-buttons button {
  margin: 10px 10px 0 0;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.add-to-cart-btn {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  color: white;
}

.add-to-cart-btn:hover {
  background: linear-gradient(135deg, #19e992, #229954);
}

.wishlist-btn {
  background: linear-gradient(135deg, #e74c3c, #ff6b6b);
  color: white;
}

.wishlist-btn:hover {
  background: linear-gradient(135deg, #c0392b, #ff4d4d);
}

.buy-now-btn {
  background: linear-gradient(135deg, #f82e5a, #f1c40f);
  color: white;
}

.buy-now-btn:hover {
  background: linear-gradient(135deg, #d68910, #f39c12);
}

/* Features List */
.product-info ul {
  margin-top: 20px;
  padding-left: 25px;
  list-style-type: disc;
}

.product-info ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #333;
}

/* Responsive Design */
@media(max-width: 768px) {
  .product-detail-container {
    flex-direction: column;
    align-items: center;
  }

  .product-info {
    max-width: 100%;
  }

  .product-image img {
    max-width: 100%;
  }
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navbar Container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #111;
  padding: 15px 40px;
  position: relative;
  z-index: 100;
}

/* Left Logo */
.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

/* Right Links Container */
.navbar-right {
  display: flex;
  gap: 30px;
  margin-left: 1000px;  /* <-- THIS adds space between logo & links */
}

.navbar-right a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.navbar-right a:hover {
  color: gold;
}

/* Hamburger Menu (hidden on desktop) */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .navbar-right {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #111;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    display: none;
  }

  .navbar-right.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}




.btn {
  background: var(--btn-bg);
  color: var(--btn-text);
  padding: 12px 18px;
  margin: 6px 4px;
  border: none;
  border-radius: 8px;
  font-size: 14.5px;
  cursor: pointer;
  transition: 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
/* HEADER STYLE */
.cart-header {
  background: black;
  color: white;
  text-align: center;
  padding: 1rem;
}

/* MAIN CONTAINER */
.cart-main {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

/* CART CONTAINER */
.cart-container {
  max-width: 1000px;
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 15px rgba(0,0,0,.1);
}

/* TOTAL */
.cart-total {
  font-size: 1.2rem;
  font-weight: bold;
  text-align: right;
  margin-top: 1rem;
}

/* BUTTON */
.checkout-button {
  text-align: right;
  margin: 1rem 0;
}
.checkout-button .btn {
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  background: black;
  color: white;
  text-decoration: none;
}
.checkout-button .btn:hover {
  background: #333;
}
/* ================= FOOTER STYLE ================= */
.main-footer {
  background-color: #111;
  color: #f9f9f9;
  padding: 2rem 1rem;
}
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
}
.footer-column {
  flex: 1 1 250px;
  margin: 1rem 0;
}
.footer-column h3 {
  font-size: 1.25rem;
  color: #ff4d4d;
  margin-bottom: 1rem;
}
.footer-column p,
.footer-column a {
  font-size: 0.95rem;
  color: #f9f9f9;
  text-decoration: none;
}
.footer-column a:hover {
  color: #ff4d4d;
  text-decoration: underline;
}
.footer-column i {
  font-size: 1.5rem;
  margin-right: 15px;
  color: #f9f9f9;
  transition: color 0.3s ease;
}
.footer-column i:hover {
  color: #ff4d4d;
}
.footer-bottom {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid #333;
  margin-top: 1rem;
  font-size: 0.9rem;
}




/* Blog ke andar video ko horizontal aur responsive banaye */
.blog-item video {
    display: block;
    width: 100%;           /* Poore available space le */
    aspect-ratio: 16 / 9;  /* Video ka ratio banaye rakhe */
    border-radius: 8px;    /* Corner thode rounded ho jayein */
    object-fit: cover;     /* Video ko nicely crop aur fit kare */
}
.terms-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  font-size: 15px;
  line-height: 1.4;
}

.terms-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.terms-checkbox label {
  cursor: pointer;
}

.terms-checkbox a {
  color: #007BFF;
  text-decoration: underline;
}
.order-summary {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  flex: 1 1 45%;
}

.order-summary h2 {
  font-size: 22px;
  margin-bottom: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.order-items .item {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

.order-items .item img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.order-items .item-details {
  flex: 1;
}

.order-items .item-details h4 {
  margin: 0;
  font-size: 16px;
}

.order-items .item-details p {
  margin: 4px 0;
  font-size: 14px;
  color: #666;
}

.order-items .item-price {
  font-weight: bold;
}

.price-summary {
  margin-top: 20px;
  font-size: 16px;
}

.price-summary div {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
}

.price-summary .total {
  font-size: 18px;
  font-weight: bold;
  border-top: 1px solid #ccc;
  padding-top: 10px;
}

.price-summary {
  background: #f9fafb;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  margin-top: 1rem;
  font-size: 16px;
}
.price-summary div {
  display: flex;
  justify-content: space-between;
  margin: 6px 0;
}
.total {
  font-size: 18px;
  font-weight: bold;
  border-top: 1px solid #ddd;
  padding-top: 10px;
  margin-top: 10px;
}
.terms-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-top: 15px;
}

.terms-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: green;
}

.price-summary {
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 16px;
}

.price-summary div {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
}
/* style.css for wishlist.html */
/* style.css for wishlist.html */

/* General font */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Card hover effect */
.wishlist-card:hover {
  transform: scale(1.02);
  transition: all 0.3s ease-in-out;
}

/* Green Add to Cart button */
.btn-green {
  background-color: #a80404;
}
.btn-green:hover {
  background-color: #b80505;
}

/* Red Remove button */
.btn-remove {
  color: #11c429;
}
.btn-remove:hover {
  text-decoration: underline;
}

/* Empty message animation */
#emptyMsg {
  animation: fadeIn 0.5s ease-in-out;
}

/* Cart badge animation */
#cartCount {
  animation: pulse 2s infinite;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

