/* RESET (only if not already added globally) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CONTAINER */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* GLASS HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.85); /* stronger */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* GLOBAL BUTTON FIX */
.btn-primary {
  background: linear-gradient(135deg, #e63946, #c82333);
  color: #fff !important;
  text-decoration: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-weight: 600;
  display: inline-block;
  border: none;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 20px; /* ADDED */
}

/* LOGO */
.logo img {
  height: 65px;
  display: block; /* ADDED */
}

/* MENU */
.nav-menu {
  display: flex;
  gap: 35px;
  justify-content: center;
  flex: 1;
}

/* LINKS */
.nav-link {
  position: relative;
  text-decoration: none;
  color: #222;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;

  padding: 8px 14px;
  border-radius: 30px; /* pill shape */
}

/* UNDERLINE EFFECT */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #e63946, #ff6b6b);
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #e63946;
  background: rgba(230,57,70,0.08);
  box-shadow: 0 4px 12px rgba(230,57,70,0.15);
}
/* ACTIVE */
.nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, #e63946, #c82333);
  box-shadow: 0 6px 18px rgba(230,57,70,0.3);
}

.nav-link.active::after {
  width: 100%;
}

/* CTA BUTTON (GLASS STYLE) */
.nav-cta {
  display: flex;
  align-items: center; /* ADDED */
}

.nav-cta .btn-primary {
  background: linear-gradient(135deg, #ff4d5a, #c82333);
  color: #fff !important;
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 600;

  box-shadow: 0 10px 25px rgba(230,57,70,0.35);
  transition: 0.3s;
}

.nav-cta .btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 15px 35px rgba(230,57,70,0.45);
}

/* TOP ACCENT LINE */
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #ff4d5a, #ff8a5c, #ff4d5a);
}

.hero {
  background: 
    linear-gradient(135deg, rgba(230,57,70,0.85), rgba(0,0,0,0.75)),
    url('../images/hero.jpg') center/cover no-repeat;

  padding: 100px 0;
  color: #fff;
}
.hero-left h1,
.hero-left p {
  color: #fff;
}
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #e63946;
}

/* WRAPPER */
.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT CONTENT */
.hero-left {
  flex: 1;
}

.hero-left img {
  height: 50px;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: 42px;
  line-height: 1.3;
  color: #111;
  margin-bottom: 15px;
}

.hero-left p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

/* BUTTON GROUP */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* OUTLINE BUTTON */
.btn-outline {
  border: 2px solid #e63946;
  color: #e63946;
  padding: 10px 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #e63946;
  color: #fff;
}

/* SEARCH CARD */
.search-card {
  flex: 1;
  max-width: 400px;
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.search-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  color: #222;
}

/* FORM */
.search-card form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-card select,
.search-card button {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  font-size: 14px;
}

.search-card select {
  border: 1px solid #ddd;
}
/* HIDE HAMBURGER ON DESKTOP */
.menu-toggle {
  display: none;
}
/* MOBILE */
@media (max-width: 768px) {

  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: block;
    font-size: 24px;
    cursor: pointer;
  }

  .nav-menu {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);

    width: 90%;
    max-width: 320px;

    flex-direction: column;
    gap: 12px;

    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(12px);

    padding: 20px;
    border-radius: 16px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.2);

    display: none; /* 🔥 IMPORTANT */
    z-index: 9999;
  }

  .nav-menu.active {
    display: flex; /* 🔥 SHOW ONLY WHEN CLICKED */
  }

  .nav-link {
    display: block;
    text-align: center;
    padding: 10px;
  }

  .nav-cta {
    display: none;
  }
}
/* TRUST SECTION */
.trust-section {
  background: #111;
  padding: 50px 0;
  color: #fff;
}

/* GRID */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.trust-card {
  display: flex;
  align-items: center;
  gap: 15px;

  background: #fff; /* changed from black */
  padding: 20px;
  border-radius: 12px;

  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.trust-card h3 {
  color: #111;
  font-size: 20px;
  margin: 0;
}

.trust-card p {
  color: #666;
  margin: 0;
  font-size: 14px;
}
/* ICON */
.trust-icon {
  width: 45px;
  height: 45px;
  background: #e63946;
  color: #fff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
}

/* TEXT */
.trust-text h3 {
  font-size: 22px;
  margin-bottom: 3px;
}

.trust-text p {
  font-size: 14px;
  color: #ccc;
}

/* MOBILE */
@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
}
.trust-card {
  background: linear-gradient(135deg, #fff, #fff5f5);
}
/* SECTION BASE */
.section {
  padding: 70px 0;
}

/* TITLE */
.section-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 40px;
  color: #111;
}

/* GRID */
.inventory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.inventory-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.inventory-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.inventory-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTENT */
.inventory-content {
  padding: 20px;
}

