@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
    font-family: 'Montserrat', sans-serif;

}
#logo-header{
  display: none;
}
#menu-box{
  display: none;
}
#close-box{
  display: none;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

header{
  background-color: #CF0F47;
  position: relative;
 
  
}
.navb{
  position: fixed;
  width: 80%;
  
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  
  
  z-index: 10001;
  display: flex;
  justify-content: space-between;
  padding: 10px 45px;
  font-family: 'Montserrat', sans-serif;
  margin-top: 2rem;
 
 
  text-transform: uppercase;
  font-weight: 900;
background-color: white;
  border-radius: 30px;

  box-shadow: 0 6px 6px rgba(0, 0, 0,0.5);

}


.head-container {
  display: flex;
  align-items: center;
  column-gap: 2.5rem;


}
.logo span{
  color: black;
}


nav ul {
  display: flex;
  column-gap: 2.5rem;
}

nav ul li a{
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: black;
  font-weight: 500;
  position: relative;
  font-weight: bold;
}

.navb.scrolled {
  background-color: #CF0F47; 
  transition: background-color 0.3s ease;
}

.navb.scrolled li a {
  color: white; 

  
}

.navb.scrolled #aboutuscolor{
  color: black;
}
.navb.scrolled .log button {
  border-color: white;
  color:white;

}

.navb a {
  color: black;
  transition: color 0.3s ease;
}

.navb a:hover {
  color: #CF0F47; 
}
.navb.scrolled a:hover {
  color: black; 
}
.navb.scrolled a::after {
  background-color: white;
}
.navb.navb.scrolled .login .bx{
  color: white;
}

#aboutuscolor{
 color: #CF0F47;
}
.login .bx{
  font-size: 35px;
  cursor: pointer;
  position: relative;

  
}
.cart {
  position: relative;
  display: inline-block;
  font-size: 24px; 
}

#cart-count {
  position: absolute;
  top: 0;   
   right: 0;
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  min-width: 18px;
  text-align: center;
}


.login{

  display: flex;
  align-items: center;
  gap: 1rem;


}

.login button {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 10px;
  background-color: transparent;
  color: black;
  border: 2px solid  #DE3163; 
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s; 
}

.login button:hover {
  background-color: #DE3163;

 
}
.cart-menu {
  position: absolute;
  background-color: white;
  border-radius: 20px;
  top: 110%; 
  right: 1rem;
  z-index: 10001;
  padding: 20px;
  text-transform: none;
  font-family: 'Montserrat', sans-serif;
  width: 450px;
box-shadow: 2px 2px 10px 4px rgb(14 55 54 / 15%);

  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cart-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}


.cart-sum {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}

.cart-sum h3 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.cart-sum span {
  font-size: 14px;
  font-weight: bold;
  padding: 6px 14px;
  background: transparent;
  color: #e2337f;
  border: 2px solid #e2337f;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cart-sum span:hover {
  background: #e2337f;
  color: white;
}


.login .cart-cont .box-cart img {
  width: 100px;
  height: 140px;
 
}

.prodt p {
  font-weight: 700;
  font-size: 14px;
  color: gray;
}

.prodt {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 380px;
  margin-top: 25px;
  margin-left: 2px;
}

.cart-cont {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;

  max-height: 300px;
  overflow-y: auto;
  padding-right: 8px;
  border: none;
}

.cart-txt {
  font-weight: 500;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  column-gap: 0.5rem;
}

.box-cart {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.txt1-1 {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.7rem;
  margin-right: 30px;
}

.prc {
  font-weight: 550;
 
  margin-right: 5px;
}

.cart-menu button {
  margin-top: 1px;
  width: 100%;
    background: #ff99aa; 

  padding: 3px 10px;
  color: white;
  border: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  
  transition: background 0.3s ease, transform 0.1s ease;
  border: px solid #CF0F47;
}


.qty-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  background: #ffe4ec;
  border: 1px solid #ffb6c1;
  padding: 3px 8px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
  color: #c2185b;
  transition: background 0.3s ease, color 0.3s ease;
}

.qty-btn:hover {
  background: #ffb6c1;
  color: white;
}

