.hero {
    position: relative;
}

.hero-section {
    position: relative;
}

.hero_slider img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero_arrow {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero_arrow svg {
    cursor: pointer;
    transition: all 0.4s;
}

.hero_arrow svg:hover {
    opacity: 30%;
    scale: 1.2;
}

.hero-content {
    position: absolute;
    top: 180px;
    left: 0;
    width: 100%;
    height: auto;
    padding: 0 60px;
}

.hero-content h1 {
    position: absolute;
    left: 40px;
    top: 0;
    width: 35%;
    margin: 0;
}

.hero-content p {
    position: absolute;
    right: 40px;
    top: 5em;
    width: 25%;
    margin: 0;
}

.fa-arrow-right:before {
    transform: rotate(60px);
}
.counter-item {
    padding: 42px;
    border-radius: 12px;
    /* margin-right: 20px; */
    height: 100%;
}

.counter-item p {
    margin-bottom: 0;
}

.counter-number {
    font-family: var(--title-font);
    font-size: 120px;
    color: var(--blue-heading);
}
.product-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    position: relative;
}
.product-section > div {
    position: relative;
    overflow: hidden;
}
.product-section img {
    transition: all 0.6s ease;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* .product-section > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 1;
  transition: opacity 0.6s ease;
  z-index: 1;
  pointer-events: none;
}
.product-section > div:hover::before {
  opacity: 0;
} */
.product-content-left,
.product-content-right {
    position: absolute;
    bottom: 60px;
    display: flex;
    align-items: center;
    z-index: 2;
    gap: 50px;
    bottom: 60px;
}
.product-content-left {
    right: 60px;
}
.product-content-right {
    left: 60px;
}

.common-arrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease;
}
/* .product-section > div:hover img {
  transform: scale(1.05);
} */

.slider-item {
    margin: 0 12px;
    position: relative;
}

.slider-item .commo-btn-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--black-color);
}

.slider-item img {
    border-radius: 12px;
}

.slider-content {
    margin-top: 24px;
}

.explore-state {
    background-color: var(--bg-blue);
    padding: 60px 0;
}

/* Accordion Transparent Background Styles */
.state-accordion .accordion {
    background-color: transparent;
    border: none;
}

.state-accordion .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #88b8e4;
}

.state-accordion .accordion-item:first-child {
    border-radius: 0;
}

.state-accordion .accordion-item:last-child {
    /* border-bottom: none;*/
    border-radius: 0;
}

.state-accordion .accordion-button {
    background-color: transparent;
    color: var(--grey-666);
    padding: 18px 0;
    box-shadow: none;
    font-size: 24px;
    font-weight: 400;
}

.state-accordion .accordion-body p {
    margin-bottom: 0;
}

.state-accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--blue-heading);
    box-shadow: none;
    font-weight: 600 !important;
    font-size: 34px;
    border-bottom: none;
    padding: 0;
    margin-top: 30px;
}

.state-accordion .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
    background-color: transparent;
}

.state-accordion .accordion-body {
    background-color: transparent;
    padding: 1rem 0;
}
.state-accordion .accordion-button::after {
    content: unset;
}
.state-accordion .accordion-item {
    color: var(--grey-666);
}

/* Images shown next to accordion (default: show all) */
.images-only {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
}

/* When an accordion panel is open, show only the image that matches the panel's id.
   Images are matched via the `data-panel` attribute on the <img>. */
.explore-state.accordion-open .images-only .accordion-preview-img {
    display: none;
}
.explore-state.accordion-open .images-only .accordion-preview-img.active {
    display: block;
    width: 100%;
    height: auto;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 767px) {
    .images-only .accordion-preview-img {
        width: 100%;
        height: 160px;
    }
    .explore-state.accordion-open .images-only .accordion-preview-img.active {
        max-width: 100%;
    }
}

/* -------------- */

/* ===== SLICK DOTS WRAPPER ===== */
.featured-product-slider .slick-dots {
    display: flex !important;
    justify-content: center;
    /* gap: 4px; */
    margin-top: 30px;
}

/* REMOVE DEFAULT BUTTON */
.featured-product-slider .slick-dots li button {
    display: none;
}

/* INACTIVE DOT */
.featured-product-slider .slick-dots li {
    width: 10px;
    height: 10px;
    background: #d9d9d9;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ACTIVE DOT (PILL SHAPE) */
.featured-product-slider .slick-dots li.slick-active {
    width: 30px;
    border-radius: 20px;
    background: var(--grey-666);
}


/* ---------- */
/* MAIN WRAPPER */
.main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0; /* 🔥 center gap removed */
}

/* LEFT SIDE (3 vertical) */
.derma-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.derma-section img
{
    height: 100%;
    width: 100%;
}

.uncapped {
    grid-row: span 4;
}

.shampoo {
    grid-row: span 4;
}

.supplement {
    grid-row: span 4;
}

/* RIGHT SIDE (4 grid) */
.cardio-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 5px;
}

.cardio-section img
{
    width: 100%;
    height: 100%;
}
/* ---------- */

