main {
  overflow-x: hidden;
}
/*======
 view all
 ========*/
.view-all-btn {
    display: block;       /* block banaya taake line me alag ho */
    margin: 10px auto;    /* upar-niche 10px, center horizontally */
    padding: 8px 15px;
    background-color: #e91e63;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}


/* text bar */

/* Reset default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: aliceblue;
}

/* Header */
header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.container {
  max-width: 1500px;
  /* margin-top: 20px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

/* Logo */
.logo {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

/* Navigation Menu */
.nav-menu ul {
  display: flex;
   list-style: none; 
  background-color: aliceblue;
}

.nav-menu ul li {
  margin-left: 25px;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-menu ul li a:hover {
  color: #e91e63;
  /* Pink highlight on hover */
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Search Box */
.search-box {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
}

.search-box input {
  border: none;
  padding: 6px 12px;
  outline: none;
}

.search-box button {
  background-color: #e91e63;
  border: none;
  color: #fff;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 16px;
}

/* Cart Icon */
.cart-icon {
  position: relative;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}
.cart-dropdown {
    display: none; /* Shuru me hidden */
    position: absolute;
    top: 40px;
    right: 0;
    width: 250px;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
    padding: 10px;
    z-index: 100;
}

.cart-dropdown .cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.cart-dropdown .cart-item img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: #e91e63;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}

/* bar end */

.boxes {
  display: flex;
  gap: 30px;
  
  flex-wrap: wrap;
  margin-bottom: 80px;
  
}

.boxes2 {
  display: flex;
  gap: 30px;
  margin: 20px 0;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.boxes3 {
  display: flex;
  gap: 30px;
  margin: 20px 0;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.about {
  background-color: black;
  color: aliceblue;
}

.cbox img {
  width: 234px;
  height: 400px;

}
.cbox{margin-left: 25px;}

.boxes4 {
  display: flex;
  gap: 30px;
  margin: 20px 0;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.boxes5 {
  display: flex;
  gap: 30px;
  margin: 20px 0;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.logos{
     height: 42px;
            width: 42px;
            
            position: fixed;
            bottom: 12px;
            right: 23px;
            border-radius: 90px;
  /* border: 1px solid black;
 display: inline;
 border-radius: 100px; */
 
}

.img{
  margin-bottom: 90px;
}







/* Modal for product detail */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 200;
}

.modal-content {
    background: white;
    padding: 20px;
    max-width: 500px;
    width: 90%;
    border-radius: 8px;
    position: relative;
    text-align: center;
}

.modal-content img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 6px;
}

.modal-content h2 {
    margin-bottom: 10px;
}

.modal-content p {
    margin-bottom: 15px;
}

.modal-content button {
    padding: 8px 15px;
    margin: 5px;
    border: none;
    background-color: #e91e63;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}

.modal-content .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    color: #333;
}
/*media responsive*/
/* ======================== */
/* MOBILE RESPONSIVE START  */
/* ======================== */

/* Mobile Responsive: 2 images per row on smaller screens */
/* Mobile Responsive */
@media (max-width: 768px) {

  /* Boxes: 2 images per row */
  .boxes, .boxes2, .boxes3, .boxes4, .boxes5 {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .boxes div, 
  .boxes2 div, 
  .boxes3 div, 
  .boxes4 div, 
  .boxes5 div {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }

  .boxes img,
  .boxes2 img,
  .boxes3 img,
  .boxes4 img,
  .boxes5 img {
    width: 100%;
    height: 250px;
  }
 
  
   
    .container {
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    /* Logo smaller on mobile */
    .logo {
        font-size: 18px;
        flex-shrink: 1;
    }

    /* Nav menu horizontal, gap small */
    .nav-menu ul {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        overflow-x: auto;
        padding: 0;
        transition: opacity 0.3s;
    }

    .nav-menu ul li {
        margin-left: 0;
    }

    .nav-menu ul li a {
        font-size: 14px;
        border-bottom: none;
    }

    /* header-right (search + cart) */
    .header-right {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
    }

    /* Search input hidden initially */
    .search-box input {
        display: none;
        width: 0;
        padding: 0;
        transition: all 0.3s;
    }

    /* Search active */
    .search-box.active input {
        display: block;
        width: 120px;
        padding: 5px 10px;
    }

    /* Hide nav when search active */
    .nav-menu.hidden ul {
        display: none;
    }

    .search-box {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .cart-icon {
        font-size: 22px;
    }
}

/* ======================== */
/* MOBILE RESPONSIVE END    */
/* ======================== */