/* General Styling */
body {
    font-family: 'Poppins', segoe UI;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #F7F7F7;
    transition: background 0.3s, color 0.3s;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background: rgb(0, 0, 0);
    /* backdrop-filter: blur(10px); */
}

.navbar .logo img {
    height: 35px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #074679;
}

/* Dark/Light Mode Toggle */
.toggle-theme {
    cursor: pointer;
}

.toggle-theme img {
    width: 24px;
    height: 24px;
    margin-right: 50px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px; /* adjust this to control space between login and icon */
}

/* Slideshow */
.slideshow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* this moves it to the exact center */
    z-index: -1000;
    width: 95%;
    height: 75vh;
    overflow: hidden;
    border-radius: 20px; 
}


.slide {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 1s ease-in-out;
   
    border-radius: 10px;
}

.slide.active {
    opacity: 1;
    filter: blur(0);
}

/* Slideshow Dots (Left Side) */
.dots {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dot {
    width: 3px;
    height: 10px;
    background: #bbb;
  
    position: relative;
    transition: 0.3s;
    cursor: pointer;
}

.dot.active {
    background: #FFB22C;
    height: 30px;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #ffb22c80;
    }
    100% {
        box-shadow: 0 0 0 10px rgba(0, 255, 255, 0);
    }
}


/* Hero Content (Bottom Left) */
.hero {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    height: 100vh;
    /* padding: 50px; */
    position: relative;
    /* top: 10%;  */
}

.hero-content {
    max-width: 500px;
    padding: 25px  0 15% 5%;
    
}

.hero-content h4{
    color: #ffb22c;
    margin-top: -40px;
}

.hero-content h5{
  margin-top: -15px;
}

.hero-content .words{
    background-color: #0000002d;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    padding: 10px;
    padding-top: 0; 
}

.hero-content .words p{
    line-height: 1.5;
}
.hero h1 {
    font-size: 3rem;
   
    /* margin-top: -0%; */
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid #ffb22c;
    color: #F7F7F7;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: 0.3s;
    backdrop-filter: blur(10px);
    font-size: 18px;
    cursor: pointer;
}

.btn:hover {
    background: #ffb22c;
    cursor: pointer;
    border: 2px solid #f7f7f7;
}

/* Work Cards (Only 1 Visible at a Time) */
.work-cards {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;  /* Reduced width */
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;  /* Stack reviews from bottom to top */
    gap: 10px;
}

.card {
    position: absolute;
    width: 100%;
    backdrop-filter: blur(10px);
    opacity: 0;
    border: 1px #ffb22c solid;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius:15px;
    transform: translateY(20px) rotate(0deg);
    transition: all 0.8s ease-in-out;
    pointer-events: none;
    z-index: 1000;
    display: block;
}

.card img {
    width: 100%;
    border-radius: 10px;
}

.card .profile img{
    width:30px;
    height:30px;
    border-radius: 50%;

}
.card .profile .username{
    background: #ffb22c;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 3px;
}

.card.active {
    opacity: 1;
    transform: translateY(0);
}



/* Social Media Section */
.socials {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Follow Button */
.follow-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3px 15px;
    border-radius: 25px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.follow-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    z-index: 1000;
}

@keyframes wave {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
    100% {
        transform: translateY(0);
    }
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: 0.3s;
    animation: wave 2s ease-in-out infinite;
}

.social-icons a:nth-child(1) {
    animation-delay: 0s;
}
.social-icons a:nth-child(2) {
    animation-delay: 0.2s;
}
.social-icons a:nth-child(3) {
    animation-delay: 0.4s;
}
.social-icons a:nth-child(4) {
    animation-delay: 0.6s;
}


.social-icons a:hover {
    background: #FFB22C;
    transform: scale(1.1) rotate(360deg) translateY(-6px);
}

/* Social Icons Image */
.social-icons img {
    width: 25px;
    height: 25px;
    
}

