@font-face {
  font-family: 'Doran';
  src: url('/fonts/Webfonts/woff/Doran-Regular.woff') format('woff'),
  ;
}

:root {
    /* Define color variables 4A342E*/
    --rich-espresso: #4A342E;
    --creamy-latte: #C1A68D;
    --almond-milk: #F0EDE5;
}   

body {
    font-family: 'Doran';
    padding-top: 56px;
    background-color: var(--rich-espresso);
    color: var(--creamy-latte);
}
h1, h2, h3, h4, h5, h6{
  font-family: 'Doran';
  font-weight: 800;
}
main{
  min-height: 650px;
}
a{ 
    text-decoration: none;
}
.starter-template {
    padding: 3rem 1.5rem;
    text-align: center;
}
/* rtl.css */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd {
    text-align: right;
}

/* Reverse flex-direction for RTL layouts */
.flex-row-reverse {
    flex-direction: row-reverse;
}
/* Style the navbar */
.navbar-brand img {
  height: 40px; /* Adjust based on your navbar's specific design */
  width: auto; /* Keeps the aspect ratio intact */
}

.navbar {
    background-color: var(--rich-espresso);
}

/* Navbar brand and link styles */
.navbar-brand, .nav-link{
    color: var(--creamy-latte);
}

.navbar-nav .nav-link.show{
    color: var(--almond-milk);
}
.dropdown-menu li {
  position: relative;
  }
  .dropdown-menu .dropdown-submenu {
  display: none;
  position: absolute;
  right: 100%;
  top: -7px;
  }
  .dropdown-menu > li:hover > .dropdown-submenu {
  display: block;
  }
  .fa-angle-double-left{
    margin-top: 5px;
    font-size: 12px;
  }
  @media (max-width: 768px) {
    .dropdown-menu > li:hover > .dropdown-submenu {
      display: none;
      }
      .fa-angle-double-left{
        display: none;
      }
}

/* Navbar hover effects */
.nav-link:hover,.nav-link:active, .navbar-brand:hover, .dropdown-item:hover {
    color: var(--almond-milk);
    background-color: var(--rich-espresso);
}

/* Dropdown menu styles */
.dropdown-menu , .dropdown-item:active , .dropdown-item:focus, .dropdown-item:visited{
    color: var(--creamy-latte);
    background-color: var(--rich-espresso);
}
.dropdown-item:hover{
    color: var(--almond-milk);
}

.dropdown-item {
    color: var(--creamy-latte);
}

/* Adjustments for the shopping cart badge for better visibility */
.badge-danger {
    color: var(--creamy-latte);
}
.cart-top{
  
    padding-right: 10px;
}
/* Style for active nav item */
.navbar-nav .active {
    position: relative; 
}
@media (max-width: 768px) {
  .profile-li{
    padding-bottom: 10px;
  }
}
/* Creates the underline */
.navbar-nav .active::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background-color: var(--creamy-latte);
}
.navbar-toggler{
  border-color: var(--creamy-latte);
}
.navbar-toggler:focus{
  box-shadow: 0 0 8px var(--creamy-latte);
}
.navbar-toggler .navbar-toggler-icon {
  background-image: url('data:image/svg+xml;charset=UTF8,%3Csvg xmlns%3D%22http://www.w3.org/2000/svg%22 viewBox%3D%220 0 30 30%22%3E%3Cpath stroke%3D%22rgba%28193%2C 166%2C 141%2C 1%29%22 stroke-linecap%3D%22round%22 stroke-miterlimit%3D%2210%22 stroke-width%3D%222%22 d%3D%22M4 7h22M4 15h22M4 23h22%22/%3E%3C/svg%3E');
}
/*______________________________________________________________ index  ______________________________________________________________*/
.about-company {
  background-color: var(--almond-milk);
  padding: 50px 0;
  border-radius: 20px;
}
.about-company h2 {
  font-size: 2.5rem;
  color: var(--rich-espresso);
}
.about-company p {
  font-size: 16pt;
  color: var(--rich-espresso);
  line-height: 2;
  text-align: justify;
}
.about-company img {
  border-radius: 10px;
}
.about-company .text-center {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.key-features{
  background-color: var(--almond-milk);
  border-radius: 20px;
  padding: 30px;
}
.key-features h5{
  text-align: center;
  color: var(--rich-espresso);
}
.carousel-caption {
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5); 
}
.carousel-item h5{
  text-align: center;
  font-size: 24px;
  font-weight: normal;
}

