@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");


:root {
    --primary-pink: #231f20 ;
    --light-pink: #524f50 ;
    --coral: #ff7f7f;
    --dark-gray: #333;
    --light-gray: #f8f9fa;
}
body {
    font-family: "Rubik", sans-serif;
    line-height: 1.6;
}
.btn-cart{
    background-color: var(--primary-pink) ;
    border-color: var(--primary-pink);
    color:white;
}
h6.product-title {
    min-height: 50px;
}
.btn-cart:hover{
    background-color: var(--light-pink) ;
    border-color: var(--light-pink);
}
.search-div{
    width: 600px;
}
/* .dropdown-menu {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    display: block;
    visibility: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.dropup:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.dropdown-center:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
} */
.dropdown-border {
    border: 2px solid var(--primary-pink);
}
.size-bt{
       line-height: 40px;
       padding: 10px 30px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}
.add-to-cart{
     
        background: var(--primary-pink);
    color: #ffffff !important;
    
}
.add-to-cart:hover{
    background: #df1a5c;
    color: #ffffff !important;
    
}
.top-30{
    top: 30px!important;
}
.top-20{
    top: 20px!important;
}
.sign-in-link {
    color: #212529;
    text-decoration: none;
    margin-right: 1rem;
    position: relative;
}

.wishlist {
    color: white;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    position: relative;
}

.custom-dropdown {
    position: relative;
}

.custom-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
}

.custom-menu {
     position: absolute;
    top: 100%;
    right: 18px;
    background-color: #fff;
    color: #333;
    list-style: none;
    padding: 0;
    margin: 0;
    border: 1px solid #ccc;
    display: none;
    min-width: 150px;
    z-index: 1000;
}


.custom-menu li {
    padding: 8px 12px;
}

.custom-menu li a {
    color: #333;
    text-decoration: none;
    display: block;
}

.custom-menu li:hover {
    background-color: #f0f0f0;
}

/* Header Styles */
.top-bar {
    background: var(--light-gray);
    font-size: 12px;
    padding: 5px 0;
}

.navbar-brand {
    font-weight: bold;
    color: var(--primary-pink) !important;
    font-size: 24px;
}

.navbar {
    background: white !important;
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
}

.nav-link {
    color: var(--dark-gray) !important;
    font-weight: 500;
    margin: 0 10px;
}

.nav-link:hover {
    color: var(--primary-pink) !important;
}

.search-box {
    border: 2px solid var(--light-pink);
    border-radius: 25px;
}

.btn-search {
    background: var(--dark-gray);
    border: none;
    border-radius: 0 25px 25px 0;
}
.wishlist {
    position: relative;
}
.wishlist i {
    position: relative;
    font-size: 14px;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 35px;
    padding-top: 8px;
    height: 35px;
    text-align: center;
    color: #fff;
    line-height: 16px;
    margin-right: 5px;
}
.wishlist .badge {
    position: absolute;
    left: 20px;
    color: var(--primary-pink);
    font-size: 10px;
    padding: 3px 6px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    max-width: 15px;
    max-height: 15px;
    /* padding: 5px; */
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
}
/* Hero Section */
.hero-section {
    /* background: linear-gradient(135deg, var(--light-pink), var(--coral)); */
    /* padding: 80px 0; */
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-text {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.hero-models {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: url("https://images.unsplash.com/photo-1596462502278-27bfdc403348?w=800")
        center/cover;
    opacity: 0.8;
}
/* main category */
.main-category {
    background-color: var(--primary-pink) !important;
}
/* Product Cards */
.product-card {
    border: none;
    border-radius: 15px;
    border: 1px solid #dbdbdb;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    max-height: 272px;
    border-radius: 13px;
    object-fit: contain;
}
.detail-thumbnail-height{
    border: 2px dotted #ff69b4;

}
.width-multi-img{
    width: 110px!important;
}
.btn-discover-more {
    color: #fff;
    font-size: 20px;
    background: #a8a8a8;
    border: #424242;
    /* height: 60px; */
    padding: 14px 40px;
    border-radius: 4px;
    display: inline-block;
}
.product-title {
    font-size: 16px !important;
    font-weight: 500;
    color: var(--dark-gray);
    text-transform: capitalize;
    text-decoration: none;
    margin: 0px;
    cursor: pointer;
}

.product-price {
    color: var(--primary-pink);
    font-weight: bold;
    font-size: 16px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-right: 10px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin: 60px 0 40px;
}

.section-title {
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    font-size: 26px;
}

/* Brand Section */
.brand-card {
    background: white;
    border-radius: 15px;

    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

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

.korean-makeup {
    background: rgba(255, 222, 234, 0.5);
    position: relative;
    padding: 20px 0 30px;
}
.brand-logo img {
    width: 100%;
}
h5 {
    font-size: 18px;
    display: block;
    color: #555;
    text-decoration: none;
    line-height: 1.5;
    font-weight: 700;
}
/* Category Cards */
.category-card {
    /* background: var(--light-pink); */
    /* border-radius: 15px; */
    /* padding: 40px 20px; */
    text-align: center;
    color: #2e2d2d;
    transition: transform 0.3s ease;
}
.category-img img {
    width: 100%;
    height: 300px;
}
.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: var(--primary-pink);
    margin-bottom: 20px;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    line-height: 2;
}

.footer a:hover {
    color: var(--primary-pink);
}
.contact-info i {
    font-size: 36px;
    color: var(--primary-pink);
}

/* Responsive */
.w-500{
    min-width: 500px;
}
@media (max-width: 768px) {
    .hero-text {
        font-size: 2rem;
    }

    .hero-models {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }
    .search{
        width: 100%;
    }
    .search-div{
        width: 100%;
        margin: 10px 0px;
    }
    .w-500{
        min-width: 300px;
    }
}