.btn-login{
    background: transparent;
    text-decoration: none;
    color: white;
    font-size: 15px;
    padding: 3px 10px;
    border-radius: 15px;
    border: 1px solid #FFB22C;

}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.95);
    padding: 10px;
    border-radius: 10px;
    top: 100%;
    left: 0;
    list-style: none;
    min-width: 250px;
    z-index: 999;
}

.dropdown-menu li {
    padding: 5px 15px;
}

.dropdown-menu li a {
    color: #fff;
    text-decoration: none;
    display: block;
    transition: 0.3s;
}

.dropdown-menu li a:hover {
    color: #FFB22C;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

.chat-widget {
    position: fixed;
    top: 10%;
    right: 25px;
    z-index: 9999;
    animation: bounceIn 1.2s ease-out;
  }
  
  .chat-icon {
    background: #FFB22C;
    padding: 12px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: pulse 2.5s infinite ease-in-out;
    transition: transform 0.35s ease;
  }
  
  .chat-icon:hover {
    transform: scale(1.1)  rotate(360deg);
  }
  
  .chat-icon img {
    width: 32px;
    height: 32px;
    display: block;
  }
  
  /* Pulse Animation */
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(231, 167, 27, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
  }
  
  /* Entry Bounce */
  @keyframes bounceIn {
    0% { transform: scale(0.5) translateY(100px); opacity: 0; }
    60% { transform: scale(1.1) translateY(-10px); opacity: 1; }
    100% { transform: scale(1) translateY(0); }
  }
  
  .cube-stat-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    perspective: 1000px;
    width: 260px;
    height: 70px;
}

.cube {
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotateCube 12s infinite;
    transition: transform 1s;
    position: relative;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #FFB22C;
    padding: 10px 15px;
    box-sizing: border-box;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    backface-visibility: hidden;
}

.cube-face strong {
    font-size: 22px;
    color: #FFB22C;
}

.cube-face:nth-child(1) {
    transform: rotateX(0deg) translateZ(35px);
}
.cube-face:nth-child(2) {
    transform: rotateX(90deg) translateZ(35px);
}
.cube-face:nth-child(3) {
    transform: rotateX(180deg) translateZ(35px);
}
.cube-face:nth-child(4) {
    transform: rotateX(-90deg) translateZ(35px);
}
@keyframes rotateCube {
    0% { transform: rotateX(0deg); }
    25% { transform: rotateX(-90deg); }
    50% { transform: rotateX(-180deg); }
    75% { transform: rotateX(-270deg); }
    100% { transform: rotateX(-360deg); }
}


/* profile  */
.user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px #fff solid;
    background: #ffb22c;
    padding: 4px;
    border-radius: 25px;
    cursor: pointer;
    color: #fff;
  }
  
  .user-profile .profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .profile-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    
    z-index: 9998;
    justify-content: center;
    align-items: center;
  }
  
  .modal-content {
    display: flex;
    background: #ffffff28;
    backdrop-filter: blur(10px);
    width: 800px;
    max-width: 90%;
    border-radius: 10px;
    color: #000;
    overflow: hidden;
    border: #fff 1px solid;
  }
  
  .modal-sidebar {
    width: 250px;
    background: #f5f5f5;
    padding: 20px;
    border-right: 1px solid #ddd;
    font-size: 13px;
    border-top-right-radius: 20px;
  }
  
  .modal-sidebar h3 {
    margin-bottom: 10px;
  }
  
  .modal-menu {
    list-style: none;
    padding: 0;
  }
  
  .modal-menu li {
    padding: 8px;
    cursor: pointer;
    border-radius: 25px;
    transition: 0.2s;
    
  }
  .modal-menu li a{
    text-decoration: none;
    color: #000;
  }
  .modal-menu li.active {
    background: #ffb22c;
    
   
  }
  
  .modal-main {
    flex: 1;
    padding: 30px;
    
  }
  
  .modal-main h2 {
    margin-bottom: 15px;
    color: #fff;
  }
  
  .modal-main input,select {
    display: block;
    margin-bottom: 15px;
    padding: 10px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-family: 'poppins',segoe UI;
    background: transparent;
    color: white;
  }
  .preview{
    text-align: center;
  }
