/* =========================================================
   ADONIS — MAIN WEBSITE CSS
   FOOTER CSS IS SEPARATE
   FONT: POPPINS
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
    --blue: #117aa6;
    --blue-dark: #117aa6;
    --blue-light: #eaf8fd;

    --pink: #de107b;

    --navy: #020619;

    --text: #101820;
    --gray: #666;
    --border: #dedede;

    --container: 1160px;

    --font-primary: 'Poppins', sans-serif;
    --font-roboto: 'Roboto', sans-serif;

}


/* =========================================================
   GLOBAL RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    font-family: var(--font-primary);

    color: var(--text);
    background: #fff;

    overflow-x: hidden;
}

body,
body *,
button,
input,
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div,
small,
strong,
label,
li {
    font-family: var(--font-primary);
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: var(--font-primary);
}

button {
    cursor: pointer;
}


/* =========================================================
   TOP OFFER BAR
========================================================= */

.offer-bar {
    width: 100%;
    height: 47px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--blue-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .3px;
}

.offer-text {
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
    -webkit-animation: marquee 20s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}




/* =========================================================
   FASHION HERO
========================================================= */

.fashion-hero {
    width: 100%;

    position: relative;

    background: #fff;

    overflow: hidden;
}


/* =========================================================
   HERO CAROUSEL
========================================================= */

