/*** Spinner Start ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.8s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}
/*** Spinner End ***/

/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-square {
  width: 32px;
  height: 32px;
}

.btn-sm-square {
  width: 34px;
  height: 34px;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.btn-lg-square {
  width: 56px;
  height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn.border-secondary {
  transition: 0.5s;
}

.btn.border-secondary:hover {
  background: var(--bs-secondary) !important;
  color: var(--bs-white) !important;
}

/*** Topbar Start ***/
.fixed-top {
  transition: 0.5s;
  background: var(--bs-white);
  border: 0;
}

.topbar {
  padding: 20px;
  border-radius: 230px 100px;
}

/* Chic compact top bar */
.topbar-chic{
  background: #fff;
  position: relative;
  z-index: 20;
  font-size: .92rem;
}
.topbar-chic__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .5rem 0;
}
.topbar-chic__group{
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.topbar-chip{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .6rem;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 999px;
  background: #fff;
  color: #374151;
}
.topbar-chip i{
  color: #FF5F1F;
  font-size: .9rem;
}
.topbar-chip a{
  color: inherit;
  text-decoration: none;
}
.topbar-chip a:hover{
  text-decoration: underline;
}
.topbar-chic .separator{
  width: 1px;
  height: 16px;
  background: rgba(0,0,0,.08);
  display: inline-block;
  margin: 0 .1rem;
}
.topbar-chic__social{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.topbar-chic__social a{
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #FF5F1F;
  background: rgba(255,95,31,.08);
  text-decoration: none;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, color .12s ease;
}
.topbar-chic__social a:hover{
  transform: translateY(-1px);
  background: #FF5F1F;
  color: #fff;
  box-shadow: 0 .35rem .9rem rgba(255,95,31,.25);
}
.topbar-chic__underline{
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, #FF5F1F, #FFAA33, transparent);
  opacity: .8;
}
.topbar-chic__glow{
  height: 8px;
  width: 100%;
  background: radial-gradient(ellipse at center, rgba(255,95,31,.18), transparent 60%);
  filter: blur(6px);
  transform: translateY(-6px);
}
.topbar-chic .hide-sm{ display: inline-flex; }
@media (max-width: 767.98px){
  .topbar-chic__inner{
    flex-direction: column;
    align-items: flex-start;
    gap: .5rem;
  }
  .topbar-chic .separator{ display: none; }
  .topbar-chic .hide-sm{ display: none; }
}
/* Ultra-minimal top bar */
.topbar-minimal{
  background: #fff;
  color: #333;
  font-size: .95rem;
  position: relative;
  z-index: 20;
}
.topbar-minimal__row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .5rem 0;
}
.topbar-minimal__left{
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.topbar-minimal__item{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: #4b5563;
}
.topbar-minimal__item i{
  color: #FF5F1F;
  font-size: .95rem;
}
.topbar-minimal__item a{
  color: inherit;
  text-decoration: none;
}
.topbar-minimal__item a:hover{
  color: #111827;
  text-decoration: underline;
}
.topbar-minimal .divider{
  width: 1px;
  height: 14px;
  background: rgba(0,0,0,.08);
  display: inline-block;
  margin: 0 .25rem;
}
.topbar-minimal__right{
  display: inline-flex;
  align-items: center;
}
.topbar-minimal__cta{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .25rem .6rem;
  border-radius: .5rem;
  border: 1px solid rgba(0,0,0,.08);
  background: #fff;
  color: #FF5F1F;
  text-decoration: none;
  transition: background .15s ease, box-shadow .15s ease, transform .12s ease;
}
.topbar-minimal__cta:hover{
  background: rgba(255,95,31,.07);
  box-shadow: 0 .25rem .75rem rgba(255,95,31,.15);
  transform: translateY(-1px);
}
.topbar-minimal__bar{
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, transparent, #FF5F1F, #FFAA33, transparent);
  opacity: .7;
}
@media (max-width: 767.98px){
  .topbar-minimal__row{
    flex-direction: column;
    align-items: flex-start;
    gap: .35rem;
  }
  .topbar-minimal__right{
    width: 100%;
    justify-content: flex-start;
  }
}
.topbar .top-info {
  font-size: 20px;
  line-height: 0;
  letter-spacing: 1px;
  display: flex;
  color:#FF5F1F;
  align-items: center;
}

.topbar .top-link {
  font-size: 20px;
  line-height: 0;
  letter-spacing: 1px;
  display: flex;
  color:#FF5F1F;
  align-items: center;
}

.topbar .top-link a {
  letter-spacing: 1px;
}

.topbar .top-link a small:hover {
  color: var(--bs-secondary) !important;
  transition: 0.5s;
}

.topbar .top-link a small:hover i {
  color: var(--bs-primary) !important;
}
/*** Topbar End ***/

/*** Navbar Start - Modern Design ***/

/* Modern Navbar Container */
.navbar-modern {
  height: 90px;
  background: #fff;
  border-bottom: 2px solid transparent;
  background-image: linear-gradient(#fff, #fff), 
                    linear-gradient(90deg, transparent, #FF5F1F, #FF7F50, #FFAA33, transparent);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.navbar-modern::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF5F1F, #FFAA33);
  transition: width 0.5s ease;
}

.navbar-modern:hover::before {
  width: 100%;
}

/* Modern Brand/Logo */
.modern-brand {
  transition: transform 0.3s ease;
  padding: 0.5rem 0;
}

.modern-brand:hover {
  transform: scale(1.05);
}

.modern-logo {
  transition: filter 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.modern-brand:hover .modern-logo {
  filter: drop-shadow(0 4px 8px rgba(255, 95, 31, 0.3));
}

/* Modern Toggler Button */
.modern-toggler {
  border: 2px solid rgba(255, 95, 31, 0.2);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  transition: all 0.3s ease;
  background: transparent;
}

.modern-toggler:hover {
  border-color: #FF5F1F;
  background: rgba(255, 95, 31, 0.05);
}

.modern-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 95, 31, 0.25);
}

.navbar-toggler-icon-modern {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
}

.toggler-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #FF5F1F, #FFAA33);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
  opacity: 0;
}

.modern-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Modern Navbar Collapse */
.modern-navbar-collapse {
  background: #fff;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1200px) {
  .modern-navbar-collapse {
    box-shadow: none;
    border-radius: 0;
  }
}

/* Modern Navigation Links */
.modern-nav-links {
  gap: 0.5rem;
}

.modern-nav-link {
  padding: 0.75rem 1.5rem !important;
  font-size: 1rem;
  font-weight: 600;
  color: #333 !important;
  text-decoration: none;
  position: relative;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  margin: 0 0.25rem;
}

.modern-nav-link i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
  color: #FF5F1F;
}

.modern-nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF5F1F, #FFAA33);
  border-radius: 2px 2px 0 0;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.modern-nav-link:hover {
  color: #FF5F1F !important;
  background: rgba(255, 95, 31, 0.08);
  transform: translateY(-2px);
}

.modern-nav-link:hover::before {
  width: 80%;
}

.modern-nav-link:hover i {
  transform: scale(1.2);
}

.modern-nav-link.active,
.modern-nav-link[data-page]:hover {
  color: #FF5F1F !important;
  background: linear-gradient(135deg, rgba(255, 95, 31, 0.1), rgba(255, 170, 51, 0.1));
}

.modern-nav-link.active::before {
  width: 80%;
}

/* Navbar Actions */
.navbar-actions {
  padding: 0.5rem 0;
}

/* Action Buttons (Cart, Profile) */
.nav-action-btn {
  position: relative;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 95, 31, 0.05);
  border: 2px solid transparent;
}

.nav-action-btn:hover {
  background: linear-gradient(135deg, #FF5F1F, #FF7F50);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 95, 31, 0.3);
  border-color: rgba(255, 95, 31, 0.3);
}

.cart-icon-wrapper,
.profile-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.nav-action-btn:hover .cart-icon-wrapper,
.nav-action-btn:hover .profile-icon-wrapper {
  transform: scale(1.1) rotate(-5deg);
}

.nav-action-btn i {
  font-size: 1.25rem;
  color: #FF5F1F;
  transition: all 0.3s ease;
}

.nav-action-btn:hover i {
  color: #fff;
  transform: scale(1.1);
}

/* Cart Badge */
.cart-badge {
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #FF5F1F, #FF7F50);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  box-shadow: 0 2px 8px rgba(255, 95, 31, 0.4);
  border: 2px solid #fff;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.cart-badge:empty {
  display: none;
}

/* Modern Login Button */
.btn-modern-login {
  background: linear-gradient(135deg, #FF5F1F, #FF7F50);
  color: #fff !important;
  border: none;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 95, 31, 0.3);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
}

.btn-modern-login::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-modern-login:hover::before {
  left: 100%;
}

.btn-modern-login:hover {
  background: linear-gradient(135deg, #FF7F50, #FFAA33);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 95, 31, 0.4);
}

.btn-modern-login:active {
  transform: translateY(0);
}

.btn-modern-login i {
  transition: transform 0.3s ease;
}

.btn-modern-login:hover i {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .navbar-modern {
    height: auto;
    min-height: 80px;
  }

  .modern-navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-top: 1px solid rgba(255, 95, 31, 0.1);
  }

  .modern-nav-link {
    padding: 1rem 1.5rem !important;
    margin: 0.25rem 0;
    border-left: 3px solid transparent;
  }

  .modern-nav-link:hover,
  .modern-nav-link.active {
    border-left-color: #FF5F1F;
    background: rgba(255, 95, 31, 0.1);
  }

  .modern-nav-link::before {
    display: none;
  }

  .navbar-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 95, 31, 0.1);
    justify-content: center;
    width: 100%;
  }
}

