      /* -------------------------------------------------------------------------------------------------------------------------------------------*/
      /*-----------------------------------------------nav bar-----------------------------------------------------------*/

       /* Custom Carousel Styles */
       .section-slide {
        max-height: 930px;
        overflow: hidden;
        width: 100%;
    }

    #mainCarousel {
        width: 100%;
    }

    .carousel-item {
        height: 930px;
        position: relative;
    }

    .item-slick1 {
        height: 100%;
        width: 100%;
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        display: flex;
        align-items: center;
    }

    /* Text Layer Animations */
    .layer-slick1 {
        opacity: 0;
        visibility: hidden;
        position: relative;
        transition: all 1s ease-in-out;
    }

    .layer-slick1:nth-child(1) {
        transform: translateY(-30px);
        transition: all 1s ease 0.5s;
    }

    .layer-slick1:nth-child(2) {
        transform: translateX(-30px);
        transition: all 1s ease 1s;
    }

    .layer-slick1:nth-child(3) {
        transform: translateY(30px);
        transition: all 1s ease 1.5s;
    }

    .layer-slick1.animated {
        opacity: 1;
        visibility: visible;
        transform: translate(0, 0);
    }

    /* Typography */
    .ltext-101 {
        font-size: clamp(1rem, 2vw, 2.5rem);
        font-weight: 600;
        display: block;
        margin-bottom: 1rem;
        color: #000;
    }

    .ltext-201 {
        font-size: clamp(2rem, 6vw, 4rem);
        font-weight: 800;
        margin: 1.5rem 0;
        color: #000;
    }

    /* Button Styling */
    .flex-c-m {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        padding: 15px 40px;
        background: #000;
        color: #fff;
        text-decoration: none;
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
    }

    .flex-c-m:before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.2);
        transition: all 0.5s ease;
    }

    .flex-c-m:hover:before {
        left: 100%;
    }

    .flex-c-m:hover {
        background: #333;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    /* Responsive Adjustments */
    @media (max-width: 320px) {
        .carousel-item {
            height: 80vw;
        }
        .ltext-101 {
            font-size: 1rem;
        }
        .ltext-201 {
            font-size: 1.5rem;
        }
        .flex-c-m {
            padding: 8px 20px;
        }
    }

    @media (min-width: 321px) and (max-width: 375px) {
        .carousel-item {
            height: 75vw;
        }
        .ltext-101 {
            font-size: 1.2rem;
        }
        .ltext-201 {
            font-size: 2rem;
        }
        .flex-c-m {
            padding: 10px 25px;
        }
    }

    @media (min-width: 376px) and (max-width: 425px) {
        .carousel-item {
            height: 70vw;
        }
        .ltext-101 {
            font-size: 1.5rem;
        }
        .ltext-201 {
            font-size: 2.5rem;
        }
        .flex-c-m {
            padding: 12px 30px;
        }
    }

    @media (min-width: 426px) and (max-width: 786px) {
        .carousel-item {
            height: 60vw;
        }
        .ltext-101 {
            font-size: 1.8rem;
        }
        .ltext-201 {
            font-size: 3rem;
        }
    }

    @media (min-width: 787px) and (max-width: 1024px) {
        .carousel-item {
            height: 50vw;
        }
        .ltext-101 {
            font-size: 2rem;
        }
        .ltext-201 {
            font-size: 3.5rem;
        }
    }

    @media (min-width: 1025px) and (max-width: 1440px) {
        .carousel-item {
            height: 45vw;
        }
        .ltext-101 {
            font-size: 2.2rem;
        }
        .ltext-201 {
            font-size: 4rem;
        }
    }

    @media (min-width: 1441px) and (max-width: 2559px) {
        .carousel-item {
            height: 40vw;
        }
        .ltext-101 {
            font-size: 2.5rem;
        }
        .ltext-201 {
            font-size: 4.5rem;
        }
    }

    @media (min-width: 2560px) {
        .carousel-item {
            height: 35vw;
        }
        .ltext-101 {
            font-size: 3rem;
        }
        .ltext-201 {
            font-size: 5rem;
        }
    }
      /* -------------------------------------------------------------------------------------------------------------------------------------------*/
      /*-----------------------------------------------Product Card min-----------------------------------------------------------*/
      .min-box-section {
        padding: 20px;
      }
      
      .min-box-card {
        position: relative;
        border: none;
        overflow: hidden;
        transition: all 0.3s ease-in-out;
      }
      
      .min-box-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
        transition: transform 0.3s ease-in-out;
      }
      
      .min-box-card:hover img {
        transform: scale(1.05);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      }
      
      .min-box-card-body {
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 20px;
        background: rgba(0, 0, 0, 0.7);
        color: #fff;
        text-align: center;
        transition: background 0.3s ease-in-out;
      }
      
      .min-box-card-body h5 {
        font-size: 1.5rem;
        margin: 0;
      }
      
      .min-box-card-body p {
        font-size: 1rem;
        margin: 10px 0;
      }
      
      .min-box-card-body a {
        text-decoration: none;
        color: #fff;
        font-weight: bold;
        border: 2px solid #fff;
        padding: 5px 15px;
        border-radius: 25px;
        transition: all 0.3s ease-in-out;
      }
      
      .min-box-card-body a:hover {
        background: #fff;
        color: #000;
      }
      
      /* Responsive Adjustments */
      
      /* 4K Screens (2560px) */
      @media (max-width: 2560px) {
        .min-box-card-body h5 {
          font-size: 1.8rem;
        }
      
        .min-box-card-body p {
          font-size: 1.2rem;
        }
      
        .min-box-card-body a {
          font-size: 1.1rem;
          padding: 10px 20px;
        }
      }
      
      /* Laptop L (1440px) */
      @media (max-width: 1440px) {
        .min-box-card-body h5 {
          font-size: 1.5rem;
        }
      
        .min-box-card-body p {
          font-size: 1rem;
        }
      
        .min-box-card-body a {
          font-size: 1rem;
          padding: 8px 16px;
        }
      }
      
      /* Laptop (1024px) */
      @media (max-width: 1024px) {
        .min-box-card img {
          object-fit: contain;
        }
      
        .min-box-card-body {
          padding: 15px;
        }
      
        .min-box-card-body h5 {
          font-size: 1.4rem;
        }
      
        .min-box-card-body p {
          font-size: 0.9rem;
        }
      
        .min-box-card-body a {
          font-size: 0.9rem;
          padding: 7px 15px;
        }
      }
      
      /* Tablet (768px) */
      @media (max-width: 768px) {
        .min-box-card img {
          object-fit: contain;
        }
      
        .min-box-card-body h5 {
          font-size: 1.2rem;
        }
      
        .min-box-card-body p {
          font-size: 0.85rem;
        }
      
        .min-box-card-body a {
          font-size: 0.85rem;
          padding: 6px 12px;
        }
      }
      
      /* Small Screens L (425px) */
      @media (max-width: 425px) {
        .min-box-card-body h5 {
          font-size: 1rem;
        }
      
        .min-box-card-body p {
          font-size: 0.8rem;
        }
      
        .min-box-card-body a {
          font-size: 0.8rem;
          padding: 5px 10px;
        }
      }
      
      /* Small Screens M (375px) */
      @media (max-width: 375px) {
        .min-box-card-body h5 {
          font-size: 0.9rem;
        }
      
        .min-box-card-body p {
          font-size: 0.75rem;
        }
      
        .min-box-card-body a {
          font-size: 0.75rem;
          padding: 5px 8px;
        }
      }
      
      /* Small Screens S (320px) */
      @media (max-width: 320px) {
        .min-box-card-body h5 {
          font-size: 0.85rem;
        }
      
        .min-box-card-body p {
          font-size: 0.7rem;
        }
      
        .min-box-card-body a {
          font-size: 0.7rem;
          padding: 4px 8px;
        }
      }
      
      /* -------------------------------------------------------------------------------------------------------------------------------------------*/
      /*-----------------------------------------------Product Cards -----------------------------------------------------------*/
      .product-card {
        width: 285px;
        height: 488px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        margin: auto;
    }
    
    .product-image {
        width: 100%;
        height: 380px;
        object-fit: cover;
        transition: opacity 0.3s ease;
    }
    
    .product-image.hover-image {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
    }
    
    .product-card:hover .product-image.hover-image {
        opacity: 1;
    }
    
    .product-card:hover .card-icons {
        opacity: 1;
        visibility: visible;
    }
    
    .card-icons {
        position: absolute;
        top: 10px;
        right: 10px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .card-icon {
        background-color: white;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 10px;
        cursor: pointer;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }
    
    .product-details {
        padding: 10px;
    }
    
    .discount-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: red;
        color: white;
        padding: 5px 10px;
        border-radius: 3px;
    }
      /* -------------------------------------------------------------------------------------------------------------------------------------------*/
      /*-----------------------------------------------Button-----------------------------------------------------------*/
      .button-container {
        display: flex;
        justify-content: center; /* Horizontally centers the button */
        align-items: center; /* Vertically centers the button */
        height: 10vh;
        margin: 0; /* Remove any default margin */
        padding: 0; /* Remove any default padding */
        background-color: #f0f0f0; /* Optional: Set a background color for the page */
      }

      /* Button styles */
      .button-load {
        position: relative;
        overflow: hidden;
        height: 3rem;
        padding: 0 2rem;
        border-radius: 1.5rem;
        background: #3d3a4e;
        background-size: 400%;
        color: #fff;
        border: none;
        cursor: pointer;
      }

      .button-load:hover::before {
        transform: scaleX(1);
      }

      .button-content {
        position: relative;
        z-index: 1;
      }

      .button-load::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        transform: scaleX(0);
        transform-origin: 0 50%;
        width: 100%;
        height: inherit;
        border-radius: inherit;
        background: linear-gradient(
          82.3deg,
          rgba(150, 93, 233, 1) 10.8%,
          rgba(99, 88, 238, 1) 94.3%
        );
        transition: all 0.475s;
      }
      /*-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
    