/* Base styles */
*{
    margin: 0;
    padding: 0;
}
/* Start */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  
  background-color: #f9f9f9;
}


/* login css */
/* General Styles */
.login-body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, rgb(0, 12, 33), #2a5298);
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  animation: fadeIn 1s ease-in-out;
}

.login-form {
  background: #1c1f26;
  padding: 45px 48px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 400px;
  text-align: center;
  animation: slideIn 0.8s ease-out;
}

.login-title {
  margin-bottom: 20px;
  color: #fff;
  font-size: 24px;
  letter-spacing: 1px;
}

.login-input,
.login-password {
  width: 100%;
  padding: 14px;
  margin-bottom: 20px;
  border: none;
  border-bottom: 2px solid #444;
  background: transparent;
  color: #fff;
  font-size: 16px;
  transition: border-color 0.3s ease;
  outline: none;
}

.login-input:focus,
.login-password:focus {
  border-color: #00bcd4;
  box-shadow: 0 0 8px rgba(0, 188, 212, 0.6);
}

.login-button {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 2px solid #00bcd4;
  color: #00bcd4;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.login-button::before {
  content: "";
  position: absolute;
 
  height: 100%;
  background: #00bcd4;
  z-index: 0;
  transition: left 0.3s ease;
}

.login-button:hover {
  color: rgb(229, 233, 243);
  background-color: #00bcd4;
}

.login-button:hover::before {
  left: 0;
  color: black;
}

.login-text {
  margin-top: 15px;
  font-size: 14px;
  color: #aaa;
}

.login-register-link {
  color: #00bcd4;
  text-decoration: none;
}

.login-register-link:hover {
  text-decoration: underline;
}

.login-google-img {
  width: 30px;
  height: auto;
  vertical-align: middle;
  padding: 4px;
  border-radius: 28px;
  border: 2px solid white;
}

.login-google-btn {
  display: inline-block;
  width: 100%;
  padding: 5px;
  margin-top: 7px;
  color: #fff;
  font-size: 15px;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  animation: fadeIn 1.8s ease-in-out;
  border: 2px solid white;
}

.login-google-btn:hover {
  text-decoration: none;
}
@media (max-width: 368px) {
  .login-form {
    padding: 30px 20px;
    max-width: 90%;
    margin: 0 auto;
  }
  
  .login-title {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .login-input,
  .login-password {
    padding: 10px;
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .login-button {
    padding: 10px;
    font-size: 14px;
    letter-spacing: 1px;
  }
  
  .login-text {
    font-size: 12px;
    margin-top: 12px;
  }
  
  .login-google-img {
    width: 16px;
    padding: 3px;
  }
  
  .login-google-btn {
    font-size: 13px;
    padding: 4px;
    margin-top: 5px;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


/*************************************register css************************************************************/
        .register-container {
            background: #1c1f26;
            padding: 45px 48px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            width: 100%;
            max-width: 400px;
            text-align: center;
            animation: slideIn 0.8s ease-out;
        }
        
        .register-title{
            margin-bottom: 20px;
            color: #fff;
            font-size: 24px;
            letter-spacing: 1px;
        }


        .register-text {
            margin-top: 15px;
            font-size: 14px;
            color: #aaa;
        }

        .register-input {
            width: 100%;
            padding: 14px;
            margin-bottom: 20px;
            border: none;
            border-bottom: 2px solid #444;
            background: transparent;
            color: #fff;
            font-size: 16px;
            transition: border-color 0.3s ease;
            outline: none;
        }

        .register-input:focus {
            border-color: #00bcd4;
            box-shadow: 0 0 8px rgba(0, 188, 212, 0.6);
        }

        .register-button {
            width: 100%;
            padding: 12px;
            background: transparent;
            border: 2px solid #00bcd4;
            color: #00bcd4;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 5px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: color 0.3s ease, background-color 0.3s ease;
        }

        .register-button:hover {
            color: #1c1f26;
            background-color: #00bcd4;
        }

        .register-text a {
            color: #00bcd4;
            text-decoration: none;
        }

        .register-text a:hover {
            text-decoration: underline;
        }


        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes slideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        @media (max-width: 480px) {
            .register-container {
                padding: 20px;
                max-width: 90%;
            }

            .register-text {
                font-size: 20px;
            }

            .register-input {
                padding: 12px;
            }

            .register-button {
                padding: 10px;
                font-size: 14px;
            }
        }
/* *************************header css ************************************************** */
/* Header Styles */


.header {
            background-color: #ffffff;
            border-bottom: 1px solid #ddd;
            padding: 10px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header div {
            margin: 3px;
        }

        .header-top-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .header-links .header-link {
            font-size: 1rem;
            font-weight: bold;
            color: #2c3e50;
            text-decoration: none;
            margin: 0 5px;
        }

        .header-links .header-link:hover {
            color: blue;
        }

        .header-main-nav .header-fast-delivery {
            font-size: 16px;
            color: #333;
            text-decoration: none;
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        .header-main-nav .header-fast-delivery .header-arrow {
            font-size: 14px;
            margin-left: 5px;
            color: #666;
        }

        .header-main-nav .header-fast-delivery:hover {
            color: #0073e6;
        }

        /* Background overlay */
        .header-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 999;
            display: none;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .header-overlay.active {
            display: block;
            opacity: 1;
        }

        /* Close button */
        .header-close-btn {
            position: absolute;
            top: 2px;
            right: 20px;
            font-size: 27px;
            color: #555;
            cursor: pointer;
            background: none;
            border: none;
        }

        .header-close-btn:hover {
            color: #000;
        }

        /* Location box */
        .header-location-box {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 405px;
            height: 400px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 32px;
            z-index: 1000;
            opacity: 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .header-location-box.active {
            display: block;
            transform: translate(-50%, -50%) scale(1);
            opacity: 1;
        }

        .header-location-title {
            font-size: 28px;
            text-align: center;
        }

        .header-location-text {
            font-size: 16px;
            color: #555;
            margin: 25px 0;
            text-align: center;
        }

        .header-sign-in-btn {
            background-color: blue;
            padding: 7px 15px;
            border-radius: 11px;
            color: white;
        }

        .header-pincode-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 63px;
        }

        .header-or {
            text-align: center;
        }

        .header-pincode-input {
            width: 80%;
            padding: 10px;
            font-size: 16px;
            margin-bottom: 10px;
            border: none;
        }

        .header-update-pincode-btn {
            width: 47%;
            padding: 6px;
            background-color: #606366;
            color: #fff;
            border: none;
            border-radius: 6px;
            font-size: 13px;
            cursor: pointer;
            text-align: center;
        }

        .header-update-pincode-btn:hover {
            background-color: rgb(47, 48, 49);
        }

        .header-new-tag {
            background-color: #007bff;
            color: #fff;
            padding: 2px 6px;
            border-radius: 4px;
            font-size: 0.75rem;
        }

        .header-user-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
            gap: 10px;
        }

        .header-first {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Hamburger Menu */
        .header-hamburger-menu {
            font-size: 1.5rem;
            cursor: pointer;
            display: none;
        }

        

        

        .header-third img {
            vertical-align: middle;
            height: 28px;
        }

        

        .web-logo img{
            height: 39px;
            width: 39px;
        }

        .header-first .web-name {
            text-decoration: none;
            color: #333;
            font-size: 16px;
        }

        .header-second {
            display: flex;
            gap: 4px;
            width: 40%;
            border-radius: 8px;
            border: 2px solid black;
        }

        .header-second .header-search-icon,
        .header-second .header-search-input {
            padding: 5px;
            border: none;
            outline: none;
        }
        
        .header-third .header-wishlist-img{
            text-decoration: none;
            padding: 0 2px;
        }
        .header-third .header-name {
            text-decoration: none;
            font-size: 0.9rem;
            color: #333;
            margin-top: 11px;
        }

        .header-third a:hover {
            color: #007bff;
        }

        .header-sub-nav {
            display: flex;
            justify-content: space-between;
            background-color: #f1f1f1;
            font-weight: bold;
            padding: 10px 0;
        }

        .header-sub-nav .header-sub-nav-link {
            text-decoration: none;
            color: #333;
            margin: 0 15px;
            font-size: 1rem;
        }

        .header-sub-nav .header-sub-nav-link:hover {
            color: #007bff;
        }

        /* Base styles remain the same for desktop */
        #searchResults {
            position: absolute;
            background: #fff;
            width: 516px;
            max-height: 300px;
            overflow-y: auto;
            z-index: 999;
            margin-top: 39px;
        }

        .search-item {
            display: flex;
            align-items: center;
            padding: 10px;
            border-bottom: 1px solid #ddd;
        }

        .search-item img {
            margin-right: 10px;
            width: 40px;
            height: 40px;
            object-fit: cover;
        }

        .headerdropdown {
            position: relative;
            display: inline-block;
        }

        .headerdropdown-btn {
            color: black;
            padding: 5px;
            border: none;
            cursor: pointer;
            font-size: 14px;
            border-radius: 5px;
            margin: 0 0 0 307px;
        }

        #headerdropdownArrow {
            transition: transform 0.3s ease-in-out;
        }

        .headerdropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 329px;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1000;
        }

        .headerdropdown-content a {
            color: black;
            padding: 10px;
            display: block;
            text-decoration: none;
        }

        .headerdropdown-content a:hover {
            background-color: #f1f1f1;
        }

        .headershow {
            display: block;
        }

        .headerrotate {
            transform: rotate(180deg);
        }

        /* Responsive styles for phone screens */
        /* Responsive styles for phone screens */
        @media (max-width: 768px) {
            .header {
                padding: 10px;
            }

            .header-top-bar,
            .header-second {
                display: none;
            }

            .header-user-actions {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
            }

            .header-first {
                display: flex;
                align-items: center;
                gap: 10px;
            }

            .header-hamburger-menu {
                display: block;
                font-size: 1.8rem;
                cursor: pointer;
            }

            .header-first .web-name {
                font-size: 1.2rem;
                font-weight: bold;
            }

            .header-third {
                display: flex;
                
                gap: 15px;
            }

            

            

            .header-third .header-name {
                display: none;
            }

            /* Hamburger menu functionality */
            .header-sub-nav {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                width: 250px;
                background: white;
                box-shadow: 4px 0 6px rgba(0, 0, 0, 0.1);
                padding: 10px 0;
                height: 100vh;
                overflow-y: auto;
            }

            .header-sub-nav.active {
                display: block;
            }

            .header-sub-nav a {
                display: block;
                padding: 10px;
                text-align: left;
                font-size: 1rem;
                border-bottom: 1px solid #ddd;
                margin-left: 10px;
            }

            .header-sub-nav a:last-child {
                border-bottom: none;
            }
        }

        @media screen and (max-width: 420px) {
            .header {
                padding: 8px;
            }

            .header-user-actions {
                gap: 5px;
            }
            .header-first{
                gap: 4px;
            }
            .web-logo img{
                display: none;
            }

            .header-first .web-name {
                font-size: 1rem;
            }
            .header-third .header-wishlist-img{
            
            padding: 0 0;
        }


         
        }
        
/* Header End  */

/********************************** Main Hero Section CSS Start  **********************************************/
.main-hero-section {
  padding: 0 10px;
  background-color: #f8f9fa;
  text-align: center;
  min-height: 600px;
  position: relative;
}

.main-hero-section .main-hero-content h1 {
  font-size: 4rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  animation: slideUp 1.5s ease-out;
}

.main-hero-section .main-hero-content p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
  animation: fadeIn 2s ease-out;
}

.main-hero-section .btn-primary {
  background-color: #ff6f61;
  color: white;
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  transition: background-color 0.3s ease;
  animation: bounceIn 1s ease-out;
}

.main-hero-section .carousel-item img {
  width: 100%;
  height: auto;
  margin-left:80px ;
  object-fit: cover;
  border-radius: 15px;
  transition: opacity 1s ease-in-out;
}

.carousel-item {
  transition: transform 1s ease-in-out;
}

/* Keyframe Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .main-hero-section .carousel-item img {
    height: auto;
    max-height: 450px;
  }
}

@media (max-width: 768px) {
  .main-hero-section .carousel-item img {
    height: auto;
    max-height: 400px;
  }

  .main-hero-section .main-hero-content h1 {
    font-size: 3rem;
  }

  .main-hero-section .main-hero-content p {
    font-size: 1.1rem;
  }

  .main-hero-section .btn-primary {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .main-hero-section .carousel-item img {
    height: auto;
    max-height: 300px;
  }

  .main-hero-section .main-hero-content h1 {
    font-size: 2.2rem;
  }

  .main-hero-section .main-hero-content p {
    font-size: 1rem;
  }

  .main-hero-section .btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/********************************** Main Hero Section CSS End  **********************************************/

/********************************** DryFruits Card CSS Start  ***********************************************/


/* Shimmer UI Placeholder */


.product-headline{
    padding: 0 30px;
    font-size: 27px;
    font-weight: bold;
    
}

.drfruits-product-card-container {
  display: grid;
  gap: 30px;
  justify-content: center;
  padding: 20px;
  grid-template-columns: repeat(7, 1fr); /* Default for larger screens */
}





.drfruits-product-card {
  position: relative;
  width: 100%; /* Ensure cards take up full width of the grid */
  height: 328px; /* Fixed height for the card */
  padding: 15px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
  margin: 0 auto; /* Center align the cards */
}

.drfruits-product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out; /* Added filter for brightness */
}

.drfruits-product-card:hover img {
  transform: scale(1.1); /* Slightly scale the image */
  filter: brightness(1.2); /* Brighten the image on hover */
}

.drfruits-product-card h4 {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

.drfruits-product-card p {
  margin: 8px 0;
  font-size: 12px;
  color: #555;
}

.drfruits-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.drfruits-product-card .drfruits-heart-icon {
  font-size: 20px;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s ease;
  border: none;
  background: none;
  outline: none;
}

.drfruits-product-card .drfruits-heart-icon.liked {
  color: #fd1904f1;
}

.drfruits-product-card .drfruits-heart-icon:hover {
  color: #f5170b;
  animation: drfruits-flipHeart 0.6s ease-in-out forwards;
}

@keyframes drfruits-flipHeart {
  0% {
    transform: rotateY(0deg);
  }

  50% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.drfruits-product-card .drfruits-add-to-cart-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19px;
  margin: 5px;
}

.drfruits-product-card .drfruits-details-btn,
.drfruits-product-card .drfruits-add-to-cart-btn {
  padding: 5px 10px;
  margin: -7px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.drfruits-product-card .drfruits-details-btn {
  background-color: #ff6f61;
}

.drfruits-product-card .drfruits-add-to-cart-btn {
  background-color: #007bff;
}

.drfruits-product-card .drfruits-details-btn:hover {
  background-color: #0056b3;
}

.drfruits-product-card .drfruits-add-to-cart-btn:hover {
  background-color: #0056b3;
}

.drfruits-discount-offer {
  background-color: #ffeb3b;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  margin: 20px 0;
  border-radius: 5px;
}

.drfruits-product-card .drfruits-old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
}

.drfruits-product-card .drfruits-new-price {
  color: #ff6f61;
  font-size: 18px;
  font-weight: bold;
}

.drfruits-promoted-label {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ff6f61;
  color: #fff;
  padding: 5px 10px;
  font-weight: bold;
  font-size: 12px;
  border-radius: 5px;
}
@media (max-width: 1200px) {
  .drfruits-product-card-container {
    grid-template-columns: repeat(4, 1fr); /* 4 cards for medium screens */
  }
}

@media (max-width: 992px) {
  .drfruits-product-card-container {
    grid-template-columns: repeat(3, 1fr); /* 3 cards for smaller screens */
  }
}

@media (max-width: 768px) {
  .drfruits-product-card-container {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* 2 cards for even smaller screens */
  }
}


@media (max-width: 420px) {
  .drfruits-product-card-container {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row for small mobile screens */
  }
  .drfruits-product-card{
      height: 267px;
  }
  .drfruits-product-card img{
      height: 100px;
  }
  
.drfruits-product-card h4{
    font-size: 13px;
}
.drfruits-product-card p{
    font-size: 12px;
}
.drfruits-product-card .drfruits-old-price{
    font-size: 11px;
}
.drfruits-product-card .drfruits-new-price{
    font-size: 15px;
}
.drfruits-product-card .drfruits-add-to-cart-btn-wrapper{
    gap: 16px;
}
.drfruits-product-card .drfruits-details-btn, .drfruits-product-card .drfruits-add-to-cart-btn{
    font-size: 11px;
}
}

/********************************** DryFruits Card CSS End  ***********************************************/

/********************************* Jadubuti-Hero Section CSS Start ****************************************/
.jadibuti-hero-section-image {
  margin-top: 1rem; /* Add space above the image */
  margin-bottom: 2rem; /* Add space below the image */
  height: 30vh; /* Set the height to 50% of the viewport */
  width: 95%; /* Set the width to 95% of the viewport */
  overflow: hidden; /* Ensure no overflow */
  margin-left: auto; /* Center the image horizontally */
  margin-right: auto; /* Center the image horizontally */
  border: 2px solid #ccc; /* Optional border for styling */
}

/* Hero Image */
.jadibuti-hero-section-image img {
  width: 100%; /* Make the image width fill the container */
  height: 100%; /* Make the image height fill the container */
  object-fit: cover; /* Ensure the image covers the whole space */
  display: block; /* Remove extra spaces */
}

/********************************* Jadubuti-Hero Section CSS Start ****************************************/

/********************************** Jadibuti Card CSS Start  ***********************************************/

.jadibuti-body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.jadibuti-h2 {
  text-align: left;
  color: #333;
  margin: 1.25rem 1.25rem;
}

.jadibuti-product-card-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* Default to 1 column */
  gap: 1rem;
  padding: 1.25rem;
  justify-content: center;
}

@media (min-width: 37.5rem) {
  .jadibuti-product-card-container {
    grid-template-columns: repeat(2, 1fr); /* 2 cards on medium screens */
  }
}

@media (min-width: 48rem) {
  .jadibuti-product-card-container {
    grid-template-columns: repeat(3, 1fr); /* 3 cards on large screens */
  }
}

@media (min-width: 75rem) {
  .jadibuti-product-card-container {
    grid-template-columns: repeat(7, 1fr); /* 7 cards on extra large screens */
  }
}

.jadibuti-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 11.25rem;
  padding: 0.9375rem;
  background-color: #fff;
  border: 0.0625rem solid #ddd;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.jadibuti-product-card:hover {
  transform: translateY(-0.625rem);
  box-shadow: 0 0.625rem 0.9375rem rgba(0, 0, 0, 0.2);
}