@media (max-width: 768px) {
  .carousel-indicators , .carousel-control-prev , .carousel-control-next{
    display: none;
  }
  .carousel-item h5{
    font-size: 18px;
  } 
}
.carousel-caption > div {
    color: var(--almond-milk);
    text-align: center;
}
.custom-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: none;
    color: var(--almond-milk);
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.custom-btn:hover, .custom-btn:focus {
    background-color: var(--rich-espresso);
    color: var(--almond-milk);
    text-decoration: none;
}
/* Card Hover Effect */
.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 1px solid var(--almond-milk);
    background-color: var(--almond-milk);
}
.card:hover {
    transform: translateY(-5px); /* Slightly raise the card */
    box-shadow: 0 4px 8px var(--creamy-latte); /* Add shadow for depth using creamy latte color */
}

/* Product Title Hover Effect */
.card-title {
    transition: color 0.3s ease-in-out;
    color: var(--rich-espresso); /* Initial color using rich espresso */
}

.card:hover .card-title {
    color: var(--creamy-latte); /* Change title color on card hover to creamy latte */
}
/*______________________________________________________________ login and register ______________________________________________________________*/
.card {
    color: var(--rich-espresso);
    border: none;
    box-shadow: 0 8px 16px rgba(240, 237, 229, 0.2);
}

.card-header, .btn-primary {
    background-color: var(--rich-espresso);
    color: var(--almond-milk);
}

.login-button {
    padding: 0.8em 1.8em;
    border: 1px solid var(--creamy-latte);
    position: relative;
    overflow: hidden;
    background-color: transparent;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    transition: .3s;
    z-index: 1;
    font-family: inherit;
    color: var(--rich-espresso);
   }
   
   .login-button::before {
    content: '';
    width: 0;
    height: 300%;
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--almond-milk);
    transform: translate(-50%, -50%) rotate(45deg);
    background: var(--rich-espresso);
    transition: .5s ease;
    display: block;
    z-index: -1;
   }
   
   .login-button:hover::before {
    width: 115%;
   }
   
   .login-button:hover {
    color: var(--almond-milk);
   }  

.btn-link, .btn-link:hover, .btn-link:visited, .btn-link:focus {
    text-decoration: none;
    color: var(--rich-espresso);
}

.btn-link:hover {
    color: var(--creamy-latte); /* Optional: Only if you want a hover effect */
}

.form-control {
  direction: rtl;
    background-color: transparent;
    border: 1px solid var(--creamy-latte);
    color: var(--rich-espresso);
}

.form-control:focus {
    border-color: var(--rich-espresso);
    box-shadow: none;
}

::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--rich-espresso);
    opacity: 0.7; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--rich-espresso);
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--rich-espresso);
}
/* Custom form styling */
.form-group .form-control {
    background-color: var(--almond-milk);
    border: 1px solid var(--creamy-latte);
    color: var(--rich-espresso);
    border-radius: 0.25rem; /* Adds rounded corners */
    padding: 0.5rem 1rem; /* Adjust padding for better text visibility */
}

.form-group .form-control:focus {
    border-color: var(--rich-espresso);
    box-shadow: 0 0 0 0.2rem  rgba(240, 237, 229, 0.25);
}
.custom-checkbox-label {
    display: inline-flex;
    align-items: center;
    padding-right: 30px;
    cursor: pointer;
    min-height: 20px;
    position: relative;
}

.custom-checkbox-label:before {
    content: '';
    position: absolute;
    top: 50%; /* Start by aligning to the center */
    right: 0;
    transform: translateY(-40%) translateX(10%); /* Adjust Y translation to center, and X to adjust for the right padding */
    width: 20px;
    height: 20px;
    background-color: var(--almond-milk);
    border: 1px solid var(--creamy-latte);
    border-radius: 0.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 0; /* Ensure it's below the text */
}

