/* Base Styles */
/* المنتج و الهيدر و الفوتر و الباقي كل واحد تصميمه في صفحته */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  /* Adjust based on your header height */
}

:root {
  --primary-color: #105FAA;
  --primary-light: #2b80cb;
  --primary-dark: #0d4d89;
  --white: #ffffff;
  --light-gray: #f9f9f9;
  --dark-gray: #333333;
  --medium-gray: #666666;
  --border-radius: 8px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  /* Footer Specific */
  --footer-bg: #1E1E1E;
  --footer-text: #B5B5B5;
  --footer-divider: rgba(255, 255, 255, 0.1);
  --secondary-color: #F97F7F;
  --text-color: #2D3748;
  /* Banner Specific */
  --banner-height: 600px;
  --banner-mobile-height: 500px;
  --banner-overlay: rgba(0, 0, 0, 0.5);
  --banner-text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  --banner-animation-duration: 0.5s;
}

body {
  background-color: var(--light-gray);
  color: var(--dark-gray);
}

/* Main Navigation */
.main-nav {
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 0.75rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-bar {
  align-items: center;
  width: 100%;
}

/* Icons Section */
.icons {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.light-gray {
  color: var(--medium-gray);
}

.cursor-pointer {
  cursor: pointer;
}

/* Shopping Cart Icon */
/* Shopping Cart Icon - Updated Positioning */
.shoping-icon {
  position: relative;
  margin-right: 1rem;
  display: inline-block;
}

/* .count-cart {
  position: absolute;
  top: -10px;
  right: -5px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  z-index: 2;
} */

.shoping-icon i {
  position: relative;
  transition: var(--transition);
}

.shoping-icon a {
  display: inline-block;
  text-decoration: none;
}

.shoping-icon:hover i {
  color: var(--primary-color);
}

/* Profile Dropdown */
.personal-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--primary-light);
  transition: var(--transition);
}

.personal-image:hover {
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.dropdown-menu {
  background-color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  min-width: 200px;
  right: 0;
  left: auto !important;
}

.dropdown-menu li {
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.dropdown-menu li:hover {
  background-color: var(--light-gray);
}

.dropdown-menu a {
  color: var(--dark-gray);
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}

.dropdown-menu li:hover a {
  color: var(--primary-color);
}

.dropdown-menu i {
  transition: var(--transition);
}

.dropdown-menu li:hover i {
  color: var(--primary-color);
}

/* Search Input */
.input-group {
  max-width: 400px;
  margin: 0 auto !important;
}

.form-control {
  border-color: #e0e0e0;
  padding: 0.75rem 1rem;
  transition: var(--transition);
  background-color: var(--light-gray);
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-light);
  background-color: var(--white);
}

.input-group-text {
  border-color: #e0e0e0;
  color: var(--medium-gray);
}

.form-control:focus+.input-group-text {
  border-color: var(--primary-light);
  color: var(--primary-color);
}

/* Hamburger Menu Button */
.bars-btn {
  background-color: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-gray);
  transition: var(--transition);
}

.bars-btn:hover,
.bars-btn:focus {
  color: var(--primary-color);
  transform: scale(1.1);
}

/* Offcanvas Menu */
.offcanvas {
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  max-width: 300px;
}

.offcanvas-header {
  padding: 1.5rem;
}

.close-btn {
  background-color: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-gray);
  transition: var(--transition);
}

.close-btn:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

.logo-sidbar {
  height: 60px;
  background-image: url('../images/logo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#listCategories {
  list-style: none;
  padding: 0;
}

#listCategories li {
  padding: 0.75rem 0;
  transition: var(--transition);
  cursor: pointer;
}

#listCategories li:hover {
  color: var(--primary-color);
  padding-right: 0.5rem;
}

/* Alert */
.alert-primary {
  background-color: rgba(16, 95, 170, 0.1);
  border: 1px solid var(--primary-light);
  color: var(--primary-color);
  border-radius: var(--border-radius);
  margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .nav-bar {
    flex-wrap: wrap;
  }

  .input-group {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin-top: 1rem !important;
  }
}