.fashion-carousel {
    width: 100%;

    position: relative;

    background: linear-gradient(180deg,
            #f5fbff 0%,
            #dff2fc 100%);
}

.fashion-carousel .carousel-inner {
    width: 100%;
}


/* =========================================================
   HERO SLIDE
========================================================= */

.fashion-slide {
    width: 100%;
    height: 600px;
    min-height: 600px;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* Laptop */
@media (max-width: 1200px) {
    .fashion-slide {
        height: 500px;
        min-height: 500px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    .fashion-slide {
        height: 400px;
        min-height: 400px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .fashion-slide {
        height: 300px;
        min-height: 300px;
    }
}


/* =========================================================
   HERO MODELS
========================================================= */

.fashion-model {
    position: absolute;

    bottom: 0;

    z-index: 2;

    display: flex;
    align-items: flex-end;

    pointer-events: none;
}

.fashion-model img {
    display: block;

    width: auto;
    height: 455px;

    object-fit: contain;
}


/* =========================================================
   LEFT MODEL
========================================================= */

.fashion-model-left {
    left: 0;

    width: 31%;

    justify-content: flex-start;
}

.fashion-model-left img {
    max-width: 100%;
}


/* =========================================================
   RIGHT MODEL
========================================================= */

.fashion-model-right {
    right: 0;

    width: 31%;

    justify-content: flex-end;
}

.fashion-model-right img {
    max-width: 100%;
}


/* =========================================================
   HERO CENTER CONTENT
========================================================= */

.fashion-content {
    position: relative;

    z-index: 5;

    width: 42%;
    max-width: 600px;

    text-align: center;

    margin-top: -35px;
}


/* =========================================================
   HERO TITLE
========================================================= */

.fashion-content h1 {
    margin: 0;

    color: #071923;

    font-size: clamp(38px, 4.1vw, 65px);

    line-height: .98;

    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.fashion-content h1 span {
    display: block;

    font-weight: 300;

    letter-spacing: 3px;
}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.fashion-subtitle {
    max-width: 390px;

    margin: 18px auto 7px;

    color: #27343a;

    font-size: 12px;

    line-height: 1.45;

    font-weight: 500;
}


/* =========================================================
   HERO SCRIPT TEXT
========================================================= */

.fashion-script {
    margin-top: 3px;

    color: #050505;

    font-size: clamp(25px, 2.4vw, 37px);

    font-weight: 700;

    font-style: italic;

    line-height: 1.1;

    transform: rotate(-2deg);
}


/* =========================================================
   HERO CTA BUTTON
========================================================= */

.fashion-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    margin-top: 12px;

    padding: 10px 22px;

    background: #168bc3;
    color: #fff;

    border-radius: 30px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .2px;

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}

.fashion-btn span {
    font-size: 15px;

    line-height: 1;
}

.fashion-btn:hover {
    color: #fff;

    background: #0875a8;

    transform: translateY(-2px);

    box-shadow: 0 7px 18px rgba(0, 90, 140, .22);
}


/* =========================================================
   HERO CAROUSEL ARROWS
========================================================= */

.fashion-control {
    width: 52px;

    top: 45%;
    bottom: auto;

    opacity: 1;

    z-index: 10;
}

.fashion-arrow {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff;
    color: #111;

    border-radius: 50%;

    font-size: 28px;
    line-height: 1;

    box-shadow: 0 4px 15px rgba(0, 0, 0, .12);

    transition: .3s ease;
}

.fashion-control:hover .fashion-arrow {
    background: #168bc3;
    color: #fff;
}


/* =========================================================
   HERO INDICATORS
========================================================= */

.fashion-indicators {
    position: absolute;
    bottom: 37px;
    margin: 0;
    z-index: 8;
    gap: 5px;
}

.fashion-indicators [data-bs-target] {
    width: 6px;
    height: 6px;

    margin: 0;

    border: 0;

    border-radius: 50%;

    background: #1595cf;

    opacity: .55;
}

.fashion-indicators .active {
    width: 8px;
    height: 8px;

    opacity: 1;
}


/* =========================================================
   FEATURES AREA
========================================================= */

.fashion-features {
    position: relative;
    z-index: 20;
    width: 95%;
    margin: -28px auto 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 13px;
}


/* =========================================================
   FEATURE CARD
========================================================= */

.fashion-feature-card {
    min-height: 100px;

    padding: 9px 13px;

    display: flex;

    align-items: center;

    gap: 10px;

    background: #fff;

    border: 1px solid #dce8ef;

    border-radius: 5px;

    box-shadow:
        0 4px 15px rgba(26, 86, 120, .13);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.fashion-feature-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 8px 22px rgba(26, 86, 120, .16);
}


/* =========================================================
   FEATURE ICON
========================================================= */

.feature-icon {
    width: 50px;
    min-width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0877aa;
    font-size: 25px;
    line-height: 1;
}


/* =========================================================
   FEATURE TITLE
========================================================= */

.fashion-feature-card h4 {
    margin: 0 0 3px;
    color: #111d23;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}


/* =========================================================
   FEATURE DESCRIPTION
========================================================= */

.fashion-feature-card p {
    margin: 0;
    color: #3a3a3a;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 500;
}


/* =========================================================
   COMMON SECTION
========================================================= */

.section {
    padding: 75px 0;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.section-title {
    position: relative;

    text-align: center;

    margin-bottom: 40px;

    overflow: visible;
}


/* =========================================================
   GHOST TITLE
========================================================= */

.section-title .ghost {
    position: absolute;

    left: 50%;
    top: -63px;

    transform: translateX(-50%);

    white-space: nowrap;

    font-size: 130px;

    font-weight: 800;

    letter-spacing: 1px;

    line-height: 1;

    color: #e9f7fb;

    z-index: 0;

    pointer-events: none;

    -webkit-mask-image: linear-gradient(to bottom,
            #000 0%,
            #000 45%,
            rgba(0, 0, 0, .85) 58%,
            rgba(0, 0, 0, .55) 72%,
            rgba(0, 0, 0, .22) 87%,
            transparent 100%);

    mask-image: linear-gradient(to bottom,
            #000 0%,
            #000 45%,
            rgba(0, 0, 0, .85) 58%,
            rgba(0, 0, 0, .55) 72%,
            rgba(0, 0, 0, .22) 87%,
            transparent 100%);
}


/* =========================================================
   MAIN SECTION HEADING
========================================================= */

.headline {
    position: relative;

    z-index: 2;

    margin: 0;

    color: #101820;

    font-size: 45px;

    font-weight: 800;

    line-height: 1.1;
}


/* =========================================================
   COLLECTION
========================================================= */

.collection {
    background: #fff;

    padding-top: 100px;
}


/* =========================================================
   COLLECTION GRID
========================================================= */

.collection-grid {
    width: 100%;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 13px;
}


/* =========================================================
   COLLECTION CARD
========================================================= */

.collection-card {
    height: 300px;

    position: relative;

    overflow: hidden;

    background: #eee;
}


/* =========================================================
   COLLECTION BACKGROUNDS
========================================================= */

.collection-card:nth-child(1),
.collection-card:nth-child(5) {
    background: #f8dfc2;
}

.collection-card:nth-child(2),
.collection-card:nth-child(6) {
    background: #e7edef;
}

.collection-card:nth-child(3),
.collection-card:nth-child(7) {
    background: #f2ddd0;
}

.collection-card:nth-child(4),
.collection-card:nth-child(8) {
    background: #e4e8e8;
}


/* =========================================================
   COLLECTION IMAGE
========================================================= */

.collection-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .4s ease;
}

.collection-card:hover img {
    transform: scale(1.05);
}


/* =========================================================
   COLLECTION NAME
========================================================= */

.collection-name {
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 66%;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-roboto);
    background: rgba(255, 255, 255, .94);
    color: #111;
    font-size: 14px;
    font-weight: 700;
    transition: background .3s ease,
        transform .3s ease;


}

.collection-card:hover .collection-name {
    background: #fff;

    transform: translate(-50%, -55%);
}


/* =========================================================
   COLLECTION DOTS
========================================================= */

.slider-dots {
    display: flex;

    justify-content: center;

    gap: 7px;

    margin-top: 22px;
}

.slider-dots span {
    width: 8px;
    height: 8px;

    display: block;

    border-radius: 50%;

    border: 1px solid #159bc8;

    transition: .25s ease;
}

.slider-dots span.active {
    background: #159bc8;
}


/* =========================================================
   TRENDING SECTION
========================================================= */

.adonis-trending-section {
    width: 100%;

    padding: 100px 0;

    background: #fdfdfd;

    overflow: hidden;
}

.section-title .nd {

    color: #e9f7fb !important;

}

.adonis-trending-container {
    width: 1170px;

    max-width: calc(100% - 100px);

    margin: 0 auto;

    position: relative;
}


/* =========================================================
   TRENDING SLIDER
========================================================= */

.adonis-trending-slider {
    position: relative;
}

.adonis-trending-slider .owl-stage {
    display: flex;
}

.adonis-trending-slider .owl-item {
    display: flex;
}

.adonis-trending-slider .owl-item>div {
    width: 100%;
}

.adonis-trending-product-item {
    width: 100%;

    padding: 0 6px 5px;
    transition: 0.4s;
}


/* =========================================================
   TRENDING PRODUCT CARD
========================================================= */

.adonis-trending-product-card {
    width: 100%;

    position: relative;

    text-align: center;
    min-height: 300px;
    height: 100%;
}


/* =========================================================
   TRENDING PRODUCT IMAGE
========================================================= */

.adonis-trending-product-image {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    background: #f5f5f5;
}

.adonis-trending-product-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .4s ease;
}

.adonis-trending-product-card:hover .adonis-trending-product-image img {
    transform: scale(1.04);
}


/* =========================================================
   PRODUCT IMAGE BACKGROUNDS
========================================================= */

/*.adonis-trending-product-item:nth-child(1) .adonis-trending-product-image {*/
/*    background: #f3eff8;*/
/*}*/

.adonis-trending-product-item:nth-child(2) .adonis-trending-product-image {
    background: #f1f7e8;
}

.adonis-trending-product-item:nth-child(3) .adonis-trending-product-image {
    background: #f7f5e4;
}

.adonis-trending-product-item:nth-child(4) .adonis-trending-product-image {
    background: #f8f1dc;
}


/* =========================================================
   DISCOUNT BADGE
========================================================= */

.adonis-trending-discount {
    position: absolute;
    top: 7px;
    left: 7px;
    z-index: 5;
    min-width: 30px;
    height: 26px;
    padding: 0 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 20px;
    color: #222;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05);
}


/* =========================================================
   WISHLIST BUTTON
========================================================= */

.adonis-trending-wishlist {
    position: absolute;
    top: 8px;
    right: -232px;
    z-index: 5;
    width: 22px;
    height: 22px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #111;
    font-size: 14px;
    cursor: pointer;
    transition: .25s ease;
}
.adonis-trending-wishlist:hover {
    transform: scale(1.15);

    color: #e22d2d;
}


/* =========================================================
   PRODUCT INFORMATION
========================================================= */

.adonis-trending-product-info {
    padding-top: 7px;
    height: 100%;
    min-height: 130px;
}

.adonis-trending-product-info h3 {
    margin: 0 0 1px;
    color: #111;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
}

.adonis-trending-price {
    color: #222;
    font-size: 17px;
    line-height: 1.5;
    font-weight: 500;
}

.adonis-trending-rating {
    margin-top: 1px;
    color: #ffb900;
    font-size: 21px;
    letter-spacing: 1px;
    line-height: 1;
}

/* =========================================================
   ADD TO CART
========================================================= */

.adonis-trending-add-cart {
    position: absolute;
    left: 50%;
    bottom: 7px;
    transform: translate(-50%, 12px);
    z-index: 10;
    min-width: 110px;
    height: 26px;
    padding: 0 16px;
    border: 0;
    border-radius: 20px;
    background: #1598cf;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    opacity: 1 !important;
    visibility: hidden;
    transition: opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .3s ease;
}

.adonis-trending-add-cart:hover {
    background-color: var(--pink) !important;
    ;
}

.hell .rbs {
    position: relative !important;
    bottom: 0 !important;
    left: 0 !important;
    /* transform: translateX(-50%); */
    margin-left: 60px;
}


.adonis-trending-product-item:hover {
    border: 2px solid var(--blue);
    border-radius: 15px;
    transition: 0.2s;

}



.adonis-trending-product-card:hover .adonis-trending-add-cart {
    opacity: 1;

    visibility: visible;

    transform: translate(-50%, 0);
}

.adonis-trending-add-cart:hover {
    background: #087eaf;
}


/* =========================================================
   ACTIVE CENTER PRODUCT
========================================================= */

.adonis-trending-product-item:nth-child(3) .adonis-trending-product-card {
    border: 1px solid #16a7e6;

    border-radius: 5px;

    padding: 7px 7px 8px;

    margin-top: 0;

    box-shadow:
        0 8px 18px rgba(0, 0, 0, .10);
}

.adonis-trending-product-item:nth-child(3) .adonis-trending-product-image {
    height: 171px;

    border-radius: 2px;
}

.adonis-trending-product-item:nth-child(3) .adonis-trending-add-cart {
    opacity: 1;

    visibility: visible;

    transform: translate(-50%, 0);

    bottom: 9px;
}


/* =========================================================
   TRENDING NAVIGATION
========================================================= */

.adonis-trending-navigation {
    position: absolute;
    left: -40px;
    top: 47%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}


/* =========================================================
   TRENDING ARROWS
========================================================= */
.adonis-trending-arrow {
    width: 35px;
    height: 35px;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid #222 !important;
    border-radius: 50% !important;
    background: #fff !important;
    color: #111 !important;
    font-size: 10px;
    line-height: 1;
    cursor: pointer;
    transition: all .25s ease;
}

.adonis-trending-arrow i {
    font-size: 10px;

    line-height: 1;
}

.adonis-trending-arrow:hover {
    background: #111 !important;

    color: #fff !important;

    border-color: #111 !important;
}


/* =========================================================
   TRENDING OWL DOTS
========================================================= */

.adonis-trending-slider .owl-dots {
    margin-top: 8px !important;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 1px;
}

.adonis-trending-slider .owl-dot {
    width: 8px;
    height: 8px;

    padding: 0 !important;
    margin: 0 !important;

    background: transparent !important;

    display: flex;

    align-items: center;
    justify-content: center;
}

.adonis-trending-slider .owl-dot span {
    width: 4px;
    height: 4px;

    margin: 0 !important;

    background: #aaa !important;

    border-radius: 50%;

    transition: .25s ease;
}

.adonis-trending-slider .owl-dot.active span {
    width: 7px;
    height: 7px;

    background: #fff !important;

    border: 2px solid #e22d2d;

    box-shadow: 0 0 0 1px #aaa;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */




/* =========================================================
   TABLET — 1200px
========================================================= */




/* =========================================================
   TABLET — 991px
========================================================= */




/* =========================================================
   MOBILE — 767px
========================================================= */




/* =========================================================
   SMALL MOBILE — 575px
========================================================= */




/* =========================================================
   VERY SMALL MOBILE — 400px
========================================================= */




/* =========================================================
   ACCESSIBILITY / FOCUS
========================================================= */

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--blue);

    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */






/* style confidence section  */


/* ================================
   SALE BANNER
================================ */

.sale-banner {
    width: 100%;



    display: flex;
    overflow: hidden;

    background: #217eae;
}


/* ================================
   LEFT CONTENT
================================ */

.sale-content {
    width: 50%;
    /* min-height: 410px; */

    background: #217eae;

    /* padding: 55px 55px 45px; */
    padding: 25px 0 0 85px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    position: relative;

    z-index: 2;
}


/* ================================
   DECORATIVE ARROW
================================ */

.sale-arrow {
    position: absolute;
    top: 81px;
    left: 55px;
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 20px solid #4dc2f2;
    opacity: 0.9;
}


/* ================================
   SUBTITLE
================================ */

.sale-subtitle {
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin-bottom: 5px;
    font-family: var(--font-roboto);
}


/* ================================
   MAIN TITLE
================================ */

.sale-content h1 {
    color: #ffffff;
    font-size: 103px;
    line-height: 0.95;
    font-weight: 500;
    letter-spacing: -2px;
    margin-bottom: 24px;
    font-family: var(--font-roboto);
}

/* ================================
   FLAT LABEL
================================ */

.discount-label {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 2px;
    font-family: var(--font-roboto);
}


/* ================================
   DISCOUNT
================================ */

.discount {
    display: flex;
    align-items: baseline;

    line-height: 0.9;

    margin-bottom: 28px;
}

.discount strong {
    color: #ffffff;
    font-size: 100px;
    font-weight: 500;
    letter-spacing: -3px;
    font-family: var(--font-roboto);
}

.discount span {
    color: #45c2f2;

    font-size: 80px;

    font-weight: 700;

    letter-spacing: -3px;

    margin-left: 8px;
    font-family: var(--font-roboto);
}


/* ================================
   SHOP BUTTON
================================ */

.shop-btn {
    height: 30px;

    padding: 0 20px;

    display: inline-flex;
    align-items: center;
    gap: 13px;

    background: var(--pink);

    border-radius: 30px;

    color: #ffffff;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;

    transition: all 0.3s ease;
}

.shop-btn b {
    font-size: 17px;
    font-weight: 400;

    line-height: 1;

    transition: transform 0.3s ease;
}

.shop-btn:hover {
    background: #ffffff;
    color: #217eae;

    transform: translateY(-2px);
}

.shop-btn:hover b {
    transform: translateX(4px);
}


/* ================================
   RIGHT IMAGE
================================ */

.sale-image {
    width: 50%;

    /* height: 450px; */

    overflow: hidden;
}

.sale-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    transition: transform 0.5s ease;
}

.sale-banner:hover .sale-image img {
    transform: scale(1.03);
}


/* ================================
   TABLET
================================ */




/* ================================
   MOBILE
================================ */



/* style confidence section  */


/* testimonias parts  */

/* ================================
   TESTIMONIAL SECTION
================================= */

.testimonial-section {
    width: 100%;
    padding: 120px 0 60px 0;
    background: #f7f8f9;
}

.testimonial-carousel {
    padding: 0 40px;
}

.testimonial-item {
    padding: 0 7px;
    box-sizing: border-box;
}

.testimonial-card {
    position: relative;
    min-height: 300px;
    padding: 28px 25px 15px;
    background: #ffffff;
    border: 1px solid #89d8ff4d;
    border-radius: 6px;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  justify-content: center;
}

/* QUOTE */
.quote-icon {
    position: absolute;
    top: 7px;
    left: 72px;

    font-size: 99px;
    line-height: 1;
    font-weight: 700;
    color: #edf4f8;
}

/* STARS */
.testimonial-stars {
    margin-bottom: 7px;
    color: #f5a900;
    font-size: 20px;
    letter-spacing: 1px;
}

/* TEXT */
.testimonial-card p {
    max-width: 220px;
    margin: 0 auto 8px;
    color: #222;
    font-size: 13px;
    line-height: 1.5;
}

/* NAME */
.testimonial-card h5 {
    margin: 0;
    color: #111;
    font-size: 14px;
    font-weight: 700;
}

.carousel-item {
    position: relative;
}


/* ================================
   OWL NAVIGATION
================================= */

.testimonial-carousel .owl-nav {
    margin: 0;
}

.testimonial-carousel .owl-nav button.owl-prev,
.testimonial-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;

    width: 25px;
    height: 25px;

    margin: 0;
    transform: translateY(-50%);

    border: 1px solid #cbdde6 !important;
    border-radius: 50%;

    background: #ffffff !important;
    color: #47849e !important;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

.testimonial-carousel .owl-nav button.owl-prev {
    left: 5px;
}

.testimonial-carousel .owl-nav button.owl-next {
    right: 5px;

    background: #20a9dc !important;
    border-color: #20a9dc !important;
    color: #ffffff !important;
}

.testimonial-carousel .owl-nav button span {
    font-size: 21px;
    line-height: 20px;
    font-weight: 300;
}

.testimonial-carousel .owl-nav button:hover {
    background: #20a9dc !important;
    border-color: #20a9dc !important;
    color: #ffffff !important;
}


/* ================================
   OWL DOTS
================================= */

.testimonial-carousel .owl-dots {
    margin-top: 22px;
    text-align: center;
}

.testimonial-carousel .owl-dots button.owl-dot {
    margin: 0 3px;
}

.testimonial-carousel .owl-dots button.owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0;
    background: #20a9dc;
}

.testimonial-carousel .owl-dots button.owl-dot.active span {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 1px solid #20a9dc;
    position: relative;
}


.testimonial-carousel .owl-dots button.owl-dot.active span::after {
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 3px;
    height: 3px;

    border-radius: 50%;
    background: #20a9dc;

    transform: translate(-50%, -50%);
}


/* ================================
   RESPONSIVE
================================= */



/* testimonias parts  */






/* =================================
   ABOUT BRAND SECTION
================================= */

.about-brand-section {
    width: 100%;
    padding: 70px 0;
    background: #fff;
}

.about-brand-wrapper {
    width: 100%;
    max-width: 1200px;
    min-height: 500px;
    margin: 0 auto;
    position: relative;
}


/* =================================
   IMAGE
================================= */

.about-brand-image {
    width: 55%;
    height: 500px;
    overflow: hidden;
}

.about-brand-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =================================
   CONTENT BOX
================================= */

.about-brand-content {
    position: absolute;
    width: 50%;
    min-height: 390px;
    top: 10%;
    right: 0;
    transform: translateY(-50%);
    background: #fff;
    padding: 65px 60px;
    box-sizing: border-box;
    z-index: 2;
}


.bb_btn a {
    padding: 22px 54px !important;
    background-color: #34c7f3;
    font-size: 16px !important;
}

/* =================================
   SUBTITLE
================================= */

.about-brand-subtitle {
    display: block;
    margin-bottom: 8px;

    color: var(--blue);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 3px;
    line-height: 1.3;
}


/* =================================
   HEADING
================================= */

.about-brand-content h2 {
    margin: 0 0 18px;

    color: #111;

    font-size: 32px;
    font-weight: 700;

    line-height: 1.15;

    font-family: Arial, Helvetica, sans-serif;
}


/* =================================
   DESCRIPTION
================================= */

.about-brand-content p {
    margin: 0 0 25px;

    max-width: 520px;

    color: #333;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.7;

    font-family: Arial, Helvetica, sans-serif;
}


/* =================================
   BUTTON
================================= */

.about-brand-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 120px;
    height: 42px;

    padding: 0 25px;

    background: #199bd3;
    color: #fff;

    border-radius: 25px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    transition: all 0.3s ease;
}