.form-check-input:checked + .custom-checkbox-label:after {
    content: '';
    position: absolute;
    top: 50%; /* Center vertically */
    right: 4px; /* Adjust according to the size of the pseudo-element */
    transform: translateY(-50%) rotate(45deg); /* Center the checkmark within the box */
    width: 8px;
    height: 16px;
    border: solid var(--rich-espresso);
    border-width: 0 3px 3px 0;
}
.google-btn {
    width: 74%;
    padding: 0.5rem 1rem;
    background-color: var(--rich-espresso);
    color: var(--almond-milk);
    text-align: center;
    display: inline-block;
    font-size: 1rem;
    cursor: pointer;
    transition: box-shadow 0.3s ease;
    font-family: inherit;
    border-radius: 0.25rem;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0); /* Initial state with no visible shadow */
}

.google-btn:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); /* Shadow appears on hover, creating the levitation effect */
}
.login-logos{
    padding-left: 10px;
}
.register-link {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);  /* Adding a subtle shadow */
  padding: 10px;  /* Adding some padding to make the shadow more noticeable */
}
/*______________________________________________________________ products ______________________________________________________________*/
.category-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
/*______________________________________________________________ category-products ______________________________________________________________*/
.bg-title-page {
    position: relative;
    height: 500px;
    margin-bottom: 30px;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bg-title-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.container-fluid {
    position: relative;
    z-index: 1;
}

.category-title {
    font-size: 50px;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--almond-milk); 
}
.card-body p{
    color: var(--rich-espresso);
}
.card-container {
    padding: 0!important;
    margin-left: 20;
    margin-top: 20px;
    background-color: var(--almond-milk);
    max-width: 400px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(207, 207, 207, 0.2);
    overflow: hidden;
}
  
  .product-card {
    width: 100%;
    border-radius: inherit;
  }
  .product-card .front-content {
    width: 100%;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1)
  }
  .product-card .front-content .product-thumbnail{
    border-radius: 10px 10px 0 0; 
  }
  .product-card .front-content h3 , .product-card .front-content p {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin-top: 20px;
    opacity: 1;
    background: linear-gradient(-45deg, var(--rich-espresso) 0%, var(--creamy-latte) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1)
  }
  
  .product-card .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    background-color: var(--almond-milk);
    color: var(--rich-espresso);
    padding: 20px;
    line-height: 3;
    font-size: 24px;
    font-weight: 700;
    border-radius: 5px;
    pointer-events: none;
    transform: translatex(96%);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }
  
  .product-card:hover .content {
    transform: translateY(0);
  }
  
  .product-card:hover .front-content {
    transform: translateX(20%);
  }
  
  .product-card:hover .front-content p {
    opacity: 0;
  }

/*______________________________________________________________ product-detail ______________________________________________________________*/
/* Bread-crumb styles */
.bread-crumb {
    background-color: var(--almond-milk);
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 18px;
  }
  
  /* Breadcrumb links */
  .bread-crumb a {
    color: var(--rich-espresso);
    text-decoration: none;
  }
  
  /* Separator */
  .bread-crumb .txt30 {
    color: var(--rich-espresso);
  }
  
  /* Hover effect for links */
  .bread-crumb a:hover {
    color: var(--creamy-latte);
  }
  
  /* Current page */
  .bread-crumb .current {
    color: var(--creamy-latte);
  }  

/* Product section styles */
.product-section {
    display: flex;
    align-items: start;
    gap: 20px;
  }

.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.image-container .image-text {
    position: absolute; 
    font-size: 36px;
    font-weight: 700;
    color: var(--almond-milk); 
    z-index: 2; 
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); 
    z-index: 1; 
}

/* thumbnail */
.carousel-thumbnails {
    display: flex;
    justify-content: center;
    gap: 10px; /* Space between thumbnails */
    margin-top: 20px; /* Space between carousel and thumbnails */
}

.img-thumbnail {
    cursor: pointer;
    max-width: 100px; /* Adjust based on your needs */
    opacity: 0.7;
}

