*{
    margin: 0;
    padding: 0;
    font-family: 'dosis', serif;
}
/* HEADER BAR */
.header {
  background: #ffffff;
  /*border-top: 4px solid #5a327f; */
  border-bottom: 1px solid #eee;
}
.top-bar {
    background-color: #5a327f;
    text-align: center;
    padding: 10px 0;
    color: #fff;
    font-weight: 500;
}
.header-container {
  max-width: 1300px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT MENU */
.left-menu {
  display: flex;
  gap: 30px;
}

.left-menu a {
  text-decoration: none;
  color: #111;
  font-size: 18px;
  font-weight: 500;
  position: relative;
}

.left-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #111;
}

.center-logo img {
  height: 34px;
}

/* RIGHT ICONS */
.right-icons {
  display: flex;
  gap: 22px;
  font-size: 18px;
}

.right-icons a {
  text-decoration: none;
  color: #111;
}
.Kaisen-banner{
    background-image:url(" ../images/home-banner.png");
    height: 500px;
    background-size: cover;
    background-repeat: no-repeat;
}
/*CATEGORY*/
.category-product ul li:first-child{
    background-color: red;
    background-image: url(../images/skinlist2.webp);
    height: 250px;
    display: block;
    background-size: cover;
    width: 200px;
    border-radius: 50%;
}
.category-product ul li:last-child{
    background-color: red;
    background-image: url(../images/skinlist2.webp);
    height: 250px;
    display: block;
    background-size: cover;
    width: 200px;
    border-radius: 50%;
} 
.category-product ul li a {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-decoration: none;
    font-size: 19px;
    font-weight: 600;
    z-index: 9;
}
.category-product ul li:before{
    content: "";
    position: absolute;
    background: linear-gradient(45deg, #00000087, transparent);
    height: 100%;
    width: 100%;
    z-index: 9;
    transform: translateX(-50%);
    border-radius: 50%;
}
.category-product ul {
    display: flex;
    text-align: center;
    justify-content: center;
    list-style: none;
    padding: 30px 0;
    border-top: 1px solid #c0c0c0;
}
.category-product ul li {  
    margin: 0 10px;
    border-radius: 26px;
    color: #fff; 
    position: relative;
}
.shop-by-concerns {
    text-align: center;
    padding: 50px 20px;
    font-family: Arial, sans-serif;
}

.shop-by-concerns h2 {
    font-size: 24px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.shop-by-concerns p {
    color: #666;
    margin-bottom: 40px;
}

.concern-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Mobile ke liye responsive */
}

.concern-item {
    flex: 1;
    min-width: 180px;
    max-width: 220px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    /* Oval Shape banane ke liye aspect ratio aur border-radius */
    aspect-ratio: 2/3; 
    border-radius: 100px; 
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image ko stretch hone se bachayega */
    transition: transform 0.3s ease;
}

/* Hover effect */
.image-wrapper:hover img {
    transform: scale(1.1);
}

.image-wrapper span {
    position: absolute;
    bottom: 20px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5); /* Text ko readable banane ke liye shadow */
}