.qty-control input {
  width: 40px;
  text-align: center;
  border: 1px solid #ffb6c1;
  border-radius: 4px;
}


#uni {
  
  font-weight: 600;
  padding: 10px 0;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  align-items:end;
  

}

.checkout-btn  {
  width: 50%;
  margin-top: 1rem;
  padding: 10px;
  background-color: transparent;  /* Pink */

  color: #e2337f;
  border: 2px solid #e2337f;
  border-radius: 6px;
 
 
  font-weight: 700;
  font-size: 16px;

  cursor: pointer;
transition: all 0.3s ease;

  
  
}

.checkout-btn:hover {
 background: #e2337f;
  color: white;
}

/* ✅ Clean Delete Button */
.delete-item {
  background: transparent;
  color: #e2337f;
  
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s ease;
  display: none;
 
  
  
}

.delete-item:hover {
 
  color: black;
}

.cart-menu.edit-mode .delete-item {
  display: inline-block;
  position: absolute;
  top: 70%;
  right: 0;
  max-width: 150px;
  font-size: 16px;
  font-weight: 550;
}


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}
.head-container .logo {
    font-size: 1.5rem;
    color: #6c0025;
  }

  
        
        .hero {
            background: linear-gradient(135deg, #ff99aa, #fff5f7);
            color: #333;
            text-align: center;
            padding: 150px 20px 100px;
            position: relative;
            height: 60vh;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="1" fill="%23ffffff" opacity="0.08"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 2;

        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 900;
            margin-bottom: 20px;
            font-family: 'Montserrat', sans-serif;
            color: #6c0025;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }

        .breadcrumb {
            font-size: 1.1rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

        .breadcrumb a {
            color: #6c0025;
            text-decoration: none;
            font-weight: 700;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        
        .image-gallery {
            background: white;
            padding: 60px 20px;
            position: relative;
            margin-top: -50px;
            z-index: 3;
        }

        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 0 20px;
        }

        .image-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }

        .image-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }

        .image-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #CF0F47, #ff99aa);
        }

        .image-placeholder {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
            font-family: 'Montserrat', sans-serif;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .image-card-content {
            padding: 25px;
        }

        .image-card h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: #CF0F47;
            margin-bottom: 10px;
        }

        .image-card p {
            font-family: 'Montserrat', sans-serif;
            color: #666;
            line-height: 1.6;
            font-size: 0.95rem;
        }

       
        .content {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 100px 20px;
        }

        .content-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .main-heading {
            font-size: 3rem;
            font-weight: 800;
            color: #CF0F47;
            margin-bottom: 40px;
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            line-height: 1.2;
            position: relative;
        }

        .main-heading::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #CF0F47, #ff99aa);
            border-radius: 2px;
        }

        .main-text {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 80px;
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            font-weight: 400;
        }

        .sections-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 60px;
        }

        .section-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
        }

        .section-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #CF0F47, #ff99aa);
        }

        .section-card h2 {
            font-size: 2rem;
            font-weight: 700;
            color: #CF0F47;
            margin-bottom: 25px;
            font-family: 'Montserrat', sans-serif;
            position: relative;
        }

        .section-card p {
            font-size: 1rem;
            color: #666;
            line-height: 1.8;
            font-family: 'Montserrat', sans-serif;
        }

       
        .services {
            background: linear-gradient(135deg, #CF0F47 0%, #ff99aa 100%);
            padding: 100px 20px;
            position: relative;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        }

        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .services h2 {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            text-align: center;
            margin-bottom: 80px;
            font-family: 'Montserrat', sans-serif;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .services-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .services-content {
            color: white;
        }

        .services-list {
            list-style: none;
        }

        .services-list li {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 20px;
            padding: 15px 25px;
            position: relative;
            font-family: 'Montserrat', sans-serif;
            background: rgba(255,255,255,0.1);
            border-radius: 12px;
            border-left: 4px solid white;
            backdrop-filter: blur(10px);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .services-list li:hover {
            background: rgba(255,255,255,0.2);
            transform: translateX(10px);
        }

        .services-list li.active {
            background: rgba(255,255,255,0.3);
            border-left-width: 6px;
            transform: translateX(15px);
        }

        .services-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .services-image {
            width: 500px;
            height: 400px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .service-image-content {
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: all 0.5s ease;
            position: absolute;
            top: 0;
            left: 0;
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            border-radius: 18px;
        }

        .service-image-content.active {
            opacity: 1;
        }

       
        #tshirt-content {
            background-image: url('../Images/ID\ LACE\ 2.jpg');
        }

        #lanyard-content {
            background-image: url('../Images/ID\ LACE\ 5.jpg');
        }

        #mug-content {
            background-image: url('../images/ID\ LACE\ 3.jpg');
        }

        #printing-content {
            background-image: url('../images/ID\ LACE\ 4.jpg');
        }

        
        .footer {
            background-color: #ff99aa;
            color: black;
            padding: 60px 10%;
            font-family: 'Montserrat', sans-serif;
            margin-top: 20vh;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
        }

        .footer-about h2 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: black;
            font-weight: 900;
        }

        .footer-about h2 span {
            color: #6c0025;
        }

        .footer-about p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: black;
        }

        .social-links a {
            display: inline-block;
            margin-right: 10px;
            color: black;
            font-size: 1.4rem;
            transition: color 0.3s ease;
            margin-top: 20px;
        }

        .social-links a:hover {
            color: #6c0025;
        }

        .footer-news h3,
        .footer-links h3,
        .footer-contact h3 {
            margin-bottom: 20px;
            font-size: 1.2rem;
            border-left: 3px solid #6c0025;
            padding-left: 10px;
        }

        .news-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .news-text p {
            font-size: 0.9rem;
            margin: 0;
            color: black;
        }

        .news-text span {
            font-size: 0.8rem;
            color: black;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links ul li {
            margin-bottom: 10px;
        }

        .footer-links ul li a {
            text-decoration: none;
            color: black;
            transition: color 0.3s ease;
        }

        .footer-links ul li a:hover {
            color: #6c0025;
        }

        .footer-contact p {
            margin-bottom: 10px;
            font-size: 0.9rem;
        }

        .footer-contact i {
            margin-right: 8px;
            color: #6c0025;
        }

        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .main-heading {
                font-size: 2rem;
            }

            .sections-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .gallery-container {
                grid-template-columns: 1fr;
            }

            nav {
                display: none;
            }

            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .news-item {
                justify-content: center;
            }
        }
        
    .user-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--pink-dark, #FF5D8E), var(--pink-accent, #FE7098));
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      margin-left: 15px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      position: relative;
    }

    .user-icon:hover {
      transform: scale(1.1);
      box-shadow: 0 5px 15px rgba(255, 93, 142, 0.3);
    }


    .user-dropdown {
      position: absolute;
      top: 55px;
      right: 0;
      background: white;
      border-radius: 8px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.15);
      min-width: 200px;
      padding: 10px 0;
      display: none;
      z-index: 1000;
    }

    .user-dropdown.active {
      display: block;
    }

    .user-dropdown a,
    .user-dropdown button {
      display: block;
      padding: 12px 20px;
      color: #333;
      text-decoration: none;
      border: none;
      background: none;
      width: 100%;
      text-align: left;
      cursor: pointer;
      font-size: 14px;
      transition: background 0.2s;
      font-weight: 600;
    }

    .user-dropdown a:hover,
    .user-dropdown button:hover {
      background: #f8f9fa;
      color: #c2185b;
    }

    .user-dropdown .user-info {
      padding: 12px 20px;
      border-bottom: 1px solid #eee;
      margin-bottom: 5px;
    }

    .user-dropdown .user-info p {
      margin: 0;
      font-size: 14px;
      color: #666;
    }

    .user-dropdown .user-info strong {
      color: #333;
      font-size: 15px;
    }

    .login-container {
      position: relative;
    }

    /* Modal Styles */
    .modal-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 10000;
      justify-content: center;
      align-items: center;
      animation: fadeIn 0.3s ease;


    }

    .modal-overlay.active {
      display: flex;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .auth-modal {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      display: flex;
      max-width: 900px;
      width: 90%;
      max-height: 85vh;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
      animation: slideUp 0.4s ease;
      margin-top: 13vh;
  
      
    }

    @keyframes slideUp {
      from { transform: translateY(50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .welcome-panel {
      background: linear-gradient(135deg, #FF5D8E, #FE7098);
      color: white;
      padding: 60px 40px;
      width: 45%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
    }

    .welcome-panel h2 {
      font-size: 32px;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .welcome-panel p {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 30px;
      opacity: 0.95;
    }

    .switch-btn {
      background: white;
      color: #FF5D8E;
      padding: 12px 35px;
      border: none;
      border-radius: 25px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 14px;
    }

    .switch-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    }

    .form-panel {
      padding: 50px 45px;
      width: 55%;
      overflow-y: auto;
      position: relative;
    }

    .close-modal {
      position: absolute;
      top: 20px;
      right: 20px;
      background: none;
      border: none;
      font-size: 28px;
      color: #666;
      cursor: pointer;
      transition: color 0.3s;
      z-index: 10;
    }

    .close-modal:hover {
      color: #FF5D8E;
    }

    .form-panel h3 {
      color: #FF5D8E;
      font-size: 28px;
      margin-bottom: 10px;
      font-weight: 700;
    }

    .form-panel .subtitle {
      color: #666;
      font-size: 13px;
      margin-bottom: 25px;
    }

    .social-login {
      display: flex;
      gap: 15px;
      margin-bottom: 25px;
      justify-content: center;
    }

    .social-btn {
      width: 40px;
      height: 40px;
      border: 2px solid #e0e0e0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      background: white;
    }

    .social-btn:hover {
      border-color: #FF5D8E;
      color: #FF5D8E;
      transform: translateY(-2px);
    }

    .input-group {
      position: relative;
      margin-bottom: 20px;
    }

    .input-group i {
      position: absolute;
      left: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: #999;
      font-size: 18px;
    }

    .input-group input {
      width: 100%;
      padding: 14px 15px 14px 45px;
      border: 2px solid #e0e0e0;
      border-radius: 8px;
      font-size: 14px;
      transition: all 0.3s;
    }

    .input-group input:focus {
      outline: none;
      border-color: #FF9AAC;
      box-shadow: 0 0 0 3px rgba(255, 93, 142, 0.1);
    }

    .password-toggle {
      width: 20px;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
      color: #999;
      font-size: 18px;
    }

    .password-toggle:hover {
      color: #FF5D8E;
    }

    .submit-btn {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, #FF5D8E, #FE7098);
      color: white;
      border: none;
      border-radius: 25px;
      font-weight: 600;
      font-size: 15px;
      cursor: pointer;
      margin-top: 10px;
      transition: all 0.3s;
    }

    .submit-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(255, 93, 142, 0.3);
    }

    .form-footer {
      text-align: center;
      margin-top: 20px;
      font-size: 13px;
      color: #666;
    }

    .form-footer a {
      color: #FF5D8E;
      text-decoration: none;
      font-weight: 600;
    }

    .form-footer a:hover {
      text-decoration: underline;
    }

    .error-message {
      background: #fee;
      color: #c33;
      padding: 12px;
      border-radius: 8px;
      margin-bottom: 20px;
      font-size: 13px;
      border-left: 4px solid #c33;
    }

    .success-message {
      background: #efe;
      color: #383;
      padding: 12px;
      border-radius: 8px;
      margin-bottom: 20px;
      font-size: 13px;
      border-left: 4px solid #383;
    }

    .step-indicator {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 25px;
    }

    .step {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: #e0e0e0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 13px;
      color: #999;
    }

    .step.active {
      background: #FF5D8E;
      color: white;
    }

    .step.completed {
      background: #4CAF50;
      color: white;
    }

    .otp-info {
      background: #f8f9fa;
      padding: 15px;
      border-radius: 8px;
      margin-bottom: 20px;
      font-size: 13px;
      color: #666;
      text-align: center;
    }

    .otp-input {
      text-align: center;
      letter-spacing: 10px;
      font-size: 24px;
      font-weight: 600;
    }

    .hidden {
      display: none;
    }

    @media (max-width: 768px) {
      .auth-modal {
        flex-direction: column;
        width: 95%;
      }

      .welcome-panel, .form-panel {
        width: 100%;
      }

      .welcome-panel {
        padding: 40px 30px;

      }

      .form-panel {
        padding: 40px 30px;
      }
    }
    .hidden {
  display: none;
}

/* Forgot Password & Verify Email Modals */
.simple-modal {
  background: white;
  border-radius: 15px;
  padding: 50px 45px;
  max-width: 500px;
  width: 90%;
  max-height: 75vh;
  overflow-y: auto;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s ease;
  position: relative;
  margin-top: 12vh;
}

.simple-modal .close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10;
}

.simple-modal .close-modal:hover {
  color: #FF5D8E;
}

.simple-modal .logo-img {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  display: block;
  border-radius: 50%;
  object-fit: contain;
}

.simple-modal h3 {
  color: #FF5D8E;
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 700;
}

.simple-modal .subtitle {
  color: #666;
  font-size: 13px;
  margin-bottom: 25px;
  text-align: center;
}

.simple-modal .info-text {
  color: #666;
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.6;
  text-align: center;
}

.simple-modal .otp-info {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 13px;
  color: #666;
  text-align: center;
  line-height: 1.6;
}

.simple-modal .otp-info strong {
  color: #333;
  display: block;
  margin-top: 5px;
  font-size: 14px;
}

.simple-modal .step-indicator {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.simple-modal .step {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  color: #999;
}

.simple-modal .step.active {
  background: #FF5D8E;
  color: white;
}

.simple-modal .step.completed {
  background: #4CAF50;
  color: white;
}

.simple-modal .input-group {
  position: relative;
  margin-bottom: 20px;
}

.simple-modal .input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
}

.simple-modal .input-group input {
  width: 100%;
  padding: 14px 15px 14px 45px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
}

.simple-modal .input-group input:focus {
  outline: none;
  border-color: #FF9AAC;
  box-shadow: 0 0 0 3px rgba(255, 93, 142, 0.1);
}

.simple-modal .submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #FF5D8E, #FE7098);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.3s;
}

.simple-modal .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 93, 142, 0.3);
}