.img-thumbnail:hover {
    opacity: 1; /* Highlight thumbnail on hover */
}
.active-thumbnail {
    opacity: 1 !important;
}
/* product info */
  .product-details {
    padding: 20px;
    background-color: var(--almond-milk); 
    border-radius: 8px;
  }
  
  .product-details h4, .product-details .price, .product-details .span, .total h4 {
    margin-bottom: 30px;
  }
  
  .product-details .span, .total {
    display: block;
  }
  
  .main-border-button {
    text-align: center; /* Center the button */
  }
  
  .main-border-button button {
    background-color: var(--rich-espresso); /* Bootstrap primary color */
    color: var(--almond-milk);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .main-border-button button:hover {
    color: var(--rich-espresso);
    background-color: var(--creamy-latte);
  }
  .img-thumbnail.active-thumbnail {
    border: 2px solid var(--rich-espresso); /* Highlight active thumbnail */
  }

  .responsive-thumbnails {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px; /* Adjusts the space between thumbnails */
    overflow-x: auto; /* Allows horizontal scrolling on smaller screens */
    padding: 10px 0;
  }

  .responsive-thumbnails img {
      flex: 0 1 auto; /* Allows thumbnails to grow and shrink as needed */
      width: 100px; /* Sets a base width, adjust as necessary */
      height: auto; /* Maintains aspect ratio */
      cursor: pointer; /* Improves user interaction */
  }

  @media (max-width: 768px) {
      .responsive-thumbnails img {
          width: 80px; /* Smaller thumbnails on smaller screens */
      }
  }

  .pd-container1{
    border: 1px solid var(--creamy-latte);
    border-radius: 0 10px 10px 0;
    padding: 20px;
  }
  .pd-container2{
    border-top: 1px solid var(--creamy-latte);
    border-left: 1px solid var(--creamy-latte);
    border-bottom: 1px solid var(--creamy-latte);
    border-radius: 10px 0 0 10px;
    padding: 20px;
  }
  @media (max-width: 767px) {
    .pd-container1{
      border-radius: 10px;
    }
    .pd-container2{
      border: 1px solid var(--creamy-latte);
      border-radius: 10px;
    }
}
  .bd-title{
    color: var(--rich-espresso);
    font-size: 24px;
  }
  .attr-table tr td{
    background-color: var(--almond-milk);
  }
  .pd-desc{
    color: var(--rich-espresso);
  }
  .pd-desc p{
    font-size: 16pt;
    line-height: 2;
  }
  
/*______________________________________________________________ select 2 ______________________________________________________________*/

/*[ width select ]
===========================================================*/
.select2-container {
    display: block!important;
      max-width: 100%!important;
      width: auto !important;
  }
  
  /*[ Select ]
  ===========================================================*/
  .select2-container .select2-selection--single {
    display: flex!important;
    min-width: 100px;
    align-items: center!important;
      background-color: var(--almond-milk)!important;
      margin-top: 10px!important;
      border: 1px solid var(--creamy-latte)!important;
      border-radius: 10px !important;
      height: 35px!important;
      outline: none!important;
  }
  
  .select2-container--focus {
    border-radius: 10px;
    box-shadow: 0 0 0px 1px var(--creamy-latte);
    -moz-box-shadow: 0 0 0px 1px var(--creamy-latte);
    -webkit-box-shadow: 0 0 0px 1px var(--creamy-latte);
    -o-box-shadow: 0 0 0px 1px var(--creamy-latte);
  }
  
  .select2-container--focus .select2-selection--single {
    border-color: transparent;
  }
  
  .select2-container--below.select2-container--open {
    border-radius: 10px;
    box-shadow: 0 0 0px 1px var(--creamy-latte);
    -moz-box-shadow: 0 0 0px 1px var(--creamy-latte);
    -webkit-box-shadow: 0 0 0px 1px var(--creamy-latte);
    -o-box-shadow: 0 0 0px 1px var(--creamy-latte);
    -ms-box-shadow: 0 0 0px 1px var(--creamy-latte);
  }
  
  .select2-container--below.select2-container--open .select2-selection--single {
    border-color: transparent;
  }
  
  .select2-container--above.select2-container--open {
    border-radius: 10px;
    box-shadow: 0 0 0px 1px var(--creamy-latte);
    -moz-box-shadow: 0 0 0px 1px var(--creamy-latte);
    -webkit-box-shadow: 0 0 0px 1px var(--creamy-latte);
    -o-box-shadow: 0 0 0px 1px var(--creamy-latte);
    -ms-box-shadow: 0 0 0px 1px var(--creamy-latte);
  }
  
  .select2-container--above.select2-container--open .select2-selection--single {
    border-color: transparent;
  }
  
  
  /*[ in select ]
  ===========================================================*/
  .select2-selection__rendered {
    font-size: 14px;
    font-family: Montserrat;
    font-weight: 400;
    color: var(--creamy-latte) !important;
    padding-left: 20px !important;
  }
  
  .select2-selection__arrow {
    top: 50% !important;
    transform: translateY(-50%) !important;
    left: 10px !important;
  }
  
  
  /*[ dropdown option ]
  ===========================================================*/
  .select2-dropdown {
      border: none !important;
      border-radius: 10px !important;
      overflow: hidden;
      background-color: var(--almond-milk)!important;
      box-shadow: 0px 3px 25px rgba(0,0,0,0.1);
      margin-top: 7px;
  }
  .select2-dropdown--above {top: -2px;}
  .select2-dropdown--below {top: 2px;}
  
  .select2-container--default .select2-results__option[aria-selected=true],
  .select2-container .select2-results__option--highlighted[aria-selected] {
    background-color: var(--creamy-latte)!important;
    color: var(--almond-milk)!important;
  }
  
  .select2-results__options{
    font-size: 14px;
    font-weight: 400;
    color: var(--rich-espresso) !important;
  }
  
  
  .select2-search--dropdown .select2-search__field {
    border: 1px solid #aaa !important;
    outline: none;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
  }
  
  .select2-search--dropdown .select2-search__field:focus {
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    -o-box-shadow: none;
    -ms-box-shadow: none;
  }

/*______________________________________________________________ cart ______________________________________________________________*/

  .trash-button {
    background-color: var(--creamy-latte); /* Red color, similar to a typical trash bin */
    border: none;
    color: var(--almond-milk); /* White text color for contrast */
    padding: 10px 13px; /* Adjust padding for better button size */
    border-radius: 10px; /* Rounded corners for a modern look */
    cursor: pointer; /* Show pointer cursor on hover */
    transition: background-color 0.3s ease; /* Smooth transition effect */
}

.trash-button:hover {
    background-color: var(--rich-espresso); /* Darker red color on hover */
}

/* Adjust icon size and centering */
.fa-trash-alt {
    font-size: 20px; /* Adjust icon size as needed */
    vertical-align: middle; /* Center icon vertically within button */
}
.align-center {
  text-align: center;
  justify-content: center;
  align-items: center;
}
.no-hover:hover{
  transform: none;
  box-shadow: 0 8px 16px rgba(240, 237, 229, 0.2);
}
.cart-link {
  background-color: var(--rich-espresso); 
  color: var(--almond-milk); 
  padding: 10px 20px; 
  text-decoration: none;
  border-radius: 5px; 
  transition: background-color 0.3s ease; 
}

.cart-link:hover {
  background-color: var(--creamy-latte); 
  color: var(--rich-espresso);
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--almond-milk);
  color: var(--rich-espresso);
}