/* Legacy Support */
.navbar .navbar-nav .nav-link {
  padding: 10px 15px;
  font-size: 16px;
  transition: 0.5s;
}

.navbar {
  height: 100px;
  border-bottom: 1px solid rgba(255, 95, 31, 0.1);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active,
.fixed-top.bg-white .navbar .navbar-nav .nav-link:hover,
.fixed-top.bg-white .navbar .navbar-nav .nav-link.active {
  color: var(--bs-primary);
}

.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 1000;
  vertical-align: middle;
  margin-left: 8px;
}

@media (min-width: 1200px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    border: 0;
    transition: 0.5s;
    opacity: 0;
  }
}

.dropdown .dropdown-menu a:hover {
  background: var(--bs-secondary);
  color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  background: var(--bs-light) !important;
  border-radius: 10px !important;
  transition: 0.5s;
  opacity: 1;
}

#searchModal .modal-content {
  background: #fff;
}
/*** Navbar End ***/

/*** Hero Header ***/
.hero-header {
  background: linear-gradient(rgba(248, 223, 173, 0.1), #FF5F1F(248, 223, 173, 0.1)), url(../img/hero-img.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.carousel-item {
  position: relative;
}

.carousel-item a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 25px;
  background: linear-gradient(#FF5F1F(255, 181, 36, 0.7), #FF5F1F(255, 181, 36, 0.7));
}

.carousel-control-next,
.carousel-control-prev {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  border: 1px solid var(--bs-white);
  background: var(--bs-primary);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-next {
  margin-right: 20px;
}

.carousel-control-prev {
  margin-left: 20px;
}

.page-header {
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url(../img/cart-page-header-img.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (min-width: 992px) {
  .hero-header,
  .page-header {
    margin-top: 152px !important;
  }
}

@media (max-width: 992px) {
  .hero-header,
  .page-header {
    margin-top: 97px !important;
  }
}
/*** Hero Header end ***/

/*** featurs Start ***/
.featurs .featurs-item .featurs-icon {
  position: relative;
  width: 120px;
  height: 120px;
}

.featurs .featurs-item .featurs-icon::after {
  content: "";
  width: 35px;
  height: 35px;
  background: var(--bs-secondary);
  position: absolute;
  bottom: -10px;
  transform: translate(-50%);
  transform: rotate(45deg);
  background: var(--bs-secondary);
}
/*** featurs End ***/

/*** service Start ***/
.service .service-item .service-content {
  position: relative;
  width: 250px;
  height: 130px;
  top: -50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*** service End ***/

/*** Fruits Start ***/
.fruite .tab-class .nav-item a.active {
  background: var(--bs-secondary) !important;
}

.fruite .tab-class .nav-item a.active span {
  color: var(--bs-white) !important;
}

.fruite .fruite-categorie .fruite-name {
  line-height: 40px;
}

.fruite .fruite-categorie .fruite-name a {
  transition: 0.5s;
}

.fruite .fruite-categorie .fruite-name a:hover {
  color: var(--bs-secondary);
}

.fruite .fruite-item {
  height: 100%;
  transition: 0.5s;
}
.fruite .fruite-item:hover {
  box-shadow: 0 0 55px (0, 0, 0, 0.4);
}

.fruite .fruite-item .fruite-img {
  overflow: hidden;
  transition: 0.5s;
  border-radius: 10px 10px 0 0;
}

.fruite .fruite-item .fruite-img img {
  transition: 0.5s;
}

.fruite .fruite-item .fruite-img img:hover {
  transform: scale(1.3);
}
/*** Fruits End ***/

/*** vesitable Start ***/
.vesitable .vesitable-item {
  height: 100%;
  transition: 0.5s;
}

.vesitable .vesitable-item:hover {
  box-shadow: 0 0 55px #FF5F1F(0, 0, 0, 0.4);
}

.vesitable .vesitable-item .vesitable-img {
  overflow: hidden;
  transition: 0.5s;
  border-radius: 10px 10px 0 0;
}

.vesitable .vesitable-item .vesitable-img img {
  transition: 0.5s;
}

.vesitable .vesitable-item .vesitable-img img:hover {
  transform: scale(1.2);
}

.vesitable .owl-stage {
  margin: 50px 0;
  position: relative;
}

.vesitable .owl-nav .owl-prev {
  position: absolute;
  top: -8px;
  right: 0;
  color: var(--bs-primary);
  padding: 5px 25px;
  border: 1px solid var(--bs-secondary);
  border-radius: 20px;
  transition: 0.5s;
}

.vesitable .owl-nav .owl-prev:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.vesitable .owl-nav .owl-next {
  position: absolute;
  top: -8px;
  right: 88px;
  color: var(--bs-primary);
  padding: 5px 25px;
  border: 1px solid var(--bs-secondary);
  border-radius: 20px;
  transition: 0.5s;
}

.vesitable .owl-nav .owl-next:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}
/*** vesitable End ***/

/*** Banner Section Start ***/
.banner .banner-btn:hover {
  background: var(--bs-primary);
}
/*** Banner Section End ***/

/*** Facts Start ***/
.counter {
  height: 100%;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.counter i {
  font-size: 60px;
  margin-bottom: 25px;
}

.counter h4 {
  color: var(--bs-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.counter h1 {
  margin-bottom: 0;
}
/*** Facts End ***/

/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
  position: absolute;
  top: -58px;
  right: 0;
  color: var(--bs-primary);
  padding: 5px 25px;
  border: 1px solid var(--bs-secondary);
  border-radius: 20px;
  transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
  position: absolute;
  top: -58px;
  right: 88px;
  color: var(--bs-primary);
  padding: 5px 25px;
  border: 1px solid var(--bs-secondary);
  border-radius: 20px;
  transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
  background: var(--bs-secondary);
  color: var(--bs-white);
}
/*** testimonial End ***/

/*** Single Page Start ***/
.pagination {
  display: inline-block;
}

.pagination a {
  color: var(--bs-dark);
  padding: 10px 16px;
  text-decoration: none;
  transition: 0.5s;
  border: 1px solid var(--bs-secondary);
  margin: 0 4px;
}

.pagination a.active {
  background-color: var(--bs-primary);
  color: var(--bs-light);
  border: 1px solid var(--bs-secondary);
}

.pagination a:hover:not(.active) {
  background-color: var(--bs-primary);
}

.nav.nav-tabs .nav-link.active {
  border-bottom: 2px solid var(--bs-secondary) !important;
}
/*** Single Page End ***/

/*** Footer Start - Modern Design ***/

/* Main Footer Container */
.footer-modern {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  color: #e0e0e0;
  position: relative;
  margin-top: 5rem;
  border-top: 3px solid transparent;
  background-image: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%), 
                    linear-gradient(135deg, #FF5F1F, #FF7F50, #FFAA33);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

/* Background Pattern */
.footer-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 95, 31, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 170, 51, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

/* Footer Top Section */
.footer-top-section {
  border-bottom: 1px solid rgba(255, 95, 31, 0.2);
  position: relative;
}

.footer-top-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #FF5F1F, #FFAA33);
  animation: slideRight 3s ease-in-out infinite;
}

@keyframes slideRight {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(calc(100vw - 100px)); }
}

/* Footer Brand/Logo */
.footer-brand {
  transition: transform 0.3s ease;
}

.footer-logo-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-logo-link:hover {
  transform: scale(1.05);
}

.footer-logo {
  width: 150px;
  height: auto;
  filter: brightness(1.1);
  transition: filter 0.3s ease;
}

.footer-logo-link:hover .footer-logo {
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 95, 31, 0.5));
}

.footer-tagline p {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.footer-tagline small {
  color: #b0b0b0;
  font-size: 0.85rem;
}

/* Social Icons */
.social-icons-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-label {
  color: #e0e0e0;
  font-weight: 500;
  font-size: 0.9rem;
}

.social-icon-modern {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 95, 31, 0.3);
  color: #e0e0e0;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-icon-modern::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF5F1F, #FFAA33);
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  z-index: 0;
}

.social-icon-modern:hover::before {
  width: 100%;
  height: 100%;
}

.social-icon-modern i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.social-icon-modern:hover {
  border-color: transparent;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(255, 95, 31, 0.4);
}

.social-icon-modern:hover i {
  transform: scale(1.2);
  color: #fff;
}

.social-icon-modern.facebook:hover::before {
  background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.social-icon-modern.youtube:hover::before {
  background: linear-gradient(135deg, #ff0000, #ff4444);
}

.social-icon-modern.instagram:hover::before {
  background: linear-gradient(135deg, #e4405f, #f77737, #fcaa45);
}

.social-icon-modern.linkedin:hover::before {
  background: linear-gradient(135deg, #0077b5, #00a0dc);
}

/* Footer Widgets */
.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-title {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(255, 95, 31, 0.3);
  display: flex;
  align-items: center;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #FF5F1F, #FFAA33);
}

.footer-title i {
  color: #FF5F1F;
  font-size: 1rem;
}

.footer-description {
  color: #b0b0b0;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #b0b0b0;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  padding: 0.25rem 0;
}

.footer-links a i {
  font-size: 0.7rem;
  color: #FF5F1F;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #FF5F1F;
  transform: translateX(5px);
  padding-left: 5px;
}

.footer-links a:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* Footer Button */
.btn-footer-modern {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #FF5F1F, #FF7F50);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-footer-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-footer-modern:hover::before {
  left: 100%;
}

.btn-footer-modern:hover {
  background: linear-gradient(135deg, #FF7F50, #FFAA33);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 95, 31, 0.4);
  border-color: rgba(255, 95, 31, 0.5);
}

.btn-footer-modern i {
  transition: transform 0.3s ease;
}

.btn-footer-modern:hover i {
  transform: translateX(5px);
}

/* Contact Info */
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 95, 31, 0.1);
  border-left-color: #FF5F1F;
  transform: translateX(5px);
}

.contact-icon {
  color: #FF5F1F;
  font-size: 1.1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.contact-item strong {
  color: #fff;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.contact-item p {
  color: #b0b0b0;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-item a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.9rem;
}

.contact-item a:hover {
  color: #FF5F1F;
}

/* Payment Methods */
.payment-methods {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-img {
  max-width: 200px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  filter: grayscale(0.3);
}

.payment-img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* Copyright Section */
.footer-copyright {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  border-top: 1px solid rgba(255, 95, 31, 0.2);
  position: relative;
}

.footer-copyright::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #FF5F1F, #FFAA33, transparent);
}

.copyright-text {
  color: #b0b0b0;
  font-size: 0.9rem;
  margin: 0;
}

.copyright-link {
  color: #FF5F1F;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.copyright-link:hover {
  color: #FFAA33;
  text-decoration: underline;
}

.developer-link {
  color: #FFAA33;
  font-weight: 700;
  position: relative;
  padding: 0 0.25rem;
}

.developer-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #FF5F1F, #FFAA33);
  transition: width 0.3s ease;
}

.developer-link:hover::after {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-modern {
    margin-top: 3rem;
  }
  
  .footer-top-section {
    text-align: center;
  }
  
  .footer-brand {
    justify-content: center;
    text-align: center;
  }
  
  .footer-social-wrapper {
    justify-content: center !important;
    margin-top: 1rem;
  }
  
  .social-label {
    display: none !important;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .contact-item {
    padding: 0.5rem;
  }
  
  .footer-copyright .row > div {
    text-align: center !important;
  }
}

/* Legacy Support */
.footer {
  background-color: #1a1a1a;
  color: #FF5F1F;
}

.footer-item h4 {
  color: #FF5F1F;
}

.footer-item ul li a {
  text-decoration: none;
  color: #FF5F1F;
  transition: color 0.3s ease;
}

.footer-item ul li a:hover {
  color: #FF5F1F;
}

.footer-item a.btn-primary {
  background-color: #FF5F1F;
  border: none;
  color: #fff;
}

.footer-item a.btn-primary:hover {
  background-color: #FF5F1F;
}

.social-links a {
  border-color: #b3b3b3;
  color: #b3b3b3;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #FF7518;
  border-color: #FF7518;
  color: #ffffff;
}

.copyright {
  background-color: #333333;
  color: #b3b3b3;
}

.copyright a {
  color: #FF7518;
  text-decoration: none;
}

.copyright a:hover {
  color: #FF7518;
}

/*** Footer End ***/



/* Custom Styles */

.category-inactive {
  color: rgb(48, 48, 48) !important;
}

.category-active {
  color: #17d4e9;
}

.top-main-logo {
  max-width: 75px;
}

.login-card {
  box-shadow: rgba(17, 17, 26, 0.05) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.clickable {
  cursor: pointer;
}

.ad-row {
    height:300px;
    
}
.ad-row-p1 {
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(37,150,190,0.4738270308123249) 85%);

}
.ad-row-p2 {
    background: radial-gradient(circle, rgba(255,255,255,1) 0%, rgba(0,0,0,0.4738270308123249) 85%);

}

/* slider */

/* General Reset */
body {
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  height: 150vh;
  background-color: #efeeee;
}

/* Slider Container */
.slider {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
  border: 2px solid #ddd;
  border-radius: 8px;
}

/* Slides Container */
.slides {
  display: flex;
  width: 300%; /* 3 slides */
  animation: slideAnimation 10s infinite;
}

/* Individual Slide */
.slide {
  width: 800px;
  flex-shrink: 0;
}

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

/* Animation */
@keyframes slideAnimation {
  0% { transform: translateX(0); }
  33% { transform: translateX(-800px); }
  66% { transform: translateX(-1600px); }
  100% { transform: translateX(0); }
}


/* product style home */

.product-card {
  border: 1px solid #FFC000;
  border-radius:10px;
  background: #f7f7f7;
  transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-image {
  overflow: hidden;
  width: 150px;
  height: 150px;
  margin: 0 auto;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #0b0b0b;
  text-align: center;
  margin: 1px 0 10px;
  display: block;
  text-decoration: none;
}

.product-name:hover {
  color: #FFC000;
  text-decoration: underline;
}

.product-rating i {
  margin-right: 3px;
}

.product-price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FF7F50;
  text-align: center;
  margin: 10px 0;
}

.shop-button {
  display: block;
  text-align: center;
  background-color: #FF5F1F;
  color: #000000;
  padding: 10px 20px;
  border-radius: 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  transition: background-color 0.3s;
}

.shop-button:hover {
  background-color: #F89880;
  color: #fff;
}


/* cart style */

.table {
  border-collapse: separate;
  border-spacing: 0 10px;
}

.table-striped tbody tr:hover {
  background-color: #eef1f4;
}

.card {
  background-color: #fff6f6;
  border-radius: 1rem;
}

/* Checkout Summary Breakdown */
.summary-breakdown{
  border-top: 1px solid rgba(0,0,0,.06);
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  padding: .75rem;
}
.summary-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .6rem .75rem;
  border-radius: 10px;
}
.summary-row + .summary-row{
  border-top: 1px dashed rgba(0,0,0,.08);
}
.summary-label{
  color: #6b7280;
  font-weight: 500;
}
.summary-value{
  color: #111827;
  font-weight: 700;
}
.summary-total{
  background: linear-gradient(135deg, #fff5f0, #ffe8d6);
  box-shadow: inset 0 0 0 1px rgba(255,95,31,.15);
  margin-top: .25rem;
}
.summary-total .summary-label{
  color: #1f2937;
  font-weight: 700;
}
.summary-total .summary-value{
  color: #FF5F1F;
  font-size: 1.125rem;
}
.card-body h3 {
  font-size: 1.5rem;
  color: #080808;
}

.btn {
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #f41313;
  color: #000000;
}

/* contact style here */

/* Modern Contact Page Styles */
.container-fluid.contact {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

/* Page Header Enhancement */
.page-header {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FF5F1F 0%, #FF7F50 50%, #FFAA33 100%);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

/* Map Container */
.map-container {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

/* Form Styles */
.contact-form-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 95, 31, 0.1);
}

.contact-form-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
}

.modern-input {
  border: 2px solid #e0e0e0 !important;
  transition: all 0.3s ease;
  background-color: #fafafa;
  font-size: 0.95rem;
}

.modern-input:focus {
  border-color: #FF5F1F !important;
  background-color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(255, 95, 31, 0.15) !important;
  outline: none;
  transform: translateY(-2px);
}

.modern-input::placeholder {
  color: #999;
  font-size: 0.9rem;
}

/* Form Labels */
.form-label {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

/* Submit Button */
.btn-modern-submit {
  background: linear-gradient(135deg, #FF5F1F 0%, #FF7F50 50%, #FFAA33 100%);
  border: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 1rem;
  letter-spacing: 1px;
}

.btn-modern-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-modern-submit:hover::before {
  left: 100%;
}

.btn-modern-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 95, 31, 0.4) !important;
  background: linear-gradient(135deg, #FF7F50 0%, #FFAA33 50%, #FFC000 100%);
}

.btn-modern-submit:active {
  transform: translateY(0);
}

/* Contact Info Cards */
.contact-info-card {
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 95, 31, 0.1);
  cursor: pointer;
}

.contact-info-card:hover {
  transform: translateX(10px) translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
  border-color: rgba(255, 95, 31, 0.3);
}

.contact-info-card .icon-wrapper {
  transition: all 0.3s ease;
}

.contact-info-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 15px rgba(255, 95, 31, 0.3);
}

.contact-info-card a:hover {
  color: #FF7F50 !important;
  text-decoration: underline !important;
}

/* Social Icons */
.social-icon {
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-form-card,
  .contact-info-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-info-card:hover {
    transform: translateY(-5px);
  }
  
  .page-header h1 {
    font-size: 2rem !important;
  }
  
  .modern-input {
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

/* Animation for form elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form-card,
.contact-info-card {
  animation: fadeInUp 0.6s ease-out;
}

.contact-info-card:nth-child(2) {
  animation-delay: 0.1s;
}

.contact-info-card:nth-child(3) {
  animation-delay: 0.2s;
}

.contact-info-card:nth-child(4) {
  animation-delay: 0.3s;
}

/* Z-index fix */
.z-index-1 {
  z-index: 1;
}

/* Legacy support for old form controls */
.form-control:focus {
  border-color: #FF5F1F;
  box-shadow: 0 0 0 0.2rem rgba(255, 95, 31, 0.15);
}

.btn-primary:hover {
  background-color: #FFAA33;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* shop style here */

/* General Enhancements */
body {
  font-family: 'Poppins', sans-serif;
}

/* Categories Section */
.fruite-categorie li a {
  transition: all 0.3s ease;
}

.fruite-categorie li a:hover {
  background-color: #FAC898;
  transform: scale(1.02);
  box-shadow: 0 4px 8px #000000(0, 0, 0, 0.1);
}

.category-active {
  background-color: #FFC000;
  color: #020202 !important;
  padding: 5px 15px;
  line-height: 1.5;
  border-radius: 5px;
  box-shadow: 0 4px 8px #FFC000(13, 82, 187, 0.2);
}

.category-inactive {
  color: #FF5F15;
}

/* Products Section */
.fruite-item {
  transition: transform 0.3s, box-shadow 0.3s ease-in-out;
}

.fruite-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px #000000(0, 0, 0, 0.15);
}

.fruite-img img {
  transition: transform 0.3s ease;
}

.fruite-img:hover img {
  transform: scale(1.05);
}

.fruite-img .bg-primary {
  font-size: 0.8rem;
  text-transform: uppercase;
}



/* Buttons */
.btn-primary {
  background-color: #FF7F50;



  border: none;
  color: #000000;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color:#FF7F50;


  box-shadow: 0 4px 8px #FAA0A0(0, 0, 0, 0.2);
}

/* Add Subtle Animations */
.transition-transform {
  transition: transform 0.3s ease-in-out;
}

.transition-transform:hover {
  transform: translateY(-5px);
}



/*slider categories*/

/* General Styling */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #edf1f1;
}

/* Categories Slider */
.categories-slider-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.categories-slider {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px;
}

.category-card {
  flex: 0 0 250px;
  text-align: center;
  border: 1px solid #FFC000;
  border-radius: 10px;
  overflow: hidden;
  background-color: #efebeb;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px #FFD580(213, 164, 164, 0.1);
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.category-card h4 {
  margin: 15px 0;
  font-size: 1.2rem;
  color: #FF7518;
}

.category-card a {
  display: inline-block;
  padding: 8px 15px;
  margin-bottom: 15px;
  background-color: #FA5F55;
  color: #000000;
  text-decoration: none;
  border-radius: 20px;
  transition: background-color 0.3s ease;
}

.category-card a:hover {
  background-color: #FAC898;
}

/* Hide Scrollbar */
.categories-slider::-webkit-scrollbar {
  display: none;
}
.categories-slider {
  -ms-overflow-style: none;  /* Internet Explorer 10+ */
  scrollbar-width: none;     /* Firefox */
}

/* Product Details Page - Contemporary Modern Design */

.product-detail-page {
  background: #f8f9fa;
  min-height: 100vh;
  padding-bottom: 3rem;
}

/* Navigation Bar */
.product-nav-bar {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  padding: 1rem 0;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.product-breadcrumb .nav-link {
  color: #6c757d;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.product-breadcrumb .nav-link:hover {
  color: #FF5F1F;
}

.product-breadcrumb .separator {
  color: #dee2e6;
  font-size: 0.9rem;
}

.product-breadcrumb .nav-current {
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Main Section */
.product-main-section {
  padding: 3rem 0;
}

/* Product Image Section */
.product-image-section {
  position: sticky;
  top: 100px;
}

.image-container {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.product-image-link {
  display: block;
  position: relative;
}

.product-main-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.image-container:hover .product-main-image {
  transform: scale(1.05);
}

.image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF5F1F;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
}

/* Product Details Section */
.product-details-section {
  padding: 0 1rem;
}

/* Product Header */
.product-header {
  margin-bottom: 2rem;
}

.product-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 95, 31, 0.1);
  color: #FF5F1F;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-title-new {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.product-meta-new {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.rating-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.stars-new {
  color: #ffc107;
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-count {
  color: #6c757d;
  font-size: 0.9rem;
}

.sku-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sku-label {
  color: #6c757d;
  font-size: 0.9rem;
}

.sku-value {
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Price Box */
.price-box-new {
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8d6 100%);
  border: 2px solid #FF5F1F;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.price-content {
  flex: 1;
}

.price-label-new {
  display: block;
  color: #6c757d;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.currency-symbol {
  font-size: 1.5rem;
  color: #6c757d;
  font-weight: 600;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #FF5F1F;
  line-height: 1;
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #28a745;
  font-weight: 600;
  font-size: 0.95rem;
}

.stock-status i {
  font-size: 1.2rem;
}

/* Description Box */
.description-box {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.box-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.description-content {
  color: #555;
  line-height: 1.8;
  margin: 0;
  font-size: 0.95rem;
}

/* Purchase Box */
.purchase-box {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quantity-box-new {
  margin-bottom: 1.5rem;
}

.qty-label-new {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.75rem;
}

.quantity-new {
  display: inline-flex;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
}

.btn-qty-new {
  width: 45px;
  height: 45px;
  background: #f8f9fa;
  border: none;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-qty-new:hover {
  background: #FF5F1F;
  color: #fff;
}

.btn-qty-new:active {
  background: #e04a0e;
}

.qty-input-new {
  width: 70px;
  height: 45px;
  border: none;
  border-left: 2px solid #e9ecef;
  border-right: 2px solid #e9ecef;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0;
}

.qty-input-new:focus {
  outline: none;
  box-shadow: none;
}

/* Action Box */
.action-box {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary-new {
  flex: 1;
  background: #FF5F1F;
  color: #fff;
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary-new:hover {
  background: #e04a0e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 95, 31, 0.4);
}

.btn-primary-new:active {
  transform: translateY(0);
}

.secondary-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-icon-new {
  width: 50px;
  height: 50px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-icon-new:hover {
  background: #FF5F1F;
  border-color: #FF5F1F;
  color: #fff;
  transform: translateY(-2px);
}

/* Features Box */
.features-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.feature-item:hover {
  background: #f8f9fa;
}

.feature-item i {
  color: #FF5F1F;
  font-size: 1.25rem;
}

.feature-item span {
  color: #333;
  font-weight: 500;
  font-size: 0.9rem;
}

/* Categories Section */
.categories-section {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.section-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-heading i {
  color: #FF5F1F;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}

.category-card-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 1rem;
  background: #f8f9fa;
  border: 2px solid transparent;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  min-height: 120px;
}

.category-card-new:hover {
  background: #fff5f0;
  border-color: #FF5F1F;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255, 95, 31, 0.2);
}

.category-card-new.active-category {
  background: linear-gradient(135deg, #fff5f0, #ffe8d6);
  border-color: #FF5F1F;
}

.category-icon {
  width: 50px;
  height: 50px;
  background: #FF5F1F;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.category-card-new:hover .category-icon {
  transform: scale(1.1) rotate(5deg);
}

.category-name-new {
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

.category-card-new.active-category .category-name-new {
  color: #FF5F1F;
}

.category-check {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #28a745;
  font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .product-image-section {
    position: relative;
    top: 0;
    margin-bottom: 2rem;
  }

  .product-title-new {
    font-size: 1.75rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .action-box {
    flex-direction: column;
  }

  .btn-primary-new {
    width: 100%;
  }

  .secondary-actions {
    width: 100%;
    justify-content: center;
  }

  .features-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .product-main-section {
    padding: 2rem 0;
  }

  .product-title-new {
    font-size: 1.5rem;
  }

  .price-box-new {
    flex-direction: column;
    align-items: flex-start;
  }

  .price-amount {
    font-size: 2rem;
  }

  .categories-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  }
}





