/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
:root {
  --primary-color: #800e13; 
  --text-color: #333333; 
  --background-color: #f5f5f5; 
  --card-background: #FFFFFF; 
  --button-hover-color: #FF5722; 
  --footer-border-color: #008080;
  --service-button-color: #FFC107; 
  --highlight-color: #F4E1C1; 
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Kufi Arabic', sans-serif;
}


.arabic {
  text-align: right !important;
}


.rtl {
  direction: rtl !important;
  text-align: right !important;
}


.ltr {
  direction: ltr !important;
  text-align: left !important;
}


.button-styles {
  background-color: var(--highlight-color) !important; 
  color: var(--primary-color) !important; 
  transition: all 0.5s;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 5px; 
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */

.button-styles:hover {
  background-color: var(--primary-color) !important; 
  color: #fff !important; 
}

.button-styles:focus,
.button-styles:active {
  outline: none; 
  box-shadow: 0 0 5px var(--highlight-color); 
}


.category_style {
  color: var(--primary-color) !important; 
  width: 150px !important;
}


.color800e13 {
  color: var(--primary-color) !important; 
}

.colorffc107 {
  color: var(--highlight-color) !important; 
}

.color00 {
  color: #000000 !important; 
}

.colorff {
  color: #ffffff !important; 
}


.backcolorffc {
  background-color: var(--highlight-color) !important;
}

.service-button {
  background-color: var(--primary-color) !important; 
  color: #fff !important; 
}
/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */

.product_imgs {
  width: 300px !important;
  height: 200px;
}


.backcolor800 {
  background-color: var(--primary-color);
  color: var(--highlight-color);
}


.backcolor800:hover {
  background-color: #ffffff !important;
  color: var(--primary-color) !important;
}

.bold-strong {
  font-size: 20px;
}


.nav-bar {
  position: fixed;
  z-index: 1000;
  border-bottom: 3px solid var(--footer-border-color); 
  background-color: var(--background-color) !important;
  height: auto;
  
}
.search-style{
  background-color: var(--primary-color) !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  
}
.search-style i{
  color: var(--background-color);
}
.move-cont{
  padding-top: 300px !important;
}

.share-img {
  width: 100%;
  height: 80%;
  object-fit: cover;
}


.product-card {
  background-color: var(--card-background); 
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


.product-card__image {
  height: 250px;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}


.product-card:hover .product-card__image img {
  transform: scale(1.05);
}


.product-card__info {
  padding: 20px;
}

.product-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-color); 
}

.product-card__description {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}


.product-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-card__price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color); 
}

.product-card__btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}


.product-card__btn:hover {
  background-color: var(--button-hover-color); 
}


#container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  background-color: var(--background-color); 
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
@media screen and (max-width: 1366px) {
  #container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.social-media{
  background-color: var(--primary-color) !important;
  padding: 10px;
  border-radius: 50%;
}


footer {
  background-color: var(--background-color); 
  border-top: 3px solid var(--footer-border-color); 
  padding: 20px;
  width: 12px !important;
  height: 12px !important;
  text-align: center;
  color: var(--text-color); 
}


/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.main {
  height: 100vh;
  width: 100%;
  position: relative;
  background-color: var(--background-color); 
}


.main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  z-index: 1;
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.wrapper,
.slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  overflow: hidden;
}

.slide::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.slide .image {
  height: 100%;
  width: 100%;
  object-fit:contain ;
}

.slide .image-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 100;
}

.image-data span.text {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.image-data h2 {
  font-size: 45px;
  font-weight: 600;
  color: #fff;
}


a.button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  color: var(--text-color); 
  background: var(--card-background); 
  text-decoration: none;
  margin-top: 25px;
  transition: all 0.3s ease;
}

