@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

.body-wrapper {
  overflow: hidden;
}

.upper-section-wrapper {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  font-size: 14px;
}

.upper-section-wrapper a {
  color: white;
  text-decoration: none;
}

.fade {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.main-nav-link a {
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

.main-nav-link a sup {
  background-color: #ee2525;
  padding: 5px 8px;
  color: white;
  border-radius: 50%;
}

.main-nav-bar-wrapper {
  border-bottom: 1px solid rgb(241, 240, 240);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 10000;
}

.logo img {
  max-width: 150px;
  height: auto;
}

#navbar {
  background-color: white;
  position: fixed; /* Make it stick/fixed */
  top: -200px; /* Hide the navbar 50 px outside of the top view */
  width: 100%; /* Full width */
  transition: top 0.3s; /* Transition effect when sliding down (and up) */
  z-index: 10000;
}

/* Style the navbar links */
#navbar a {
  float: left;
  display: block;
  text-align: center;
  text-decoration: none;
}

.carosal-section-wrapper {
  position: relative;
}

.slide {
  position: relative;
}

.slide img {
  width: 100%;
  object-fit: cover;
  height: 70vh;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 16%;
  transform: translateY(-50%);
  color: #ffffff;
}

.slide-content h2 {
  font-size: 55px;
  font-weight: bold;
}

.slide-content p {
  font-size: 18px;
  margin: 10px 0;
}

.vally-btn {
  border: none;
  background-color: #eb2929;
  color: white;
  padding: 12px 25px;
}

.vally-btn:hover {
  border: none;
  background-color: #000000;
  color: white;
  padding: 12px 25px;
}

@media (max-width: 768px) {
  .slide img {
    height: 60vh;
    object-fit: cover;
    object-position: right center; /* 👈 key line */
  }
}

@media (max-width: 768px) {
  .slide-content {
    left: 5%; /* move closer to edge */
    right: 5%;
    top: 60%; /* slightly lower */
    transform: translateY(-50%);
    max-width: 90%;
  }

  .slide-content h2 {
    font-size: 28px; /* reduced */
    line-height: 1.2;
  }

  .slide-content p {
    font-size: 14px;
  }

  .vally-btn {
    padding: 8px 16px;
    font-size: 14px;
  }

  .vally-btn:hover {
    border: none;
    background-color: #000000;
    color: white;
    padding: 8px 16px;
  }
}

/* Hide desktop nav on mobile */
@media (max-width: 768px) {
  .main-nav-bar-wrapper {
    display: none;
  }
}

/* Badge styling */
.badge-count {
  font-size: 10px;
  background: red;
  color: #fff;
  border-radius: 50%;
  padding: 2px 5px;
  position: absolute;
  top: -5px;
  right: -5px;
}

/* Mobile links */
.mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 18px;
  color: #000;
  text-decoration: none;
}

.mobile-link:hover {
  color: #eb2929;
}

.mobi-logo {
  position: absolute;
  z-index: 1000;
  top: 0;
}

.mobil-menu-icon i {
  color: black;
}

.mobile-nav a {
  text-decoration: none;
  color: #000;
}

.mobile-nav a sup {
  background-color: #ee2525;
  padding: 5px 8px;
  color: white;
  border-radius: 50%;
}

.offcanvas-body ul li a {
  font-weight: 600;
}

.main-nav-link a:hover {
  color: red;
}

.offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-close {
  padding-right: 20px;
  width: 30px;
  height: 30px;
  position: relative;
  border: none;
  background: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.custom-close span {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #000;
  left: 0;
  top: 50%;
  transition: all 0.3s ease;
}

/* X shape */
.custom-close span:nth-child(1) {
  transform: rotate(45deg);
}

.custom-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.custom-close:hover {
  transform: rotate(90deg) scale(1.1);
}

.custom-close:hover span {
  background: #eb2929; /* brand color */
}

.custom-close.clicked {
  transform: scale(0.8) rotate(180deg);
  opacity: 0.6;
}

.service-content p {
  font-size: small;
  color: grey;
}

.header h5 {
  font-weight: 600;
}

.header p {
  color: grey;
  font-size: 15px;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 9999;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-box {
  position: relative;
  width: 60%;
  max-width: 600px;
}

.search-box input {
  width: 100%;
  padding: 15px 60px 15px 20px;
  font-size: 20px;
  border: none;
  outline: none;
  border-radius: 50px;
}

/* 🔍 Submit button inside input */
.search-submit {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: #df0e0e;
  border: none;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.search-submit:hover {
  background: #333;
}

/* ❌ Close button */
.close-btn {
  position: absolute;
  top: -60px;
  right: 0;
  background: none;
  border: none;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.product-card-details p {
  font-weight: 500;
  color: rgb(238, 59, 59);
  font-size: medium;
}

.product-card-price p {
  font-weight: 500;
}

.sizes-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;

  transition: all 0.25s ease;
}

.sizes-box a {
  text-decoration: none;
  color: #3b3b3b;
  font-size: 13px;
  font-weight: 500;
}

/* Active / Selected */
.sizes-box:hover {
  background: #000;
  border-color: #000;
  color: white;
}

/* Optional: smooth click feel */
.sizes-box:active {
  transform: scale(0.95);
}

.product-card-wrapper {
  border: 1px solid rgb(255, 255, 255);
}

.sizes-box:hover a {
  color: #ffffff;
}

.product-image img {
  transition: all 0.4s ease;
  overflow: hidden;
}

.product-image img:hover {
  transform: scale(1.05);
  filter: brightness(0.9);
}

.product-image {
  overflow: hidden; /* 🔑 keeps zoom inside */
}

.banner-left,
.banner-right {
  position: relative;
}

.banner-left a {
  position: absolute;
  left: 10%;
  top: 50%;
  background-color: #eb2929;
  color: white;
  text-decoration: none;
  padding: 5px 18px;
}

.banner-right a {
  position: absolute;
  right: 10%;
  top: 50%;
  background-color: #eb2929;
  color: white;
  text-decoration: none;
  padding: 5px 18px;
}

.banner-right .p {
  position: absolute;
  top: 35%;
  right: 10%;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  font-size: 15px;
}

.banner-left .p {
  position: absolute;
  top: 35%;
  left: 10%;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  font-size: 15px;
}

.promotion-banner-wrapper {
  position: relative;
}

.promotion-content {
  position: absolute;
  top: 40%;
  left: 25%;
}

.promotion-content h1 {
  font-size: 3vw;
  color: #ffffff;
}

.reviews-wrapper {
  background: #ffffff;
}

.review-card {
  background: #fff;
  padding: 30px;
  margin: 15px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  opacity: 0.6;
  transform: scale(0.9);
  border: 1px solid rgb(226, 226, 226);
}

.slick-center .review-card {
  transform: scale(1.05);
  opacity: 1;
}

.review-card p {
  font-size: 16px;
  color: #555;
}

.review-card h6 {
  margin-top: 15px;
  font-weight: 600;
  color: #111;
}

.review-header h1 {
  font-weight: 600;
}

.reviews-wrapper {
  position: relative;
}

.review-bg {
  position: absolute;
  left: 16%;
  top: -35px;
  z-index: 100000;
}

.review-bg h1 {
  font-size: 80px;
  text-transform: uppercase;
  font-weight: 900;
  color: transparent; /* hides fill */
  -webkit-text-stroke: 1px #dddddd; /* outline color */
}

.review-header {
  z-index: 1000;
}

.star-rating i {
  color: orange;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;

  width: 50px;
  height: 50px;
  border-radius: 50%;

  background: #000;
  color: #fff;
  border: none;

  font-size: 20px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);

  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #333;
}

footer {
  background-color: rgb(214, 28, 42);
  color: white;
}

.ft-sub {
  font-size: medium;
  color: #f8f8f8;
}

.ft-socil-link a i {
  color: #ffffff;
  border: 1px solid white;
  padding: 6px 8px;
  transition: 0.5s ease-in-out;
}

.ft-socil-link-fb a i {
  color: #ffffff;
  border: 1px solid white;
  padding: 6px 10px;
  transition: 0.5s ease-in-out;
}

.ft-socil-link-fb a i:hover {
  background-color: #ffffff;
  color: #000;
}

.ft-socil-link a i:hover {
  background-color: #ffffff;
  color: #000;
}

.footer-header ul li a {
  text-decoration: none;
  color: white;
  transition: 0.2s ease;
}

.footer-header ul li a:hover {
  text-decoration: none;
  color: rgb(14, 13, 13);
}

.news-input {
  border: none;
  padding: 8px;
  max-width: 700px;
}

.sub-btn {
  background-color: #000;
  border: none;
  color: white;
  padding: 8px 12px;
}
/* -----------------------MEDIA---------------------------- */

@media (max-width: 576px) {
  .sizes-box {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .sizes-box a {
    font-size: smaller;
  }

  .product-card-details p {
    font-size: small;
  }

  .product-card-price p {
    font-size: small;
  }

  .product-card-sizes {
    gap: 6px;
  }

  .promotion-content {
    position: absolute;
    top: 30%;
    left: 25%;
  }

  .review-bg {
    display: none;
  }
}

/* -----------------------MEDIA------- END--------------------- */