.about-brand-btn:hover {
    background: var(--pink);
    color: #fff;
}


/* =================================
   TABLET
================================= */




/* =================================
   MOBILE
================================= */




/* socia part section */

/* =================================
   SOCIAL MEDIA SECTION
================================= */

.gaps {
    padding: 80px 0 60px 0;
}

.social-media-section {
    width: 100%;

    background: #ffffff;
}

.social-media-section .container-fluid {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 30px; */
    padding: 0;
}


/* =================================
   SOCIAL CARD
================================= */

.social-card {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.social-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}


/* =================================
   SOCIAL LABEL
================================= */

.social-label {
    position: absolute;

    left: 15px;
    bottom: 15px;

    display: inline-flex;
    align-items: center;
    gap: 7px;

    min-width: 70px;
    height: 28px;

    padding: 0 10px;

    background: #ffffff;
    color: #111111;

    border-radius: 20px;

    text-decoration: none;

    font-size: 9px;
    font-weight: 700;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);

    transition: all 0.3s ease;
}

.social-label i {
    font-size: 14px;
}

.social-label span {
    line-height: 1;
}


/* =================================
   FACEBOOK
================================= */

.facebook-label i {
    color: #4267B2;
}


/* =================================
   INSTAGRAM
================================= */

.instagram-label i {
    color: #E1306C;
}