.resend-btn {
  width: 100%;
  padding: 14px;
  background: white;
  color: #FF5D8E;
  border: 2px solid #FF5D8E;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  margin-top: 15px;
  transition: all 0.3s;
}

.resend-btn:hover {
  background: #FF5D8E;
  color: white;
  transform: translateY(-2px);
}

.back-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: #FF5D8E;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.back-link:hover {
  text-decoration: underline;
}

.simple-modal .success-message {
  background: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  border-left: 4px solid #28a745;
  text-align: center;
}

.simple-modal .error-message {
  background: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  border-left: 4px solid #dc3545;
  text-align: center;
}

@media (max-width: 768px) {
  .auth-modal {
    flex-direction: column;
    width: 95%;
  }

  .welcome-panel, .form-panel {
    width: 100%;
  }

  .welcome-panel {
    padding: 40px 30px;
  }

  .form-panel {
    padding: 40px 30px;
  }

  .simple-modal {
    padding: 40px 30px;
    max-width: 95%;
  }
}
.logout-modal {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.logout-modal h3 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.logout-modal p {
  color: #666;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.logout-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.logout-buttons button {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
}

.btn-cancel {
  background: #f0f0f0;
  color: #333;
}

.btn-cancel:hover {
  background: #e0e0e0;
}

.btn-logout {
  background: #e2337f;
  color: white;
}

.btn-logout:hover {
  background: #c91e6a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(226, 51, 127, 0.3);
}
  

/* ============================================
   RESPONSIVE NAVBAR STYLES
   ============================================ */

/* Hamburger Menu Icon (Hidden by default on desktop) */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 10002; 
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: black;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Scrolled navbar - hamburger color change */
.navb.scrolled .hamburger span {
  background-color: white;
}

/* ============================================
   TABLET AND MOBILE RESPONSIVE
   ============================================ */

/* Tablet and Below (1024px) */
@media (max-width: 1024px) {
  .navb {
    width: 90%;
    padding: 10px 30px;
  }

  .head-container {
    column-gap: 1.5rem;
  }

  nav ul {
    column-gap: 1.5rem;
  }

  nav ul li a {
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .shop-cont {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* Mobile and Small Tablets (768px and below) */
@media (max-width: 768px) {
  /* Show hamburger menu */
  .hamburger {
    display: flex;
  }
  
  #menu-box{
    display: flex;
  }

  /* Navbar adjustments */
  .navb {
    width: 95%;
    padding: 10px 20px;
    margin-top: 1rem;
  }

  .head-container {
    column-gap: 1rem;
    flex: 1;
  }

  .head-container .logo {
    font-size: 1.2rem;
  }

  /* Hide desktop navigation by default */
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgb(255, 255, 255);
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
    z-index: 10002;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
  }
  
  #logo-header{
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    font-weight: 900;
  }

  /* Show navigation when active */
  nav.active {
    right: 0;
  }

  /* Stack navigation links vertically */
  nav ul {
    flex-direction: column;
    gap: 0;
  }

  nav ul li {
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  nav ul li a {
    font-size:0.7rem;
  }

  /* Show close icon in mobile menu */
  #close-box {
    display: block;
    position: absolute;
    top: 2%;
    right: 2%;
    font-size: 25px;
  }

  /* Scrolled state for mobile nav */
  .navb.scrolled nav {
    background: white;
  }

  .navb.scrolled nav ul li a {
    color: #333;
  }

    .navb.scrolled nav {
    background: #CF0F47;
  }
   .navb.scrolled nav ul li a {
    color: white;
  }

  /* Login section adjustments */
  .login {
    display: flex;
    gap: 0.5rem;
  }

  .login .bx {
    font-size: 28px;
  }

  .login button {
    padding: 8px 15px;
    font-size: 0.8rem;
  }

  .user-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
    margin-left: 0;
  }

  /* Cart menu adjustments */
  .cart-menu {
    width: 90vw;
    max-width: 350px;
    right: 2.5vw;
  }

  .hero {
    padding: 120px 20px 80px;
    height: auto;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .search-container {
    flex-direction: column;
  }
  
  .search-box,
  .filter-options {
    width: 100%;
  }
  
  .filter-options select {
    flex: 1;
    min-width: 0;
  }

  .shop-cont {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .news-item {
    justify-content: center;
  }

  .auth-modal {
    flex-direction: column;
    width: 95%;
  }

  .welcome-panel, .form-panel {
    width: 100%;
  }

  .welcome-panel {
    padding: 40px 30px;
  }

  .form-panel {
    padding: 40px 30px;
  }

  .simple-modal {
    padding: 40px 30px;
    max-width: 95%;
  }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
  .navb {
    padding: 8px 15px;
    border-radius: 20px;
  }

  .head-container .logo {
    font-size: 1rem;
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
  }

  .login .bx {
    font-size: 24px;
  }

  .login button {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .user-icon {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  nav {
    width: 75%;
  }

  .cart-menu {
    width: 90vw;
    padding: 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .breadcrumb {
    font-size: 0.9rem;
  }

  .shop h1 {
    font-size: 35px;
  }

  .shop p {
    font-size: 16px;
  }

  #cart-count {
    font-size: 11px;
    min-width: 18px;
    height: 18px;
    padding: 2px 5px;
    top: -3px;
    right: -2px;
  }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
  .navb {
    padding: 6px 10px;
  }

  .head-container .logo {
    font-size: 0.9rem;
  }

  .hamburger span {
    width: 20px;
    height: 2px;
  }

  nav {
    width: 80%;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .shop h1 {
    font-size: 28px;
  }

  #cart-count {
    font-size: 9px;
    min-width: 16px;
    height: 16px;
    padding: 2px 4px;
    top: -3px;
    right: -3px;
  }
}

/* Landscape Mode for Mobile */
@media (max-width: 768px) and (orientation: landscape) {
  nav {
    padding: 60px 30px 30px;
  }

  nav ul li {
    padding: 10px 0;
  }
}