/* ===========================
   Base Responsive Settings
   =========================== */

/* Mobile Small (300px and up) */
@media (min-width: 300px) {
    .bs-slider .item {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  height: 132px;
}

  .product .item .photo {
      height: 170px;
  }

  .col-md-4 {
      width: 45%;
      float: left;
  }

  .col-md-3 {
      width: 20%;
      float: left;
      padding-left: 0%;
      padding-right: 0%;
  }

  .col-md-9 {
      width: 100%;
      float: left;
      padding-left: 7%;
      padding-right: 0%;
  }

  ul.bxslider li,
  ul.bxslider li .text {
      height: 250px;
  }

  .bx-controls a.bx-prev,
  .bx-controls a.bx-next {
      font-size: 30px;
      padding-top: 100px !important;
  }

  ul.bxslider li .text .inner h2 {
      font-size: 24px;
  }

  ul.bxslider li .text .inner h3 {
      font-size: 16px;
  }

   ul.prod-slider li {
    height: 360px;
    
  }
  .prod-pager-thumb {
    width: 100px;
    height: 100px;
    border-radius: 12px;
  }
  #prod-pager {
    gap: 8px;
  }
}


@media (min-width: 375px) {
        .bs-slider .item {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  height: 140px;
}
}


/* Slightly Larger Mobile (400px and up) */
@media (min-width: 400px) {
    
      .bs-slider .item {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  height: 148px;
}
  .product .item .photo {
      height: 185px;
  }
}

@media (min-width: 420px) {
        .bs-slider .item {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  height: 154px;
}
}



/* Tablets & Small Devices (576px and up) */
@media (min-width: 576px) {
    
      .bs-slider .item {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  height: 208px;
}

  .product .item .photo {
      height: 245px;
  }

  .product .item {
      min-width: 250px;
  }

  ul.bxslider li,
  ul.bxslider li .text {
      height: 300px;
  }

  .bx-controls a.bx-prev,
  .bx-controls a.bx-next {
      font-size: 36px;
      padding-top: 120px !important;
  }

  ul.bxslider li .text .inner h2 {
      font-size: 30px;
  }

  ul.bxslider li .text .inner h3 {
      font-size: 20px;
  }

  ul.prod-slider li {
    height: 380px;
  }
  .prod-pager-thumb {
    width: 100px;
    height: 100px;
    border-radius: 14px;
  }
  #prod-pager {
    gap: 9px;
  }
}


/* ===========================
   ✅ Mobile & Tablet Header Fix (Your Addition)
   =========================== */
@media (max-width: 991px) {

  .header .inner {
      flex-direction: column;
      align-items: stretch;
  }

  .header .inner .top-row {
      display: flex;
      width: 100%;
  }

  .row .right-mobile-menu ul {
      list-style: none;
      display: flex;
      gap: 12px;
      align-items: center;
      margin: 0;
      padding: 0;
  }

  .row .right-mobile-menu ul li a {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      padding: 8px 12px;
      background: rgb(255, 45, 116);
      border-radius: 8px;
      color: #fff;
      font-weight: 600;
      transition: transform 0.2s;
  }

  .row .right-mobile-menu ul li a:hover {
      transform: translateY(-2px);
  }

  .header .inner .right {
      display: none;
  }

  .header .logo {
      display: flex;
      align-items: center;
      gap: 5px;
      flex: 0.7;
  }

  .header .search-area input {
      height: 22px;
      border-radius: 8px;
      border: 1px solid #ccc;
      padding: 0 10px;
      width: 100%;
      max-width: 300px;
  }

  .header .search-area button {
      background: #e91e63;
      border: none;
      padding: 1px 8px;
      border-radius: 8px;
      color: white;
      font-weight: 600;
      cursor: pointer;
  }

  .header .logo h1 {
      margin: 0;
      font-size: 10px;
      white-space: nowrap;
  }

  .top-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: nowrap;
      width: 100%;
  }

  .top-row .logo img {
      height: 60px;
  }

  .top-row .search-area {
      flex-grow: 1;
      margin-top: 0px;
      margin-left: 12%;
  }

  .top-row .search-area input {
      width: 100%;
  }

  .row .right-mobile-menu {
      float: right;
      margin-top: 8px;
      display: block !important;
  }

  .row .mobile-right {
      float: left;
  }

  .row .right-mobile-menu ul {
      flex-wrap: wrap;
      justify-content: center;
  }

    /* ===== MOBILE MENU BASE ===== */