.cart-table th,
.cart-table td {
  padding: 12px 15px;
  background-color: var(--almond-milk);
  border-color: var(--rich-espresso); /* Ensures borders align with the color scheme */
}

/* Enhancing hover effect for table rows */
.cart-table tbody tr:hover td{
  color: var(--creamy-latte);
  cursor: pointer;
}
@media (max-width: 991px) {
  .cart-table thead {
      display: none;
  }
  .cart-table th {
    display: none;
}
  .cart-table tbody td small {
    display: none;
  }
  .cart-table tbody td {
      border-bottom: none;
      display: block;
      text-align: center;
  }
  .cart-table tfoot td::before {
      content: attr(data-label);
      float: right;
      font-weight: bold;
      padding-left: 10px;
  }
  .cart-table tfoot td{
    text-align: left;
    border: none;
  }
  .cart-table tbody tr {
      border-bottom: 3px solid var(--rich-espresso);
      display: block;
      margin-bottom: 20px;
  }
}

/*______________________________________________________________ user info  ______________________________________________________________*/
.btn-outline-dark{
  padding: 10px 20px;
  --bs-btn-color: var(--rich-espresso);
  --bs-btn-border-color: var(--rich-espresso);
  --bs-btn-hover-color: var(--almond-milk);
  --bs-btn-hover-bg: var(--rich-espresso);
  --bs-btn-hover-border-color: var(--rich-espresso);
  --bs-btn-focus-shadow-rgb: 33, 37, 41;
  --bs-btn-active-color: var(--almond-milk);
  --bs-btn-active-bg: var(--rich-espresso);
  --bs-btn-active-border-color: var(--rich-espresso);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--rich-espresso);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--rich-espresso);
  --bs-gradient: none;
}
  .user-info-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--almond-milk) !important;
    color: var(--rich-espresso) !important;
  }

  .user-info-table th,
  .user-info-table td {
    padding: 12px 15px;
    background-color: var(--almond-milk)!important;
  }

  .user-info-table thead {
    background-color: var(--creamy-latte) !important;
    color: var(--creamy-latte) !important;
  }

  /* Use more specific selectors to ensure styles are applied over Bootstrap */
  .user-info-table tbody tr:hover {
    background-color: var(--rich-espresso) !important;
    cursor: pointer;
  }

  .user-info-table tbody tr.selectedRow,
  .user-info-table tbody tr.address-row.selectedRow {
    background-color: var(--rich-espresso) !important;
    color: var(--almond-milk) !important;
  }

  .user-info-table .radioAddress {
    cursor: pointer;
  }

  /* Specific hover and selected row styles */
  .user-info-table tbody tr:hover,
  .user-info-table tbody tr.address-row:hover {
    background-color: var(--creamy-latte) !important;
    color: var(--rich-espresso) !important;
  }

  .user-info-table tbody tr.selectedRow,
  .user-info-table tbody tr.address-row.selectedRow {
    background-color: var(--rich-espresso) !important;
    color: var(--almond-milk) !important;
  }

