* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background: #f0f0f0;
      min-height: 200vh;
      font-size: 15px;
    }

    /* Navbar */
    .navbar {
      position: fixed;
      top: 15px;
      left: 50%;
      transform: translateX(-50%);
      width: 90%;
      background: rgba(158, 129, 129, 0.705);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 20px;
      box-shadow: #000000 10px;
      z-index: 1000;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: clamp(30px, 5vw, 50px);
      margin-right: 10px;
    }

    .logo span {
      font-weight: bold;
      font-size: clamp(16px, 2.5vw, 22px);
      color: #333;
    }

    .nav-links {
      display: flex;
      gap: 20px;
      list-style: none;
    }

    .nav-links li a {
      text-decoration: none;
      color: #333;
      font-weight: 540;
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-links li a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -5px;
      width: 100%;
      height: 2px;
      background: #333;
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .nav-links li a:hover {
      color: #000;
    }

    .nav-links li a:hover::after {
      transform: scaleX(1);
    }

    .profile {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .profile img {
      height: clamp(28px, 4vw, 40px);
      width: clamp(28px, 4vw, 40px);
      border-radius: 50%;
      object-fit: cover;
    }

    .menu-icon, .close-icon {
      font-size: clamp(20px, 4vw, 28px);
      cursor: pointer;
      display: none;
    }

    /* Mobile */
    @media (max-width: 600px) {
      .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 10px;
        overflow: hidden;
        max-height: 0;
        padding: 0; /* no padding when closed */
        visibility: hidden; /* fully hidden when closed */
        transition: max-height 0.5s ease, padding 0.3s ease, visibility 0.3s ease;
      }

      .nav-links.open {
        max-height: 400px;
        padding: 15px 20px; /* restore padding when open */
        visibility: visible;
      }

      .nav-links li {
        opacity: 0;
        transform: translateY(-20px);
      }

      .nav-links.open li {
        animation: popUp 0.4s forwards;
      }

      .nav-links.open li:nth-child(1) { animation-delay: 0.1s; }
      .nav-links.open li:nth-child(2) { animation-delay: 0.2s; }
      .nav-links.open li:nth-child(3) { animation-delay: 0.3s; }
      .nav-links.open li:nth-child(4) { animation-delay: 0.4s; }

      @keyframes popUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .menu-icon {
        display: block;
      }

      .close-icon {
        display: none;
      }

      .menu-open .menu-icon {
        display: none;
      }

      .menu-open .close-icon {
        display: block;
      }

      .nav-links {
        gap: 15px;
      }
    }
    .user-icon {
  background: #d10707;
  color: #000000;
  font-weight: bold;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.dropdown {
  display: none;
  position: absolute;
  right: 0;
  background: #fff;
  min-width: 120px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-radius: 6px;
  z-index: 1;
}

.dropdown a {
  color: #2a5298;
  padding: 10px;
  display: block;
  text-decoration: none;
}

.dropdown a:hover {
  background: #f1f1f1;
}
/* Hero Carousel Base */
.carousel {
  position: relative;
  width: 100%;
  margin-top: 8rem;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  z-index: 1; /* keep content above background */
  background-color: rgba(0,0,0,0.4); /* subtle overlay */
  backdrop-filter: blur(2px);        /* modern glassy feel */
}

/* Fixed background layer */
.carousel::before {
  content: "";
  position: fixed; /* stays still during scroll */
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* full viewport height */
  background: url('img/background.jpg') center/cover no-repeat;
  z-index: -1; /* behind everything */
}


/* Slides */
.slides {
  display: flex;
}

.slide {
  min-width: 100%;
  display: none;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.8s ease;
  position: relative;
}

.slide.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

/* Slide Images refined */
.slide img {
  width: 100%;
  height: clamp(250px, 60vh, 650px);
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  opacity: 0;
  transform: scale(1.05);
  transition: all 1s ease;
}

[loading="lazy"] {
  opacity: 0;
}

[loading="lazy"].loaded {
  opacity: 1;
}

.slide.active img {
  opacity: 1;
  transform: scale(1);
}

/* Caption Styling with Fade-up */
.caption {
  position: absolute;
  bottom: 80px;
  left: 40px;
  color: #fff;
  max-width: 50%;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.caption.visible {
  opacity: 1;
  transform: translateY(0);
}

.caption h2 {
  font-size: clamp(20px, 4vw, 40px);
  line-height: 1.2;
  margin-bottom: 10px;
}

.caption p {
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.4;
  margin-bottom: 15px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.cta-btn {
  padding: 10px 20px;
  border-radius: 25px;
  font-size: clamp(12px, 2vw, 16px);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn {
  background: red;
  color: #fff;
  border: none;
}

.cta-btn:hover {
  background: darkred;
}

.cta-btn.outline {
  background: transparent;
  color: red;
  border: 2px solid red;
}

.cta-btn.outline:hover {
  background: rgba(255,0,0,0.1);
}

/* Dots Navigation */
.dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dots span {
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.dots span.active {
  background: red;
  transform: scale(1.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .caption {
    position: static;
    max-width: 100%;
    text-align: center;
    padding: 1rem;
    margin-bottom: 40px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
  }
  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .dots {
    bottom: 10px;
  }
}



/* Infor sextion */
.info-section {
  position: relative;
  width: 100%;
  padding: 4rem 2rem;
  background: url('img/background.jpg') center/cover no-repeat;
  color: #333;
  overflow: hidden;
}

.info-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.85);
  z-index: 1;
}

.info-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.info-content h2 {
  font-size: clamp(28px, 5vw, 42px);
  margin-bottom: 1rem;
  font-weight: bold;
}
.info-content h2 .red { color: red; }
.info-content h2 .black { color: black; }

.info-content p {
  font-size: clamp(18px, 2.5vw, 22px);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.info-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Fade-up reveal effect */
.info-images img {
  width: clamp(80px, 15vw, 140px);
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.info-images img.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .info-section { padding: 3rem 1rem; }
  .info-content h2 { font-size: clamp(24px, 7vw, 34px); }
  .info-content p { font-size: clamp(16px, 5vw, 20px); }
  .info-images { gap: 15px; }
  .info-images img { width: clamp(90px, 25vw, 120px); }
}

/* adverts section */
.adverts-section {
  position: relative;
  width: 100%;
  padding: 4rem 2rem;
  background: url('img/background.jpg') center/cover no-repeat;
  color: #333;
  overflow: hidden;
  
}
.adverts-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.85);
  z-index: 1;
}
.adverts-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.adverts-content h2 {
  font-size: clamp(28px, 5vw, 42px);
  margin-bottom: 1rem;
  font-weight: bold;
}
.adverts-content h2 .red { color: red; }
.adverts-content h2 .black { color: black; }
.adverts-content p {
  font-size: clamp(16px, 2.5vw, 20px);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.adverts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.advert-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.advert-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.advert-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.advert-desc {
  padding: 1rem;
  font-size: 15px;
  color: #444;
}
.advert-date {
  padding: 0 1rem 1rem;
  font-size: 13px;
  color: #888;
}

/* Responsive for max-width 600px */
@media (max-width: 600px) {
  .adverts-section { padding: 3rem 1rem; }
  .adverts-content h2 { font-size: clamp(26px, 7vw, 34px); }
  .adverts-content p { font-size: clamp(15px, 5vw, 18px); }
  .advert-card img { height: 150px; }
  .advert-desc { font-size: 14px; }
}


.contact-section {
  position: relative;
  width: 100%;
  padding: 4rem 2rem;
  background: url('img/contact-bg.jpg') center/cover no-repeat;
  color: #333;
  overflow: hidden;
}
.contact-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.85);
  z-index: 1;
}
.contact-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.contact-content h2 {
  font-size: clamp(28px, 5vw, 42px);
  margin-bottom: 1rem;
  font-weight: bold;
}
.contact-content h2 .red { color: red; }
.contact-content h2 .black { color: black; }
.contact-content p {
  font-size: clamp(16px, 2.5vw, 20px);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 2rem;
}
.info-item {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.info-item i {
  font-size: 28px;
  color: red;
  margin-bottom: 10px;
}
.info-item h3 {
  margin-bottom: 0.5rem;
  font-size: 18px;
  color: #000;
}
.info-item p {
  font-size: 15px;
  color: #444;
}
.cta {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.cta-btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-size: clamp(14px, 2.5vw, 18px);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cta-btn {
  background: red;
  color: #fff;
  border: none;
}
.cta-btn:hover { background: darkred; }
.cta-btn.outline {
  background: transparent;
  color: red;
  border: 2px solid red;
}
.cta-btn.outline:hover { background: rgba(255,0,0,0.1); }

/* Responsive for max-width 600px */
@media (max-width: 600px) {
  .contact-section { padding: 3rem 1rem; }
  .contact-content h2 { font-size: clamp(26px, 7vw, 36px); }
  .contact-content p { font-size: clamp(15px, 5vw, 18px); }
  .contact-info { grid-template-columns: 1fr; }
  .cta { flex-direction: column; }
  .cta-btn { width: 100%; text-align: center; }
}

.site-footer {
  background: #080808;
  color: #ddd;
  padding: 3rem 2rem 1rem;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.footer-block {
  flex: 1 1 220px;
}

.footer-block h3 {
  color: #d10707;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-block ul {
  list-style: none;
  padding: 0;
}

.footer-block ul li {
  margin-bottom: 0.5rem;
}

.footer-block ul li a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-block ul li a:hover {
  color: #d10707;
}

.footer-block p {
  margin: 0.5rem 0;
}

.footer-block i {
  margin-right: 0.5rem;
  color: #d10707;
}

.developer a {
  color: #d10707;
  font-weight: 600;
  text-decoration: none;
}

.developer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

/* shop section */

.shop-welcome {
  background: url('img/info.png') center/cover no-repeat;
  position: relative;
  min-height: 40vh; /* flexible height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 20px;
  margin: 6rem auto 2rem; /* spacing top & bottom */
  max-width: 1200px; /* prevent overflow into other sections */
  overflow: hidden; /* contain content */
}

.welcome-overlay {
  background: rgba(19, 18, 18, 0.6); /* dark overlay for readability */
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  max-width: 800px;
  width: 90%; /* responsive width */
}

.welcome-content h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.welcome-content h1 .highlight {
  color: #d10707; /* red accent */
}

.welcome-content p {
  font-size: clamp(1rem, 3vw, 1.3rem);
  line-height: 1.6;
  font-weight: 300;
  margin: 0 auto;
  max-width: 700px;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .shop-welcome {
    min-height: 50vh; /* taller for mobile */
    margin-top: 4rem;
    border-radius: 0; /* full width look */
  }

  .welcome-overlay {
    padding: 1.5rem;
    width: 95%;
  }

  .welcome-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .welcome-content p {
    font-size: clamp(0.95rem, 4.5vw, 1.1rem);
    line-height: 1.5;
  }
}
/* Services Section with Parallax */
.services-section {
  position: relative;
  width: 100%;
  padding: 4rem 2rem;
  color: #333;
  overflow: hidden;

  /* Parallax background effect */
  background-image: url('img/services-bg.jpg');
  background-attachment: fixed;   /* keeps background still */
  background-position: center;
  background-size: cover;
}

.services-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.85);
  z-index: 1;
}

.services-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-content h2 {
  font-size: clamp(28px, 5vw, 42px);
  margin-bottom: 1rem;
  font-weight: bold;
}
.services-content h2 .red { color: red; }
.services-content h2 .black { color: black; }

.services-content p {
  font-size: clamp(16px, 2.5vw, 20px);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
}
.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.service-card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 20px;
  color: red;
}
.service-card p {
  font-size: 15px;
  color: #444;
  padding: 0 1rem 1.5rem;
}


/* shop section */

.shop-welcome {
  background: url('img/info.png') center/cover no-repeat;
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 20px;
  margin: 6rem auto 2rem;
  max-width: 1200px;
  overflow: hidden;
}
.welcome-overlay {
  background: rgba(19, 18, 18, 0.6);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  max-width: 800px;
  width: 90%;
}
.welcome-content h1 {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.welcome-content h1 .highlight { color: #d10707; }

.search-form button {
  padding: 10px 18px;
  margin-left: 10px;
  border-radius: 25px;
  border: none;
  background: red;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
}


.search-form {
  margin-top: 15px;
  position: relative;
}
.search-form input {
  padding: 10px;
  width: 250px;
  border-radius: 25px;
  border: 1px solid #ccc;
  outline: none;
}
#suggestions {
  position: absolute;
  top: 45px;
  left: 0;
  width: 250px;
  background: #fff;
  color: #333;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  display: none;
  z-index: 10;
}
#suggestions div {
  padding: 8px;
  cursor: pointer;
}
#suggestions div:hover { background: #f0f0f0; }


.search-form button:hover { background: darkred; }


/* Responsive */
@media (max-width: 600px) {
  .shop-welcome { min-height: 50vh; margin-top: 4rem; border-radius: 0; }
  .search-form input { width: 180px; }
  #suggestions { width: 180px; }
}

 .products-section {
  position: relative;
  width: 100%;
  padding: 4rem 2rem;
  background: url('img/products-bg.jpg') center/cover no-repeat;
  color: #333;
  overflow: hidden;
  

}
.products-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.85);
  z-index: 1;
}
.products-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.products-content h2 {
  font-size: clamp(28px, 5vw, 42px);
  margin-bottom: 1rem;
  font-weight: bold;
}
.products-content h2 .red { color: red; }
.products-content h2 .black { color: black; }
.products-content p {
  font-size: clamp(16px, 2.5vw, 20px);
  margin-bottom: 2rem;
  line-height: 1.6;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 2rem;
  margin-bottom: 4rem; /* extra spacing at the bottom */
}

.products-section {
  position: relative;
  width: 100%;
  padding: 4rem 2rem;
  margin-top: 2rem;
  margin-bottom: 3rem; /* ensures section doesn’t collide with next one */
  background: url('img/products-bg.jpg') center/cover no-repeat;
  color: #333;
  overflow: hidden;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: left;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.product-info {
  padding: 1rem;
}
.product-info h3 {
  margin-bottom: 0.5rem;
  font-size: 18px;
  color: red;
}
.product-info p {
  font-size: 14px;
  color: #444;
  line-height: 1.4;
}

/* Responsive for max-width 600px */
@media (max-width: 600px) {
  .products-section { padding: 3rem 1rem; }
  .products-content h2 { font-size: clamp(26px, 7vw, 36px); }
  .products-content p { font-size: clamp(15px, 5vw, 18px); }
  .product-card img { height: 160px; }
  .product-info h3 { font-size: 16px; }
  .product-info p { font-size: 13px; }
}