:root {
    --main-theme-color: #E6317D;
}

/* HEADER AREA */
.header-sticky {
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transition: all 100ms ease-in 0s;
    transition: all 100ms ease-in 0s;
    z-index: 1049;
}

.header-middle_nav {
    background-color: transparent !important;
}

.header-middle_nav nav a {
    color: #fff !important;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    font-family: Arial, Helvetica, sans-serif;
}

.header-middle_nav nav .ht-dropdown.blog-dropdown a {
    color: #000 !important;
}

.header-middle_nav nav .ht-dropdown.blog-dropdown a:hover {
    background-color: #000 !important;
    color: #fff !important;
    margin: 0 -10px;
}

.header-sticky.sticky.fixednav {
    background: var(--main-theme-color) !important;
    -webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
    box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.4);
}

.header-sticky.sticky.fixednav .header-middle_nav {
    background-color: var(--main-theme-color) !important;
}

.header-sticky.sticky.fixednav .header-middle_nav nav .ht-dropdown.blog-dropdown a:hover {
    background-color: var(--main-theme-color) !important;
    color: #fff !important;
}

@media (max-width: 1199px) {
    .header-middle_nav nav a {
        padding: 30px 20px 30px 0;
    }
}

/* HERO SLIDER AREA */
.hero-slider-area {
    position: relative;
    z-index: 0;
    height: 100vh;
}

.hero-slider,
.hero-slider .owl-stage-outer,
.hero-slider .owl-stage,
.hero-slider .owl-item,
.hero-slide {
    height: 100vh;
}

.hero-slider .owl-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}

.hero-slider .owl-prev,
.hero-slider .owl-next {
    color: #fff !important;
    background-color: transparent;
    opacity: 1;

    width: 30px;
    font-size: 42px;
    font-weight: 100;
    -webkit-text-stroke: 0.3px;
}

.hero-slider .owl-prev {
    left: 15px !important;
}

.hero-slider .owl-next {
    right: 15px !important;
}

.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover {
    background-color: transparent !important;
}

.hero-slider .owl-dots {
    bottom: 64px;
}

.hero-slider .owl-dots .owl-dot {
    min-width: 15px;
    height: 15px;
    background: #cdc9cc;
    border: 1px solid #cdc9cc;
}

.hero-slider .owl-dots .owl-dot:hover,
.hero-slider .owl-dots .owl-dot.active {
    background: var(--main-theme-color) !important;
}

.hero-slide {
    position: relative;
    overflow: hidden;
}

/* IMAGE BACKGROUND */
.slide-bg img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* VIDEO */
.slide-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

/* DARK OVERLAY */
.hero-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.44);
    z-index: 1;
}

/* CONTENT */
.hero-slide .container {
    display: flex;
    justify-content: end;
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
    text-align: right;
    padding: 0 60px;
}

.hero-content .text-style {
    color: #fff;
    text-shadow: 0px 2px 1px rgba(0, 0, 0, 0.63);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-style: italic;
}

.hero-content h1 {
    font-size: 60px;
    margin-bottom: 15px;
    color: #fff;
}

@media (max-width: 767px) {
    .hero-content {
        padding: 0 30px;
    }

    .hero-content h1 {
        font-size: 30px;
    }
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 20px;
}

.hero-content .btn {
    padding: 12px 30px;
    background: var(--main-theme-color) !important;
    color: #fff;
    text-decoration: none;
}

/* SOCIAL ICONS */
.slider-socials-container {
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.slider-socials {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 15px;

    position: absolute;
    bottom: 35px;
    left: 15px;
    z-index: 999;

    background-color: rgba(255, 255, 255, .4);
    width: 40px;
    border-radius: 20px;
    padding: 10px 5px;
}

.slider-socials__btn {
    background-color: #fff;
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    padding: 6px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all .3ms ease-in-out;
    cursor: pointer;
}

.slider-socials__btn:hover {
    background-color: #000;
}

.slider-socials__btn:hover .slider-socials__link {
    color: #fff !important;
}

.slider-socials__link {
    font-size: 20px;
}

.slide-down-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 999;

    transform: translateX(-50%);

    display: flex;
    justify-content: center;
    width: 40px;
}

.slide-down-arrow .arrow-long {
    position: relative;
    width: 2px;
    height: 30px;
    background: #fff;
}

.slide-down-arrow .arrow-long::after {
    content: "";
    position: absolute;
    right: -4px;
    top: calc(100% - 10px);
    width: 10px;
    height: 10px;

    border-top: 2px solid #fff;
    border-right: 2px solid #fff;

    transform: rotate(135deg);
}

.slide-down-arrow:hover .arrow-long {
    transform: translateY(10px);
    transition: 0.3s;
}

/* About us style */
.new-h-style {
    margin-bottom: 15px;
    line-height: 24px;
    text-transform: uppercase !important;
    font-weight: normal !important;
    color: #e6317d;
    font-family: Arial, Helvetica, sans-serif !important;
}

.about-us_content .short-desc {
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 18px !important;
    line-height: 30px;
}

/* product card slider */
@media (min-width: 1200px) {

    /* LEFT: white → transparent */
    .our-pro-active::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: calc(calc(100vw - 1200px) / 2);
        height: 100%;
        background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
        z-index: 2;
        pointer-events: none;
    }

    /* RIGHT: transparent → white */
    .our-pro-active::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: calc(calc(100vw - 1200px) / 2);
        height: 100%;
        background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
        z-index: 2;
        pointer-events: none;
    }
}

.product-card {
    overflow: hidden;
    background: #fff;
}

.product-card__link {
    display: flex;
    text-decoration: none;
    color: inherit;
    flex-direction: column;
    gap: 10px;
}

.product-card__image {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #ddd;
    overflow: hidden;
    background-image: linear-gradient(44deg, #b4b4b4 0%, #f3f3f3 51%, #b6b6b6 100%);
}

.product-card__img {
    width: 100%;
    display: block;
    background-color: transparent;
}

.product-card__title {
    font-size: 30px;
    color: #e6317d;
    text-transform: none !important;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 15px;
}

.product-card__text {
    font-size: 16px;
    line-height: 24px;
    color: #989898;
    font-family: Arial, Helvetica, sans-serif;
}

.new-arrival .section-title {
    display: flex;
    justify-content: space-between;
}

.slider-arrows-container {
    display: flex;
    gap: 10px;
}

.slider-arrows-container .owl-nav-custom {
    width: 45px;
    height: 45px;
    font-size: 45px;
    color: #E6317D;
}

/* promotion images */
@media (max-width: 575px) {
    .hero-banner-area .mb-xsm-30 {
        margin-bottom: 15px !important;
    }

    .hero-banner-area .mt-30 {
        margin-top: 15px !important;
    }
}

@media (max-width: 991px) {
    .small-btn a {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}