/* Ensure the checked radio buttons match the design */
.user-info-table .radioAddress:checked {
  accent-color: var(--rich-espresso) !important;
}
.btn-dark{
    padding: 10px 20px;
  --bs-btn-color: var(--almond-milk);
  --bs-btn-bg: var(--rich-espresso);
  --bs-btn-border-color: var(--rich-espresso);
  --bs-btn-hover-color: var(--almond-milk);
  --bs-btn-hover-bg: var(--creamy-latte);
  --bs-btn-hover-border-color: var(--creamy-latte);
  --bs-btn-focus-shadow-rgb: 66, 70, 73;
  --bs-btn-active-color: var(--almond-milk);
  --bs-btn-active-bg: var(--creamy-latte);
  --bs-btn-active-border-color: var(--creamy-latte);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--almond-milk);
  --bs-btn-disabled-bg: var(--rich-espresso);
  --bs-btn-disabled-border-color: var(--rich-espresso);
}
/*______________________________________________________________ dashboard  ______________________________________________________________*/
.dashboard-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--almond-milk);
  color: var(--rich-espresso);
}

.dashboard-table th,
.dashboard-table td {
  padding: 12px 15px;
  background-color: var(--almond-milk);
  border-color: var(--rich-espresso); /* Ensures borders align with the color scheme */
}

/* Enhancing hover effect for table rows */
.dashboard-table .tr-dash:hover td{
  color: var(--creamy-latte);
  cursor: pointer;
}

.address-a{
  margin-left: 20px;
  cursor: pointer;
  color: var(--rich-espresso);
}
.address-a:hover , .address-b:hover{
  color: var(--creamy-latte);
}

.address-b{
  cursor: pointer;
  color: var(--rich-espresso);
}

@media (max-width: 768px) {
  .dashboard-table thead {
      display: none;
  }
  .dashboard-table tbody td small {
    display: none;
  }
  .dashboard-table tbody td .select2-container {
    margin-top: -13px;
  }
  .dashboard-table tbody td {
      border-bottom: 1px solid var(--rich-espresso);
      display: block;
      text-align: left;
      padding-top: 20px;
      padding-bottom: 20px;
  }
  .dashboard-table tbody td::before {
      content: attr(data-label);
      float: right;
      font-weight: bold;
      padding-left: 10px;
  }
  .dashboard-table tbody tr {
      border-bottom: 3px solid var(--rich-espresso);
      display: block;
      margin-bottom: 20px;
  }
}

/*______________________________________________________________ update user info  ______________________________________________________________*/
.update-user-info-desc{
  display: flex;
  justify-content: center;
  color: var(--creamy-latte)!important;
}
/*______________________________________________________________ users order detail  ______________________________________________________________*/

.card-title {
  font-weight: bold;
}

