/* ================================
   HERO SLIDER UPDATED STYLES
================================= */
.winskinco-hero-slider {
    position: relative;
    width: 100%;
    height: 80vh;
    max-height: 800px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slides Wrapper */
.hero-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Single Slide */
.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0s linear 0.8s, transform 1s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(1.03);
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
    transform: scale(1);
    z-index: 2;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(122, 60, 255, 0.15), rgba(0,0,0,0.25));
    z-index: 1;
    pointer-events: none;
}

/* Content Wrapper */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: #fff;
    animation: fadeZoom 1s ease forwards;
    padding: 0; /* remove extra padding to shrink-wrap */
}

/* Horizontal Alignment */
/* Left Alignment */
.hero-content.align-left {
    position: absolute;
    left: 65px; /* closer to arrow */
    text-align: center; /* alignment of text */
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 600px;
}

/* Right Alignment */
.hero-content.align-right {
    position: absolute;
    right: 65px; /* closer to arrow */
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
	max-width: 600px
}

/* Center Alignment */
.hero-content.align-center {
    position: relative;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Vertical Alignment */
.hero-content.v-align-top { justify-content: flex-start; }
.hero-content.v-align-center { justify-content: center; }
.hero-content.v-align-bottom { justify-content: flex-end; }

/* Title */
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Description */
.hero-desc {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* ================================
   CAPSULE CTA BUTTON
================================= */
.hero-cta {
    display: inline-flex; /* fits text naturally */
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 999px;
    background: linear-gradient(45deg, #7a3cff, #9b5eff);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 0 rgba(122, 60, 255, 0);
    transition: transform 0.3s ease, box-shadow 0.4s ease;
    width: auto; 
    min-width: fit-content;
}

.hero-cta:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(122, 60, 255, 0.6);
}

/* ================================
   ARROWS
================================= */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 3;
    box-shadow: 0 0 10px rgba(122, 60, 255, 0.4);
    transition: all 0.3s ease;
}

.hero-arrow:hover {
    background: rgba(255,255,255,0.5);
    box-shadow: 0 0 20px rgba(122, 60, 255, 0.8);
}

.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* ================================
   DOTS
================================= */
.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-dots button {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-dots button.active {
    background: #fff;
    transform: scale(1.2);
}

/* ================================
   FADE + ZOOM ANIMATION
================================= */
@keyframes fadeZoom {
    0% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}

/* ================================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .hero-desc { font-size: 1rem; }
    .hero-cta { padding: 12px 30px; font-size: 0.9rem; }
    .hero-content { max-width: 90%; padding: 0 10px; }
    .winskinco-hero-slider { height: 65vh; }
}
