
h1, h2, h3, h4, h5, h6{
    font-family: 'Cormorant Garamond SemiBold';
}

body{
    font-family: 'Inter Regular';
}

#header{
    height: 50px !important;
}

.brightangel-header{
    margin-top: 50px;
}

a{
    font-family: 'Inter Regular';
}
#mainNav .current-menu-item > a,
#mainNav .current-menu-parent > a,
#mainNav .current-menu-ancestor > a {
    /* border-bottom: 2px solid var(--primary); */
}

.btn-primary{
    border-color:var(--primary);
}

.btn-primary:hover{
     background-color: var(--secondary) !important;
     border-color: var(--secondary) !important;
}

.btn-primary:focus:not(.bg-transparent), .btn-primary.focus:not(.bg-transparent) {
	background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
}

.btn-secondary{
    border-color:var(--secondary);
}

.bg-secondary{
    background-color: var(--secondary);
}

.text-primary{
    background-color: var(--secondary);
}

.btn-primary:active:not(.bg-transparent), .btn-primary.active:not(.bg-transparent) {
    background-color: var(--secondary) !important;
    background-image: none !important;
    border-color: var(--secondary) !important;
}

.hero-padding{
    padding: 150px 0 !important;
}

.hero-main-heading{
    font-size: 3.2rem;
}

.hero-sub-heading{
    font-size: 2.2rem;
}

.big-btn-size{
    padding: 12px 35px !important;
}

.home-abt-img{
    padding: 25px;
    overflow: hidden;
}

.home-abt-img img{
    display: block;
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 10px;
    aspect-ratio: 4/3;
}

.home-about{
    font-size: 3.2rem;
}

.featured-boxes-flat .featured-box .box-content {
    background: var(--light);
    margin-top: 65px;
    min-height: 300px;
}


.category-card{
    margin-bottom: 20px;
    position: relative;
}

.category-image{
    aspect-ratio: 2 / 3;
    overflow: hidden;
}

.category-card img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
}

.category-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:18px;
    padding:30px;
    text-align:center;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.45) 45%,
        rgba(0,0,0,.15) 100%
    );
}

.category-title{
    margin:0;
    color:#fff;
    font-size:2rem;
    font-weight:600;
}

.category-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:180px;
    height:50px;

    color:#fff;
    text-decoration:none;

    border:1px solid rgba(255,255,255,.85);
    background:transparent;

    transition:.3s ease;
}

.category-btn:hover{
    background:#fff;
    color:#111;
}

.category-card img{
    transition:transform .5s ease;
}

.category-card:hover img{
    transform:scale(1.06);
}


.product-card {
    margin-bottom: 1.5rem;
}

.product-card > a {
    display: block;
    overflow: hidden;
}

.card-price {
    font-size: 1rem;
    font-weight: 700;
}


.old-price {
    text-decoration: line-through;
    font-size: .8rem;
    font-weight: 400;
    opacity: .7;
}

.current-price {
    font-weight: 700;
}

.product-card > a img {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    display: block;
}

.product-card-content {
    padding: 12px 0;
}

.product-card-content .card-title {
    margin-bottom: 5px;
}

.product-card-content .card-title a {
    font-size: 1rem;
    line-height: 1.3;
    margin: 0;
}

.cart-bounce {
    animation: cartBounce .3s ease;
}

@keyframes cartBounce {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }

}


.brightangel-toast-container{
    position:fixed;
    top:25px;
    right:25px;
    z-index:999999;
    display:flex;
    flex-direction:column;
    gap:12px;
    pointer-events:none;
}

