/* ====== RESET ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ====== GENERAL LAYOUT ====== */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

/* ====== HEADER ====== */
.header {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  background: #111;
  flex-wrap: wrap;
  margin-top: -10px;
}


.Paypal {
    margin-bottom: -30px;
    width: -10px;
}

.headers{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  flex-wrap: wrap;
  margin-top: 2px;
  height: 1.6rem;
}


.coupon {
    background: radial-gradient(#fff,#ffd6d6);
}


.logo {
  margin-top: 15px;
  font-size: 1rem;
  font-weight: bold;
  color: yellow;
}

h1{
    font-size: 10px;
    text-align: center;
    margin-top: -25px;
    color: red;
    margin-bottom: 10px;
}

li1{
    width: 4.4rem;
    font-size: 0.8rem;
    background: radial-gradient(#fff,#ffd6d6);
    color: black;
    height: 1.5rem;
    margin-top: -12px;
    border-radius: 5px;
    text-align: center;
    font-weight: bolder;
}

li2{
    width: 4.4rem;
    font-size: 1rem;
    background: yellowgreen;
    color: black;
    height: 1.5rem;
    margin-top: -12px;
    border-radius: 5px;
    text-align: center;
    font-weight: bolder;
}

li3{
    width: 5.5rem;
    font-size: 1rem;
    background: goldenrod;
    color: black;
    height: 1.5rem;
    margin-top: -12px;
    border-radius: 5px;
    text-align: center;
    font-weight: bolder;
}

li4{
    width: 3.9rem;
    font-size: 0.9rem;
    background: paleturquoise;
    color: black;
    height: 1.5rem;
    margin-top: -12px;
    border-radius: 5px;
    text-align: center;
    font-weight: bolder;
}


.navbar ul {
  display: flex;
  list-style: none;
  gap: 15px;
}


.navbar ul li {
  text-decoration: none;
  color: #fff;
  font-size: 0.9rem;
  transition: color 0.3s;
  margin-bottom: -10px;
  margin-top: -5px;
}


.navbar ul li a:hover {
  color: #f39c12;
}

/* ====== PRODUCT GRID ====== */
.small-container {
  width: 95%;
  max-width: 1300px;
  margin: auto;
  padding: 20px 0;
}

.title {
  margin: 20px 0;
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}

.row {
  display: grid;
  gap: 1px;
}

/* Mobile: 3 items per row */
.row {
  grid-template-columns: repeat(3, 1fr);
}

/* Desktop: 5 items per row */
@media (min-width: 992px) {
  .row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.col-8 {
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.col-8 img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.col-8:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.col-8 h4 {ol,
  margin: 10px 0 5px;
  font-size: 0.6rem;
}

.col-8 p {
  font-weight: bold;
  color: #27ae60;
  font-size: 0.95rem;
}

/* ====== FOOTER ====== */
footer {
  background: #111;
  color: #fff;
  padding: 25px 20px;
}

footer .box-2,
footer .box,
footer .box-6,
footer .box-3 {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 10px;
}

footer ul li a {
  text-decoration: none;
  color: #bbb;
  transition: color 0.3s;
}

footer ul li a:hover {
  color: #f39c12;
}

.download ul,
.social ul {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.download img,
.social img {
  width: 35px;
  height: 35px;
  display: block;
  margin-bottom: 5px;
}

.box-3 {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 15px;
  border-top: 1px solid #333;
  padding-top: 10px;
}























.search-box h1{
    font-size: 10px;
    text-align: center;
    margin-top: -10px;
    color: black;
}

/* Center container */
.search-container {
  display: flex;
  justify-content: center;  /* horizontal center */
  align-items: center;      /* vertical center */
  min-height: 12vh;        /* full screen height */
  width: 100%;
  background: #fff;      /* optional background */
}

/* Search box styles */
.search-box {
  position: relative;
  width: 90%;       /* responsive width */
  max-width: 400px; /* limit on large screens */
}

#searchInput {
  padding: 12px 16px;
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-size: 16px;
}

#searchResults {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  max-height: 250px;
  overflow-y: auto;
  display: none;
  z-index: 1000;
}

#searchResults a {
  display: block;
  padding: 8px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #eee;
}

#searchResults a:hover {
  background: #f4f4f4;
  }


.location-1{
    text-align: center;
    margin-top: 400px;
    margin-bottom: 400px;
    height: 80px;
    background-color: ;
}

.location-1 button{
    font-size: 80px;
    font-weight: bolder;
}

.location-2{
    text-align: center;
    margin-top: 400px;
    margin-bottom: 20px;
    height: 40px;
}

.location-2 button{
    font-size: 40px;
    font-weight: bolder;
}



    
        #popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border: 1px solid #ccc;
            padding: 20px;
            background-color: white;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        #overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
        }


.small-container h4{
    text-align: center;
}


#popup{
    font-size: 30px;
    width: 500px;
    height: 250px;
}

#menu{
    width: 400px;
    height: 50px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 26px;
  }


 .col-9{
  flex-basis: 5%;
  padding: 10px;
  width: 290px;
  margin-bottom: 50px;
  transition: transform 0.9s;
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  border-radius: 10%;
  font-weight: bold;
  font-size: 15px;
  margin-left: 30px;
  margin-top: 50px;
}
.col-9 img{
  width: 290px;
  border-radius: 10%;
}

.small-containers{
  width: 200px;
  margin: 10px;
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
  margin-top: 5px;
  margin-left: 50px;
}

.col-9 h2{
    text-align: center;
}

.col-9 h1{
    text-align: center;
    font-size: 10px;
}

.registe {
  width: 100px;
  margin: 10px;
  padding-left: 2px;
  padding-right: 5px;
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.1);
  margin-top: 5px;
  margin-left: 80px;
  text-align: center;
}

.col-9 button{
    width: 120px;
    background-color: black;
    color: white;
    border-radius: 10px;
}

.video-container {
      width: 100%; /* Example: Full width of its parent */
      height: 100px; /* Example: Fixed height */
      position: relative; /* Essential for absolute positioning of video */
      overflow: hidden; /* Hides any video content that overflows */
    }
    
        .video-container video {
      width: 100%;
      height: 100%;
      object-fit: cover; /* Scales the video to fill the container, cropping if necessary */
      /* object-fit: contain; // Alternatively, scales to fit entirely within the container, adding letterboxing if aspect ratios differ */
      position: absolute; /* Positions the video relative to its parent container */
      top: 0;
      left: 0;
    }
    video {
        
  }