a.button:hover {
  color: #fff;
  background-color: var(--primary-color); 
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.nav-btn {
  height: 50px !important;
  width: 50px !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.swiper-button-next {
  right: 50px;
}

.swiper-button-prev {
  left: 50px;
}

.nav-btn::before,
.nav-btn::after {
  font-size: 23px !important;
  color: var(--primary-color); 
}


.swiper-pagination-bullet {
  opacity: 1;
  height: 12px;
  width: 12px;
  background-color: #fff;
  visibility: hidden;
}

.swiper-pagination-bullet-active {
  border: 2px solid #fff;
  background-color: var(--highlight-color); 
}

@media screen and (max-width: 768px) {
  .nav-btn {
    visibility: hidden;
  }

  .swiper-pagination-bullet {
    visibility: visible;
  }
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.scroll-timer-widget {
  position: fixed;
  bottom: 20px;
  left: 0;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--card-background); 
  border: 1px solid var(--primary-color); 
  border-radius: 5px;
  padding: 10px;
  transition: all 0.3s ease;
  z-index: 100000;
}
.timer {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: var(--primary-color); 
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.image {
  width: 100px;
  height: 90px;
  object-fit: cover;
  transition: opacity 0.3s ease, flex 0.3s ease;
}

.sale-tag {
  position: absolute;
  top: -17px; 
  right: -50px; 
  background-color: var(--button-hover-color); 
  color: white; 
  font-size: 12px; 
  font-weight: bold;
  padding: 2px 10px; 
  transform: rotate(45deg); 
  transform-origin: top left; 
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); 
  z-index: 1; 
  text-align: center;
  width: 80px; 
  border-radius: 3px; 
  animation: swirl 2s ease-in-out infinite; 
}


.sale-tag::before,
.sale-tag::after {
  content: '';
  position: absolute;
  background-color: var(--button-hover-color); 
  width: 10px; 
  height: 10px; 
  border-radius: 50%; 
}

.sale-tag::before {
  top: -5px; 
  left: -5px; 
}

.sale-tag::after {
  bottom: -5px; 
  right: -5px; 
}
/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */


#sale-text {
  display: none;
  color: var(--primary-color) !important; 
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  top: 36px;
  right: 10px;
}


@media (max-width: 768px) {
  .scroll-timer-widget {
      width: 180px; 
      height: auto; 
      flex-direction: column; 
      align-items: center; 
      padding: 10px 5px;
  }

  .timer {
      font-size: 12px; 
      margin-bottom: 5px; 
      text-align: center;
  }

  .image {
      width: 80px; 
      height: 70px; 
  }

  #sale-text {
      font-size: 18px; 
      top: 20px; 
      right: 10px; 
      text-align: center; 
      position: relative; 
  }
}
/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
@media (max-width: 480px) {
  .scroll-timer-widget {
      width: 150px; 
      height: auto; 
      padding: 8px 5px;
  }

  .timer {
      font-size: 10px; 
      margin-bottom: 5px;
  }

  .image {
      width: 60px; 
      height: 60px; 
  }

  #sale-text {
      font-size: 16px; 
      top: 10px;
      right: 5px; 
      position: relative; 
  }
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
#scroll-timer-widget {
  visibility: visible; 
  transition: visibility 0.3s ease; 
}


#scroll-timer-widget.hidden {
  visibility: hidden;
}

#blogModelRetrieval {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 20px;
  border-radius: 10px;
  width: 500px;
  height: 500px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}


.modal-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: var(--card-background); 
  border-radius: 10px;
  padding: 15px;
  overflow-y: auto; 
}

#modalImage {
  width: 100%;
  height: 200px; 
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
#modalHeader {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: var(--highlight-color); 
  margin-bottom: 15px;
}


#modalContent {
  color: var(--primary-color) !important; 
  padding: 10px; 
  max-height: 400px; 
  overflow-y: auto; 
  font-family: 'Arial', sans-serif;
  direction: rtl; 
}


#modalDate, #modalTime {
  font-size: 14px;
  color: var(--highlight-color); 
}


.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: var(--text-color);
  cursor: pointer;
  transition: color 0.3s;
}

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


#comment-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


#comment-form .form-control {
  font-size: 1rem;
  padding: 12px 20px;
  border: 1px solid #ddd; 
  margin-bottom: 15px;
  background-color: var(--card-background); 
  box-shadow: none;
  transition: all 0.3s ease-in-out;
}

#comment-form .form-control:focus {
  border-color: #007bff; 
  outline: none;
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.stars i {
  font-size: 1.5rem;
  color: #ccc; 
  cursor: pointer;
  transition: color 0.3s ease;
}

.stars i.selected {
  color: #f1c40f; 
}


#comment-form .btn {
  font-size: 1.1rem;
  padding: 15px;
  border: none;
  background-color: var(--primary-color); 
  color: white;
  transition: background-color 0.3s ease;
}