.preview img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
   
}


  .form-group{
    display: block;
  }
  .form-row{
    display: flex;
    gap: 30px;
  }
  .menu-icon {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
  }
  
  .modal-menu li {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .button{
    text-align: center;
    
  }
  .save-btn{
    color: white;
    font-family: 'poppins',segoe UI;
    padding: 10px;
    border-radius: 20px;
    border: solid #fff 2px;
    background: transparent;
    transition: ease-in-out 0.2s ;
    width: 100%;
  }

  .save-btn:hover{
    background: #ffb22c;
  }

  .card-stars {
    margin: 5px 0;
}

.card-stars .star-icon {
    width: 16px;
    height: 16px;
    margin-right: 0;
    vertical-align: middle;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  /* ---- SEARCH ---- */
  .search-container {
    display: flex;
    align-items: center;
    position: relative;
    gap: 8px;
  }
  
  .search-icon {
    width: 26px;
    height: 26px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .search-icon:hover {
    transform: scale(1.15);
  }
  
  #searchBox {
    opacity: 0;
    width: 0;
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 20px;
    outline: none;
    transition: all 0.4s ease;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    font-family: 'Poppins', sans-serif;
  }

  #searchBox:focus {
    border:2px solid #ffb22c;
    background-color: none;
  }
  
  #searchBox.show {
    opacity: 1;
    width: 200px;
  }
  
  .search-results {
    position: absolute;
    top: 42px;
    left: 0;
    width: 100%;
    background: white;
    color: #000;
    border: 1px solid #ddd;
    max-height: 200px;
    overflow-y: auto;
    z-index: 999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-radius: 6px;
    display: none;
  }
  
  .search-results p {
    padding: 10px;
    margin: 0;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: 'Poppins', sans-serif;
  }
  
  .search-results p:hover {
    background: #ffb22c;
    color: white;
  }
  
  
  /* ---- CART BUTTON ---- */
  .cart-button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: #ffb22c solid 2px;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    text-decoration: none;
    position: relative;
  }
  
  .cart-icon {
    width: 30px;
    height: 30px;
  }
  

  .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    line-height: 1;
    animation:pulse 2.5s infinite ease-in-out;
}
/* //wishlist products  */
/* //product card  */
.wproduct-card {
    background: #fff;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    padding: 8px;
    position: relative;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: left;
    overflow: hidden;
    
}

.wproduct-card:hover {
    transform: translateY(-5px);
}

.wproduct-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Product Image */
.wproduct-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
    display: block;
}

/* Discount badge */
.wdiscount-badge {
    position: absolute;
    top: 35px;
    left: 15px;
    background-color: #FF5722;
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-weight: bold;
    z-index: 2;
}

/* Product Name */
.wproduct-name p {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.wproduct-name h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 5px 0;
    margin-top: -5px;
}

/* Rating */
.wproduct-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: -10px;
    font-size: 12px;
    color: #777;
}

.wproduct-rating .wstars {
    display: flex;
    gap: 2px;
}


.wstars img{
    width: 16px;
    height: 16px;
    margin: 0;
}

/* Price */
.wprice {
    font-size: 16px;
    font-weight: bold;
    color: #FFB22C;
}

.woriginal-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
}

.wdiscounted-price {
  color: #ffb22c;
  font-weight: bold;
  font-size: 16px;
}

.wproduct-buttons {
  margin-top: 2px;
  display: flex !important;
  gap: 10px;
  flex-wrap: nowrap !important;
  flex-direction: column;
}


.wcart-btn,
.wbuy-now-btn {
  width: 45%;
  padding: 8px;
  text-align: center;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-size: 12px;
  text-decoration: none;
  display: inline-block;
  font-family: 'poppins',segoe UI;
  position: absolute;
  top: 0;
  z-index: 1005;
}

.wcart-btn {
  background-color: #000;
  color: white;
  right: 0;
  border-radius: 0;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 0px;
}

.wcart-btn:hover {
  background-color: #fff;
  border: 2px solid #ffb22c;
  color: #000;
}

.wbuy-now-btn {
  background-color: #ffb22c;
  color: white;
  left: 0;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 0px;
}