.jadibuti-product-card img {
  width: 100%;
  height: 9.375rem;
  object-fit: cover;
  border-radius: 0.3125rem;
  transition: transform 0.3s ease-in-out;
}

.jadibuti-product-card:hover img {
  transform: scale(1.1); /* Zoom in */
}

.jadibuti-product-card h4 {
  margin-top: 0.625rem;
  font-size: 1rem;
  color: #333;
  font-weight: bold;
}

.jadibuti-product-card p {
  margin: 0.5rem 0;
  font-size: 0.875rem;
  color: #555;
}

.jadibuti-product-card .jadibuti-details-btn {
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fff;
  background-color: #ff6f61;
  border: none;
  border-radius: 0.3125rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.jadibuti-product-card .jadibuti-details-btn:hover {
  background-color: #0056b3;
}

.jadibuti-promoted-label {
  position: absolute;
  top: 0.625rem;
  left: 0.625rem;
  background-color: #ff6f61;
  color: #fff;
  padding: 0.3125rem 0.625rem;
  font-weight: bold;
  font-size: 0.75rem;
  border-radius: 0.3125rem;
}

.jadibuti-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 0.625rem;
}

.jadibuti-heart-icon {
  font-size: 1.25rem;
  color: #ccc;
  cursor: pointer;
  transition: color 0.3s;
}

.jadibuti-heart-icon.liked {
  color: #ff6f61;
}