#comment-form .btn:hover {
  background-color: var(--button-hover-color); 
}


@media (max-width: 768px) {
  .stars i {
      font-size: 1.3rem; 
  }

  #comment-form .btn {
      font-size: 1rem; 
  }
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.addcomment {
  width: 100px;
  height: 100px;
  text-align: center;
}

.addcomment a {
  background-color: var(--primary-color); 
  color: #fff;
  font-size: 10px;
  padding: 10px;
  border-radius: 20px;
}


.product {
  background-color: var(--card-background); 
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
  display: flex;
  flex-direction: column;
  align-items: flex-end; 
  justify-content: center;
  text-align: right; 
  width: 100%;
  max-width: 300px; 
  margin: 10px; 
}
/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.product:hover {
  transform: translateY(-10px); 
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1); 
}
.product-name-link {
  text-decoration: none; 
  color: var(--text-color); 
  display: block;
}

.product-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-color); 
  transition: color 0.3s ease;
  margin: 0;
  padding: 5px 0;
}

.product-name:hover {
  color: var(--highlight-color); 
}

@media (max-width: 768px) {
  .product {
      max-width: 100%; 
      padding: 15px;
  }
}

@media (max-width: 480px) {
  .product {
      padding: 10px;
  }
  .product-name {
      font-size: 16px; 
  }
}
/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.cart-styles {
  background-color: var(--primary-color) !important;
  border-radius: 30px;
  text-align: center;
  color: #fff;
  border: none;
  width: 100px;
  padding: 8px;
  margin-right: 10px;
}

.user-info {
  position: relative;
  display: inline-block;
}

#userButton {
  background-color: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

#userButton:hover {
  background-color: #fff !important;
  color: var(--primary-color) !important;
}


#userPopup {
  position: absolute;
  top: 100%;
  left: -80px;
  background-color: var(--card-background);
  border: 1px solid var(--border-color);
  padding: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 10;
  width: 200px;
}

.popup.hidden {
  display: none;
}

.actions button {
  display: block;
  width: 100%;
  margin: 5px 0;
  padding: 8px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  cursor: pointer;
}

.actions button:hover {
  background-color: var(--highlight-color) !important;
}


.view-more-link {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: var(--highlight-color);
  text-decoration: underline;
}

.view-more-link:hover {
  text-decoration: underline;
}

.nav-bar-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.nav-bar {
  transition: transform 0.3s ease-in-out;
}
.whatsapp-chat{
  position: fixed; 
  bottom: 100px; 
  right: 30px; 
  z-index: 1000;
  background-color: var(--footer-border-color);
  width: 40px;
  height: 40px;
}
.whatsapp-chat i{
  color: var(--card-background);
}
#whatsapp-chat-window{
  display:none;
   position: fixed; 
   bottom: 180px; 
   right: 30px; 
   background: var(--footer-border-color);
   border-radius: 20px;
   box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1); 
   width: 330px; 
   padding: 20px; 
   border: 1px solid #ddd;
   z-index: 999;
  }
#whatsapp-chat-window h4{
  color: var(--background-color);
}
#whatsapp-chat-window button{
  background-color: var(--primary-color);
  color: var(--highlight-color);
}
/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.nav-bar {
  transition: background-color 0.3s;
}


.nav-bar-visible {
  background-color: var(--background-color); 
}


.nav-bar-transparent {
  background-color: var(--background-color); 
}


.nav-bar-hidden {
  display: none;
}

 
.main-body {
  padding: 15px;
}
.card {
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 0 solid rgba(0,0,0,.125);
  border-radius: .25rem;
  height: 300px;
}

.card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1rem;
}

.gutters-sm {
  margin-right: -8px;
  margin-left: -8px;
}

.gutters-sm>.col, .gutters-sm>[class*=col-] {
  padding-right: 8px;
  padding-left: 8px;
}
.mb-3, .my-3 {
  margin-bottom: 1rem!important;
}

.bg-gray-300 {
  background-color: #e2e8f0;
}
.h-100 {
  height: 100%!important;
}
.shadow-none {
  box-shadow: none!important;
}
/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
@media (max-width: 768px) {
  .row {
      flex-direction: column;
  }
}


#cartItems {
  max-height: 300px;  
  overflow-y: auto;
}