.wbuy-now-btn:hover {
  background-color: #000;
}

.wwishlist-scroll-wrapper {
  position: relative;
  overflow: hidden;
}

.wscroll-container {
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.wproducts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 20px;
  padding: 5px;
}


.wscroll-right-btn{
  display: none;
}

.wscroll-right-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  transform: translateY(-50%);
  z-index: 1009;
  background-color: #ffb22c;
  border: 1px solid #ddd;
  color: white;
  border-radius: 25px;
  width: 100px;
  height: 38px;
  
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.wproducts-grid::-webkit-scrollbar {
  height: 8px;
}

.wproducts-grid::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

/* //intransit  */
.in-transit-card {
  flex: 0 0 600px;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  min-width: 280px; /* optional: to prevent squishing */
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 10px;
}

.transit-product-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 8px;
  background: #f9f9f9;
}

.transit-info h3 {
  margin: 0 0 5px 0;
}

.transit-info p {
  margin: 3px 0;
  font-size: 14px;
  color: #333;
}

.status.in-transit {
  color: #ff9800;
  font-weight: bold;
}

.pagination-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.pagination-buttons button {
  background-color: #ffb22c;
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  color: white;
  font-family: 'poppins',segoe UI;
}

.pagination-buttons button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

#pageIndicator, #reviewPageIndicator, #wishlistPageIndicator, #pendingPageIndicator{
  color: #fff;
  font-weight: bold;
}



/* Hide details by default on all screens */
.transit-details.expanded {
  display: block;
}

.expandable-card {
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.transit-details {
  display: none;
  margin-top: 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.transit-details.expanded {
  max-height: 500px; /* or auto with JS if needed */
  opacity: 1;
}

.transit-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.expand-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.5s ease;
}

.expandable-card.expanded .expand-icon {
  transform: rotate(180deg);
}

/* Pagination animation */
.in-transit-page {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.in-transit-page.active {
  opacity: 1;
  transform: translateY(0);
}

/* //pending payment orders  */
.order-card {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 10px;
  padding: 15px;
  margin: 10px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.order-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
}
.order-details {
  margin-left: 15px;
}
.pay-now-button {
  background: #f9b000;
  color: #fff;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.transit-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-text {
  flex-grow: 1;
}

.pay-now-summary {
  display: flex;
  flex-direction: column;
  
  gap: 8px;
}

.pay-now-button {
  background-color: #ffb22c;
  color: white;
  padding: 5px 8px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  white-space: nowrap;
  position: absolute;
  right: 22px;
}

.expand-icon {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

/* //reviews  */ 
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.review-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 15px;
  text-align: center;
}
.review-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 10px;
}
.open-review-modal {
  background-color: #ffb22c;
  border: none;
  padding: 10px 15px;
  color: white;
  border-radius: 25px;
  cursor: pointer;
}


/* Modal backdrop */
.rmodal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-in-out;
}

/* Modal content box */
.rmodal-content {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  width: 90%;
  max-width: 450px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  animation: slideUp 0.4s ease-out;
}

/* Modal title */
.rmodal-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 22px;
  font-weight: bold;
  color: #1e1e1e;
  cursor: pointer;
  transition: color 0.2s;
}
.close-btn:hover {
  color: #ffb22c;
}

/* Form styles */
.modal-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #555;
}

.modal-form input[type="number"],
.modal-form textarea {
  width: 80%;
  padding: 8px 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 25px;
  margin-bottom: 10px;
  resize: vertical;
  transition: border 0.3s;
  font-family: 'poppins',segoe UI;
}

.modal-form input:focus,
.modal-form textarea:focus {
  border-color: #ffb22c;
  outline: none;
}

/* Submit button */
.submit-review-btn {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  font-weight: 500;
  background-color: #ffb22c;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.submit-review-btn:hover {
  background-color: #e09e1a;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.inputs{
  display: flex;
  gap: 5px;
  flex-wrap: nowrap;
}

/* //badge dot  */
.notification-dot {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 10px;
  height: 10px;
  background-color: #ff4d4d;
  border-radius: 50%;
  border: 2px solid white;
  z-index: 1011;
  animation: pulse 2.5s infinite;
}