.menu-container {
  position: relative;
  top: 0;
  left: 0;
  z-index: 9999;
}

/* Sidebar style */
.menu-top {
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #fff;
  padding: 20px 0;
  overflow-y: auto;
  box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2);
}

/* Slide in when active */
.menu-top.show {
  transform: translateX(0);
}

/* ===== HAMBURGER BUTTON ===== */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  width: 30px;
  height: 25px;
  z-index: 10000;
}



/* ===== CLOSE BUTTON ===== */
#mobileCloseButton {
  background: none;
  border: none;
  font-size: 2em;
  color: #ff2d74;
  cursor: pointer;
  line-height: 1;
}

/* ===== MENU ITEMS ===== */
.menu-top li {
  width: 100%;
  border-bottom: 1px solid #eee;
}

.menu-top li a.cat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 15px;
  color: #000;
  background: transparent;
  text-decoration: none;
}

/* ===== SUBMENU ===== */
.menu-top li ul {
  display: none;
  padding: 5px 0;
  background: #f9f9f9;
  border-radius: 10px;
}

.menu-top li.active > ul {
  display: block;
}

.menu-top li ul li a {
  padding: 10px 28px;
  color: #333;
}

/* ===== + / - Toggle Button ===== */
.mobile-submenu-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #ff2d74;
  background: #f2f2f2;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
}


  
}


/* ===========================
   Desktop & Larger
   =========================== */

/* Medium Desktops (768px and up) */
@media (min-width: 768px) {
    
      .bs-slider .item {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  height: 291px;
}

  .service .item {
      margin-bottom: 0;
  }

  .service .col-md-4 {
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
  }

  .product .item .photo {
      height: 245px;
  }

  .product .item .text h3 {
      font-size: 18px;
  }

  .headline {
      text-align: left;
  }

  .col-md-4 {
      width: 30%;
      float: left;
  }

  .col-md-3 {
      width: 25%;
      float: left;
      padding-left: 0%;
      padding-right: 0%;
  }

  .col-md-9 {
      width: 75%;
      float: left;
  }

  ul.prod-slider li {
    height: 760px;
  }
  .prod-pager-thumb {
    width: 100px;
    height: 100px;
    border-radius: 16px;
  }
  #prod-pager {
    gap: 10px;
  }

  .gal-container .modal-dialog {
    width: 55%;
    margin: 50 auto;
  }
  .gal-container .modal-content {
    height: 250px;
  }
}



@media (min-width: 900px) {
        .bs-slider .item {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  height: 330px;
}
}


/* Large Desktops (991px and up) */
@media (min-width: 991px) {
    
      .bs-slider .item {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  height: 368px;
}

  .product .item {
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .product .item .photo {
      height: 280px;
  }

  .col-md-4 {
      width: 30%;
  }

  .header .inner {
      width: 100%;
  }

  .header .search-area {
      padding-right: 0;
  }

  .header .search-area form {
      padding-right: 0;
  }

  .header .container {
      padding-right: 0;
  }

   ul.prod-slider li {
    height: 480px;
  }
  .prod-pager-thumb {
    width: 115px;
    height: 115px;
    border-radius: 14px;
  }
}


/* Extra Large Devices (1200px and up) */
@media (min-width: 1200px) {
    
    
      .bs-slider .item {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  height: 458px;
}
  .product .item .photo {
      height: 280px;
  }

  ul.prod-slider li {
    height: 465px;
  }
  .prod-pager-thumb {
    width: 180px;
    height: 180px;
    border-radius: 16px;
  }
}


/* Extra Large Devices (1200px and up) */
@media (min-width: 1320px) {
    
    
      .bs-slider .item {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  height: 484px;
}
  
}

/* Extra Extra Large Devices (1400px and up) */
@media (min-width: 1400px) {
    
      .bs-slider .item {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  height: 536px;
}
  .product .item .photo {
      height: 320px;
  }
    ul.prod-slider li {
    height: 720px;
  }
  .prod-pager-thumb {
    width: 230px;
    height: 230px;
    border-radius: 16px;
  }
}


/* Ultra Wide Displays (1800px and up) */
@media (min-width: 1800px) {
     .bs-slider .item {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  height: 688px;
}
  .product .item .photo {
      height: 430px;
  }
}