.table th, .table td {
  vertical-align: middle;
}
.status-unknown { color: grey; }
.status-unpaid, .status-canceled { color: red; }
.status-paid, .status-received { color: green; }
.status-preparation { color: darkorange; }
.status-posted { color: dodgerblue; }
.price-order{
  font-size: 18px;
  font-weight: bold;
}
.text-left{
  justify-content: left;
}
/*______________________________________________________________ footer  ______________________________________________________________*/
footer {
  color: var(--creamy-latte); /* Main text color */
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 2px solid var(--creamy-latte); /* Stylish top border */
}

footer h4 {
  color: var(--creamy-latte); /* Header text color */
  margin-bottom: 30px; /* Space below headers */
}

footer a {
  color: var(--almond-milk); /* Link color */
  transition: all 0.2s;
}

footer a:hover {
  color: var(--creamy-latte); /* Change color on hover */
}
footer li {
  margin-bottom: 10px; /* Space between list items */
}

.social-links a {
  font-size: 2rem; /* Larger size for icons */
}

.social-links a:hover {
  color: var(--creamy-latte); /* Icon hover color */
}
.footer-img{
  max-height: 200px;
}
/*______________________________________________________________ paginator  ______________________________________________________________*/
.pagination .page-link {
  color: var(--almond-milk); 
  background-color: var(--creamy-latte);
  border-color: var(--creamy-latte);
  box-shadow: none;
}

.pagination .page-link:hover {
  background-color: var(--rich-espresso);
  color: var(--almond-milk); 
  border-color: var(--rich-espresso);
}

.pagination .page-item.disabled .page-link {
  color: var(--rich-espresso); 
  background-color: var(--almond-milk); 
  border: 1px solid var(--creamy-latte);
}
/*______________________________________________________________ contact us  ______________________________________________________________*/
.contact-form {
  max-width: 960px;
  margin: auto;
  padding: 20px;
  background-color: var(--almond-milk);
  border-radius: 10px;
  box-shadow: 0px 0px 8px 3px var(--creamy-latte);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Contact Info Styling */
.contact-info {
  color: var(--rich-espresso);
  font-size: 24px;
  text-align: center;
}

.contact-info i{
  font-size: 30px;
  color: var(--almond-milk);
  background-color: var(--rich-espresso);
  padding: 20px;
  border-radius: 50%;
}

.contact-info p {
  margin: 10px;
  font-size: 20px;
  text-align: center;
}

.contact-info a {
  color: var(--rich-espresso);
}

.contact-info a:hover {
  color: var(--creamy-latte);
}

/* Form Field Styling */
.contact-email-form .form-control {
  border: 1px solid var(--creamy-latte);
  color: var(--rich-espresso);
  padding: 10px;
  border-radius: 10px;
}

.contact-email-form .form-control:focus {
  border-color: var(--rich-espresso);
  box-shadow: none;
}
.contact-email-form label{
  margin: 10px 0;
}
/*______________________________________________________________ forgot password  ______________________________________________________________*/
.passAlert {
  position: relative;
  padding: 1rem 1.5rem; /* Increased padding */
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.375rem;
}

.passAlert-success {
  color: var(--creamy-latte); /* Dark green text for better readability */
  background-color: var(--rich-espresso); /* Light green background */
  border-color: var(--rich-espresso); /* Matching green border */
}
.googlepng{
  max-width: 40px;
  height: auto;
  padding: 10px;
}
/*______________________________________________________________ certificates ______________________________________________________________*/
 #zarinpal img {
  width: 60px;
  margin: 20px;
}
/*______________________________________________________________ progress bar ______________________________________________________________*/ 
.progress-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--almond-milk);
}
.progress-step {
  text-align: center;
  flex: 1;
  position: relative;
}
.progress-step::before {
  content: '';
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  width: 100%;
  height: 4px;
  background-color: var(--creamy-latte);
}
.progress-step:first-child::before {
  width: 50%;
  right: 50%;
  width: 100%;
}
.progress-step:last-child::before {
  width: 50%;
  right: 0;
}
.progress-step.completed::before,
.progress-step.active::before {
  background-color: var(--rich-espresso);
}
.step-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--creamy-latte);
  display: inline-block;
  line-height: 30px;
  text-align: center;
  color: var(--almond-milk);
  font-weight: bold;
  position: relative;
  z-index: 1;
}
.step-title {
  margin-top: 10px;
}
.active .step-circle,
.completed .step-circle {
  background-color: var(--rich-espresso);
}
.active .step-title,
.completed .step-title {
  font-weight: bold;
  color: var(--rich-espresso);
}