table {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
}

table th, table td {
  padding: 10px;
  text-align: center;
  border: 1px solid #ddd;
}

table th {
  background-color: #f8f9fa;
}

table td {
  background-color: #fff;
}


#banner-container {
  width: 100%;
  height: 400px; 
  overflow: hidden; 
  margin: 0; 
  padding: 0; 
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */

.banner-image {
  width: 100%; 
  height: auto; 
  object-fit: contain; 
  display: block; 
}


@media (max-width: 768px) {
  .banner-image {
      max-width: 100%; 
  }
}
.product-link-to-details{
text-decoration: underline;
}



.search-bar {
    background-color: var(--card-background); 
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
    
}

.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px; 
    margin: 0 auto; 
    padding: 0 15px; 
   
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--highlight-color); 
    border-radius: 30px; 
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    color: var(--text-color); 
    background-color: var(--background-color); 
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */

.search-input:focus {
    border-color: var(--primary-color); 
    box-shadow: 0 0 8px rgba(128, 14, 19, 0.3); 
}

.search-button {
    background-color: var(--primary-color); 
    border: none;
    color: white;
    padding: 12px 20px;
    margin-left: 10px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background-color: var(--button-hover-color); 
    transform: scale(1.05);
}

.search-button i {
    font-size: 18px;
}


/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
@media (max-width: 768px) {
  .search-bar{
    height: 100px;
  }
    .search-container {
        flex-direction: column; 
    }

    .search-input {
        width: 100%;
        margin-bottom: 10px; 
    }

    .search-button {
        width: 100%; 
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    .search-input {
        font-size: 14px; 
        padding: 10px 15px;
    }

    .search-button {
        padding: 10px 15px;
    }
}
/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
#searchResultsContainer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
}


.search-product-item {
  display: flex;
  align-items: center;
  background-color: var(--card-background);
  border: 1px solid var(--highlight-color);
  border-radius: 10px;
  padding: 10px;
  text-decoration: none; 
  color: inherit; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.search-product-image {
  width: 80px;
  height: 80px;
  margin-left: 15px; 
}
/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.search-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 8px;
}


.search-product-info {
  flex: 1; 
}

.search-product-title {
  font-size: 18px;
  color: var(--text-color);
  margin: 0;
  font-weight: bold;
}

.search-product-price {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: bold;
  margin-top: 5px;
}

.navbar-light {
  background-color: transparent;
  transition: background-color 0.3s ease; 
}
.nav-bar-back{
  background-color: var(--background-color);
}
/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.navbar-pushed {
  background-color: white !important; 
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
}


#navbarSection {
  transition: padding-top 0.3s ease, background-color 0.3s ease;
}


.message-box {
  position: fixed;
  top: 70px; 
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--footer-border-color); 
  color: var(--background-color);
  padding: 15px 25px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: none;
  align-items: center;
  justify-content: space-between;
  z-index: 10000;
  font-family: "Arial", sans-serif;
  text-align: right; 
  direction: rtl; 
  max-width: 90%; 
  word-wrap: break-word; 
}


.message-box.error {
  background-color: var(--primary-color);
}


#close-message-btn {
  background: none;
  border: none;
  color: var(--background-color);
  font-size: 20px;
  cursor: pointer;
  margin-left: 15px;
}

#close-message-btn:hover {
  opacity: 0.8;
}


@media (max-width: 600px) {
  .message-box {
    padding: 12px 20px;
    font-size: 14px;
  }

  #close-message-btn {
    font-size: 18px;
    margin-left: 10px;
  }
}

/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */
.hidden {
  display: none;
}


.search-icon-button {
  background: transparent;
  border: none;
  cursor: pointer;
  color: #000;
}
/* -------------------------------------------------------------------------------------------
 *  Project: ALSHIFA-HONEY.com
 *  Description: Core styles developed to ensure consistency, responsiveness,
 *               and maintainability across the NeoMatrix frontend framework.
 *  
 *  Developed by: NeoMatrix Development Team
 *  Reviewed by:  Nabeel Khalid
 *
 *  Notes:
 *  - Follow coding standards and best practices for CSS architecture.
 *  - Modular and scalable design approach.
 *  - Maintain cross-browser compatibility and accessibility.
 *
 * ------------------------------------------------------------------------------------------ */