@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

@tailwind base;
@tailwind components;
@tailwind utilities;



*{
    font-family: 'Montserrat', sans-serif;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    list-style: none;
}


@layer components {
    .container {
        @apply z-10 w-full h-full max-w-[90rem] mx-auto px-4 sm:px-8 md:px-10
    }

    .nav-links {
        @apply text-sm capitalize font-semibold text-black  cursor-pointer flex items-center justify-center gap-1
    }

    .gift-category{
        @apply rounded-xl overflow-hidden h-full p-3 relative cursor-pointer text-black bg-neutral lg:focus:shadow-[#8E05C2_0px_0px_0px_1.5px] lg:hover:shadow-[#8E05C2_0px_0px_0px_1.5px] lg:hover:bg-qat transition-all lg:hover:text-black duration-200 ease-out
    }

    .category-list {
        @apply rounded-xl shadow-[#0000000f_0px_1px_2px,_#0000000a_0px_5px_10px]  h-full
      }

      .tertiary-btn {
        @apply w-auto border cursor-pointer border-purple text-black bg-purple rounded-2xl py-2 px-3
    }

      .primary-btn {
        @apply w-auto border cursor-pointer border-purple text-purple bg-white rounded-2xl py-2 px-3
    }

    .dropdown-content-list {
        @apply text-xs font-semibold h-full text-white cursor-pointer capitalize flex flex-row items-center px-4 py-2 rounded-xl transition-all duration-100  bg-light-purple hover:bg-purple
    }

    .home {
        @apply relative bg-hero-home  -mt-[80px] sm:-mt-[93px] bg-cover bg-no-repeat bg-center flex pt-52 pb-36  justify-center w-full h-full z-10
    }


    .breadcrumb-active{
        @apply text-slate-gray
    }
    
}



/* navbar  */

.mobile {
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    display: flex;
}

.sidebar-links-wrapper {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.25rem;
    flex-direction: column;
    gap: 1.25rem;
    width: fit-content;
    display: flex;
    margin-top: 3rem;
}


.active-nav {
    opacity: 1;
    display: block;
    transform: translateY(20px);
}

.sidebar {
    backdrop-filter: blur(4px);
    text-align: left;
    background-color: #00000033;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 50;
    left: 0px;
    position: fixed;
}

.sidebar-wrapper {
    padding: 20px 16px;
    background-color: #fafafa;
    flex-direction: column;
    max-width: 1230px;
    width: 85%;
    height: 100%;
    display: flex;
    position: relative;
}

.show-sidebar {
    display: block;
}

/* delivery-slide */
.delivery-slide .owl-carousel .owl-stage{
    display: flex;
    justify-content: center;
    align-items: center;
}


/* single-item carousel */

.single-item .owl-dots .owl-dot span {
    background: #9b3994;
  }
  
  .single-item .owl-dots .owl-dot.active span,
  .single-item .owl-dots .owl-dot:hover span {
    background: #e88ae1;
  }