.jadibuti-add-to-cart-btn {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 0.3125rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.jadibuti-add-to-cart-btn:hover {
  background-color: #218838;
}

.jadibuti-product-card .jadibuti-add-to-cart-btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.jadibuti-product-card .jadibuti-add-to-cart-btn-wrapper .jadibuti-heart-icon {
  order: -1; /* Move heart icon to the left */
}

.jadibuti-discount-offer {
  background-color: #ffeb3b;
  color: #333;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  padding: 0.625rem;
  margin: 1.25rem 0;
  border-radius: 0.3125rem;
}

/********************************** Jadibuti Card CSS End  ***********************************************************/

/********************************** Display DryFruits Details Start CSS  ***********************************************/
.details-body {
  font-family: "Arial", sans-serif;
  background: #f7f7f7;
  margin: 0;
  padding: 0;
}

.details-product-details-container {
  display: flex;
  max-width: 900px;
  margin: 50px auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.details-product-image {
  flex: 1;
  border: 2px solid #ddd;
  padding: 10px;
  border-radius: 10px;
  margin-right: 30px;
}

.details-product-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.details-product-info {
  flex: 2;
}

.details-product-info h1 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}

.details-product-info p {
  font-size: 16px;
  color: #555;
  margin: 8px 0;
}

.details-product-info p strong {
  font-weight: bold;
}

.details-product-details-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.details-buy-btn {
  padding: 12px 30px;
  background-color: #28a745;
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
  width: 200px;
  text-align: center;
}

.details-buy-btn:hover {
  background-color: #218838;
  transform: scale(1.05);
}

.details-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.details-social-icons a {
  font-size: 22px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f1f1f1;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.details-social-icons a:hover {
  color: #fff;
}

.details-social-icons a.details-facebook:hover {
  background-color: #3b5998;
}

.details-social-icons a.details-whatsapp:hover {
  background-color: #25d366;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .details-product-details-container {
    flex-direction: column;
    padding: 20px;
  }

  .details-product-image {
    margin-right: 0;
    margin-bottom: 20px;
    width: 100%;
  }

  .details-product-info {
    flex: 1;
  }
}

@media (max-width: 992px) {
  .details-product-info h1 {
    font-size: 28px;
  }

  .details-product-info p {
    font-size: 14px;
  }

  .details-buy-btn {
    width: 180px;
  }

  .details-social-icons a {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 768px) {
  .details-product-info h1 {
    font-size: 24px;
  }

  .details-product-info p {
    font-size: 13px;
  }

  .details-buy-btn {
    width: 100%;
  }

  .details-social-icons {
    justify-content: center;
  }

  .details-social-icons a {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  .details-product-info h1 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .details-product-info p {
    font-size: 12px;
  }

  .details-buy-btn {
    padding: 10px 25px;
    font-size: 16px;
  }

  .details-social-icons a {
    width: 35px;
    height: 35px;
  }

  .details-product-details-container {
    margin: 20px;
    padding: 15px;
  }

  .details-product-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 400px) {
  .details-buy-btn {
    padding: 8px 20px;
    font-size: 14px;
  }

  .details-social-icons a {
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .details-product-info p {
    font-size: 11px;
  }
}
/********************************** Display DryFruits Details End CSS  ***********************************************/

/********************************** Display Jadibuti Details Start CSS  ***********************************************/
body.jadibuti-body {
  
  background: #f7f7f7;
  margin: 0;
  padding: 0;
}

.jadibuti-product-details-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 50px auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.jadibuti-product-image {
  flex: 1;
  border: 2px solid #ddd;
  padding: 10px;
  border-radius: 10px;
  margin-right: 30px;
}

.jadibuti-product-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.jadibuti-product-info {
  flex: 1;
}

.jadibuti-product-info h1 {
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}

.jadibuti-product-info p {
  font-size: 16px;
  color: #555;
  margin: 8px 0;
}

.jadibuti-product-info p strong {
  font-weight: bold;
}

.jadibuti-product-details-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.jadibuti-buy-btn {
  padding: 12px 30px;
  background-color: #28a745;
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
  width: 200px;
  text-align: center;
}

.jadibuti-buy-btn:hover {
  background-color: #218838;
  transform: scale(1.05);
}

.jadibuti-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.jadibuti-social-icons a {
  font-size: 22px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #f1f1f1;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.jadibuti-social-icons a:hover {
  color: #fff;
}

.jadibuti-social-icons a.facebook:hover {
  background-color: #3b5998;
}

.jadibuti-social-icons a.whatsapp:hover {
  background-color: #25d366;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  body.jadibuti-body {
    font-size: 14px;
  }

  .jadibuti-product-details-container {
    flex-direction: column;
    align-items: center;
  }

  .jadibuti-product-image {
    margin-right: 0;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .jadibuti-product-info {
    text-align: center;
  }

  .jadibuti-buy-btn {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }

  .jadibuti-social-icons {
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  body.jadibuti-body {
    font-size: 13px;
  }

  .jadibuti-product-info h1 {
    font-size: 24px;
  }

  .jadibuti-product-info p {
    font-size: 14px;
  }

  .jadibuti-buy-btn {
    width: 100%;
    padding: 10px;
  }

  .jadibuti-social-icons a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/********************************** Display Jadibuti Details End CSS  ***********************************************/

/*********************************** Shoping Cart Page CSS Start ***************************************************/

.shopping-cart-page {
  font-family: "Arial", sans-serif;
  background-color: #f9f9f9;
  padding: 20px 10px;
  margin: 0;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

.shopping-cart-container {
  max-width: 900px;
  width: 100%;
  margin: 20px auto;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.shopping-cart-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  color: #444;
}

.shopping-cart-table {
  width: 100%;
  margin-bottom: 20px;
  border-collapse: collapse;
}

.shopping-cart-table th,
.shopping-cart-table td {
  text-align: center;
  vertical-align: middle;
  padding: 12px 8px;
}

.shopping-cart-table th {
  background-color: #e9ecef;
  color: #444;
  font-weight: 600;
}

.shopping-cart-table td img {
  max-width: 70px;
  max-height: 70px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.shopping-cart-table .quantity-control {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.quantity-button {
  background-color: #ff9f9f;
  border: none;
  color: white;
  padding: 6px 12px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
}

.quantity-button:hover {
  background-color: #e68d8d;
}

.quantity-input {
  width: 60px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #ddd;
  margin: 0 6px;
  padding: 6px 2px;
  border-radius: 4px;
}

.shopping-cart-summary {
  text-align: right;
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
}

.shopping-cart-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.action-button-primary {
  background-color: #ff9f9f;
  border: none;
  transition: background-color 0.3s ease;
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 16px;
  color: white;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.action-button-primary:hover {
  background-color: #e68d8d;
}

.action-button-secondary {
  background-color: #3141d3;
  border: none;
  transition: background-color 0.3s ease;
  padding: 8px 20px;
  border-radius: 20px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.action-button-secondary:hover {
  background-color: #23498c;
  text-decoration: none;
  color: white;
}

/* Responsive table for smaller screens */
@media (max-width: 767.98px) {
  .shopping-cart-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Optional: Transform table to cards on very small screens */
  @media (max-width: 575.98px) {
    .shopping-cart-table, 
    .shopping-cart-table thead, 
    .shopping-cart-table tbody, 
    .shopping-cart-table th, 
    .shopping-cart-table td, 
    .shopping-cart-table tr {
      display: block;
    }
    
    .shopping-cart-table thead tr {
      position: absolute;
      top: -9999px;
      left: -9999px;
    }
    
    .shopping-cart-table tr {
      border: 1px solid #ddd;
      margin-bottom: 15px;
      border-radius: 8px;
      overflow: hidden;
    }
    
    .shopping-cart-table td {
      border: none;
      border-bottom: 1px solid #eee;
      position: relative;
      padding-left: 50%;
      text-align: right;
    }
    
    .shopping-cart-table td:before {
      position: absolute;
      top: 12px;
      left: 12px;
      width: 45%;
      padding-right: 10px;
      white-space: nowrap;
      font-weight: bold;
      text-align: left;
    }
    
    /* Add data labels */
    .shopping-cart-table td:nth-of-type(1):before { content: "Product"; }
    .shopping-cart-table td:nth-of-type(2):before { content: "Price"; }
    .shopping-cart-table td:nth-of-type(3):before { content: "Quantity"; }
    .shopping-cart-table td:nth-of-type(4):before { content: "Total"; }
    .shopping-cart-table td:nth-of-type(5):before { content: "Action"; }
  }
}

/* Mobile devices (up to 575px) */
@media (max-width: 575.98px) {
  body.shopping-cart-page {
    padding: 10px 5px;
  }
  
  .shopping-cart-container {
    padding: 10px;
    margin: 10px auto;
  }

  .shopping-cart-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .shopping-cart-table td img {
    max-width: 50px;
    max-height: 50px;
  }

  .shopping-cart-summary {
    font-size: 16px;
    margin-top: 15px;
  }

  .shopping-cart-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 15px;
    gap: 8px;
  }

  .shopping-cart-actions a,
  .shopping-cart-actions button {
    width: 100%;
    margin-bottom: 0;
    padding: 10px 15px;
  }

  .shopping-cart-table th,
  .shopping-cart-table td {
    font-size: 14px;
    padding: 8px 5px;
  }

  .quantity-button {
    font-size: 14px;
    padding: 4px 8px;
    min-width: 30px;
  }

  .quantity-input {
    font-size: 14px;
    width: 45px;
    padding: 4px 2px;
  }
}

/* Tablet devices (576px to 991px) */
@media (min-width: 576px) and (max-width: 991.98px) {
  body.shopping-cart-page {
    padding: 15px 10px;
  }
  
  .shopping-cart-container {
    padding: 15px;
    margin: 15px auto;
  }

  .shopping-cart-title {
    font-size: 22px;
  }

  .shopping-cart-table td img {
    max-width: 70px;
    max-height: 70px;
  }

  .shopping-cart-summary {
    font-size: 17px;
  }

  .shopping-cart-table th,
  .shopping-cart-table td {
    font-size: 15px;
    padding: 10px 6px;
  }

  .quantity-button {
    font-size: 15px;
    padding: 5px 10px;
  }

  .quantity-input {
    font-size: 15px;
    width: 50px;
  }

  .shopping-cart-actions {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
  }

  .shopping-cart-actions a,
  .shopping-cart-actions button {
    min-width: 48%;
    margin: 0;
    text-align: center;
  }
}

/* Laptop devices (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .shopping-cart-container {
    padding: 25px;
    max-width: 960px;
  }

  .shopping-cart-title {
    font-size: 24px;
  }

  .shopping-cart-actions {
    margin-top: 20px;
  }
}

/* Desktop devices (1200px and above) */
@media (min-width: 1200px) {
  .shopping-cart-container {
    padding: 30px;
  }

  .shopping-cart-title {
    font-size: 28px;
    margin-bottom: 25px;
  }

  .shopping-cart-table th,
  .shopping-cart-table td {
    padding: 15px;
    font-size: 16px;
  }
  
  .shopping-cart-actions {
    margin-top: 25px;
  }
}
/* *********************************** Shoping Cart Page CSS End ****************************************************/

/************************************* WishList CSS Start ***********************************************************/

.wishlist-body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  margin: 0;
  padding: 0;
}

.wishlist-h1 {
  text-align: center;
  margin: 2rem 0;
  font-size: 2.5rem;
  color: #333;
}

.wishlist-table {
  width: 90%;
  margin: 2rem auto;
  border-collapse: separate; /* Separate borders to apply border-radius */
  border-spacing: 0; /* Remove extra spacing between cells */
  background-color: #fff;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  border-radius: 1rem; /* Apply rounded corners to the entire table */
  overflow: hidden; /* Ensures rounded corners are respected */
}

.wishlist-table th,
.wishlist-table td {
  padding: 1rem;
  text-align: center;
  border: 1px solid #ddd;
}

.wishlist-table th {
  background-color: #f8f9fa;
  font-weight: bold;
  font-size: 1rem;
}

.wishlist-table img {
  width: 6.25rem; /* 100px = 6.25rem */
  height: 6.25rem;
  object-fit: cover;
  border-radius: 0.625rem; /* Rounds the image corners */
}

.action-buttons {
  display: flex;
  gap: 0.625rem; /* 10px = 0.625rem */
  justify-content: center;
}

/* Add to Cart button styles */
/* Add to Cart button styles */
.add-to-cart-button {
  background-color: #27ae60; /* Green */
  color: #fff;
  border: none;
  padding: 0.4rem 0.8rem; /* Default padding */
  border-radius: 0.25rem; /* Border radius */
  cursor: pointer;
  font-size: 0.875rem; /* Default font size */
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.add-to-cart-button:hover {
  background-color: #2ecc71; /* Lighter green on hover */
  transform: scale(1.05);
}

/* Remove button styles */
.remove-button {
  background-color: #e74c3c; /* Red */
  color: #fff;
  border: none;
  padding: 0.4rem 0.8rem; /* Default padding */
  border-radius: 0.25rem; /* Border radius */
  cursor: pointer;
  font-size: 0.875rem; /* Default font size */
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.remove-button:hover {
  background-color: #c0392b; /* Darker red on hover */
  transform: scale(1.05);
}

/*empty wishlist css */
.empty-wishlist-container {
            text-align: center;
            margin: 50px auto;
            max-width: 600px;
        }
        .empty-wishlist-image {
            max-width: 335px;
            margin-bottom: 20px;
        }
        .empty-message {
            font-size: 18px;
            color: #666;
            margin-bottom: 25px;
        }
        .shop-now-button {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 12px 24px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .shop-now-button:hover {
            background-color: #45a049;
        }
/* Responsive adjustments based on table size */
@media (max-width: 1024px) {
  /* For medium devices like tablets */
  .wishlist-table {
    width: 90%; /* Slightly smaller width for tablets */
  }

  .add-to-cart-button,
  .remove-button {
    padding: 0.35rem 0.7rem; /* Slightly smaller padding */
    font-size: 0.8rem; /* Slightly smaller font size */
  }
}

@media (max-width: 768px) {
  /* For tablets and smaller */
  .wishlist-table {
    width: 100%; /* Full width for smaller screens */
  }

  .add-to-cart-button,
  .remove-button {
    padding: 0.3rem 0.6rem; /* Smaller padding for smaller screens */
    font-size: 0.75rem; /* Smaller font size */
  }

  .wishlist-table img {
    width: 5rem; /* 80px */
    height: 5rem;
  }

  .wishlist-table th,
  .wishlist-table td {
    padding: 0.75rem; /* Reduced padding in table cells */
  }
}

@media (max-width: 480px) {
  /* For small screens like mobile phones */
  .wishlist-table {
    width: 100%; /* Full width for small screens */
  }

  /* Adjust buttons padding, font size, and margin */
  .add-to-cart-button,
  .remove-button {
    padding: 0.3rem 0.7rem; /* Slightly larger padding for better touch interaction */
    font-size: 0.6rem; /* Adjust font size */
    margin: 0.35rem; /* Add space between the buttons */
    display: inline-block; /* To ensure both buttons stay inline */
  }

  .add-to-cart-button {
    margin-right: 0.5rem; /* Add space between Add to Cart and Remove button */
  }

  .wishlist-table img {
    width: 4.375rem; /* 70px */
    height: 4.375rem;
  }

  .wishlist-table th,
  .wishlist-table td {
    padding: 0.5rem; /* Even smaller table cell padding */
  }
}

/************************************* WishList CSS End ***********************************************************/

/********************************** Shimmer UI CSS Start ********************************************/
.shimmer-card-container {
  display: grid;
  gap: 30px;
  justify-content: center;
  padding: 20px;
  grid-template-columns: repeat(7, 1fr); /* Matches product-card layout */
}

.shimmer-card {
  max-width: 180px;
  height: 280px;
  padding: 15px;
  background-color: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  animation: shimmer 2s infinite linear;
  overflow: hidden;
}

.shimmer-image {
  width: 100%;
  height: 150px;
  border-radius: 5px;
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
}

.shimmer-text {
  width: 90%;
  height: 12px;
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  border-radius: 4px;
}

.shimmer-title {
  height: 16px;
  margin: 8px 0;
}

.shimmer-price {
  height: 14px;
  margin-bottom: 8px;
}

.shimmer-buttons {
  display: flex;
  gap: 8px;
  width: 100%;
  justify-content: center;
}

.shimmer-btn {
  width: 45%;
  height: 30px;
  background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
  background-size: 200% 100%;
  border-radius: 5px;
}

/* Shimmer animation */
@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .shimmer-card-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .shimmer-card-container {
    grid-template-columns: repeat(3, 1fr);
  }
  .shimmer-card {
    max-width: 160px;
  }
}

@media (max-width: 768px) {
  .shimmer-card-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .shimmer-card {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .shimmer-card-container {
    grid-template-columns: 1fr;
  }
  .shimmer-card {
    max-width: 100%;
  }
}

/********************************** Shimmer UI CSS End ********************************************/

/* *****************************Checkout CSS Start******************************** */

.checkout-body {
  background: #f3f4f9;
  font-size: 16px;
}

.checkout-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 30px;
  min-height: 100vh;
  background: linear-gradient(90deg, #eceff1 60%, #f9f9f9 40%);
  flex-wrap: wrap;
}

.checkout-container form {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-sizing: border-box;
}

.checkout-left-column,
.checkout-right-column {
  flex: 1 1 48%;
  min-width: 300px;
  padding: 15px;
}

.checkout-title {
  font-size: 24px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.checkout-inputBox {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.checkout-inputBox span {
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
  color: #666;
}

.checkout-inputBox input,
.checkout-inputBox select {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  transition: 0.3s ease;
}

.checkout-inputBox input:focus,
.checkout-inputBox select:focus {
  border-color: #27ae60;
  background: #fff;
}

.checkout-payment-methods {
  display: none;
}

.checkout-payment-methods.active {
  display: block;
}

.checkout-submit-btn {
  background-color: #27ae60;
  width: 100%;
  padding: 15px;

  color: #000;
  font-size: 18px;
  cursor: pointer;
  border-radius: 8px;
  border: none;
  transition: background 0.3s ease;
}

.checkout-submit-btn:hover {
  background-color: #2ecc71;
  color: #fff;
}

.checkout-order-summary {
  margin-top: 30px;
  background-color: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.checkout-order-summary .checkout-inputBox {
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}

.checkout-order-summary .checkout-inputBox span {
  font-weight: 600;
}

.order-summary .checkout-inputBox strong {
  font-size: 18px;
}

.checkout-order-summary .checkout-inputBox:last-child {
  font-size: 20px;
  font-weight: 700;
  color: #27ae60;
}

.checkout-order-summary .checkout-inputBox span:last-child {
  color: #27ae60;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .checkout-container {
    padding: 20px;
  }

  .checkout-left-column,
  .checkout-right-column {
    flex: 1 1 100%;
    padding: 10px;
  }

  .checkout-title {
    font-size: 22px;
  }

  .checkout-inputBox input,
  .checkout-inputBox select {
    font-size: 14px;
  }

  .checkout-submit-btn {
    font-size: 16px;
  }

  .checkout-order-summary .checkout-inputBox {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .checkout-container {
    padding: 15px;
  }

  .checkout-left-column,
  .checkout-right-column {
    flex: 1 1 100%;
    padding: 12px;
  }

  .checkout-title {
    font-size: 20px;
  }

  .checkout-inputBox input,
  .checkout-inputBox select {
    font-size: 14px;
  }

  .checkout-submit-btn {
    font-size: 16px;
  }

  .checkout-order-summary .checkout-inputBox {
    font-size: 13px;
  }

  .checkout-inputBox input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
    appearance: textfield; /* Standard */
  }

  /* Remove spinners in WebKit browsers (Chrome, Safari, Edge) */
  .checkout-inputBox input[type="number"]::-webkit-outer-spin-button,
  .checkout-inputBox input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .checkout-container {
    padding: 10px;
  }

  .checkout-left-column,
  .checkout-right-column {
    flex: 1 1 100%;
    padding: 8px;
  }

  .checkout-title {
    font-size: 18px;
  }

  .checkout-inputBox input,
  .checkout-inputBox select {
    font-size: 12px;
  }

  .checkout-submit-btn {
    font-size: 14px;
  }

  .checkout-order-summary {
    padding: 8px;
  }

  .checkout-order-summary .checkout-inputBox {
    font-size: 12px;
  }
}
/* ******************checkout css end************************************** */
/* **********************************foooter css ************************************ */
/* Footer Styles */
.footer {
  background-color: #232323;
  color: #fff;
  padding: 25px 42px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-section .footer-title {
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
  color: #f4a261;
   margin-left:20px ;
}

.footer-section .footer-list {
  list-style: none;
  padding: 0;
}

.footer-section .footer-list li {
  margin: 5px 0;
  margin-left:20px ;
}

.footer-section .footer-list li .footer-link {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-section .footer-list li .footer-link:hover {
  color: rgb(250, 128, 13);
}

.footer-icons {
  display: flex;
  justify-content: space-around;
  text-align: center;
  gap: 20px;
}

.footer-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-icon-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
  filter: invert(1);
  border-radius: 116px;
}

.footer-icon-item span {
  font-size: 14px;
}

.footer-social-media {
  text-align: center;
}

.footer-social-media .footer-title {
  margin-bottom: 10px;
  font-size: 18px;
  text-transform: uppercase;
  color: #f4a261;
}

.footer-social-media .footer-social-link {
  margin: 0 10px;
}

.footer-social-media .footer-social-link img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.footer-social-media .footer-social-link img:hover {
  transform: scale(1.1);
}

.footer-copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #ccc;
}

/* footer css end */
@media (max-width: 768px) {

  /* Location box adjustments */
  .header-location-box {
    width: 46%;
    height: 199px;
    padding: 15px;
  }

  .header-location-title {
    font-size: 14px;
  }

  .header-location-text {
    font-size: 8px;
    margin: 8px;
  }

  .header-sign-in-btn {
    font-size: 8px;
    padding: 8px;
    width: 64px;
  }

  .header-pincode-section {
    flex-direction: column;
    gap: 0px;
    height: auto;
  }

  .header-pincode-input {
    width: 87%;
    font-size: 14px;
  }

  .header-update-pincode-btn {
    width: 37%;
    padding: 7px;
    font-size: 8px;
  }
  /* footer */
  .footer {
    padding: 20px 15px;
  }

  .footer-container {
    gap: 15px;
  }

  .footer-links {
    flex-direction: column;
    gap: 15px;
  }

  .footer-section .footer-title {
    cursor: pointer;
    position: relative;
    font-size: 12px;
  }

  .footer-section .footer-title::after {
    content: "\25BC";
    font-size: 8px;
    color: #f4a261;
    position: absolute;
    right: 0;
    transform: rotate(0deg);
    transition: transform 0.3s;
  }

  .footer-section .footer-title.open::after {
    transform: rotate(180deg);
  }

  .footer-section .footer-list {
    display: none;
  }

  .footer-section .footer-list.show {
    display: block;
  }

  .footer-icons {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-icon-item {
    width: 45%;
    margin: 0 auto;
  }

  .footer-icon-item img {
    width: 35px;
    height: 35px;
  }

  .footer-social-media .footer-social-link img {
    width: 25px;
    height: 25px;
  }

  .footer-copyright {
    font-size: 12px;
  }
}

/* ****************************kalyani css ****************************************** */




/****************************************************** Slider css *************************************************/
.Pslider-hero {
  padding: 15px 20px; /* Reduced padding */
  background-color: transparent ;
  min-height: 400px;
  overflow: hidden;
  text-align: left;
}
.align-items-center{
    padding: 0 52px;
}
/* Adjust Text Size */
.Pslider-hero-content h1 {
  font-size: 2.7rem; /* Reduced font size */
  font-weight: bold;
  color: #333;
  margin-bottom: 15px; /* Reduced margin */
  animation: slideUp 1.5s ease-out;
  text-align: left;
  margin-left: -7px;
}

.Pslider-hero-content p {
  font-size: 1.2rem; /* Kept smaller */
  color: #555;
  margin-bottom: 20px; /* Reduced margin */
  animation: fadeIn 2s ease-out;
}

/* Adjust Button */
.Pslider-hero .btn-primary {
  background-color: #ff6f61;
  text-align: left;
  color: white;
  border-radius: 30px;
  padding: 8px 17px; /* Further reduced padding */
  font-size: 0.8rem; /* Kept small */
  font-weight: bold;
  transition: background-color 0.3s ease;
  animation: bounceIn 1s ease-out;
}

/* Adjust Image */
.Pslider-hero img {
  width: 100%; /* Increase size slightly */
  max-width: 110%;
  height: auto; /* Maintain aspect ratio */
  object-fit: contain; /* Prevent cropping */
  border-radius: 0;
  box-shadow: none;
  animation: none;
  max-height: 370px; /* Slightly increased max height */
  transition: opacity 1s ease-in-out, transform 0.3s ease;
  display: block; /* Prevent extra space */
  margin: auto; /* Center align */
  transform: scale(1.1); /* Slightly enlarge without cutting */
}

.Pslider-hero-content {
  background-color: transparent; /* Make sure there’s no background here either */
}

/* Keep carousel item transition */
.carousel-item {
  transition: transform 1s ease-in-out !important;
  height: 100%;
}

/* Keyframe Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Styling */
@media (max-width: 1024px) {
  .Pslider-hero img {
    max-height: 320px; /* Adjust height for medium screens */
    transform: scale(1.05); /* Slightly less zoom */
  }
}

@media (max-width: 768px) {
  .Pslider-hero img {
    max-height: 300px;
    transform: scale(1); /* Normal size */
  }

  .Pslider-hero-content h1 {
    font-size: 2rem;
  }

  .Pslider-hero-content p {
    font-size: 0.9rem;
  }

  .Pslider-hero .btn-primary {
    padding: 8px 20px;
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .Pslider-hero img {
    max-height: 270px;
    width: 100%; /* Ensure full width */
    transform: scale(1); /* No extra zoom */
  }

  .Pslider-hero-content h1 {
    font-size: 1.8rem;
  }

  .Pslider-hero-content p {
    font-size: 0.85rem;
  }

  .Pslider-hero .btn-primary {
    padding: 6px 16px;
    font-size: 0.75rem;
  }
}

@media (max-width: 400px) {
    .align-items-center{
        padding: 0 0;
    }
  .Pslider-hero img {
    max-height: 240px;
    width: 100%;
  }

  .Pslider-hero-content h1 {
    font-size: 1.6rem;
  }

  .Pslider-hero-content p {
    font-size: 0.8rem;
  }

  .Pslider-hero .btn-primary {
    padding: 5px 14px;
    font-size: 0.7rem;
  }
}

/*********************************************** Show More Button css **********************************************/

.Poojaitem-show-more-product-details-container {
  display: flex;
  flex-wrap: wrap; /* Allow content to wrap on smaller screens */
  max-width: 800px;
  margin: 15px auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 25px;
}
.Poojaitem-show-more-product-image {
  flex: 1;
  padding: 10px;
  border-radius: 10px;
  margin-right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.Poojaitem-show-more-product-image:hover {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(15px);
  box-shadow: 8px 8px 20px rgba(0, 0, 0, 0.2);
}
.Poojaitem-show-more-product-image img {
  width: 300px;
  height: 400px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}
.Poojaitem-show-more-product-image img:hover {
  transform: scale(1.03);
}
.Poojaitem-show-more-product-info {
  flex: 2;
}
.Poojaitem-show-more-product-info h1 {
  font-size: 36px;
  color: #333;
  font-weight: bold;
  text-align: left;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin-top: -10px;
  transition: transform 0.2s ease-in-out, font-size 0.2s ease-in-out;
}
.Poojaitem-show-more-product-info h1:hover {
  transform: scale(1.05);
}
.Poojaitem-show-more-product-info p {
  font-size: 17px;
  color: #444;
  transition: all 0.3s ease-in-out;
  margin: 8px 0;
}
.Poojaitem-show-more-product-info p:hover {
  color: #ff6600;
  transform: scale(1.05);
}
.Poojaitem-show-more-product-info p strong {
  font-weight: bold;
}
.Poojaitem-show-more-product-details-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.Poojaitem-show-more-buy-btn {
  padding: 14px 35px;
  background-color: #4caf50;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
  width: auto;
  text-align: center;
  border: 2px solid transparent;
}
.Poojaitem-show-more-buy-btn:hover {
  background-color: #45a049;
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  border-color: #45a049;
}
.Poojaitem-show-more-social-icons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.Poojaitem-show-more-social-icons a {
  font-size: 22px;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #f1f1f1;
  text-decoration: none;
  border: 2px solid #ccc;
  transition: all 0.3s ease-in-out;
}
.Poojaitem-show-more-social-icons a:hover {
  color: #fff;
  border-color: #3b5998;
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.Poojaitem-show-more-social-icons a.facebook:hover {
  background-color: #3b5998;
}
.Poojaitem-show-more-social-icons a.whatsapp:hover {
  background-color: #25d366;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .Poojaitem-show-more-product-details-container {
    flex-direction: column; /* Stack product image and info vertically */
    padding: 15px;
  }
  .Poojaitem-show-more-product-image {
    margin-right: 0;
    padding: 10px 0;
    max-width: 70%;
    display: block;
    justify-content: center;
    align-items: center;
  }
  .Poojaitem-show-more-product-image img {
    width: 90%;
    height: auto;
    margin-left: 5%;
  }
  .Poojaitem-show-more-product-info {
    margin-top: 10px;
  }
  .Poojaitem-show-more-product-info h1 {
    font-size: 30px;
  }
  .Poojaitem-show-more-product-info p {
    font-size: 16px;
  }
  .Poojaitem-show-more-buy-btn {
    padding: 12px 25px;
    font-size: 16px;
  }
  .Poojaitem-show-more-social-icons a {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .Poojaitem-show-more-product-info h1 {
    font-size: 26px;
  }
  .Poojaitem-show-more-product-info p {
    font-size: 14px;
  }
  .Poojaitem-show-more-buy-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  .Poojaitem-show-more-social-icons a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* ****************************order success css********************************************************00 */
/* firecracker animation */
.orderfireworkscontainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.firework {
  position: absolute;
  width: 10px;
  height: 10px;
  background: transparent;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: red;
  border-radius: 50%;
  animation: explode 1s forwards ease-out;
}

@keyframes explode {
  0% {
    transform: translate(0, 0);
    opacity: 1;
  }

  100% {
    transform: translate(calc(var(--x) * 20px), calc(var(--y) * 20px));
    opacity: 0;
  }
}

.ordercontainer {
  max-width: 710px;
  margin: 0 auto;
  background-color: white;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.orderheader {
  text-align: center;
  margin-bottom: 32px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background-color: #4caf50;
  border-radius: 50%;
  margin: 0 auto 16px;
  position: relative;
}

.success-icon::before,
.success-icon::after {
  content: "";
  position: absolute;
  background-color: white;
}

.success-icon::before {
  width: 32px;
  height: 6px;
  transform: rotate(45deg);
  left: 16px;
  top: 34px;
}

.success-icon::after {
  width: 16px;
  height: 6px;
  transform: rotate(-45deg);
  left: 12px;
  top: 32px;
}

.orderanimatedconfirmation {
  width: 80px;
  /* Adjust size */
  height: auto;
  animation: popUp 1s ease-in-out, glowEffect 1.5s infinite alternate;
}

@keyframes popUp {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes glowEffect {
  0% {
    filter: drop-shadow(0px 0px 5px rgba(0, 255, 0, 0.8));
  }

  100% {
    filter: drop-shadow(0px 0px 15px rgba(0, 255, 0, 1));
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.bounce {
  animation: bounce 0.5s ease-in-out;
}

.order-details {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 32px;
}

.order-details h2 {
  color: #666;
  font-size: 18px;
  margin-bottom: 16px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.detail-label {
  font-weight: 500;
  color: #666;
}

.total {
  text-align: right;
  padding-top: 16px;
  border-top: 2px solid #eee;
}

.orderbutton {
  display: inline-block;
  padding: 12px 24px;
  background-color: #4caf50;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.2s;
}

.orderbutton:hover {
  background-color: #45a049;
}

.error-message {
  text-align: center;
  padding: 20px;
  background-color: #ffebee;
  color: #c62828;
  border-radius: 4px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .ordercontainer {
    padding: 20px;
  }

  .detail-row {
    flex-direction: column;
    text-align: left;
    margin-bottom: 16px;
  }

  .detail-label {
    margin-bottom: 4px;
  }
}

/* ********************************health benefits css *************************** */
/* General Styling */
/*.healthbenefitsbody {*/
/*  background-color: #f8f9fa;*/
/*  color: #333;*/
  
/*}*/

/* Container */
.health-benefits-container {
  width: 85%;
  max-width: 1100px;
  margin: auto;
  padding: 5px 0;
}
/* Header */
.health-benefits-h1 {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #212529;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
}

.health-benefits-h1::after {
  content: "";
  width: 200px;
  height: 5px;
  background: linear-gradient(135deg, #ff9f00, #ff6f00);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}

/* Product Categories Grid */
.health-benefits-category {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
  border-left: 6px solid #ff9f00;
}

.health-benefits-category:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Image Styling */
.health-benefits-category img {
  width: 40%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease-in-out, box-shadow 0.3s;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.health-benefits-category img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.health-benefits-category img:active {
  transform: scale(1.5);
}

/* Category Information */
.health-benefits-category-info {
  flex: 1;
}

.health-benefits-category-info h3 {
  font-size: 26px;
  color: #212529;
  font-weight: 700;
  margin-bottom: 4px;
}

.health-benefits-category-info p {
  font-size: 16px;
  color: #555;
  margin-top: 10px;
  line-height: 1.6;
}

/* Buttons */
.health-benefits-category-info a {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff9f00, #ff6f00);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  margin-top: 15px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(255, 159, 0, 0.3);
  position: relative;
}

.health-benefits-category-info a:hover {
  background: linear-gradient(135deg, #ff6f00, #ff4500);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 111, 0, 0.4);
}

.health-benefits-category-info a:active {
  transform: translateY(2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .health-benefits-category {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .health-benefits-category img {
    width: 100%;
    max-height: 200px;
  }
}

/* **************************************new arrival css ************************ */
/* BACKGROUND DESIGN */
.newarrivalbody {
  background-color: white;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: white;
  margin: 0;
  padding: 0;
}

/* NEW ARRIVAL CONTAINER DESIGN */
.newarrival-container {
  display: flex;
  align-items: center;
  place-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 90%;
  background: linear-gradient(135deg, #1a1a2e, #ff4b2b);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  padding: 30px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease-in-out;
  margin: 35px auto; /* Centered with auto margins */
}

/* NEW ARRIVAL IMAGE/LOGO LEFT SIDE */
.newarrival-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.newarrival-image-container img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  animation: bounce 3s infinite ease-in-out;
}

/* Animation for the image */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* NEW ARRIVAL TEXT RIGHT SIDE */
.newarrival-text-content {
  flex: 2;
  padding: 20px;
}

.newarrival-text-content p {
  font-size: clamp(14px, 2vw, 18px); /* Responsive font size */
  font-weight: 400;
  margin-bottom: 5px;
  color: #ffcccb;
}

.newarrival-text-content h1 {
  color: white;
  font-size: clamp(28px, 4vw, 42px); /* Responsive font size */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.5);
}

.newarrival-text-content .info {
  font-size: clamp(12px, 1.6vw, 16px); /* Responsive font size */
  margin-top: 10px;
  color: #ffffff;
  opacity: 0.9;
}

/* NEW ARRIVAL EXPLORE BUTTON */
.newarrival-explore-btn {
  display: inline-block;
  margin-top: 20px;
  padding: clamp(10px, 2vw, 14px) clamp(20px, 3vw, 35px); /* Responsive padding */
  font-size: clamp(16px, 2vw, 20px); /* Responsive font size */
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ffcc00, #ff6600);
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.8);
  text-align: center;
  width: auto;
  animation: glowing 2s infinite alternate;
}

/* Glowing Effect - Always Visible */
@keyframes glowing {
  0% {
    box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
    opacity: 1;
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 165, 0, 1);
    opacity: 1;
  }
}

/* RESPONSIVE DESIGN - LARGE DESKTOP */
@media (min-width: 1201px) {
  .newarrival-container {
    max-width: 1200px;
    padding: 40px;
  }
  
  .newarrival-image-container img {
    max-width: 350px;
  }
}

/* RESPONSIVE DESIGN - LAPTOP/DESKTOP */
@media (max-width: 1200px) {
  .newarrival-container {
    max-width: 900px;
    margin: 30px auto;
  }
}

/* RESPONSIVE DESIGN - TABLET LANDSCAPE */
@media (max-width: 992px) {
  .newarrival-container {
    max-width: 90%;
    padding: 25px;
  }
  
  .newarrival-image-container img {
    max-width: 250px;
  }
}

/* RESPONSIVE DESIGN - TABLET PORTRAIT */
@media (max-width: 768px) {
  .newarrival-container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
    margin: 25px auto;
  }
  
  .newarrival-image-container {
    margin-bottom: 20px;
  }
  
  .newarrival-image-container img {
    max-width: 200px;
  }
  
  .newarrival-text-content {
    padding: 10px 15px;
  }
}

/* RESPONSIVE DESIGN - MOBILE LANDSCAPE */
@media (max-width: 576px) {
  .newarrival-container {
    padding: 15px;
    margin: 20px auto;
  }
  
  .newarrival-image-container img {
    max-width: 180px;
  }
  
  .newarrival-text-content {
    padding: 5px 10px;
  }
  
  .newarrival-explore-btn {
    padding: 8px 20px;
    margin-top: 15px;
  }
}

/* RESPONSIVE DESIGN - MOBILE PORTRAIT */
@media (max-width: 375px) {
  .newarrival-container {
    width: 95%;
    padding: 12px;
    margin: 15px auto;
  }
  
  .newarrival-image-container img {
    max-width: 150px;
  }
  
  .newarrival-text-content h1 {
    font-size: 24px;
  }
  
  .newarrival-explore-btn {
    padding: 8px 15px;
    font-size: 14px;
  }
}
/* *****************terms and conditions page ************************************ */

/* Base container styles */
.terms-container {
  display: flex;
  flex-direction: row;
  width: 60%;
  max-width: 805px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  margin: 58px auto 0;
  transition: transform 0.3s ease;
  margin-bottom: 50px;
}

.terms-container:hover {
  transform: translateY(-5px);
}

/* Sidebar styles */
.termsidebar {
  width: 30%;
  background: linear-gradient(135deg, #ff6f61, #0056b3);
  color: white;
  padding: 20px;
}

.termsidebar ul {
  list-style: none;
  padding: 0;
}

.termsidebar ul li {
  padding: 12px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 6px;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.termsidebar ul li::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
}

.termsidebar ul li:hover::before {
  left: 0;
}

.termsidebar ul li:hover,
.termsidebar ul li.active {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

/* Content area styles */
.termcontent {
  width: 70%;
  padding: 30px;
  position: relative;
}

.termcontent h2 {
  color: #2c3e50;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.termcontent h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #007bff;
  transition: width 0.3s ease;
}

.termcontent:hover h2::after {
  width: 100px;
}

/* Section animations */
.termsection {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.termsection.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.termsection h3 {
  color: #34495e;
  margin-bottom: 15px;
}

.termsection p {
  color: #596777;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button styles */
.termbuttons {
  margin-top: 30px;
  text-align: center;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.termbutton {
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  max-width: 200px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.termbutton:first-child {
  background: #28a745;
  color: white;
}

.termbutton:last-child {
  background: #dc3545;
  color: white;
}

.termbutton:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.termbutton:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .terms-container {
    flex-direction: column;
    width: 90%;
    margin: 100px auto 0;
  }

  .termsidebar {
    width: 100%;
    padding: 15px;
  }

  .termsidebar ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .termsidebar ul li {
    flex: 1;
    text-align: center;
    font-size: 14px;
    margin-bottom: 0;
    min-width: 120px;
  }

  .termcontent {
    width: 100%;
    padding: 20px;
  }

  .termbuttons {
    flex-direction: column;
    align-items: center;
  }

  .termbutton {
    max-width: 100%;
  }
}

@media (max-width: 468px) {
  .terms-container {
    margin: 50px auto 0;
  }

  .termsidebar {
    padding: 10px;
  }

  .termsidebar ul li {
    font-size: 9px;
    padding: 8px 10px;
    min-width: 90px;
  }

  .termcontent {
    padding: 15px;
  }

  .termcontent h2 {
    font-size: 20px;
  }

  .termsection h3 {
    font-size: 18px;
  }

  .termsection p {
    font-size: 14px;
  }
}

/* Loading animation for sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.termsection.active {
  animation: fadeInUp 0.5s ease forwards;
}

/* *************************************privacy policy css *************************** */
.privacycontainer {
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s forwards;
  padding: 20px;
}

@keyframes fadeIn {
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.sectionheader {
  text-align: center;
  margin-bottom: 40px;
  color: #5d4037;
}

.sectionheader h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  animation: slideDown 1s ease;
}

@keyframes slideDown {
  from {
      transform: translateY(-50px);
      opacity: 0;
  }

  to {
      transform: translateY(0);
      opacity: 1;
  }
}

.section {
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(-20px);
  animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

.section-header {
  padding: 20px;
  background: #fff3e0;
  border-radius: 10px 10px 0 0;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
}

.section-header:hover {
  background: #ffe0b2;
}

.section-header h2 {
  color: #5d4037;
  font-size: 1.2rem;
}

.section-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.section-content.active {
  padding: 20px;
  max-height: 500px;
}

.section-content p {
  color: #5d4037;
  line-height: 1.6;
  margin-bottom: 10px;
}



@media (max-width: 768px) {
  .privacycontainer {
      padding: 10px;
  }

  .sectionheader h1 {
      font-size: 2rem;
  }

  .section-header h2 {
      font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .sectionheader h1 {
      font-size: 1.8rem;
  }

  .section-header {
      padding: 15px;
  }

  .section-content.active {
      padding: 15px;
  }
}


/* *******************************************faq css ******************************** */
.faqcontainer {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}

.faqheader {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeDown 0.8s ease-out;
}

.faqheader h1 {
  color: #8B4513;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.faqheader p {
  color: #666;
  font-size: 1.8rem;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  overflow: hidden;
  animation: fadeIn 0.5s ease-out;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  color: #8B4513;
  transition: background-color 0.3s;
}

.faq-question:hover {
  background-color:rgb(189, 141, 87);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  padding: 0 1.5rem;
  color: #666;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.5rem;
}

@keyframes fadeIn {
  from {
      opacity: 0;
      transform: translateY(10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@media (max-width: 768px) {
  
  
  .faqheader h1 {
      font-size: 2rem;
      padding: 1rem;
  }

  .faq-question {
      padding: 1rem;
      font-size: 0.9rem;
  }

  .faq-answer {
      font-size: 0.9rem;
  }
}

/* ***************************************SECURITY*********************************/
      :root {
    --primary: #e67e22;
    --secondary: #d35400;
    --accent: #ff6b6b;
    --light: #f9f9f9;
    --dark: #333;
    --black: #2e2e2e;
    --success: #2ecc71;
    --warning: #f39c12;
    --danger: #e74c3c;
}
         

.security_body {
    
    background-color: var(--light);
  
    line-height: 1.6;
}

.security_hero {
    background: linear-gradient(135deg, #ff6f61, #0056b3);
    color: white;
    padding: 4rem 1rem;
    text-align: center;
}

.security_hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.security_hero p {
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.security_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.security_section {
    margin-bottom: 2rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.security_section h2 {
    color: var(--black);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--secondary);
    padding-bottom: 0.5rem;
    font-size: 1.5rem;
}

.security_security-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.security_feature-card {
    background-color: var(--light);
    border-radius: 8px;
    padding: 1.25rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--primary);
}

.security_feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.security_feature-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.security_feature-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 1.2rem;
}

.security_accordion {
    margin-top: 1.5rem;
}

.security_accordion-item {
    margin-bottom: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.security_accordion-header {
    background-color: var(--light);
    padding: 0.875rem;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    transition: background-color 0.3s;
    font-size: 0.95rem;
}

.security_accordion-header:hover {
    background-color: #f8c292;
}

.security_accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
}

.security_accordion-inner {
    padding: 0.875rem;
    border-top: 1px solid #ddd;
    margin-top: 5px;
    border-left: 3px solid var(--primary);
    font-size: 0.9rem;
    color: #444;
    background: var(--light);
    border-radius: 6px;
}

.active .security_accordion-content {
    max-height: 500px;
}

.active .security_accordion-toggle::after {
    transform: rotate(180deg);
}

.security_accordion-toggle::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.3s;
}

@keyframes slidein {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile Styles (up to 480px) */
@media (max-width: 480px) {
    .security_hero {
        padding: 2rem 0.75rem;
    }
    
    .security_hero h1 {
        font-size: 1.75rem;
    }
    
    .security_hero p {
        font-size: 0.9rem;
    }
    
    .security_container {
        padding: 0.75rem;
    }
    
    .security_section {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .security_feature-card {
        padding: 1rem;
    }
    
    .security_accordion-inner {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

/* Tablet Styles (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .security_hero {
        padding: 3rem 1.5rem;
    }
    
    .security_hero h1 {
        font-size: 2.25rem;
    }
    
    .security_container {
        padding: 1.5rem;
    }
    
    .security_security-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Laptop Styles (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .security_hero {
        padding: 3.5rem 2rem;
    }
    
    .security_container {
        padding: 1.75rem;
    }
    
    .security_security-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop Styles (1025px and above) */
@media (min-width: 1025px) {
    .security_hero h1 {
        font-size: 2.5rem;
    }
    
    .security_hero p {
        font-size: 1.2rem;
    }
    
    .security_container {
        padding: 2rem;
    }
    
    .security_section {
        padding: 2rem;
    }
    
    .security_security-features {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .security_feature-icon {
        font-size: 2.5rem;
    }
    
    .security_feature-card h3 {
        font-size: 1.3rem;
    }
}

/*********************************CONTACT US*********************/
/*.contact-body {*/
           
/*            margin: 0;*/
/*            padding: 0;*/
/*            background-color: #f4f4f4;*/
/*        }*/
        .contact-container {
            max-width: 1000px;
            margin:8px auto 25px;
            padding: 30px;
        }
        .contact-box {
            display: flex;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        }
        .contact-left-box {
            flex: 1;
            background: #e67e22;
            color: white;
            padding: 30px;
        }
        .contact-left-box h2 {
            margin-bottom: 15px;
            font-size: 28px;
        }
        .contact-left-box p, .contact-left-box div {
            margin-bottom: 30px;
        }
        .contact-right-box {
            flex: 2;
            padding: 30px;
        }
        .contact-form-group {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .contact-form-group input, .contact-form-group textarea {
            width: calc(50% - 10px);
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 16px;
        }
        .contact-form-group textarea {
            width: 100%;
            height: 100px;
        }
        .contact-form-group button {
            width: 100%;
            background: #b22222;
            color: white;
            padding: 12px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 18px;
            font-weight: bold;
        }
        .contact-form-group button:hover {
            background: #8b0000;
        }
        .contact-extra-box-container {
            display: flex;
            justify-content: space-between;
            gap: 15px;
            margin-bottom: 20px;
        }
        .contact-extra-box {
            flex: 1;
            padding: 20px;
            text-align: left;
            border-radius: 8px;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            background-color: #ffffff;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            color: black;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            max-width: 400px;
            height:200px;
            color:black;
        }
        .contact-extra-box:hover {
            transform: translateY(-5px);
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
        }
        .contact-extra-box h2 {
            font-size: 20px;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .contact-extra-box p {
            font-size: 15px;
            line-height: 1.6;
            margin-bottom: 10px;
        }
        .contact-extra-box a {
            color: #ff0000;
            font-weight: bold;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .contact-extra-box a:hover {
            color: #cc0000;
        }

/* Custom Styling for Safety Notice Box */
        .contact-extra-box:nth-child(1) {
            background-color: white; 
            color: black; 
        }

        .contact-extra-box:nth-child(1) h2 {
            color: #1976d2; 
            font-size: 24px;
            margin-bottom: 3px;
        }

        .contact-extra-box:nth-child(1) p {
            color: black; 
            font-size: 16px;
        }
/* Custom Styling for Track Your Order Box */
        .contact-extra-box:nth-child(2) {
            background-color: white; 
            color: black; 
        }

        .contact-extra-box:nth-child(2) h2 {
            color: #ff9800; 
            font-size: 24px;
            margin-bottom: 2px;
        }

        .contact-extra-box:nth-child(2) p {
            color: black; 
            margin-bottom: 5px;  
            line-height: 1.2;   
            font-size: 16px;
        }

        .contact-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .contact-header a {
            font-size: 24px;
            color: #b22222;
            text-decoration: none;
            margin-right: 10px;
        }
        .contact-header h2 {
            font-size: 24px;
            margin: 0;
        }
        @media (max-width: 768px) {
            .contact-box {
                flex-direction: column;
            }
            .contact-form-group input {
                width: 100%;
            }
            .contact-extra-box-container {
                flex-direction: column;
                gap: 15px;
            }
            .contact-extra-box {
                margin-right: 0;
                padding: 20px;
            }
            .contact-header {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        
        
/***********************************PRICING********************************/
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            
        }

        .pricing-body {
            background-color: #f8f9fa;
            text-align: center;
        }

        .pricing-header {
            padding: 25px 20px;
            background: linear-gradient(to right, #e67e22, #d35400);
            color: white;
        }

        .pricing-header h1 {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .pricing-header p {
            font-size: 18px;
        }

        .pricing-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            padding: 40px;
            gap: 20px;
        }

        .pricing-card {
            background: white;
            width: 320px;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            transition: transform 0.3s ease-in-out;
        }

        .pricing-card:hover {
            transform: scale(1.05);
        }

        .pricing-card h2 {
            font-size: 24px;
            margin-bottom: 10px;
            color: #333;
        }

        .pricing-price {
            font-size: 30px;
            font-weight: bold;
            color: #e67e22;
            margin-bottom: 10px;
        }

        .pricing-card ul {
            list-style: none;
            padding: 0;
            margin: 10px 0;
        }

        .pricing-card ul li {
            font-size: 16px;
            color: #555;
            padding: 8px 0;
        }

        .pricing-btn {
            display: inline-block;
            background: #e67e22;
            color: white;
            padding: 12px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s;
            margin-top: 10px;
        }

        .pricing-btn:hover {
            background: #d35400;
        }

        /* Comparison Table */
        .pricing-comparison-table {
            width: 80%;
            margin: 40px auto;
            border-collapse: collapse;
            text-align: center;
            background: white;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
        }

        .pricing-comparison-table th, .pricing-comparison-table td {
            border: 1px solid #ddd;
            padding: 15px;
        }

        .pricing-comparison-table th {
            background: #e67e22;
            color: white;
        }

        .pricing-discount-banner {
            background: #ffcc00;
            padding: 20px;
            font-size: 20px;
            font-weight: bold;
            color: #333;
        }

        /* Testimonials */
        .pricing-testimonials {
            background: #fff;
            padding: 40px;
            text-align: center;
        }

        .pricing-testimonials h2 {
            margin-bottom: 20px;
        }

        .pricing-testimonial {
            font-style: italic;
            color: #555;
            margin-top: 10px;
        }

        @media (max-width: 768px) {
            .pricing-container {
                flex-direction: column;
            }
        }

/* Popup Form Styling */

.form-popup-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.form-popup-form-content {
    background: white;
    padding: 30px;
    width: 50%;
    max-width: 450px;
    border-radius: 12px;
    position: relative;
    text-align: center;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.3s ease-in-out;
}

.form-popup-form-close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
    color: #e74c3c;
    font-weight: bold;
}

.form-popup-form-close-btn:hover {
    color: #c0392b;
}

.form-popup-form input,
.form-popup-form textarea,
.form-popup-form select {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.form-popup-form button {
    background: linear-gradient(to right, #e67e22, #d35400);
    color: white;
    padding: 12px;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    transition: 0.3s;
}

.form-popup-form button:hover {
    background: linear-gradient(to right, #d35400, #e67e22);
}

/* Animation */
@keyframes fadeIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

 /* Responsive CSS */
@media (max-width: 480px) {
    .pricing-header h1 {
        font-size: 24px;
    }

    .pricing-header p {
        font-size: 14px;
    }

    .pricing-container {
        padding: 20px;
    }

    .pricing-card {
        width: 90%;
        padding: 20px;
    }

    .pricing-price {
        font-size: 24px;
    }

    .pricing-card ul li {
        font-size: 14px;
    }

    .pricing-btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .pricing-comparison-table {
        width: 95%;
        font-size: 12px;
    }

    .pricing-comparison-table th, 
    .pricing-comparison-table td {
        padding: 8px;
    }

    .pricing-discount-banner {
        font-size: 16px;
        padding: 15px;
    }

    .form-popup-form-content {
        width: 100%; 
        max-width: 800px;
        padding: 20px;
    }

    .form-popup-form input, 
    .form-popup-form textarea, 
    .form-popup-form select {
        font-size: 14px;
        padding: 8px;
    }

    .form-popup-form button {
        font-size: 16px;
        padding: 10px;
    }
}
@media (max-width: 768px) {
    .pricing-header h1 {
        font-size: 28px;
    }

    .pricing-header p {
        font-size: 16px;
    }

    .pricing-container {
        padding: 30px;
    }

    .pricing-card {
        width: 80%;
        padding: 25px;
    }

    .pricing-price {
        font-size: 26px;
    }

    .pricing-card ul li {
        font-size: 16px;
    }

    .pricing-btn {
        padding: 12px 18px;
        font-size: 16px;
    }

    .pricing-comparison-table {
        width: 90%;
        font-size: 14px;
    }

    .pricing-comparison-table th, 
    .pricing-comparison-table td {
        padding: 10px;
    }

    .pricing-discount-banner {
        font-size: 18px;
        padding: 18px;
    }

    /* Popup Form */
    .form-popup-form-content {
        width: 85%;
        max-width: 700px;
        padding: 25px;
    }

    .form-popup-form input, 
    .form-popup-form textarea, 
    .form-popup-form select {
        font-size: 16px;
        padding: 10px;
    }

    .form-popup-form button {
        font-size: 18px;
        padding: 12px;
    }
}

/******************************RETURN & REFUND****************************************/

.return-body {
            background: linear-gradient(to right, #f8f9fa, #fce3cd);
        }

        .return-container {
            max-width: 900px;
            margin: -40px auto 50px;
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
            animation: fadeIn 1s ease-in-out;
        }

        .return-h1 {
            padding: 40px;
            text-align: center;
            font-size: 40px;
            margin-top: -7px;
        }

        .return-h2 {
            color: #e67e22;
        }

        .return-section-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }

        .return-section-title i {
            margin-right: 10px;
            color: #d35400;
        }

        .return-content {
            font-size: 16px;
            color: #555;
            line-height: 1.7;
        }

        .return-faq-section {
            margin-top: 30px;
        }

        .return-faq-question {
            font-weight: bold;
            cursor: pointer;
            color: #d35400;
            padding: 10px;
            background: #fce3cd;
            border-radius: 6px;
            transition: 0.3s;
            display: flex;
            align-items: center;
        }

        .return-faq-question:hover {
            background: #f8c292;
        }

        .return-faq-question i {
            margin-right: 10px;
        }

        .return-faq-answer {
            display: none;
            margin-top: 5px;
            padding: 10px;
            border-left: 3px solid #e67e22;
            font-size: 15px;
            color: #444;
            background: #f9f9f9;
            border-radius: 6px;
        }

        .return-contact-section {
            background: #e67e22;
            color: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            margin-top: 30px;
            font-size: 18px;
            transition: 0.3s;
        }

        .return-contact-section a {
            color: #fff;
            font-weight: bold;
            text-decoration: none;
        }

        .return-contact-section:hover {
            background: #d35400;
        }

        @media (max-width: 768px) {
            .return-container {
                padding: 20px;
            }
            .return-section-title {
                font-size: 20px;
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
/***************************************AFFILIATES********************************/



        .affiliates-body {
            
            background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
            color: #333;
            margin: 0;
            padding: 0;
        }

        .affiliate-container {
            text-align: center;
            padding: 80px 20px;
        }

        .affiliate-container h1 {
            font-size: 46px;
            font-weight: 700;
            color: #222;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .affiliate-container p {
            font-size: 20px;
            color: #555;
            margin-bottom: 40px;
        }

        .affiliate-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            padding: 30px;
        }

        .card {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
            width: 350px;
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
            border-top: 5px solid #e67e22;
            opacity: 0;
            transform: translateY(40px);
        }

        .card.show {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.5s ease-in-out;
        }

        .card h2 {
            font-size: 24px;
            color: #e67e22;
            margin-bottom: 12px;
        }

        .card p {
            font-size: 18px;
            color: #444;
        }

        .cta-button {
            display: inline-block;
            background: #e67e22;
            color: white;
            padding: 16px 34px;
            font-size: 22px;
            font-weight: bold;
            text-decoration: none;
            border-radius: 50px;
            transition: 0.3s;
            box-shadow: 0px 6px 15px rgba(0, 123, 255, 0.3);
            margin-top: 40px;
        }

        .cta-button:hover {
            background: #d35400;
            box-shadow: 0px 10px 25px rgba(0, 123, 255, 0.5);
            transform: scale(1.08);
        }

        .testimonial-section {
            margin-top: 70px;
            background: white;
            padding: 50px 25px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            max-width: 850px;
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .testimonial {
            font-size: 20px;
            font-style: italic;
            color: #555;
        }

        .testimonial-author {
            font-weight: bold;
            margin-top: 12px;
            color: #007bff;
        }

        .faq-section {
            margin-top: 70px;
            max-width: 850px;
            margin: auto;
            padding: 30px;
        }

        .faq {
            background: white;
            padding: 18px;
            margin-bottom: 12px;
            border-radius: 10px;
            cursor: pointer;
            transition: 0.3s;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
        }

        .faq:hover {
            background: #f1f1f1;
        }

        .faq-answer {
            display: none;
            padding: 12px;
            font-size: 18px;
            color: #444;
        }

        @media (max-width: 768px) {
            .affiliate-container h1 {
                font-size: 38px;
            }
            .affiliate-container p {
                font-size: 18px;
            }
        }
        
        
/**********************************CANCELLATION***************************/
/* Cancellation-Policy CSS Start */

.cancellation-body {
  
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.cancel-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  text-align: center;
  padding: 40px 0;
  box-shadow: 0 4px 20px var(--shadow);
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.cancel-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCI+PHBhdGggZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjEpIiBkPSJNMTEuMiAxMGMtMiAwLTIuNiAxLjMtMS4zIDIuM0wzLjQgMTljLTEuNyAxLjItMS45IDMuMy0uMyA0LjdMMzAuNiA1M2MxLjYgMS40IDQuMiAxLjQgNS44IDBMMTcgMjQuNmMtMS42LTEuNS00LjItMS4zLTUuNi40bC01IDYuNGMtMS40IDEuNy0uNyAzLjEgMS41IDMuMWgyNi43YzIuMiAwIDUuNC0xLjUgNy4yLTMuNWwxMy45LTE1LjljMS44LTIgMy41LTYgMy44LTguOXYtMi45YzAtMi4yLTEuOS00LTQuMS00SDExLjJ6Ii8+PC9zdmc+');
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

.cancel-header h2 {
  margin: 0;
  text-transform: uppercase;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.cancel-header p {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.cancel-policy-container {
  padding: 40px;
  margin: 20px auto 60px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 30px var(--shadow);
  max-width: 900px;
  position: relative;
}

.policy-intro {
  margin-bottom: 40px;
  text-align: center;
  color: var(--medium-text);
  font-size: 1.1rem;
  line-height: 1.8;
  padding: 0 20px;
  position: relative;
}

.policy-intro::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  margin: 25px auto 0;
  border-radius: 2px;
}

.accordion-item {
  border: none;
  margin-bottom: 20px;
  background-color: var(--white);
  box-shadow: 0 5px 15px var(--shadow);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--shadow);
}

.accordion-button {
  background: var(--white);
  color: var(--dark-text);
  font-size: 18px;
  font-weight: 600;
  padding: 22px 25px;
  border: none;
  position: relative;
  transition: all 0.3s ease;
}

.accordion-button i {
  margin-right: 12px;
  color: var(--primary-color);
}

.accordion-button:not(.collapsed) {
  background-color: var(--light-bg);
  color: var(--primary-color);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1);
}

.accordion-button::after {
  background-size: 18px;
  transition: transform 0.3s ease;
}

.accordion-body {
  padding: 25px 30px;
  color: var(--medium-text);
  font-size: 16px;
  line-height: 1.8;
  background-color: var(--white);
  border-top: 1px solid rgba(0,0,0,0.03);
}

.accordion-body p {
  margin-bottom: 15px;
}

.accordion-body ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.accordion-body li {
  margin-bottom: 12px;
  position: relative;
}

.accordion-body li::before {
  content: "•";
  color: var(--secondary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.contact-info {
  background: linear-gradient(135deg, var(--accent-color));
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
  text-align: center;
  box-shadow: 0 6px 20px var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj48Y2lyY2xlIGN4PSIyNSIgY3k9IjI1IiByPSIyIiBmaWxsPSJyZ2JhKDAsMCwwLDAuMDUpIi8+PC9zdmc+');
  opacity: 0.5;
  z-index: 0;
}

.contact-title {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
}

.contact-info p {
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 2px 0;
}

.contact-info a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.contact-info a:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.contact-methods {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 20px;
}

.contact-method {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  padding: 10px 15px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.contact-method i {
  margin-right: 8px;
  color: var(--primary-color);
}


@media (max-width: 768px) {
  .cancel-header {
      padding: 30px 0;
  }
  
  .cancel-header h2 {
      font-size: 1.6rem;
  }
  
  .cancel-header p {
      font-size: 0.9rem;
      padding: 0 15px;
  }

  .cancel-policy-container {
      padding: 30px 20px;
      margin: 15px 15px 40px;
  }
  
  .accordion-button {
      font-size: 16px;
      padding: 15px 20px;
  }
  
  .accordion-body {
      padding: 20px;
  }
  
  .contact-methods {
      flex-direction: column;
      gap: 10px;
  }
}

/* Cancellation-Policy CSS End */


/************************CONTACT SUPPORT**********************************/

/* Global Styles */
        .contact-support-body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f9;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Main Wrapper */
        .contact-support-main-content {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        /* Support Container */
        .contact-support-container {
            width: 90%;
            max-width: 450px;
            background: #fff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        /* Headings */
        .contact-support-heading {
            color: #333;
            margin-bottom: 10px;
        }

        .contact-support-paragraph {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
        }

        /* Success & Error Messages */
        .contact-support-success-message {
            background: #d4edda;
            color: #155724;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 10px;
        }

        .contact-support-error-message {
            background: #f8d7da;
            color: #721c24;
            padding: 10px;
            border-radius: 5px;
            margin-bottom: 10px;
        }

        /* Form Styles */
        .contact-support-form {
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        .contact-support-label {
            font-size: 14px;
            color: #444;
            margin-bottom: 5px;
            display: block;
        }

        .contact-support-input, 
        .contact-support-select, 
        .contact-support-textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid black !important; 
            border-radius: 5px;
            font-size: 14px;
            box-sizing: border-box;
            background-color: white;
            color: black;
        }

        /* Input fields should maintain border on focus */
        .contact-support-input:focus, 
        .contact-support-select:focus, 
        .contact-support-textarea:focus {
            border: 1px solid black !important;
            outline: none;
        }

        /* Textarea */
        .contact-support-textarea {
            height: 80px;
            resize: none;
        }

        /* Submit Button */
        .contact-support-button {
            background-color: #ff6600;
            color: white;
            border: none;
            padding: 12px;
            cursor: pointer;
            border-radius: 5px;
            font-size: 16px;
            transition: background 0.3s ease;
        }

        .contact-support-button:hover {
            background-color: #e65c00;
        }

        /* Quick Links */
        .contact-support-quick-links {
            margin-top: 15px;
            font-size: 14px;
        }

        .contact-support-quick-links a {
            color: #0073e6;
            text-decoration: none;
        }

        .contact-support-quick-links a:hover {
            text-decoration: underline;
        }

        /* 🌟 Responsive Design */
        @media (max-width: 480px) {
            .contact-support-container {
                width: 100%;
                max-width: 100%;
                padding: 15px;
                border-radius: 0;
                box-shadow: none;
            }

            .contact-support-main-content {
                padding: 10px;
            }

            .contact-support-heading {
                font-size: 18px;
            }

            .contact-support-paragraph {
                font-size: 13px;
            }

            .contact-support-label {
                font-size: 12px;
            }

            .contact-support-input,
            .contact-support-select,
            .contact-support-textarea {
                font-size: 13px;
                padding: 8px;
            }

            .contact-support-button {
                font-size: 14px;
                padding: 10px;
            }

            .contact-support-quick-links {
                font-size: 13px;
            }
        }
        
        
/***********************SITEMAP************************?

/* SiteMap CSS Start */

.sitemap-body {
  font-family: 'Poppins', sans-serif;
  background: var(--sitemap-bg-gradient);
  color: var(--sitemap-text-dark);
  margin: 0;
  padding: 30px 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sitemap-container {
  width: 90%;
  max-width: 1200px;
  padding: 40px;
  background: white;
  box-shadow: var(--sitemap-shadow);
  border-radius: var(--sitemap-border-radius);
  animation: sitemap-fadeIn 0.8s ease-out;
}

@keyframes sitemap-fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.sitemap-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.sitemap-header::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--sitemap-accent);
  margin: 25px auto 0;
  border-radius: 2px;
}

.sitemap-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sitemap-text-dark);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.sitemap-description {
  color: var(--sitemap-text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.sitemap-category-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.sitemap-category-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--sitemap-text-dark);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e5e7eb;
}

.sitemap-link-item {
  position: relative;
  background: white;
  padding: 0; /* Remove padding here */
  border-radius: var(--sitemap-border-radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: var(--sitemap-transition);
  border-left: 4px solid var(--sitemap-primary);
  overflow: hidden;
  transform: translateZ(0); /* Hardware acceleration for animations */
  -webkit-tap-highlight-color: transparent; /* Remove default tap highlight on mobile */
}

.sitemap-link-item:hover, 
.sitemap-link-item:focus-within {
  transform: translateY(-5px);
  box-shadow: var(--sitemap-shadow-hover);
}

/* Color fill effect */
.sitemap-link-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--sitemap-primary);
  transition: width 0.3s ease;
  z-index: 1;
}

.sitemap-link-item:hover::before,
.sitemap-link-item:focus-within::before,
.sitemap-link-item.active::before {
  width: 100%;
}

.sitemap-link-anchor {
  text-decoration: none;
  color: var(--sitemap-text-dark);
  font-weight: 500;
  font-size: 1rem;
  display: block;
  width: 100%;
  height: 100%;
  padding: 16px 20px; /* Move padding here */
  transition: var(--sitemap-transition);
  z-index: 3;
  position: relative;
  outline: none;
}

/* This ensures the text is visible on the filled background */
.sitemap-link-item:hover .sitemap-link-anchor,
.sitemap-link-item:focus-within .sitemap-link-anchor,
.sitemap-link-item.active .sitemap-link-anchor {
  color: white;
}

/* Slightly different color for active state */
.sitemap-link-item.active::before {
  background-color: var(--sitemap-primary-dark);
  width: 100%;
}

/* Add ripple effect */
.sitemap-ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.7);
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  animation: sitemap-ripple 1s;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

@keyframes sitemap-ripple {
  from {
      opacity: 1;
      transform: scale(0);
  }
  to {
      opacity: 0;
      transform: scale(10);
  }
}

.sitemap-main-section {
  margin-bottom: 40px;
}

.sitemap-footer-note {
  text-align: center;
  margin-top: 50px;
  color: var(--sitemap-text-light);
  font-size: 0.9rem;
}

.sitemap-footer-link {
  color: var(--sitemap-primary);
  text-decoration: none;
}

@media (max-width: 768px) {
  .sitemap-container {
      padding: 30px 20px;
  }
  
  .sitemap-title {
      font-size: 2rem;
  }
  
  .sitemap-grid {
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 15px;
  }
}


/* SiteMap CSS End */

/******************************BLOGS**********************************/
        .blogs-body {
            font-family: 'Arial', sans-serif;
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }

        .blog-main-content {
            padding: 30px 15px;
            text-align: center;
        }

        .blog-main-content h2 {
            font-size: 32px;
            margin-bottom: 30px;
            color: black;
            position: relative;
            display: inline-block;
        }

        .blog-main-content h2::after {
            content: "";
            width: 200px;
            height: 5px;
            background: linear-gradient(135deg, #ff9f00, #ff6f00);
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 10px;
        }

        .blog-posts {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }

        .blog-post {
            background-color: #fff;
            width: 320px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .blog-post:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .blog-post img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 2px solid #ddd;
        }

        .blog-content {
            padding: 20px;
        }

        .blog-content h3 {
            font-size: 24px;
            color: #34495e;
            margin-bottom: 15px;
        }

        .blog-content p {
            font-size: 16px;
            color: black;
            margin-bottom: 20px;
        }

        .blog-read-more {
            color: #2980b9;
            text-decoration: none;
            font-weight: bold;
        }

        .blog-read-more:hover {
            text-decoration: underline;
        }

        .blog-banner {
            background-image: url('/assets/images/img/gifting/3.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 80px 20px;
            display: flex;
            justify-content: space-between;
            position: relative;
            align-items: flex-start;
        }

        .blog-banner h1 {
            font-size: 50px;
            font-weight: bold;
        }

        .blog-banner-left h1 {
            text-align: left;
        }

        .blog-banner-right h1 {
            text-align: right;
            margin-right: 30px;
        }

        .blog-banner p {
            font-size: 18px;
            margin-top: 20px 0;
            text-align: right;
            padding-bottom: 20px;
        }

        .blog-banner button {
            background-color: #e67e22;
            color: #fff;
            font-size: 18px;
            padding: 15px 30px;
            border: none;
            border-radius: 20px;
            cursor: pointer;
            transition: background-color 0.3s ease;
            margin-top: 20px !important;
        }

        .blog-banner button:hover {
            background-color: #1f6d97;
        }

        @media (max-width: 768px) {
            .blog-banner {
                flex-direction: column;
                text-align: center;
                padding: 40px 20px;
                align-items: center;
            }
            .blog-banner h1 {
                font-size: 35px;
                margin-top: -7px;
            }
            .blog-banner h3 {
                font-size: 18px;
            }
            .blog-banner button {
                font-size: 16px;
                padding: 10px 20px;
            }
            .blog-posts {
                flex-direction: column;
            }
            .blog-post {
                width: 90%;
            }
        }

        @media (min-width: 768px) and (max-width: 1024px) {
            .blog-banner {
                padding: 60px 30px;
            }
            .blog-posts {
                justify-content: center;
                gap: 20px;
            }
            .blog-post {
                width: 45%;
            }
        }

        @media (min-width: 1024px) {
            .blog-banner {
                padding: 80px 40px;
            }
            .blog-posts {
                gap: 30px;
            }
        }
/******************************GIFTING******************************/
/* Welcome Section */
        .gifting-welcome-section {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            background: #f9f9f9;
            flex-wrap: wrap;
        }
        .gifting-welcome-section img {
            width: 400px;
            height: 330px;
            border-radius: 10px;
        }
        .gifting-welcome-content {
            margin-left: 30px;
            max-width: 500px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            align-items: flex-start;
            text-align: left;
        }
        .gifting-welcome-content h2 {
            font-weight: bold;
            font-size: 28px;
            color: black;
            margin-bottom: 1px;
        }
        .gifting-features {
            margin-top: 10px;
            font-size: 18px;
            color: #333;
            margin: 5px 0;
        }
        .gifting-features i {
            color: green;
            margin-right: 10px;
        }
        .gifting-btn-know-more {
            margin-top: 15px;
            padding: 10px 20px;
            background: #e67e22;
            color: white;
            text-decoration: none;
            border-radius: 5px;
        }
        .gifting-btn-know-more:hover {
            background: #d35400;
        }
        
        /* Subcategories */
        .gifting-subcategories {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            padding: 20px;
        }
        .gifting-subcategory {
            background: #e67e22;
            color: white;
            padding: 10px 15px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 16px;
            transition: 0.3s;
        }
        .gifting-subcategory:hover {
            background: #d35400;
        }
        
        /* Gifting Section Styling */
        .gifting-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            padding: 20px;
        }
        .gifting-item {
            background: white;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s;
            width: 300px;
            position: relative;
        }
        .gifting-item:hover {
            transform: scale(1.05);
        }
        .gifting-item img {
            width: 100%;
            height: 300px;
            border-radius: 10px;
        }
        .gifting-price {
            color: #e67e22;
            font-size: 20px;
            font-weight: bold;
        }
        .gifting-discount {
            color: light black;
            font-size: 18px;
            font-weight: bold;
            text-decoration: line-through;
        }
        .gifting-stock-status {
            font-size: 14px;
            color: green;
            font-weight: bold;
            margin-top: 5px;
        }
        .gifting-rating {
            color: gold;
            font-size: 18px;
        }
        .gifting-packaging {
            margin-top: 10px;
            font-size: 14px;
            color: #555;
        }
        .gifting-btn {
            background: #e67e22;
            color: white;
            padding: 10px 15px;
            border: none;
            cursor: pointer;
            margin-top: 10px;
            border-radius: 10px;
        }
        .gifting-btn:hover {
            background: #d35400;
        }

        .gifting-limited-offer {
            position: absolute;
            top: 10px;
            left: 10px;
            
            color: white;
            padding: 5px 10px;
            font-size: 14px;
            font-weight: bold;
            border-radius: 5px;
        }

        .gifting-h1 {
            text-align: center;
            font-size: 34px;
            color: black;
            font-weight: bold;
            margin-top: 20px;
            bottom: 7px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .gifting-p {
            text-align: center;
            font-size: 18px;
            color: #555;
            margin: 1px auto;
            max-width: 800px;
            line-height: 1.6;
        }

        .gifting-section-divider {
            border: none;
            height: 2px; 
            background: #e67e22; 
            margin: 10px auto; 
            width: 80%; 
        }

        /* Responsive CSS */
        
        @media (max-width: 480px) {
            .gifting-welcome-section {
                flex-direction: column;
                text-align: center;
            }
            .gifting-welcome-section img {
                width: 100%;
                height: auto;
            }
            .gifting-welcome-content {
                margin-left: 0;
                text-align: center;
            }
            .gifting-container {
                flex-direction: column;
                align-items: center;
            }
            .gifting-item {
                width: 90%;
            }
        }
        
        
        
/*******************************************FESTIVAL********************/
 .festival-body {
            font-family: Arial, sans-serif;
            background-color: #f8f8f8;
            margin: 0;
            padding: 0;
        }
        .festival-nav {
            text-align: center;
            margin: 20px 0;
        }
        .festival-nav a {
            text-decoration: none;
            background: #ff6600;
            color: white;
            padding: 10px 15px;
            margin: 5px;
            border-radius: 5px;
            display: inline-block;
            font-size: 16px;
        }
        .festival-nav a:hover {
            background: #cc5200;
        }
        .festival-title {
            text-align: center;
            font-size: 28px;
            font-weight: bold;
            color: #ff6600;
            margin-top: 20px;
        }
        .festival-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 20px;
        }
        .festival-item {
            background: white;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            width: 250px;
            padding: 15px;
            transition: transform 0.3s ease-in-out;
        }
        .festival-item:hover {
            transform: scale(1.05);
        }
        .festival-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
        }
        .festival-item h2 {
            font-size: 18px;
            color: #333;
            margin: 10px 0;
        }
        .festival-price {
            display: block;
            font-size: 16px;
            font-weight: bold;
            color: #e67e22;
            margin-bottom: 10px;
        }
        .festival-btn {
            background: #ff6600;
            color: white;
            border: none;
            padding: 8px 15px;
            font-size: 14px;
            cursor: pointer;
            border-radius: 5px;
            transition: background 0.3s ease-in-out;
        }
        .festival-btn:hover {
            background: #cc5200;
        }