/* =================================
   HOVER
================================= */

.social-label:hover {
    transform: translateY(-2px);
    color: #111111;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
}


/* =================================
   TABLET
================================= */




/* =================================
   MOBILE
================================= */



/* socia part section */


/* check out   */

/* ================================
   CART DRAWER
================================ */

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}


.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 99999;

    display: flex;
    flex-direction: column;

    transform: translateX(100%);
    transition: transform 0.4s ease;

    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.cart-drawer.active {
    transform: translateX(0);
}


/* HEADER */

.cart-header {
    padding: 25px;
    border-bottom: 1px solid #e8e8e8;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    margin: 0 0 5px;
    font-size: 24px;
    font-weight: 600;
    color: #020202;
}

.cart-header span {
    font-size: 13px;
    color: #777;
}

.cart-close {
    width: 40px;
    height: 40px;
    border: 0;
    background: #f5f5f5;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    font-size: 16px;
}


/* BODY */

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}


/* PRODUCT */

.cart-product {
    position: relative;

    display: flex;
    gap: 15px;

    padding-bottom: 20px;
    margin-bottom: 20px;

    border-bottom: 1px solid #eeeeee;
}

.cart-product-image {
    width: 95px;
    height: 115px;
    flex-shrink: 0;
    overflow: hidden;
    background: #f5f5f5;
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.cart-product-info {
    flex: 1;
    padding-right: 20px;
}

.cart-product-info h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 600;
    color: #020202;
}