@media (max-width: 768px) {
  .main-nav {
    padding: 0.5rem 1rem;
  }

  .icons {
    gap: 1rem;
  }

  .personal-image {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 576px) {
  .icons {
    gap: 0.75rem;
  }

  .dropdown-menu {
    min-width: 180px;
  }
}

/* New Styles for Logo */
.logo-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* Align to the right */
}

.logo-img {
  max-height: 50px;
  /* Adjust as needed */
  margin-right: 1rem;
  /* Spacing from other elements */
}

/* Base Footer Styles */
.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  font-family: 'Tahoma', 'Arial', sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  direction: rtl;
  padding: 64px 0 32px;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 40px;
}

/* Logo/Brand Section */
.footer-brand {
  text-align: right;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 100%;
  height: auto;
}

.footer-tagline {
  color: var(--white);
  font-weight: 500;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  justify-content: center;
  align-items: center;
  /* Centers the flex items vertically */
  /* Centers the flex items */

}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.social-icon i {
  font-size: 1.2rem;
}

/* Content Links Sections */
.footer-links {
  padding: 0 24px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-heading {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(to left, var(--primary-light), var(--primary-color));
  border-radius: 1px;
}

.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-list li {
  margin-bottom: 12px;
}

.footer-link {
  color: var(--footer-text);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  display: inline-block;
}

.footer-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  right: 50%;
  background-color: var(--primary-light);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary-light);
}

.footer-link:hover::after {
  width: 100%;
  right: 0;
}

/* Contact Items */
.footer-contact-item {
  display: flex;
  align-items: center;
}

.footer-contact-item i {
  margin-left: 12px;
  color: var(--primary-light);
  font-size: 1.1rem;
}

.footer-contact-item a {
  color: var(--footer-text);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--primary-light);
  transform: translateX(-3px);
}

/* Description Section */
.footer-description {
  text-align: right;
}

.footer-text {
  line-height: 1.7;
  text-align: justify;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--footer-divider);
  text-align: center;
}

