 /* Color Scheme */
  :root {
    --primary-color: #f09a26; /* Orange */
    --primary-dark: #d18a22;
    --primary-light: #f8b04a;
    --bg-dark: #ffffff; /* Snow white */
    --bg-darker: #f8f8f8;
    --text-light: #333333;
    --text-lighter: #555555;
    --accent-color: #3a86ff;
    --hover-dark: #f0f0f0;
    --border-dark: #e0e0e0;
    --badge-color: #ff4757;
    --shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  

  /* Header and General Styles */
  .header {
      background-color: var(--bg-dark);
      border-bottom: 1px solid var(--border-dark);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(240, 154, 38, 0.1); /* Enhanced shadow */
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(10px) opacity(1);
      -webkit-backdrop-filter: blur(10px) opacity(1);
  }
  
  /* Desktop Menu Styles - Enhanced */
  .desktop-menu {
    display: flex;
    align-items: center;
  }
  
  .desktop-menu-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
  }
  
  .desktop-menu-item {
    position: relative;
  }
  
  .desktop-menu-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--bg-dark);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-dark);
    min-width: 100px;
    height: 48px;
    box-sizing: border-box;
  }
  
  .desktop-menu-link-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  
  .desktop-menu-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(240, 154, 38, 0.3);
  }
  
  .desktop-menu-link:hover .desktop-menu-icon {
    color: #fff;
  }
  
  .desktop-menu-icon {
    font-size: 20px;
    margin-right: 8px;
    position: relative;
    color: var(--primary-color);
    transition: all 0.3s ease;
  }
  
  .desktop-menu-name {
    font-size: 14px;
    font-weight: 500;
    color: inherit;
  }
  
  .badge-cart-menu {
    font-size: 0.7rem;
    padding: 2px 6px;
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--badge-color);
    color: white;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }
  
  /* Search Bar Styles - Fixed and Enhanced */
  .search-container {
    display: flex;
    align-items: center;
    margin-right: 15px;
    width: 250px;
  }
  
  .search-form {
    width: 100%;
    transition: all 0.3s ease;
  }

  .search-form input {
    width: 100%;
    background-color: var(--bg-darker);
    color: var(--text-light);
    border: 2px solid var(--border-dark);
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
  }

  .search-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(240, 154, 38, 0.2);
  }
  
  /* Bottom Sheet Styles (Mobile) */
  .bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background-color: var(--bg-dark);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease-out;
    transform: translateY(calc(100% - 80px));
    padding: 16px;
    max-height: 90vh;
    overflow: hidden;
    border: 1px solid var(--border-dark);
  }

  .bottom-sheet.expanded {
    transform: translateY(0);
  }

  .sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
  }

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

  /*
  .drag-handle {
    width: 40px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
    cursor: pointer;
  }
*/

  .menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 12px 0;
  }

  .mobile-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border-radius: 12px;
    transition: all 0.2s ease;
    position: relative;
    background: var(--bg-darker);
    box-shadow: var(--shadow);
  }

  .mobile-menu-item:hover {
    background: var(--primary-color);
    transform: scale(1.05);
  }

  .mobile-menu-item:hover .mobile-menu-icon,
  .mobile-menu-item:hover .mobile-menu-name {
    color: #fff;
  }
  .mobile-menu-icon , i{
    //font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-color);
    position: relative;
    transition: all 0.2s ease;
  }
  
  .white-icon {
      color: white !important;
  }
  
  .mobile-menu-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
    transition: all 0.2s ease;
  }

  /* Header and General Styles */
  .header {
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-dark);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .navbar {
    padding: 10px 20px;
  }

  .navbar-brand {
    color: var(--primary-color) !important;
    font-weight: bold;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    
  }



  /* Order Item Indicator - Symmetrical with Cart */
  .order-indicator {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--bg-dark);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-dark);
    margin-left: 10px;
    transition: all 0.3s ease;
  }

  .order-indicator:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
  }

  .order-indicator video {
    border-radius: 6px;
  }

  /* Responsive Styles */
  @media(min-width: 768px) {
    .bottom-sheet {
      display: none;
    }
    
    .mobile-search {
      display: none;
    }
  }
  
  @media(max-width: 767px) {
    .desktop-menu {
	display: none;
    }
    
    .desktop-search {
      display: none;
    }

    .mobile-search {
      display: block;
      margin-right: 10px;
      width: 100%;
      padding: 0 15px;
    }

    .search-container {
      width: 100%;
      margin-right: 0;
    }

    .order-indicator {
      display: none;
    }

    .navbar-brand.centered {
	position: absolute;
	left: 50%;
	top:10px;
	transform: translateX(-50%);
    }

  }

  /* Animation */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }





*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html {
  font-size: 100%;
  box-sizing: inherit;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-black);
  background: var(--color-white);
  
  
  padding-top: 4rem; /* Adjust based on navbar height */
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  text-decoration: none;
  
  
  
}

.bringet-button, .bringet-span{
    background-color: var( --primary-light);
    
    
}
.bringet-icon{
    color: var( --primary-light);
}


.container {
  max-width: 75rem;
  height: auto;
  margin: 0 auto;
  padding: 0 1.25rem;
}



.brand {
  font-family: inherit;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-teal-800);
  text-transform: uppercase;
}




.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1000;
  background: var(--color-white);
  box-shadow: var(--shadow-medium);
}


#cart-length {
    height: 25px;
    width: 25px;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(50%, -50%);  /* Adjust for better centering */
    padding: 0.2em 0.6em;
    font-size: 0.8em;
}







.badge-cart-menu{
    display: flex;
    justify-content: center;
    
}

  /* end css */
  



/*product page css list.html*/
.custome-card-img-top {
    width: 100%;   /* Ensures the image takes full width of the card */
    height: 200px; /* Set a fixed height to maintain uniformity */
    border-radius: 5px; /* Optional: Makes corners rounded */

}


.custome-card {
    width: 100%; /* Takes full width of its column */
    /*max-width: 250px; /* Prevents oversized cards */
    min-height: 350px; /* Ensures uniform height */
    display: flex;
    flex-direction: column;
    align-items: center;
}

#see-more{
    
  margin-bottom: 100px;  
}
/* "Load More" Container */
.see-more {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #333; /* Text color */
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  
}
/* Lines on the left and right */
.see-more::before,
.see-more::after {
  content: '';
  flex: 1;
  height: 2px;
  background-color: #ddd; /* Line color */
  margin: 0 1rem; /* Space between text and lines */
}

/* Text and Icon */
.see-more-text {
  margin: 0 0.10rem; /* Space between text and icon */
}

/* Icon Styling */
.see-more .fa-arrow-down {
    margin-left: 10px;
    color: #333; /* Icon color */
    transition: transform 0.3s ease;
}

/* Hover Effect */
.see-more:hover .fa-arrow-down {
  transform: translateY(5px); /* Move icon down on hover */
}
/*end*/


/* check out button in the cart page */
#check-out{
    padding-bottom: 100px;
}






/*cart page style*/



  .cart-container {
    padding: 16px;
    max-width: 100%;
    margin-bottom: 120px; /* Increased from 80px to 120px to prevent overlap */
  }
  
  .cart-header {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 16px;
  }
  
  .cart-item {
    display: flex;
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    
  }
  
  .item-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 4px;
    margin-right: 12px;
  }
  
  .item-details {
    flex: 1;
  }
  
  .item-title {
      font-weight: 900;
      font-size: 1rem;
      margin-bottom: 5px;
  }
  
  .item-price {
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  .item-attributes {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
  }
  
  .item-size, .item-color {
      height: 30px;
      /*width:50px;*/
      border-radius: 5px;
      background-color:#2f3436;
      color:white;
      
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
    
  }
  
  .color-square {
    width: 16px;
    height: 16px;
    border-radius: 2px;
    border: 1px solid #ddd;
  }
  
  .quantity-controls {
    display: flex;
    align-items: center;
    margin-top: 8px;
  }
  
  .quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: white;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .quantity-value {
    margin: 0 12px;
    font-weight: bold;
  }
  
  .shipping-info {
    margin: 16px 0;
    padding: 12px;
    background: #f8f8f8;
    border-radius: 8px;
  }
  
  .total-section {
    margin: 16px 0 32px 0; /* Added more bottom margin */
    padding: 16px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }
  
  .total-price {
    font-size: 18px;
    font-weight: bold;
  text-align: left;
  white-space:nowrap;
  }
  
  .checkout-section {
      position: fixed;
  bottom: 60px; /* Above bottom menu */
  left: 0;
  right: 0;
  padding: 16px;
  background: white;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
  }
  
  .checkout-btn {
    width: 100%;
    padding: 14px;
    background: black;
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
  }
  
  .checkout-btn:hover {
    opacity: 0.9;
  }

   @media (min-width: 768px) {
    /* Desktop-specific styles */
    
    /* Make cart items bigger */
    .cart-item {
      padding: 20px;
      margin-bottom: 20px;
    }
    .item-title , .item-price{
	font-size: 1.5rem;
    }
    .quantity-btn{
	width: 45px;
	height: 45px;
	font-size: 1.4rem;
    }
    
    .item-image {
      width: 120px;
      height: 120px;
      margin-right: 20px;
    }
    
    /* Reposition checkout section */
    .checkout-section {
      position: static; /* Remove fixed positioning */
      display: flex;
      justify-content: flex-end; /* Align to right */
      padding: 0;
      background: transparent;
      box-shadow: none;
      margin-top: 20px;
    }
    
    /* Style checkout button */
    .checkout-btn {
      width: auto;
      padding: 12px 24px;
      border-radius: 25px;
      font-size: 15px;
      margin-left: auto; /* Push to right */
    }
    
    /* Adjust total section alignment */
    .total-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin: 30px 0;
      padding: 16px 0;
    }
    
    /* Container adjustments */
    .cart-container {
      max-width: 800px;
      margin: 40px auto;
      padding: 20px;
  }
  .item-image{
  height:200px;
  width:200px;
  }
  }

  
  @media(max-width:780px){
  .mobile-search{
  display:none;
  }
  }







  /* Modal styles */