.product-variant {
    margin: 0 0 10px;
    font-size: 12px;
    color: #777;
}


/* PRICE */

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.discount-price {
    font-size: 16px;
    font-weight: 700;
    color: #020202;
}

.discount-badge {
    display: inline-block;
    margin-top: 5px;
    padding: 3px 7px;

    background: #eef7ee;
    color: #287a35;

    font-size: 10px;
    font-weight: 600;
}


/* QUANTITY */

.quantity-row {
    display: flex;
    align-items: center;
    gap: 0;

    margin-top: 12px;

    border: 1px solid #ddd;
    width: fit-content;
}

.quantity-row button {
    width: 28px;
    height: 28px;

    border: 0;
    background: transparent;

    cursor: pointer;
    font-size: 16px;
}

.quantity-row span {
    min-width: 30px;
    text-align: center;
    font-size: 13px;
}


/* REMOVE */

.remove-product {
    position: absolute;
    top: 0;
    right: 0;

    border: 0;
    background: transparent;

    color: #999;
    cursor: pointer;
}

.remove-product:hover {
    color: #d33;
}


/* FOOTER */

.cart-footer {
    padding: 22px 25px;
    border-top: 1px solid #e8e8e8;
    background: #fff;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 10px;

    font-size: 14px;
    color: #555;
}