.footer-copyright {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 24px;
  }

  .footer-logo {
    margin: 0 auto 16px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-description {
    grid-column: 1 / -1;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 48px 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links {
    padding: 0;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-heading {
    text-align: center;
  }

  .footer-heading::after {
    right: 50%;
    transform: translateX(50%);
  }

  .footer-link-list {
    text-align: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-description {
    text-align: center;
  }

  .footer-text {
    text-align: center;
  }
}

/* Enhanced Responsive Adjustments */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 24px;
  }

  .footer-logo {
    margin: 0 auto 16px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-description {
    grid-column: 1 / -1;
  }

  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 40px 0 24px;
  }

  .footer-container {
    padding: 0 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Better section ordering for mobile */
  .footer-grid {
    display: flex;
    flex-direction: column;
  }

  .footer-brand {
    order: 1;
  }

  .footer-links {
    order: 2;
    padding: 0;
  }

  .footer-description {
    order: 3;
  }

  /* Improved spacing for touch */
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Accordion style for sections (optional) */
  .footer-links-section {
    border-bottom: 1px solid var(--footer-divider);
    padding-bottom: 16px;
  }

  .footer-links-section:last-child {
    border-bottom: none;
  }

  /* Improved heading style */
  .footer-heading {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .footer-heading::after {
    right: 50%;
    transform: translateX(50%);
    width: 32px;
  }

  /* Larger touch targets for links */
  .footer-link-list {
    text-align: center;
  }

  .footer-link-list li {
    margin-bottom: 16px;
  }

  .footer-link {
    padding: 4px 0;
    font-size: 0.95rem;
  }

  /* Improved contact items */
  .footer-contact-item {
    justify-content: center;
    margin-bottom: 16px;
  }

  .footer-contact-item a {
    font-size: 0.95rem;
  }

  /* Larger touch targets for social icons */
  .footer-social {
    gap: 20px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
  }

  /* Better text display */
  .footer-description {
    text-align: center;
  }

  .footer-text {
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.6;
  }

  /* Improved footer bottom */
  .footer-bottom {
    margin-top: 32px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .site-footer {
    padding: 32px 0 20px;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-heading {
    font-size: 0.95rem;
  }

  .footer-link,
  .footer-contact-item a,
  .footer-text,
  .footer-copyright {
    font-size: 0.8rem;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon i {
    font-size: 1rem;
  }
}


/* productproductproductproductproductproductproductproductproductproductproductproduct */
/* 

/* Base Card Styles */
.product {
  /* border: 1px solid #0000001c;  REMOVED */
  padding: 15px;
  border-radius: 10px;
  /* Slightly more rounded */
  position: relative;
  overflow: hidden;
  margin-block: 10px;
  min-height: 420px;
  /* Adjusted height */
  box-shadow: 0 2px 10px var(--box-shadow-color);
  /* Added subtle shadow */
  transition: box-shadow 0.3s ease;
  /* Smooth shadow transition */
  background-color: #fff;
  /* Ensure a white background */
}

.product:hover {
  box-shadow: 0 4px 15px var(--box-shadow-color);
  /* Increased shadow on hover */
}

.product img {
  width: 100%;
  height: 280px;
  /* Adjusted image height */
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  /* Add transition for smooth hover effect */
}

.product:hover img {
  transform: scale(1.05);
  /* Slight zoom on hover */
}

.product .heart-btn,
.product .heart-btn-active {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
  outline: none;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  background-color: rgba(255, 255, 255, 0.95);
  /* Always white background */
}

/* Inactive state: Outline heart */
.product .heart-btn i {
  color: #888;
  /* Gray color for the outline heart */
}

.product .heart-btn:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  background-color: rgba(255, 255, 255, 1);
  /* Solid white background on hover */
}

/* Inactive state: Red heart on hover */
.product .heart-btn:hover i {
  color: #FF6B6B;
}

/* Active state: Solid Red heart */
.product .heart-btn-active i {
  color: #FF6B6B;
}

.product .heart-btn-active {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.product .heart-btn-active:hover {
  transform: scale(1.2) rotate(-10deg);
  background-color: rgba(255, 255, 255, 1);
  /* Solid white background on hover */
}

/* Banner Section Styles */
.banner-section {
  width: 100%;
  margin-bottom: 2rem;
  overflow: hidden;
  background-color: var(--dark-gray);
}

.banner-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.banner-slider {
  position: relative;
  width: 100%;
  height: var(--banner-height);
  overflow: hidden;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  transform: translateX(100%);
  transition: transform var(--banner-animation-duration) ease-in-out, opacity var(--banner-animation-duration) ease-in-out;
  z-index: 1;
}

.banner-slide.active {
  opacity: 1;
  transform: translateX(0);
  z-index: 2;
}

.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 8s ease;
  filter: brightness(0.8);
}

.banner-slide.active .banner-image {
  transform: scale(1.1);
}

.banner-content {
  position: relative;
  width: 40%;
  max-width: 550px;
  padding: 3rem;
  color: var(--white);
  text-align: right;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: var(--border-radius);
  margin-right: 10%;
  animation: fadeInRight 1s ease-out;
  backdrop-filter: blur(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.banner-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-shadow: var(--banner-text-shadow);
  position: relative;
  padding-bottom: 0.5rem;
}

.banner-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.banner-description {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  opacity: 0.9;
}

.banner-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.banner-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary-dark);
  transition: width 0.3s ease;
  z-index: -1;
}

.banner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.banner-btn:hover::before {
  width: 100%;
}

.banner-controls {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.banner-prev,
.banner-next {
  background-color: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin: 0 15px;
  transition: var(--transition);
  font-size: 1.4rem;
  color: var(--white);
  backdrop-filter: blur(5px);
  z-index: 10;
  position: relative;
  padding: 0;
}

.banner-prev:hover,
.banner-next:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.1);
}

.banner-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
}

.banner-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 8px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.banner-dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Media Queries */
@media (max-width: 1200px) {
  .banner-content {
    width: 45%;
    padding: 2.5rem;
  }

  .banner-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 992px) {
  .banner-slider {
    height: var(--banner-mobile-height);
  }

  .banner-content {
    width: 60%;
    margin-right: 5%;
    padding: 2rem;
  }

  .banner-title {
    font-size: 2.2rem;
  }

  .banner-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .banner-btn {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
  }

  .banner-controls {
    bottom: 30px;
  }

  .banner-prev, .banner-next {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}

@media (max-width: 768px) {
  .banner-content {
    width: 80%;
    margin: 0 auto;
    text-align: center;
    padding: 1.8rem;
  }

  .banner-title {
    font-size: 2rem;
  }

  .banner-title::after {
    right: 50%;
    transform: translateX(50%);
  }

  .banner-description {
    font-size: 1rem;
  }

  .banner-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .banner-prev,
  .banner-next {
    width: 40px;
    height: 40px;
    margin: 0 10px;
  }

  .banner-dot {
    width: 12px;
    height: 12px;
    margin: 0 6px;
  }
}

@media (max-width: 576px) {
  .banner-slider {
    height: 450px;
  }

  .banner-content {
    width: 90%;
    padding: 1.5rem;
  }

  .banner-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .banner-description {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

  .banner-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.9rem;
  }

  .banner-controls {
    bottom: 20px;
  }

  .banner-prev,
  .banner-next {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .banner-dot {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }
}

/* Active state: Red heart on hover */
.product .heart-btn-active:hover i {
  color: #F72585;
}

/* Remove the border for a cleaner look */
.product .heart-btn,
.product .heart-btn-active {
  border: none;
}

.product header {
  cursor: pointer;
  /* Make the header clickable */
}

.product h6 {
  margin-top: 10px;
  font-size: 1.1rem;
  /* Slightly larger font size */
  font-weight: 600;
  color: #333;
  /* Darker text for better readability */
}

.product .price-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 5px;
}

.product .price-container .me-1 {
  margin-left: 5px;
  /* Corrected typo and meaning */
}

.product .price-container p {
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0;
  /* Remove default bottom margin */
}

.btn-card {
  background-color: var(--primary-color);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.btn-card:hover {
  background-color: var(--light-primary-color);
}

.btn-card .shoping-icon {
  display: flex;
  align-items: center;
}

.btn-card .shoping-icon i {
  color: #fff;
  /* Ensure icon is white */
  margin-left: 5px;
}

label {
  font-weight: 600;
  font-size: 14px !important;
  padding-bottom: 8px;
}

.product-details-image {
  width: 300px;
  height: 370px;
}

#myButton {
  display: none;
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  background-color: var(--primary-color);
  color: white;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#myButton:hover {
  background-color: var(--light-primary-color);
}

#myButton:disabled {
  color: gray;
  cursor: not-allowed;
  background-color: #ddd;
  /* Light gray when disabled */
}



/* Shimmer loading effect */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

.shimmer-card {
  border-radius: 8px;
  overflow: hidden;
  background: #f6f7f8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.shimmer-img,
.shimmer-title,
.shimmer-price,
.shimmer-btn,
.shimmer-btn-full {
  background: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-size: 2000px 100%;
  animation: shimmer 1.5s infinite linear;
}

.shimmer-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 10px;
}

.shimmer-img {
  width: 100%;
  height: 180px;
  margin-bottom: 10px;
}

.shimmer-title {
  height: 20px;
  width: 85%;
  margin: 15px 0;
  border-radius: 4px;
}

.shimmer-price {
  height: 16px;
  width: 40%;
  margin-left: auto;
  border-radius: 4px;
  margin-bottom: 15px;
}

.shimmer-btn-full {
  height: 40px;
  width: 100%;
  border-radius: 4px;
  margin-top: 10px;
}