.map-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
}

.map-modal-content {
  background: white;
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.map-container {
  height: 60vh;
  min-height: 300px;
  width: 100%;
  margin: 15px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  color: #2c3e50;
  font-weight: 600;
}

.modal-subtitle {
  margin: 0 0 15px 0;
  color: #7f8c8d;
  font-size: 0.95rem;
}

.close-modal {
  font-size: 28px;
  cursor: pointer;
  color: #7f8c8d;
  transition: color 0.2s;
  line-height: 1;
  padding: 5px;
}

.close-modal:hover {
  color: #e74c3c;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 15px;
}

.btn {
  padding: 12px 24px;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  min-width: 120px;
  text-align: center;
}

.btn-cancel {
  background-color: #f5f5f5;
  color: #7f8c8d;
}

.btn-cancel:hover {
  background-color: #e0e0e0;
  color: #555;
}

.btn-confirm {
  
  background-color:#f17f2a;
  color:#f7f5ee;
  box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3);
}

.btn-confirm:hover {
  background-color:#f17f2a;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .map-modal-content {
    padding: 20px;
    max-height: 95vh;
  }
  
  .map-container {
    height: 65vh;
  }
  
  .modal-header h2 {
    font-size: 1.3rem;
  }
  
  .btn {
    padding: 10px 20px;
    min-width: 100px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .map-modal-content {
    padding: 15px;
  }
  
  .modal-actions {
    flex-direction: column-reverse;
    gap: 8px;
  }
  
  .btn {
    width: 100%;
  }
  
  .modal-header h2 {
    font-size: 1.2rem;
  }
  
  .map-container {
    height: 70vh;
    margin: 10px 0;
  }
}


/* Location Name Input Styles */
.location-name-container {
  margin-bottom: 15px;
}

.location-name-container label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: #555;
  font-weight: 500;
}