.summary-row strong {
    color: #020202;
}

.discount-total strong {
    color: #287a35;
}

.total-row {
    margin-top: 15px;
    padding-top: 15px;

    border-top: 1px solid #eeeeee;

    font-size: 18px;
    color: #020202;
}

.total-row strong {
    font-size: 20px;
}


/* CHECKOUT BUTTON */

.proceed-checkout {
    width: 100%;
    height: 54px;

    margin-top: 15px;

    border: 0;
    background: #020202;
    color: #fff;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    transition: 0.3s ease;
}

.proceed-checkout:hover {
    background: #333;
}

.secure-checkout {
    margin: 12px 0 0;

    text-align: center;

    font-size: 11px;
    color: #888;
}

.secure-checkout i {
    margin-right: 4px;
}


/* MOBILE */



/* check out   */




/* contact page section  */

/* =========================================
   CONTACT PAGE
========================================= */

.contact-page {
    width: 100%;
    padding: 70px 20px;
    background: #ffffff;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.contact-page *,
.contact-page *::before,
.contact-page *::after {
    box-sizing: border-box;
}


/* Main Wrapper */
.contact-page__wrapper {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 32% 68%;
    align-items: stretch;
}


/* =========================================
   LEFT OFFICE CARD
========================================= */

.contact-page__office {
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 9px 9px 0 0;

    padding: 25px 30px;
    min-height: 430px;

    position: relative;
    z-index: 2;
}

.contact-page__office h2 {
    margin: 0 0 18px;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #111111;
}

.contact-page__intro {
    margin: 0;

    font-size: 13px;
    line-height: 1.45;
    font-weight: 400;
    color: #444444;
}




/* Details */
.contact-page__details {
    margin-top: 27px;
}

.contact-page__detail {
    display: flex;
    align-items: flex-start;
    gap: 8px;

    margin-bottom: 17px;

    font-size: 9px;
    line-height: 1.4;
    color: #111111;
}

.contact-page__detail strong {
    font-weight: 700;
    font-size: 13px;
}

.contact-page__icon div {
    font-size: 15px;
}

.contact-page__icon {
    flex: 0 0 27px;
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: var(--blue-dark);
    color: #ffffff;

    font-size: 15px;
    line-height: 1;
}


/* =========================================
   RIGHT FORM BOX
========================================= */

.contact-page__form-box {
    background: #f4f4f4;
    border-radius: 10px;

    padding: 47px 45px 35px;

    min-height: 410px;

    margin-left: 20px;

    position: relative;
    z-index: 1;
}

.contact-page__form-box h1 {
    margin: 0 0 22px;

    font-size: 30px;
    line-height: 1.1;
    font-weight: 500;

    color: #242424;
}


/* Form */
.contact-page__form {
    width: 100%;
}

.contact-page__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;

    margin-bottom: 10px;
}