/* //RESPONSIVENESS  */
.mobile-icons{
  display: none;
}
.mobile-logo{
  display: none;
}
.mobile-menu-links{
  display: none;
}

/* Floating Hamburger */
.floating-hamburger {
  position: fixed;
  top: 50px;
  left: 15px;
  background: #FFB22C;
  border-radius: 50%;
  padding: 12px;
  z-index: 1001;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  cursor: pointer;
  animation: pulse 2.5s infinite ease-in-out;
  display: none; /* Show only on mobile */
}

.floating-hamburger .hamburger-icon span {
  display: block;
  height: 2px;
  background: white;
  margin: 4px 0;
  transition: 0.4s;
}

.floating-hamburger .hamburger-icon span:nth-child(1){
  width: 25px;
}

.floating-hamburger .hamburger-icon span:nth-child(2){
  width: 15px;
}

.floating-hamburger .hamburger-icon span:nth-child(3){
  width: 5px;
}

.smodal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.8);
  
}

.smodal h2{
  color: #fff;
}
.smodal-content {
  background-color: #ffffff3d;
  backdrop-filter: blur(10px);
  margin: 10% auto;
  padding: 20px;
  width: 90%;
  max-width: 500px;
  border-radius: 10px;
  animation: fadeIn 0.4s ease-in-out;
}

.close-smodal {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-smodal:hover {
  color: #000;
}

#modal-services-list li {
  list-style: none;
  margin: 12px 0;
}

#modal-services-list a {
  display: block;
  padding: 12px 16px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: background-color 0.3s ease, transform 0.2s ease;
  position: relative;
}

#modal-services-list a:hover {
  background-color: #FFB22C;
  color: #fff;
  transform: scale(1.02);
}

#modal-services-list a::after {
  content: "  →";
  position: absolute;
  right: 16px;
  font-weight: bold;
  color: inherit;
}

.services-masonry {
  column-count: 2;
  column-gap: 16px;
  padding: 0;
  margin: 5px;
  list-style: none;
}

.services-masonry li {
  display: inline-block;
  width: 100%;
  margin-bottom: 5px;
  break-inside: avoid;
}


@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* //overlay for clicking outside menu  */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
  display: none;
}

.mobile-overlay.active {
  display: block;
  backdrop-filter: blur(3px);
}

.mobile-side-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 260px;
  height: 100%;
  background: #fff;
  z-index: 999;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15);
  transition: left 0.3s ease;
}

.mobile-side-menu.open {
  left: 0;
}

.profile-modal .modal-content {
  display: flex;
  flex-direction: row; /* default for desktop */
  max-width: 900px;
  width: 100%;
  
 
  overflow: hidden;
}

/* //sidebar width */
.modal-sidebar {
  width: 250px;
  background-color: #f2f2f2;
  padding: 20px;
  box-sizing: border-box;
}

.modal-main {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
}

.close-modal-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1007;
  color: #333;
  border-radius: 50%;
  background: #ffb22c;
  width:30px;
  height:30px;

}


/* Responsive Show/Hide */
@media (max-width: 768px) {
  body{
    overflow-x: auto;
    overflow-y: auto;
  }
  .mobile-logo{
    display: block;
  }
  .mobile-menu-links{
    display: block;
  }

  
  .section-header h1{
    margin-top: 35px;
  }

  
  .search-container {
    position: relative;
    width: 100%; /* ensures it knows full available space */
  }
  
  .search-container input {
    position: absolute;
    top: 40px; /* appears below icons */
    left: 50%; /* start from center */
    transform: translateX(-50%); /* shift back by 50% of its own width */
    padding: 10px 15px;
    border-radius: 25px;
    border: 2px solid #ffb22c;
    font-family: 'Poppins', Segoe UI;
    font-size: 14px;
    width: 0;
    opacity: 0;
    transition: width 0.4s ease, opacity 0.4s ease;
    background-color: #fff;
    z-index: 1000;
  }
  
  /* When visible */
  #searchBoxi.show {
    width: 200px;
    opacity: 1;
  }
  
  #searchBoxi.show {
    width: 200px;
    opacity: 1;
  }
  

  #searchBoxi.show {
    width: 180px;
    opacity: 1;
    margin-left: 8px;
  }

  .search-icon:hover {
    transform: none;
  }
 
  .navbar .nav-links,
  .nav-right {
    display: none;
    
  }

  .floating-hamburger,
  .mobile-icons {
    display: flex;
  }

  /* Mobile Icons (Right Corner) */
  .mobile-icons {
    position: fixed;
    top: 5px;
    right: 3px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
  }
  