.location-name-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.location-name-input:focus {
  outline: none;
  border-color: #d18a22;
  box-shadow: 0 0 0 2px rgba(209, 138, 34, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .location-name-input {
    padding: 10px 12px;
  }
}



  /* Info Card Styles */
  .info-card {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.2s;
  }
  
  .info-card:hover {
    background-color: #e9ecef;
  }
  
  .info-card-icon {
    width: 36px;
    height: 36px;
    background-color: #FF8C00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
  }
  
  .info-card-label {
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 2px;
  }
  
  .info-card-value {
    font-weight: 500;
    color: #212529;
  }
  
  /* Collapse Icon Styles */
  .collapse-icon {
    transition: transform 0.3s;
    color: #6c757d;
  }
  
  .collapse-icon.collapsed {
    transform: rotate(-90deg);
  }
  
  /* Zigzag Separator */
  .zigzag-separator {
    height: 10px;
    background: linear-gradient(135deg, #f8f9fa 25%, transparent 25%) -10px 0,
                linear-gradient(225deg, #f8f9fa 25%, transparent 25%) -10px 0,
                linear-gradient(315deg, #f8f9fa 25%, transparent 25%),
                linear-gradient(45deg, #f8f9fa 25%, transparent 25%);
    background-size: 20px 20px;
    background-color: #fff;
  }

  /* Color square for color display */
  .color-square {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid #dee2e6;
    display: inline-block;
  }

  /* Mobile-specific padding */
  @media (max-width: 768px) {
    .container {
      padding-bottom: 80px; /* Extra space for fixed menu */
    }
    .order-card-body {
      padding-bottom: 20px;
    }
  }



  
  /* card page css*/

  
  .card-body{
      background-color:white;
      height:100%;
      /*border-radius: 15px;*/
      padding: 10px;
      box-shadow: 0px 0px 13px 8px rgba(0,0,0,0.1);
      border: 0.1rem solid #d8dbdd;
      position:relative;
      display: flex;
      flex-direction: column;
      /*max-width: 270px; /* Instead of fixed width */
	
  }
  
  .image-card{
      border: 0.1rem double  #d8dbdd;
      height: 200px;
      width: ;
      /*border-radius: 10px;*/
      padding: 5px;
      position:relative;
      justify-items:center;
      overflow:hidden;

  
  }
  
  .star-icon{
      height: 35px;
      width: 35px;
      border-raxdius: 50%;
      position:absolute;
      top:10px;
      right:10px;
      display:flex;
      align-items:center;
      justify-content:center;
      
  }
  
.pluse-icon {
  
    background-color:white;
    border: 0.2rem solid  #f09a26;
    height: 60px;
    width:60px;
    display: flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    position:absolute;
    bottom:100px;
    inset-inline-end: 20px; /* This replaces 'right: 20px;' */
	
}


.pluse-icon i{
    font-size: 20px;
}

.card-data{
    
    margin:25px;
    font:1.1rem sans-serif;
}
.card-price{
    /* white-space: nowrap;*/
}
.card-title{
    color:#666;
    /* white-space: nowrap;*/
      
}



/* Responsive for small screens */
@media (max-width: 768px) {
    .card-price h3 {
	font-size: 1rem;
    }
    
    .card-title h4 {
	font-size: 0.9rem;
    }
}

/* Even smaller screens like phones */
@media (max-width: 480px) {
    .card-price h3 {
	font-size: 1.1rem;
	
    }
    
    .card-title h4 {
	font-size: 1rem;
	
    }
    .card-body{
	height: 300px;
    }
}


img{
    height:100%;
    width:100%;
    object-fit:contain;
    display:block;
}

.see-more{
    height: 80px;
    width: 80px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
    cursor: pointer;
    box-shadow: 0 3px 7px rgba(0,0,0,0.20);
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
      
      
}
  .see-more ,i{
      font:1.1rem sans-serif;
      font-weight: 700;
      font-size: 15px;
  }
  



  /* install button css */


  .install-btn-container{
      display: none;
  }
  
  @media(max-width:780px){

      .install-btn-container{
	  display: block;
      }
      
      
  }


  
  .install-btn {
      color: #ecf0f1;
      font-size: 17px;
      background-color: #e67e22;
      border: 1px solid #f39c12;
      border-radius: 5px;
      cursor: pointer;
      padding: 10px;
      box-shadow: 0px 6px 0px #d35400;
      transition: all 0.1s;
      position: fixed;
      bottom:100px;
      left:10px;
      z-index:9999;
      
  }
  
  .install-btn:active {
      
      box-shadow: 0px 2px 0px #d35400;
      bottom: 98px; /* just 2px lower than original 100px */
	  
      
  }
      
  

  /* back btn */
  
   .back-btn-container{
   display:none;
   }


   @media(max-width:780px){

   
   .back-btn-container{
       width:40px;
       height:40px;
       border-radius:50%;
       border:;
       background-color:;
       position:fixed;
       top:3px;
       inset-inline-start:5px;/*insted left:5px;*/
       z-index:9999;
       display:flex;
       justify-content:center;
       align-content:center;
   }
   
   [dir="rtl"] .back-btn-container{
       transform:scaleX(-1);
   }
   
   }




   /* detail product page style*/


   

   /*end  detail product style*/