.brightangel-toast{

    width:360px;

    display:flex;

    align-items:flex-start;

    gap:15px;

    background:#fff;

    color:#222;

    border-radius:10px;

    padding:18px;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.toast-icon{

    font-size:28px;

    color:#28a745;

}

.toast-content{

    flex:1;

}

.toast-content h6{

    margin-bottom:6px;

    font-weight:600;

}

.toast-content p{

    margin-bottom:15px;

    color:#666;

}

.toast-actions{

    display:flex;

    gap:10px;

}


.brightangel-toast.show{

    opacity:1;
    transform:translateX(0);

}

.brightangel-toast.success{

    border-left:4px solid #28a745;

}

.brightangel-toast.error{

    border-left:4px solid #dc3545;

}

.brightangel-toast i{

    font-size:20px;

}

.review-img-container{
    position: relative;
    display: block;
    overflow: hidden;
    /* aspect-ratio: 4/5; */
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .3s ease;
    height: 420px;
    margin-bottom: 15px;
}

.review-img-container img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.review-img-container:hover{
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(0,0,0,.15);
}

.review-container:hover img{
    transform: scale(1.05);
}

/* #whyChooseUs{
    background-color: #111111;
} */



#whyChooseUs .icon-featured {
    background: #ffffff;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bc9b3b;
    border: 2px solid rgba(188, 155, 59, 0.25);
}

#whyChooseUs h4{
    color:#fff;
}

#whyChooseUs p{
    color:#c8c8c8;
}

.product-detail-title{
    margin: 2px 0 10px 0;
}

#productDetail{
    margin-top: 50px;
}

.detail-product-img{
    height: 600px;
    overflow: hidden;
}

.detail-product-img img,
.detail-product-img video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owl-next,
.owl-prev{
    font-size: 2.3rem !important;
}

.owl-carousel.nav-dark.nav-style-1 .owl-nav .owl-next, .owl-carousel.nav-dark.nav-style-1 .owl-nav .owl-prev {
    color: #fff !important;
}


.cur-pointer{
    position: relative;
    display: block;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
}

.cur-pointer img,
.cur-pointer video{
    object-fit: cover;
    aspect-ratio: 1/1;
    display: block;
    width: 100%;
    height: 100%;
}

.cur-pointer .play-icon{
    position:absolute;
    inset:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    color:#fff;
    background:rgba(0,0,0,.25);
    pointer-events:none;
}

.product-detail-price{
    margin: 10px 0;
    font-family: 'Inter Medium';
}

.brightangel-sale-price{
    color:var(--secondary);
    font-size: 2rem;
}

.brightangel-regular-price{
    font-size: 1.2rem;
    text-decoration: line-through;
    color:#3b3b3b;
}

.price .amount {
    order: 1;
    font-size: 1.5em;
    font-weight: 600;
}

.availabilty-container{
    margin: 10px 0;
}

.attribute-item{
    margin-bottom: 10px;
}

.attribute-item p{
    margin-bottom: 5px;
}

.mini-cart-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding-bottom:15px;

    margin-bottom:15px;

    border-bottom:1px solid #eee;

}

.mini-cart-close{

    background:none;

    border:none;

    font-size:20px;

    cursor:pointer;

    transition:.25s;

}

.mini-cart-close:hover{

    transform:rotate(90deg);

}

.wc-block-components-address-form label{
    padding-top: 3px;
}

.entry-header{
    background-color: var(--primary);
    padding: 50px !important;
    color: #fff;
}

h1.entry-title{
    color: #fff;
    margin-top: 40px;
}

#primary {
    margin: 0 !important;
}

.wc-block-components-button {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.social-icons-tiktok a:hover{
    background: #000000 !important;
    color: #FFFFFF !important;
}

.page{
    padding-bottom: 30px;
}

#footer{
    margin-top: 0;
}

ol, ul {
    margin: 0;
}



@media (max-width: 575.98px) {

   .category-image{
    aspect-ratio: 1 / 1;
    overflow: hidden;
}


.category-title{
    margin:0;
    color:#fff;
    font-size:1.3rem;
    font-weight:600;
}

.category-btn{
    min-width:120px;
    height:40px;

    color:#fff;
    text-decoration:none;

    border:1px solid rgba(255,255,255,.85);
    background:transparent;

    transition:.3s ease;
}

    .product-card-content .card-title a {
        font-size: .9rem;
    }

    .product-card > a img {
   
    aspect-ratio: 1 / 1;
    
}

    .card-price {
        font-size: .95rem;
    }

    .product-card .btn {
        font-size: .85rem;
        padding: .55rem;
    }

}