.cart-button {
  position: relative;
  display: flex;
  border: none;
  align-items: center;
  justify-content: center;
}




.mobile-icons img {
  width: 30px;
  height: 30px;
}

/* Side Menu */
.mobile-side-menu {
  position: fixed;
  left: -300px;
  top: 0;
  width: 250px;
  height: 100%;
  background: #111;
  color: white;
  z-index: 1003;
  transition: 0.3s ease;
  padding: 20px;
  border-top-right-radius: 35px;
  clip-path: polygon(0 0, 100% 0, 20% 100%, 0% 100%);
  border: 4px solid #fff;
}

.mobile-side-menu.open {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.mobile-logo {
  width: 120px;
}

.close-btn {
  font-size: 28px;
  cursor: pointer;
}

.mobile-menu-links {
  list-style: none;
  padding: 20px 0;
}

.mobile-menu-links li {
  margin: 15px 0;
}

.mobile-menu-links a {
  color: white;
  text-decoration: none;
  font-size: 18px;
}

.socials{
  position: relative;
  margin-bottom: 10px;
}

.chat-widget {
  position: fixed;
  top: auto !important;
  bottom: 10px !important;
  right: 10px;
}

.navbar {
  padding: 5px;  
}

.dropdown-menu {
  display: none;
}

.dropdown.open .dropdown-menu {
  display: block;
}

.arrow {
  font-size: 0.8em;
  margin-left: 5px;
  transition: transform 0.3s;
}

.dropdown.open .arrow {
  transform: rotate(180deg); /* arrow points up when open */
}

/* //click outside to close side menu  */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}

.hidden {
  display: none;
}

/* //profile modal  */
.profile-modal .modal-content {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

.modal-sidebar {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #f2f2f2;
  padding: 10px 20px;
  width: 100%;
  border-bottom: 1px solid #ccc;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-around;
}

.modal-menu {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.modal-menu li {
  flex: none;
  display: flex;
  align-items: left;
  text-align: left;
  padding: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  justify-content: flex-start;
}

.modal-main {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}


.socials{
  display: none;
}
.words h1{
  font-size: 30px;
  line-height: 1.0;
  margin-bottom: 0;
}

.words h4{
  margin-top: 2px;
  margin-bottom: 2px;
}

.words p{
  padding-bottom: 0;
  margin-bottom: 0;
}
.words{
  bottom: 13%;
  position: absolute;
  left: 0;
  margin: 5px;
}

.dots {
  position: absolute;
  top: 40%;
  left: 5px;
  gap: 10px;
}
.work-cards{
  display: none;
}

.cube-stat-container {
  position: fixed;
  bottom: 15px;
  left: 18px;

}

      .scroll-right-btn{
    display: block;
  }

  .wproducts-grid{
  margin-left: -10px;
}
.wproduct-card{
  width: 150px;
  height: auto;
  padding: 10px;
  margin-bottom: 10px;
  margin-left: -10px;
  margin-right:5px;
}

.wcart-btn{
  top: auto;
  bottom: 0;
  flex-wrap: nowrap;
  width: 100%;
  background: transparent;
  background: #00000013;
  color:#000;
  border: solid 1px #00000013;
}

.wdiscount-badge {
    position: absolute;
    bottom: 0;
    left: 15px;
    display:none;
}

.pay-now-button{
  right: auto;
  left: 0;
  top: auto;
  bottom: 30%;
  margin: 10px;
}

.hero-content h5{
margin-top:0;
}
}