/* TOP ROW */
.inv-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.inv-top h3 {
  font-size: 16px;
  color: #222;
}

/* BADGE */
.badge {
  background: #e63946;
  color: #fff;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* TEXT */
.inventory-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

/* BUTTON */
.inventory-content .btn-primary {
  display: inline-block;
  margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .inventory-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .inventory-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 22px;
  }
}
/* PRODUCTS SECTION */
.products-section {
  background: #f9f9f9;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* CONTENT */
.product-content {
  padding: 20px;
  text-align: center;
}

.product-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
}

.product-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

/* BUTTON */
.product-content .btn-primary {
  display: inline-block;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
/* BRANDS SECTION */
.brands-section {
  background: #111;
  color: #fff;
}

/* LIGHT TITLE */
.section-title.light {
  color: #fff;
}

/* GRID */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
  align-items: center;
  margin-top: 30px;
}

/* ITEM */
.brand-item {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.brand-item:hover {
  background: #222;
  transform: translateY(-3px);
}

/* IMAGE */
.brand-item img {
  max-width: 100%;
  max-height: 40px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s;
}

.brand-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* WHY SECTION */
.why-section {
  background: #f9f9f9;
}

/* GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.why-card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
}

/* ICON */
.why-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: #e63946;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* TEXT */
.why-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #111;
}

.why-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
/* REVIEWS SECTION */
.reviews-section {
  background: #fff;
}

/* GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.review-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
}

/* TOP AREA */
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

/* AVATAR */
.review-avatar {
  width: 45px;
  height: 45px;
  background: #e63946;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* NAME */
.review-top h4 {
  font-size: 16px;
  margin-bottom: 2px;
  color: #111;
}

/* STARS */
.stars {
  color: #f4c150;
  font-size: 14px;
}

/* TEXT */
.review-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}
/* CTA SECTION */
.cta {
  background: linear-gradient(135deg, #e63946, #c82333);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
}

/* TEXT */
.cta h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.cta p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #f1f1f1;
}

/* BUTTON GROUP */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTON OVERRIDE (for contrast) */
.cta .btn-outline {
  border-color: #fff;
  color: #fff;
}

.cta .btn-outline:hover {
  background: #fff;
  color: #e63946;
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .cta h2 {
    font-size: 24px;
  }

  .cta p {
    font-size: 14px;
  }
}
/* FAQ SECTION */
.faq-section {
  background: #f9f9f9;
}

/* BOX */
.faq-box {
  max-width: 800px;
  margin: 0 auto;
}

/* ITEM */
.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* QUESTION */
.faq-question {
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* TOGGLE ICON */
.faq-toggle {
  font-size: 18px;
  color: #e63946;
}

/* ANSWER */
.faq-answer {
  padding: 0 20px;
  font-size: 14px;
  color: #555;
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  padding: 15px 20px;
  max-height: 200px;
}

.faq-item.active .faq-toggle {
  content: "-";
}
/* FOOTER */
.footer {
  background: #111;
  color: #ccc;
  padding-top: 60px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  padding-bottom: 40px;
}

/* LOGO */
.footer-logo {
  height: 70px;
  margin-bottom: 8px;
}

/* COLUMN */
.footer-col h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

/* LINKS */
.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #e63946;
}

/* SOCIAL */
.footer-social {
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid #222;
}

.footer-social a {
  margin: 0 10px;
  text-decoration: none;
  color: #ccc;
  font-size: 14px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #e63946;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  padding: 15px 0;
  border-top: 1px solid #222;
  font-size: 13px;
  color: #888;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 15px;
  }
}
/* ABOUT HERO */
.about-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('../images/hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.about-hero h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.about-hero p {
  font-size: 16px;
  color: #ddd;
}

/* ABOUT GRID */
.about-grid {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
  }
}

/* BRANDS PAGE GRID */
.brands-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.brand-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.brand-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.brand-card img {
  max-height: 50px;
  margin-bottom: 15px;
  object-fit: contain;
}

/* TITLE */
.brand-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #111;
}

/* TEXT */
.brand-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .brands-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .brands-page-grid {
    grid-template-columns: 1fr;
  }
}
.brand-item img,
.brand-card img {
  max-height: 50px;
  object-fit: contain;
  filter: none; /* remove grayscale if applied */
}
/* CONTACT GRID */
.contact-grid {
  display: flex;
  gap: 40px;
}

/* FORM */
.contact-form {
  flex: 1;
}

.contact-form h2 {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

.contact-form textarea {
  height: 120px;
}

/* SUCCESS */
.success-msg {
  color: green;
  margin-bottom: 10px;
}

/* INFO */
.contact-info {
  flex: 1;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-grid {
    flex-direction: column;
  }
}
/* LEGAL PAGES */
.legal-content {
  max-width: 800px;
  margin: auto;
}

.legal-content h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 20px;
  color: #111;
}

.legal-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}