.contact-page__field {
    width: 100%;
}

.contact-page__field input,
.contact-page__field textarea {
    width: 100%;
    border: 1px solid #cfcfcf;
    border-radius: 0;
    background: #ffffff;
    color: #222222;

    font-size: 15px;
    outline: none;
    transition: border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.contact_info {
    font-size: 13px;
}

.contact-page__field input {
    height: 44px;
    padding: 0 9px;
}

.contact-page__field textarea {
    height: 96px;
    padding: 10px 9px;

    resize: vertical;
    min-height: 80px;
}

.contact-page__field input::placeholder,
.contact-page__field textarea::placeholder {
    color: #111111;
    opacity: 1;
}

.contact-page__field input:focus,
.contact-page__field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(22, 128, 184, 0.08);
}


/* Full Width Fields */
.contact-page__full {
    margin-bottom: 10px;
}


/* =========================================
   BUTTON
========================================= */

.contact-page__button {
    display: block;
    width: 92%;
    height: 37px;
    margin: 17px auto 0;
    border: none;
    border-radius: 20px;
    background: var(--blue-dark);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s ease,
        transform 0.2s ease;
}

.contact-page__button:hover {
    background: var(--blue-dark);
}

.contact-page__button:active {
    transform: scale(0.99);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .contact-page {
        padding: 50px 20px;
    }

    .contact-page__wrapper {
        grid-template-columns: 1fr;
        max-width: 650px;
    }

    .contact-page__office {
        min-height: auto;
        border-radius: 9px;
        padding: 30px;
    }

    .contact-page__intro {
        max-width: 100%;
    }

    .contact-page__form-box {
        margin-left: 0;
        margin-top: 20px;

        border-radius: 10px;

        padding: 40px 35px;
    }

    .contact-page__form-box h1 {
        font-size: 28px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .contact-page {
        padding: 35px 15px;
    }

    .contact-page__wrapper {
        width: 100%;
    }

    .contact-page__office {
        padding: 25px 20px;
    }

    .contact-page__office h2 {
        font-size: 20px;
    }

    .contact-page__intro {
        font-size: 14px;
        line-height: 1.55;
    }

    .contact-page__detail {
        font-size: 10px;
    }

    .contact-page__form-box {
        padding: 30px 20px;
    }

    .contact-page__form-box h1 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .contact-page__row {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 10px;
    }

    .contact-page__field input {
        height: 42px;
        font-size: 12px;
    }

    .contact-page__field textarea {
        height: 110px;
        font-size: 12px;
    }

    .contact-page__button {
        width: 100%;
        height: 40px;
        margin-top: 18px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .contact-page {
        padding-left: 10px;
        padding-right: 10px;
    }

    .contact-page__office,
    .contact-page__form-box {
        padding-left: 16px;
        padding-right: 16px;
    }

    .contact-page__form-box h1 {
        font-size: 22px;
    }

}

/* contact page section  */



.woocommerce {
    max-width: 100% !important
    ;
    margin: auto !important
    ;
    padding: 0px !important
    ;
    display:unset !important
    ;
    gap: 0px !important
    ;
    align-items: unset !important
    ;
    font-family: inherit !important
    ;
}




