/*==================================================
    SHOPHOST THEME
    Premium Ecommerce Theme
==================================================*/

/*==============================
    GOOGLE FONT
==============================*/
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');


/*==============================
    ROOT VARIABLES
==============================*/

:root {
    /* Colors */
    --primary: #111111;
    --secondary: #555555;
    --heading: #1A1A1A;
    --text: #666666;
    --white: #ffffff;
    --black: #000000;
    --light: #f8f8f8;
    --section: #f5f5f5;
    --border: #ececec;
    --success: #28C76F;
    --danger: #EA5455;
    --warning: #FF9F43;
    --accent: #D51243;

    /* Header */
    --header-height: 82px;
    --announcement-height: 42px;

    /* Font */
    --font-family: 'Plus Jakarta Sans', sans-serif;
    --fs-12: 12px;
    --fs-13: 13px;
    --fs-14: 14px;
    --fs-15: 15px;
    --fs-16: 16px;
    --fs-18: 18px;
    --fs-20: 20px;
    --fs-22: 22px;
    --fs-24: 24px;
    --fs-28: 28px;
    --fs-32: 32px;
    --fs-36: 36px;
    --fs-42: 42px;
    --fs-48: 48px;
    --fs-56: 56px;

    /* Font Weight */
    --fw-300: 300;
    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
    --fw-700: 700;
    --fw-800: 800;

    /* Radius */
    --radius-xs: 4px;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 100px;

    /* Shadow */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, .05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, .08);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, .12);

    /* Transition */
    --transition: .35s ease;

    /* Container */
    --container: 1440px;

    /* Z Index */
    --z-header: 999;
    --z-dropdown: 998;
    --z-drawer: 9999;
    --z-overlay: 9998;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text);
    background: var(--white);
    font-size: 15px;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    transition: var(--transition);
}

input,
textarea,
select {
    outline: none;
    border: none;
    font-family: inherit;
}

.container-fluid {
    width: 100%;
    /* max-width: var(--container); */
    margin: auto;
    padding: 0 25px;
}

section {
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading);
    font-weight: 700;
}

::selection {
    background: #111111;
    color: #fff;
}

/* Header Code */
/*==================================================
RESET
==================================================*/

.main-header *,
.main-header *::before,
.main-header *::after {

    box-sizing: border-box;

}

.main-header ul,
.main-header li {

    margin: 0;
    padding: 0;
    list-style: none;

}

.main-header a {

    text-decoration: none;

}

/*==================================================
ANNOUNCEMENT BAR
==================================================*/

.announcement-bar {

    height: 42px;

    background: #111;

    color: #fff;

    position: relative;

    z-index: 1200;

}

.announcement-wrapper {

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}

.announcement-left,
.announcement-center,
.announcement-right {

    flex: 1;

    display: flex;

    align-items: center;

    height: 100%;

}

.announcement-left {

    justify-content: flex-start;

    font-size: 13px;

    font-weight: 500;

}

.announcement-center {

    justify-content: center;

    font-size: 13px;

    font-weight: 600;

}

.announcement-right {

    justify-content: flex-end;

    gap: 24px;

}

.announcement-right a {

    color: #fff;

    font-size: 13px;

    transition: .3s;

}

.announcement-right a:hover {

    opacity: .75;

}

/*==================================================
HEADER
==================================================*/

.main-header {

    position: relative;

    background: #fff;

    border-bottom: 1px solid var(--header-border);

    z-index: 1100;

}

.main-header>.container-fluid {

    /* max-width: 1680px; */

    width: 100%;

    margin: auto;

    padding-left: 35px;

    padding-right: 35px;

}

.header-wrapper {

    position: relative;

    display: grid;

    grid-template-columns: 240px 1fr 240px;

    align-items: center;

    height: 82px;

}

/*==================================================
LOGO
==================================================*/

.logo {

    display: block;

    max-width: 190px;

    max-height: 42px;

    width: auto;

    height: auto;

    object-fit: contain;

}

.header-logo {

    display: flex;

    align-items: center;

}

.header-logo span {

    font-size: 28px;

    font-weight: 700;

    color: #222;

}

/*==================================================
DESKTOP NAVIGATION
==================================================*/

.desktop-menu {

    display: flex;

    justify-content: center;

    align-items: center;

    height: 100%;

}

.desktop-menu>ul {

    display: flex;

    align-items: center;

    justify-content: center;

    height: 100%;

    gap: 42px;

}

.desktop-menu>ul>li {

    position: static;

    height: 100%;

}

.desktop-menu>ul>li>a {

    height: 82px;

    display: flex;

    align-items: center;

    position: relative;

    color: #222;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: .2px;

    transition: .25s;

}

.desktop-menu>ul>li>a:hover {

    color: var(--header-hover);

}

/*==================================================
ACTIVE LINE
==================================================*/

.desktop-menu>ul>li>a::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 0;

    height: 2px;

    background: var(--header-hover);

    transition: .3s;

    transform: translateX(-50%);

}

.desktop-menu>ul>li:hover>a::after {

    width: 100%;

}

.desktop-menu>ul>li:hover>a {

    color: var(--header-hover);

}

/*==================================================
HEADER RIGHT
==================================================*/

.header-icons {

    display: flex;

    justify-content: flex-end;

    align-items: center;

    height: 100%;

}

.header-icons>a {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;

    height: 38px;

    color: #222;

    font-size: 22px;

    transition: .25s;

}

.header-icons>a:hover {

    color: var(--header-hover);

}

/*==================================================
LOGIN
==================================================*/

.sub-top {

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;

    line-height: 1.25;

    margin-right: 8px;

}

.sub-top .tf-btn {

    color: #222;

    font-size: 16px;

    font-weight: 600;

    transition: .25s;

}

.sub-top .tf-btn:hover {

    color: var(--header-hover);

}

.sub-top p {

    margin: 3px 0 0;

    font-size: 13px;

    color: #777;

    white-space: nowrap;

}

.sub-top p a {

    color: #222;

    font-weight: 600;

}

.sub-top p a:hover {

    color: var(--header-hover);

}

/*==================================================
CART COUNT
==================================================*/

.count {

    position: absolute;

    top: 5px;

    right: 4px;

    width: 14px;

    height: 14px;

    border-radius: 50%;

    background: #111;

    color: #fff;

    font-size: 10px;

    font-weight: 600;

    display: flex;

    align-items: center;

    justify-content: center;

}

/*==================================================
MOBILE BUTTON
==================================================*/

.mobile-toggle {

    display: none;

    width: 40px;

    height: 40px;

    border: none;

    background: none;

    padding: 0;

    font-size: 26px;

    color: #222;

    cursor: pointer;

}

/*==================================================
STICKY
==================================================*/

.main-header.sticky {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    animation: headerDown .35s ease;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    z-index: 99999;

}

@keyframes headerDown {

    from {

        transform: translateY(-100%);

    }

    to {

        transform: translateY(0);

    }

}

/*==================================================
MEGA MENU
PART 2
==================================================*/

/* Parent */

.desktop-menu>ul>li.menu-item {

    position: static;

}

/*==============================
MEGA MENU
==============================*/

.sub-menu {

    position: absolute;

    left: 0;

    top: 100%;

    width: 100%;

    background: #fff;

    border-top: 1px solid #efefef;

    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition:
        opacity .28s ease,
        transform .28s ease,
        visibility .28s;

    z-index: 9999;

    pointer-events: none;

}

/* Hover */

.menu-item:hover>.sub-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;

}

/*==============================
CONTAINER
==============================*/

.sub-menu>.container {

    max-width: 1680px;

    margin: auto;

    padding: 45px 35px;

}

/*==============================
ROW
==============================*/

.sub-menu .row {

    display: flex;

    flex-wrap: wrap;

    margin-left: -15px;

    margin-right: -15px;

}

.sub-menu [class*="col-"] {

    padding-left: 15px;

    padding-right: 15px;

}

/*==============================
COLUMN
==============================*/

.mega-menu-item {

    margin-bottom: 25px;

}

/*==============================
HEADING
==============================*/

.menu-heading {

    margin-bottom: 18px;

}

.menu-heading>a {

    display: inline-block;

    font-size: 15px;

    font-weight: 700;

    color: #111;

    line-height: 1.4;

    transition: .25s;

}

.menu-heading>a:hover {

    color: #d3122a;

}

/* underline */

.menu-heading>a::after {

    content: "";

    display: block;

    margin-top: 8px;

    width: 28px;

    height: 2px;

    background: #111;

    transition: .25s;

}

.menu-heading>a:hover::after {

    width: 45px;

    background: #d3122a;

}

/*==============================
LIST
==============================*/

.menu-list {

    margin: 0;

    padding: 0;

    list-style: none;

}

.menu-list li {

    margin-bottom: 11px;

    border: none;

}

.menu-list li:last-child {

    margin-bottom: 0;

}

.menu-list li a {

    display: inline-block;

    font-size: 14px;

    font-weight: 400;

    color: #666;

    transition: .25s;

    position: relative;

}

/* hover line */

.menu-list li a::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: -2px;

    width: 0;

    height: 1px;

    background: #d3122a;

    transition: .25s;

}

.menu-list li a:hover {

    color: #d3122a;

    padding-left: 6px;

}

.menu-list li a:hover::before {

    width: 100%;

}

/*==============================
IMAGE BLOCK
==============================*/

.mega-banner {

    position: relative;

    overflow: hidden;

}

.mega-banner img {

    width: 100%;

    display: block;

    transition: .5s;

}

.mega-banner:hover img {

    transform: scale(1.06);

}

.mega-banner-content {

    position: absolute;

    left: 35px;

    bottom: 35px;

    color: #fff;

}

.mega-banner-content h5 {

    font-size: 15px;

    margin-bottom: 8px;

    font-weight: 500;

}

.mega-banner-content h3 {

    font-size: 30px;

    font-weight: 700;

    margin-bottom: 18px;

}

.mega-banner-content a {

    display: inline-flex;

    align-items: center;

    height: 42px;

    padding: 0 28px;

    border: 2px solid #fff;

    color: #fff;

    transition: .3s;

}

.mega-banner-content a:hover {

    background: #fff;

    color: #111;

}

/*==============================
DROPDOWN
==============================*/

.dropdown {

    position: absolute;

    top: 100%;

    left: 0;

    width: 250px;

    background: #fff;

    border: 1px solid #ececec;

    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: .3s;

    padding: 15px 0;

    z-index: 9999;

}

.has-dropdown:hover>.dropdown {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

.dropdown li {

    border: none;

}

.dropdown li a {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 12px 22px;

    color: #555;

    font-size: 14px;

    transition: .25s;

}

.dropdown li a:hover {

    background: #fafafa;

    color: #d3122a;

    padding-left: 28px;

}

/*==============================
SECOND LEVEL
==============================*/

.dropdown .dropdown {

    left: 100%;

    top: -15px;

}

/*==============================
ANIMATION
==============================*/

.sub-menu * {

    opacity: 0;

    transform: translateY(12px);

    transition: .3s;

}

.menu-item:hover .sub-menu * {

    opacity: 1;

    transform: none;

}

.menu-item:hover .mega-menu-item:nth-child(1) {

    transition-delay: .05s;

}

.menu-item:hover .mega-menu-item:nth-child(2) {

    transition-delay: .08s;

}

.menu-item:hover .mega-menu-item:nth-child(3) {

    transition-delay: .11s;

}

.menu-item:hover .mega-menu-item:nth-child(4) {

    transition-delay: .14s;

}

.menu-item:hover .mega-menu-item:nth-child(5) {

    transition-delay: .17s;

}

.menu-item:hover .mega-menu-item:nth-child(6) {

    transition-delay: .20s;

}

/*==============================
RESPONSIVE
==============================*/

@media (max-width:1199px) {

    .sub-menu {

        display: none;

    }

}

/*==================================================
SHOPHOST MOBILE DRAWER
PART 3A
==================================================*/

/*==============================
OVERLAY
==============================*/

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 999998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
    touch-action: none;
}

/*==============================
MOBILE DRAWER
==============================*/

.mobile-menu {

    position: fixed;

    top: 0;

    left: -100%;

    width: 360px;

    max-width: 88%;

    height: 100vh;

    background: #fff;

    z-index: 999999;

    transition: left .35s ease;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    box-shadow: 15px 0 40px rgba(0, 0, 0, .15);

}

.mobile-menu.active {

    left: 0;

}

/*==============================
HEADER
==============================*/

.mobile-top {

    height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 20px;

    border-bottom: 1px solid #ececec;

    flex-shrink: 0;

    background: #fff;

}

.mobile-logo {

    display: flex;

    align-items: center;

}

.mobile-logo img {

    height: 34px;

    width: auto;

}

.mobile-logo span {

    font-size: 22px;

    font-weight: 700;

    color: #222;

}

/*==============================
CLOSE BUTTON
==============================*/

.close-menu {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    font-size: 24px;

    transition: .3s;

    color: #222;

}

.close-menu:hover {

    background: #f5f5f5;

    transform: rotate(90deg);

}

/*==============================
TABS
==============================*/

.mobile-tabs {

    display: flex;

    padding: 15px;

    gap: 10px;

    border-bottom: 1px solid #eee;

    background: #fff;

}

.mobile-tabs button {

    flex: 1;

    height: 42px;

    border: none;
    padding: 10px 20px;
    border-radius: 40px;

    background: #f4f4f4;

    font-size: 14px;

    font-weight: 600;

    color: #555;

    cursor: pointer;

    transition: .3s;

}

.mobile-tabs button.active {

    background: #111;

    color: #fff;

}

/*==============================
CONTENT
==============================*/

.tab-content {

    flex: 1;

    overflow: hidden;

    display: none;

    position: relative;

}

.tab-content.active {

    display: block;

}

/*==============================
SCROLL AREA
==============================*/

.mobile-scroll {

    height: 100%;

    overflow-y: auto;

    overflow-x: hidden;

    -webkit-overflow-scrolling: touch;

}

.mobile-scroll::-webkit-scrollbar {

    width: 5px;

}

.mobile-scroll::-webkit-scrollbar-thumb {

    background: #d8d8d8;

    border-radius: 30px;

}

/*==============================
LEVEL
==============================*/

.menu-level {

    position: absolute;

    inset: 0;

    background: #fff;

    transition: .35s ease;

    overflow-y: auto;

    left: 100%;

}

.level-1 {

    left: 0;

}

.menu-level.active {

    left: 0;

}

/*==============================
LIST
==============================*/

.menu-level ul {

    margin: 0;

    padding: 0;

    list-style: none;

}

.menu-level li {

    border-bottom: 1px solid #f2f2f2;

}

.menu-level li:last-child {

    border-bottom: none;

}

/*==============================
LINK
==============================*/

.menu-level li>a {

    height: 56px;

    padding: 0 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #222;

    font-size: 15px;

    font-weight: 500;

    transition: .25s;

}

.menu-level li>a:hover {

    background: #fafafa;

    color: #d3122a;

}

.menu-level li>a i {

    font-size: 18px;

    color: #999;

}

/*==============================
HAS CHILD
==============================*/

.has-child>a {

    font-weight: 600;

}

/*==============================
BACK
==============================*/

.back-btn {

    height: 56px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 0 20px;

    background: #fafafa;

    border-bottom: 1px solid #ececec;

    cursor: pointer;

    font-weight: 600;

    font-size: 15px;

}

.back-btn i {

    font-size: 20px;

}

/*==============================
BOTTOM
==============================*/

.mobile-bottom {

    padding: 25px 20px;

    border-top: 1px solid #ececec;

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.mobile-bottom a {

    display: flex;

    align-items: center;

    gap: 12px;

    color: #222;

    font-size: 15px;

    font-weight: 500;

}

.mobile-bottom i {

    font-size: 20px;

    width: 22px;

}

/*==============================
SUPPORT
==============================*/

.mobile-support {

    margin: 20px;

    padding: 18px;

    border-radius: 14px;

    background: #f8f8f8;

}

.mobile-support h5 {

    margin: 0 0 10px;

    font-size: 16px;

    font-weight: 700;

}

.mobile-support p {

    margin: 0 0 6px;

    color: #666;

    font-size: 14px;

}

.mobile-support span {

    font-size: 16px;

    font-weight: 700;

    color: #111;

}

/*==============================
ACCOUNT BOX
==============================*/

.mobile-account {

    padding: 20px;

    border-top: 1px solid #ececec;

}

.mobile-account .btn {

    width: 100%;

    height: 46px;

    border-radius: 6px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 12px;

    font-weight: 600;

}

.mobile-account .login {

    background: #111;

    color: #fff;

}

.mobile-account .register {

    border: 1px solid #ddd;

    color: #222;

    background: #fff;

}

.mobile-account .register:hover {

    background: #111;

    color: #fff;

    border-color: #111;

}

/*==================================================
SHOPHOST MOBILE
PART 3B
==================================================*/

/*==============================
SLIDE LEVEL
==============================*/

.menu-level {

    transform: translateX(100%);

    opacity: 0;

    visibility: hidden;

    transition:
        transform .35s cubic-bezier(.4, 0, .2, 1),
        opacity .25s ease,
        visibility .25s;

}

.menu-level.level-1 {

    transform: translateX(0);

    opacity: 1;

    visibility: visible;

}

.menu-level.active {

    transform: translateX(0);

    opacity: 1;

    visibility: visible;

}

/*==============================
PREVIOUS LEVEL
==============================*/

.menu-level.prev {

    transform: translateX(-25%);

    opacity: 0;

    visibility: hidden;

}

/*==============================
ARROW
==============================*/

.has-child>a i {

    transition: .3s;

}

.has-child:hover>a i {

    transform: translateX(4px);

}

/*==============================
ACTIVE
==============================*/

.menu-level a.active {

    color: #d3122a;

    font-weight: 600;

}

.menu-level a.active::before {

    content: "";

    width: 4px;

    height: 20px;

    background: #d3122a;

    border-radius: 5px;

    margin-right: 12px;

}

/*==============================
CATEGORY GRID
==============================*/

.category-list {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    padding: 20px;

}

.category-list li {

    list-style: none;

    border: 1px solid #ececec;

    border-radius: 12px;

    background: #fff;

    transition: .3s;

    overflow: hidden;

}

.category-list li:hover {

    transform: translateY(-4px);

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

}

.category-list a {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 15px;

    color: #222;

    text-align: center;

    font-size: 14px;

    font-weight: 600;

}

.category-list img {

    width: 68px;

    height: 68px;

    object-fit: cover;

    border-radius: 12px;

    margin-bottom: 12px;

}

/*==============================
SCROLLBAR
==============================*/

.mobile-scroll {

    scrollbar-width: thin;

    scrollbar-color: #d8d8d8 transparent;

}

/*==============================
BOTTOM ANIMATION
==============================*/

.mobile-bottom a {

    transition: .3s;

}

.mobile-bottom a:hover {

    padding-left: 8px;

    color: #d3122a;

}

/*==============================
SUPPORT
==============================*/

.mobile-support {

    transition: .3s;

}

.mobile-support:hover {

    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);

}

/*==============================
DRAWER ANIMATION
==============================*/

.mobile-menu {

    will-change: left;

}

.mobile-menu.active {

    animation: drawerOpen .35s ease;

}

@keyframes drawerOpen {

    from {

        transform: translateX(-40px);

        opacity: .8;

    }

    to {

        transform: none;

        opacity: 1;

    }

}

/*==============================
HEADER ICONS MOBILE
==============================*/

@media (max-width:991px) {

    .announcement-center,
    .announcement-right {

        display: none;

    }

    .announcement-left {

        justify-content: center;

        width: 100%;

        flex: unset;

        font-size: 12px;

    }

    .main-header>.container-fluid {

        padding-left: 16px;

        padding-right: 16px;

    }

    .header-wrapper {

        display: flex;

        align-items: center;

        justify-content: space-between;

        height: 70px;

    }

    .desktop-menu {

        display: none;

    }

    .mobile-toggle {

        display: flex;

        align-items: center;

        justify-content: center;

        width: 42px;

        height: 42px;

    }

    .header-logo {

        position: absolute;

        left: 50%;

        transform: translateX(-50%);

    }


    .header-icons .sub-top {

        display: none;

    }

    .header-icons a {

        width: 36px;

        height: 36px;

        font-size: 21px;

    }

    .logo {

        max-height: 34px;

        max-width: 150px;

    }

    @media(max-width:991px) {

        .main-header {

            z-index: 1000;

        }

        .mobile-menu {

            z-index: 999999;

        }

        .overlay {

            z-index: 999998;

        }

    }

}

/*==============================
TABLET
==============================*/

@media (min-width:992px) {

    .mobile-menu {

        display: none;

    }

    .overlay {

        display: none;

    }

    .mobile-toggle {

        display: none;

    }

}

/*==============================
SMALL PHONE
==============================*/

@media (max-width:480px) {

    .mobile-menu {

        width: 100%;

        max-width: 100%;

    }

    .category-list {

        grid-template-columns: 1fr;

    }

    .mobile-tabs {

        padding: 12px;

    }

    .mobile-tabs button {

        font-size: 13px;

    }

}

/*==============================
IOS FIX
==============================*/

@supports (-webkit-touch-callout:none) {

    .mobile-menu {

        height: -webkit-fill-available;

    }

}

/*==============================
    REDUCE MOTION
    ==============================*/

@media (prefers-reduced-motion:reduce) {

    .mobile-menu,
    .menu-level,
    .overlay,
    .header-icons a,
    .mobile-bottom a {

        transition: none !important;

        animation: none !important;

    }

}

.header-account {

    position: relative;

}

.header-icon {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 22px;

    color: #222;

    transition: .3s;

}

.header-icon:hover {

    color: #d3122a;

}

.account-dropdown {

    position: absolute;

    top: 100%;

    right: 0;

    width: 260px;

    background: #fff;

    border-radius: 10px;

    box-shadow: 0 18px 45px rgba(0, 0, 0, .10);

    padding: 20px;

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: .3s;

    z-index: 9999;

}

.header-account:hover .account-dropdown {

    opacity: 1;

    visibility: visible;

    transform: translateY(10px);

}

.account-dropdown h5 {

    font-size: 18px;

    margin-bottom: 6px;

}

.account-dropdown p {

    font-size: 13px;

    color: #777;

    margin-bottom: 18px;

}

.account-dropdown>a {

    display: flex;

    align-items: center;

    gap: 12px;

    height: 46px;

    color: #222;

    border-radius: 8px;

    padding: 0 15px;

    transition: .3s;

}

.account-dropdown>a:hover {

    background: #f8f8f8;

    color: #d3122a;

}

.count-box {

    position: absolute;
    top: 5px;
    right: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;

}

.btn-login {

    justify-content: center;

    background: #111;

    color: #fff !important;

    border-radius: 8px;

    margin-bottom: 10px;

}

.btn-login:hover {

    background: #d3122a !important;

    color: #fff !important;

}

.btn-register {

    justify-content: center;

    border: 1px solid #ddd;

}






/*=========================================
            HERO SLIDER
=========================================*/

#hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    /* height: calc(100vh - var(--header-height)); */
    /* min-height: 680px; */
    overflow: hidden;
    background: #f4f4f4;
}

.hero-slide.swiper-slide {
    position: relative;
    height: 100%;
    overflow: hidden;
}

/*=========================================
            BACKGROUND
=========================================*/

.hero-bg {
    position:relative;
    width:100%;
}

.hero-bg img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 8s ease;
}

.swiper-slide-active .hero-bg img {
    transform: scale(1.08);
}
.product-colors{
    justify-content: center;
}
.product-details{

}
/*=========================================
            OVERLAY
=========================================*/

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, .55) 0%,
            rgba(0, 0, 0, .20) 35%,
            rgba(0, 0, 0, 0) 70%);
    z-index: 2;
}

/*=========================================
            CAPTION
=========================================*/

.hero-caption {
    position: absolute;
    top: 50%;
    left: 7%;
    transform: translateY(-50%);
    max-width: 620px;
    z-index: 5;
    color: #fff;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #fff;
}

.hero-subtitle::before {
    content: "";
    width: 50px;
    height: 2px;
    background: #fff;
}

.hero-caption h1 {
    font-size: 76px;
    line-height: 1;
    font-weight: 800;
    margin-bottom: 22px;
    color: #fff;
}

.hero-caption h1 strong {
    display: block;
    font-weight: 800;
    color: #fff;
}

.hero-caption p {
    font-size: 18px;
    line-height: 1.9;
    max-width: 520px;
    margin-bottom: 38px;
    color: rgba(255, 255, 255, .88);
}

/*=========================================
            BUTTONS
=========================================*/

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
}

.hero-btn {
    height: 58px;
    padding: 0 34px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #111;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    transition: .35s;
}

.hero-btn:hover {
    transform: translateY(-4px);
    background: var(--primary);
    color: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.hero-btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .65);
    color: #fff;
}

.hero-btn-outline:hover {
    background: #fff;
    border-color: #fff;
    color: #111;
}

/*=========================================
            TEXT ANIMATION
=========================================*/

.swiper-slide-active .hero-subtitle {
    animation: fadeUp .5s .2s both;
}

.swiper-slide-active h1 {
    animation: fadeUp .6s .4s both;
}

.swiper-slide-active p {
    animation: fadeUp .6s .6s both;
}

.swiper-slide-active .hero-buttons {
    animation: fadeUp .6s .8s both;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/*=========================================
            HERO NAVIGATION
=========================================*/

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: .35s;
    z-index: 20;
}

.hero-prev {
    left: 35px;
}

.hero-next {
    right: 35px;
}

.hero-prev:hover,
.hero-next:hover {
    background: #fff;
    color: #111;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

/*=========================================
            PAGINATION
=========================================*/

.hero-pagination {
    position: absolute;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);
    z-index: 30;
}

.hero-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 6px !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    opacity: 1;
    transition: .35s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 42px;
    border-radius: 30px;
    background: #fff;
}

/*=========================================
            SCROLL
=========================================*/

.hero-scroll {
    position: absolute;
    right: 35px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 20;
}

.hero-scroll span {
    writing-mode: vertical-rl;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #fff;
}

.hero-scroll::after {
    content: "";
    width: 2px;
    height: 70px;
    background: #fff;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {

    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }

}

/*=========================================
            SOCIAL
=========================================*/

.hero-social {
    position: absolute;
    left: 35px;
    bottom: 35px;
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 20;
}

.hero-social a {
    position: relative;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #fff;
    transition: .35s;
}

.hero-social a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .35s;
}

.hero-social a:hover::after {
    width: 100%;
}

/*=========================================
            IMAGE EFFECT
=========================================*/

.swiper-slide-active .hero-bg img {
    animation: heroZoom 10s linear forwards;
}

@keyframes heroZoom {

    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }

}

/*=========================================
            CONTENT EFFECT
=========================================*/

.hero-caption {
    transition: .5s;
}

.swiper-slide-active .hero-caption {
    animation: captionFade .8s ease;
}

@keyframes captionFade {

    from {
        opacity: 0;
        transform: translate(-40px, -50%);
    }

    to {
        opacity: 1;
        transform: translate(0, -50%);
    }

}

/*=========================================
            DARK OVERLAY
=========================================*/

.hero-overlay::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom,
            rgba(0, 0, 0, .05),
            rgba(0, 0, 0, .12));
}

/*=========================================
            HOVER
=========================================*/

.hero-btn i {
    transition: .35s;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

/*=========================================
            1600px
=========================================*/

@media (max-width:1600px) {

    /* .hero-slider {
        min-height: 720px;
    } */

    .hero-caption {
        left: 6%;
        max-width: 560px;
    }

    .hero-caption h1 {
        font-size: 68px;
    }

    .hero-caption p {
        font-size: 17px;
    }

    .hero-prev {
        left: 25px;
    }

    .hero-next {
        right: 25px;
    }

    .hero-social {
        left: 25px;
    }

    .hero-scroll {
        right: 25px;
    }

}

/*=========================================
            1400px
=========================================*/

@media (max-width:1400px) {

    /* .hero-slider {
        min-height: 680px;
    } */

    .hero-caption h1 {
        font-size: 60px;
    }

    .hero-caption {
        max-width: 520px;
    }

    .hero-btn {
        height: 54px;
        padding: 0 28px;
    }

    .hero-prev,
    .hero-next {
        width: 56px;
        height: 56px;
        font-size: 26px;
    }

}

/*=========================================
            1200px
=========================================*/

@media (max-width:1200px) {

    /* .hero-slider {
        min-height: 620px;
    } */

    .hero-caption {
        left: 5%;
        max-width: 470px;
    }

    .hero-caption h1 {
        font-size: 52px;
    }

    .hero-caption p {
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-btn {
        padding: 0 24px;
    }

}

/*=========================================
            TABLET
=========================================*/

@media (max-width:991px) {

    /* .hero-slider {
        height: 620px;
        min-height: 620px;
    } */

    .hero-caption {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 620px;
        text-align: center;
    }

    .swiper-slide-active .hero-caption {
        animation: none;
    }

    .hero-subtitle {
        justify-content: center;
    }

    .hero-subtitle::before {
        display: none;
    }

    .hero-caption h1 {
        font-size: 46px;
    }

    .hero-caption p {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-prev,
    .hero-next {
        display: none;
    }

    .hero-scroll {
        display: none;
    }

    .hero-social {
        display: none;
    }

    .hero-overlay {
        background: linear-gradient(180deg,
                rgba(0, 0, 0, .55),
                rgba(0, 0, 0, .30));
    }

}

/*=========================================
            MOBILE
=========================================*/

@media (max-width:767px) {

    /* .hero-slider {
        height: 540px;
        min-height: 540px;
    } */

    .hero-caption {
        width: 92%;
    }

    .hero-caption h1 {
        font-size: 38px;
        line-height: 1.15;
    }

    .hero-caption p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-btn {
        height: 50px;
        padding: 0 22px;
        font-size: 14px;
    }

    .hero-pagination {
        bottom: 22px;
    }

    .hero-pagination span {
        width: 10px;
        height: 10px;
    }

    .hero-pagination span.active {
        width: 30px;
    }

}

/*=========================================
            SMALL MOBILE
=========================================*/

@media (max-width:575px) {

    /* .hero-slider {
        height: 500px;
        min-height: 500px;
    } */

    .hero-caption {
        width: 90%;
    }

    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .hero-caption h1 {
        font-size: 32px;
        margin-bottom: 18px;
    }

    .hero-caption p {
        font-size: 14px;
        margin-bottom: 22px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero-btn,
    .hero-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-pagination {
        bottom: 16px;
    }

}

/*=========================================
            EXTRA SMALL
=========================================*/

@media (max-width:380px) {

    /* .hero-slider {
        height: 460px;
        min-height: 460px;
    } */

    .hero-caption h1 {
        font-size: 28px;
    }

    .hero-caption p {
        font-size: 13px;
    }

    .hero-btn {
        height: 46px;
        font-size: 13px;
    }

}


/*==================================
        OFFER BANNER
==================================*/

#offer-banner {
    padding: 30px 0;
    background: #fff;
}

.offer-banner {
    background: #000;
    padding: 55px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    overflow: hidden;
    position: relative;
}

.offer-banner::before {
    content: "";
    position: absolute;
    left: -150px;
    top: -150px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, .03);
    border-radius: 50%;
}

.offer-banner::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, .03);
    border-radius: 50%;
}

.offer-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    font-size: 32px;
    color: #ff2d2d;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.offer-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.offer-text h3 {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.offer-discount {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.offer-discount span {
    font-size: 26px;
    font-weight: 800;
    color: white;
    line-height: 1;
    text-transform: uppercase;
    transition: all 0.3s;
}

.offer-discount span:hover {
    color: red;
}

.offer-discount h2 {
    font-size: 84px;
    font-weight: 800;
    line-height: .9;
    margin: 0;
    color: #ff2d2d;
}

.offer-btn {
    position: relative;
    z-index: 2;
}

.theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 52px;
    padding: 0 22px;
    background: #fff;
    color: #111;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: .35s;
}

.theme-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.offer-banner:hover .offer-icon {
    animation: flash .6s;
}

@keyframes flash {

    0%,
    100% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(-12deg);
    }

    50% {
        transform: rotate(12deg);
    }

    75% {
        transform: rotate(-8deg);
    }

}

/*==================================
        OFFER RESPONSIVE
==================================*/

@media(max-width:1200px) {

    .offer-banner {
        padding: 45px;
    }

    .offer-text h3 {
        font-size: 34px;
    }

    .offer-discount h2 {
        font-size: 62px;
    }

}

@media(max-width:991px) {

    .offer-banner {
        flex-direction: column;
        text-align: center;
        padding: 45px 25px;
    }

    .offer-discount {
        justify-content: center;
    }

    .offer-btn {
        margin-top: 15px;
    }

    .offer-text h3 {
        font-size: 30px;
    }

    .offer-discount h2 {
        font-size: 52px;
    }

}

@media(max-width:576px) {
    .header-logo span {
        font-size: 18px;
    }

    #offer-banner {
        padding: 50px 0;
    }

    .offer-banner {
        padding: 35px 20px;
    }

    .offer-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .offer-text h3 {
        font-size: 24px;
    }

    .offer-discount {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .offer-discount span {
        font-size: 18px;
    }

    .offer-discount h2 {
        font-size: 42px;
    }

    .theme-btn {
        width: 100%;
        height: 54px;
    }

}


/*=========================================
        COLLECTION GRID
=========================================*/

#collection-grid {
    padding-bottom: 30px;
    background: #fff;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/*==============================
    CARD
==============================*/

.collection-card {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    background: #f5f5f5;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 1s cubic-bezier(.2, .8, .2, 1);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .55),
            rgba(0, 0, 0, .15),
            transparent);
    transition: .35s;
}

.collection-content {
    position: absolute;
    left: 30px;
    bottom: 28px;
    z-index: 2;
    color: #fff;
    transition: .35s;
}

.collection-content span {
    display: block;
    font-size: 18px;
    font-style: italic;
    font-family: Georgia, serif;
    margin-bottom: 4px;
}

.collection-content h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0;
}

/*==============================
    TOP ROW
==============================*/

.card-1,
.card-2,
.card-3 {
    aspect-ratio: 0.9/1;
}

/*==============================
    BOTTOM GRID
==============================*/

.collection-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-top: 18px;
    align-items: stretch;
}

/* Left Big Card */

.card-4 {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
}

/* Right Side */

.collection-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 18px;
    height: 100%;
}

/* Right Cards */

.card-5,
.card-6,
.card-7,
.card-8 {
    aspect-ratio: 1/1;
    width: 100%;
    height: 100%;
}

/*==============================
    HOVER
==============================*/

.collection-card:hover img {
    transform: scale(1.08);
}

.collection-card:hover .collection-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, .7),
            rgba(0, 0, 0, .25),
            transparent);
}

.collection-card:hover .collection-content {
    transform: translateY(-8px);
}

.collection-card::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .18),
            transparent);
    transform: skewX(-20deg);
    transition: 1s;
    z-index: 2;
}

.collection-card:hover::before {
    left: 150%;
}

/*==============================
    TABLET
==============================*/

@media(max-width:1199px) {

    .collection-grid {
        grid-template-columns: 1fr 1fr;
    }

    .card-1,
    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6,
    .card-7,
    .card-8 {
        aspect-ratio: 1.2/1;
    }

    .collection-bottom {
        grid-template-columns: 1fr;
    }

    .collection-right {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-4 {
        aspect-ratio: 1.2/1;
    }
}

/*==============================
    MOBILE
==============================*/

@media(max-width:767px) {

    #collection-grid {
        padding: 50px 0;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .collection-right {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .card-1,
    .card-2,
    .card-3,
    .card-4,
    .card-5,
    .card-6,
    .card-7,
    .card-8 {
        aspect-ratio: 1/1;
    }

    .collection-content {
        left: 20px;
        bottom: 20px;
    }

    .collection-content span {
        font-size: 15px;
    }

    .collection-content h3 {
        font-size: 22px;
    }

    .collection-card:hover img {
        transform: none;
    }

    .collection-card:hover .collection-content {
        transform: none;
    }

    .collection-bottom {
        grid-template-columns: 1fr;
    }

    .collection-right {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-4 {
        aspect-ratio: 1.2/1;
    }

}



/*=========================================
        FEATURED PRODUCTS
=========================================*/

#featured-products {
    padding: 40px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

#featured-products .container-fluid {
    max-width: 1800px;
    margin: auto;
    padding: 0 20px;
}

/*=========================================
            SECTION TITLE
=========================================*/

.section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.section-heading .sub-title {
    display: inline-block;
    color: var(--primary);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-heading h2 {
    font-size: 46px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
    line-height: 1.15;
}

.section-heading p {
    max-width: 650px;
    margin: auto;
    color: #777;
    font-size: 17px;
    line-height: 1.8;
}

/*=========================================
            SWIPER
=========================================*/

.product-slider {
    position: relative;
    overflow: hidden;
}

.product-slider .swiper-wrapper {
    align-items: stretch;
}

.product-slider .swiper-slide {
    height: auto;
}

/*=========================================
            PRODUCT CARD
=========================================*/

.product-card {
    position: relative;
    background: #fff;
    transition: .35s;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
}

.product-image a {
    display: block;
}

/*=========================================
            PRODUCT IMAGE
=========================================*/

.product-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: .7s cubic-bezier(.25, .46, .45, .94);
}

.front-img {
    opacity: 1;
    visibility: visible;
}

.back-img {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
}

.product-card:hover .front-img {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.06);
}

.product-card:hover .back-img {
    opacity: 1;
    visibility: visible;
    transform: scale(1.06);
}

/*=========================================
            IMAGE RATIO
=========================================*/

.product-image {
    aspect-ratio: 4 / 5.3;
}

.product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/*=========================================
            PRODUCT INFO
=========================================*/

.product-info {
    padding-top: 18px;
}

/*=========================================
            NAVIGATION
=========================================*/

.product-prev,
.product-next {
    position: absolute;
    top: 38%;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: .35s;
}

.product-prev {
    left: -27px;
}

.product-next {
    right: -27px;
}

.product-prev i,
.product-next i {
    font-size: 26px;
    color: #111;
}

.product-prev:hover,
.product-next:hover {
    background: #111;
}

.product-prev:hover i,
.product-next:hover i {
    color: #fff;
}

/*=========================================
            TABLET
=========================================*/

@media (max-width:991px) {

    #featured-products {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .product-prev,
    .product-next {
        display: none;
    }

}

/*=========================================
            MOBILE
=========================================*/

@media (max-width:576px) {

    #featured-products {
        padding: 55px 0;
    }

    #featured-products .container-fluid {
        padding: 0 15px;
    }

    .section-heading {
        margin-bottom: 30px;
    }

    .section-heading .sub-title {
        font-size: 13px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .section-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .product-info {
        padding-top: 14px;
    }

}

/*=========================================
            PRODUCT BADGES
=========================================*/

.product-badges {
    position: absolute;
    left: 15px;
    top: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 20;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 26px;
    padding: 0 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    border-radius: 30px;
    color: #fff;
    line-height: 1;
}

.badge.new {
    background: #111;
}

.badge.sale {
    background: #d51243;
}

.badge.preorder {
    background: #f5a623;
    color: #111;
}

/*=========================================
            PRODUCT ACTIONS
=========================================*/

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: .35s;
}

.product-card:hover .product-actions {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.product-actions a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    color: #111;
    font-size: 18px;
    transition: .3s;
}

.product-actions a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.product-actions a:nth-child(1) {
    transition-delay: .05s;
}

.product-actions a:nth-child(2) {
    transition-delay: .1s;
}

.product-actions a:nth-child(3) {
    transition-delay: .15s;
}

/*=========================================
            QUICK ADD
=========================================*/

.quick-add {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    height: 48px;
    line-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .5px;
    border-radius: 6px;
    transform: translateY(80px);
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 20;
    overflow: hidden;
}

.product-card:hover .quick-add {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.quick-add::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .25),
            transparent);
    transform: skewX(-25deg);
    transition: .8s;
}

.quick-add:hover::before {
    left: 150%;
}

.quick-add:hover {
    background: var(--accent);
    color: #fff;
}

/*=========================================
            MOBILE
=========================================*/

@media(max-width:767px) {

    .product-actions {
        opacity: 1;
        visibility: visible;
        transform: none;
        right: 10px;
        top: 10px;
        gap: 8px;
    }

    .product-actions a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .quick-add {
        position: absolute;
        /* left: auto;
        right: auto;
        bottom: auto;
        margin-top: 12px; */
        transform: none;
        opacity: 1;
        visibility: visible;
        height: 44px;
        font-size: 13px;
    }

    .product-badges {
        left: 10px;
        top: 10px;
    }

    .badge {
        height: 24px;
        min-width: 50px;
        font-size: 10px;
    }

}

/*=========================================
            PRODUCT INFO
=========================================*/

.product-info {
    padding: 18px 0 0;
    text-align: center;
}

.product-info h4 {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.product-info h4 a {
    color: #222;
    transition: .3s;
    display: block;
}

.product-info h4 a:hover {
    color: var(--accent);
}

/*=========================================
            RATING
=========================================*/

.product-rating {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
}

.product-rating i {
    font-size: 13px;
    color: #f8b84e;
}

.product-rating span {
    font-size: 13px;
    color: #777;
    margin-left: 5px;
}

/*=========================================
            PRICE
=========================================*/

.product-price {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.old-price {
    font-size: 15px;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
}

.new-price {
    font-size: 18px;
    font-weight: 700;
    color: #111;
}

/*=========================================
            COLOR SWATCHES
=========================================*/

.product-swatches {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.product-swatches span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #ddd;
    transition: .3s;
    position: relative;
}

.product-swatches span:hover {
    transform: scale(1.18);
    box-shadow: 0 0 0 2px #111;
}

.product-swatches span.active {
    box-shadow: 0 0 0 2px var(--primary);
}

/*=========================================
            PRODUCT CARD HOVER
=========================================*/

.product-card {
    transition: .35s ease;
}

.product-card:hover .product-info h4 {
    transform: translateY(-2px);
}

.product-card:hover .new-price {
    color: var(--accent);
}

.product-card:hover .product-swatches {
    transform: translateY(-2px);
}

.product-info h4,
.product-price,
.product-swatches {
    transition: .35s;
}

/*=========================================
            IMAGE ZOOM
=========================================*/

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/*=========================================
            MOBILE
=========================================*/

@media(max-width:991px) {

    .product-info h4 {
        font-size: 15px;
    }

    .new-price {
        font-size: 17px;
    }

    .old-price {
        font-size: 14px;
    }

    .product-swatches span {
        width: 20px;
        height: 20px;
    }

}

@media(max-width:576px) {

    .product-info {
        padding-top: 14px;
    }

    .product-info h4 {
        font-size: 14px;
    }

    .product-rating {
        margin-bottom: 8px;
    }

    .product-rating i {
        font-size: 12px;
    }

    .product-price {
        gap: 8px;
        margin-bottom: 10px;
    }

    .new-price {
        font-size: 16px;
    }

    .old-price {
        font-size: 13px;
    }

    .product-swatches {
        gap: 8px;
    }

    .product-swatches span {
        width: 18px;
        height: 18px;
    }

}

.product-card.dragging img {
    transition: none !important;
}


/*=========================================
            PROMO BANNER
=========================================*/

#promo-banner {
    padding-top: 30px;
    background: #fff;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.promo-card {
    position: relative;
    overflow: hidden;
    display: block;
    min-height: 570px;
    background: #f5f5f5;
}

.promo-image {
    width: 100%;
    height: 100%;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 1.4s cubic-bezier(.2, .8, .2, 1);
}

/*=========================================
            OVERLAY
=========================================*/

.promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .45),
            rgba(0, 0, 0, .15),
            rgba(0, 0, 0, .05));
    transition: .45s;
}

/*=========================================
            CONTENT
=========================================*/

.promo-content {
    position: absolute;
    left: 50%;
    bottom: 60px;
    width: 100%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    z-index: 5;
    padding: 0 25px;
}

.promo-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    opacity: .95;
}

.promo-content h2 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    color: #fff;
}

.promo-link {
    display: inline-block;
    position: relative;
    color: #fff;
    font-size: 23px;
    font-weight: 500;
    padding-bottom: 8px;
    transition: .35s;
}

.promo-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 170px;
    height: 2px;
    background: #fff;
    transform: translateX(-50%);
    transition: .4s;
}

/*=========================================
            HOVER
=========================================*/

.promo-card:hover img {
    transform: scale(1.08);
}

.promo-card:hover .promo-overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, .58),
            rgba(0, 0, 0, .22),
            rgba(0, 0, 0, .05));
}

.promo-card:hover .promo-content {
    transform: translate(-50%, -12px);
}

.promo-card:hover .promo-link {
    letter-spacing: 1px;
}

.promo-card:hover .promo-link::after {
    width: 220px;
}

/* Shine Effect */

.promo-card::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .22),
            transparent);
    transform: skewX(-25deg);
    transition: 1.1s;
    z-index: 6;
}

.promo-card:hover::before {
    left: 150%;
}

/* Border */

.promo-card::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .25);
    opacity: 0;
    transition: .35s;
    z-index: 4;
}

.promo-card:hover::after {
    opacity: 1;
}

.promo-content,
.promo-subtitle,
.promo-content h2,
.promo-link {
    transition: .4s;
}

/*=========================================
            LARGE DESKTOP
=========================================*/

@media(min-width:1600px) {
    .promo-card {
        min-height: 650px;
    }

    .promo-content h2 {
        font-size: 58px;
    }

}

/*=========================================
            TABLET
=========================================*/

@media(max-width:1200px) {
    .promo-card {
        min-height: 470px;
    }

    .promo-content {
        bottom: 45px;
    }

    .promo-content h2 {
        font-size: 38px;
    }

    .promo-link {
        font-size: 20px;
    }

}

@media(max-width:991px) {

    #promo-banner {
        padding: 60px 0;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .promo-card {
        min-height: 460px;
    }

}

/*=========================================
            MOBILE
=========================================*/

@media(max-width:767px) {
    .promo-card {
        min-height: 350px;
    }

    .promo-content {
        bottom: 28px;
        padding: 0 20px;
    }

    .promo-subtitle {
        font-size: 13px;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .promo-content h2 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .promo-link {
        font-size: 16px;
    }

    .promo-link::after {
        width: 120px;
    }

    .promo-card:hover .promo-link::after {
        width: 140px;
    }

}

@media(max-width:480px) {
    #promo-banner {
        padding: 45px 0;
    }

    .promo-card {
        min-height: 300px;
    }

    .promo-content h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .promo-link {
        font-size: 15px;
    }

    .promo-card::after {
        display: none;
    }

}

/*=========================================
            OFFER MARQUEE
=========================================*/

#offer-marquee {
    padding-top: 100px;
    padding-bottom: 60px;
    overflow: hidden;
    background: #fff;

}

.offer-marquee-wrap {

    background: #1f1f1f;
    transform: rotate(-3deg);
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;

}

.offer-track {

    display: flex;
    width: max-content;
    animation: offerMarquee 100s linear infinite;

}

.offer-item {

    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 90px;

}

.offer-sale {

    font-size: 38px;
    color: #fff;
    font-weight: 700;
    margin-right: 28px;
    letter-spacing: 1px;

}

.offer-text {

    color: #fff;
    font-size: 20px;
    font-weight: 500;
    opacity: .95;

}

/* Hover Pause */

.offer-marquee-wrap:hover .offer-track {

    animation-play-state: paused;

}

/* Animation */

@keyframes offerMarquee {

    from {

        transform: translateX(0);

    }

    to {

        transform: translateX(-50%);

    }

}

/*=========================================
            TABLET
=========================================*/

@media(max-width:991px) {

    .offer-sale {

        font-size: 42px;

    }

    .offer-text {

        font-size: 22px;

    }

    .offer-item {

        margin-right: 60px;

    }

}

/*=========================================
            MOBILE
=========================================*/

@media(max-width:767px) {

    #offer-marquee {

        padding: 70px 0;

    }

    .offer-marquee-wrap {

        padding: 14px 0;
        transform: rotate(-2deg);

    }

    .offer-sale {

        font-size: 30px;
        margin-right: 18px;

    }

    .offer-text {

        font-size: 16px;

    }

    .offer-item {

        margin-right: 40px;

    }

}


/*==================================================
HOT PRODUCTS SECTION
==================================================*/

.hot-products {
    width: 100%;
    padding: 40px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hot-products .container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
}

/*==================================================
SECTION TITLE
==================================================*/

.hot-products .section-title {
    text-align: center;
    margin-bottom: 55px;
}

.hot-products .section-title h2 {
    margin: 0;
    color: #222;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.5px;
}

.hot-products .section-title p {
    margin-top: 12px;
    color: #777;
    font-size: 16px;
    line-height: 1.6;
}

/*==================================================
PRODUCT GRID
==================================================*/

.hot-products .product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

/*==================================================
PRODUCT CARD
==================================================*/

.hot-products .product-card {
    position: relative;
    width: 100%;
    background: #fff;
    transition: .35s ease;
}

.hot-products .product-card:hover {
    z-index: 5;
}

/*==================================================
IMAGE AREA
==================================================*/

.hot-products .product-image {
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
}

.hot-products .product-image>a {
    display: block;
    position: relative;
}

.hot-products .product-image img {
    display: block;
    width: 100%;
    height: auto;
    transition: .55s ease;
}

/* First Image */

.hot-products .product-image .img-1 {
    opacity: 1;
    visibility: visible;
}

/* Hover Image */

.hot-products .product-image .img-2 {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
}

/* Hover Effect */

.hot-products .product-card:hover .img-1 {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
}

.hot-products .product-card:hover .img-2 {
    opacity: 1;
    visibility: visible;
    transform: scale(1.05);
}

/*==================================================
IMAGE ZOOM
==================================================*/

.hot-products .product-image {
    cursor: pointer;
}

.hot-products .product-image img {
    will-change: transform;
}

.hot-products .product-card:hover .product-image img {
    transform: scale(1.06);
}

/*==================================================
REMOVE LINK STYLE
==================================================*/

.hot-products .product-image a {
    text-decoration: none;
}

/*==================================================
SMOOTH TRANSITIONS
==================================================*/

.hot-products .product-card *,
.hot-products .product-card *:before,
.hot-products .product-card *:after {
    transition: .35s ease;
    box-sizing: border-box;
}

/*==================================================
RESPONSIVE GRID
==================================================*/

@media(max-width:1400px) {

    .hot-products .product-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media(max-width:1100px) {

    .hot-products .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:768px) {

    .hot-products {
        padding: 60px 0;
    }

    .hot-products .section-title h2 {
        font-size: 34px;
    }

    .hot-products .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

}

@media(max-width:575px) {

    .hot-products .product-grid {
        grid-template-columns: 1fr;
    }

    .hot-products .section-title h2 {
        font-size: 28px;
    }

    .hot-products .section-title p {
        font-size: 14px;
    }

}

/*==================================================
BADGES
==================================================*/

.hot-products .badge {
    position: absolute;
    left: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 24px;
    padding: 0 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    line-height: 24px;
    letter-spacing: .3px;
    z-index: 15;
    pointer-events: none;
}

.hot-products .badge.sale {
    top: 12px;
    background: #ff5a1f;
}

.hot-products .badge.new {
    top: 42px;
    background: #4ec7e8;
}

.hot-products .badge.preorder {
    top: 12px;
    background: #4a7cff;
    min-width: 74px;
}

/*==================================================
PRODUCT ACTIONS
==================================================*/

.hot-products .product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 20;
}

/* Hidden by default */

.hot-products .product-actions .action-btn {
    width: 42px;
    height: 42px;
    border: none;
    outline: none;
    cursor: pointer;
    background: #ffffff;
    color: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);

    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);

    transition:
        opacity .35s,
        transform .35s,
        background .25s,
        color .25s,
        box-shadow .25s;
}

/*==================================================
SHOW ON HOVER
==================================================*/

.hot-products .product-card:hover .action-btn {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/*==================================================
STAGGER ANIMATION
==================================================*/

.hot-products .product-card:hover .action-btn:nth-child(1) {
    transition-delay: .05s;
}

.hot-products .product-card:hover .action-btn:nth-child(2) {
    transition-delay: .12s;
}

.hot-products .product-card:hover .action-btn:nth-child(3) {
    transition-delay: .19s;
}

/*==================================================
HIDE AGAIN
==================================================*/

.hot-products .product-card .action-btn:nth-child(1) {
    transition-delay: .18s;
}

.hot-products .product-card .action-btn:nth-child(2) {
    transition-delay: .10s;
}

.hot-products .product-card .action-btn:nth-child(3) {
    transition-delay: 0s;
}

/*==================================================
ACTION HOVER
==================================================*/

.hot-products .product-actions .action-btn:hover {
    background: #222;
    color: #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
}

.hot-products .product-actions .action-btn:active {
    transform: scale(.92);
}

/*==================================================
WISHLIST
==================================================*/

.hot-products .wishlist {
    font-size: 16px;
}

.hot-products .wishlist.active {
    background: #ff3b5c;
    color: #fff;
}

/*==================================================
COMPARE
==================================================*/

.hot-products .compare {
    font-size: 18px;
}

.hot-products .compare.active {
    background: #222;
    color: #fff;
}

/*==================================================
QUICK VIEW
==================================================*/

.hot-products .quickview {
    font-size: 16px;
}

.hot-products .quickview.active {
    background: #111;
    color: #fff;
}

/*==================================================
BUTTON RIPPLE EFFECT
==================================================*/

.hot-products .product-actions .action-btn {
    position: relative;
    overflow: hidden;
}

.hot-products .product-actions .action-btn::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: .45s;
}

.hot-products .product-actions .action-btn:hover::before {
    width: 90px;
    height: 90px;
}

/*==================================================
ICON ANIMATION
==================================================*/

.hot-products .product-actions .action-btn:hover {
    transform: translateX(0) scale(1.08);
}

.hot-products .product-actions .action-btn:hover i,
.hot-products .product-actions .action-btn:hover svg {
    transform: rotate(12deg);
}

.hot-products .product-actions .action-btn i,
.hot-products .product-actions .action-btn svg {
    transition: .3s;
}

/*==================================================
FOCUS
==================================================*/

.hot-products .product-actions .action-btn:focus {
    outline: none;
}

/*==================================================
MOBILE
==================================================*/

@media(max-width:991px) {

    .hot-products .product-actions {
        right: 10px;
        top: 10px;
        gap: 8px;
    }

    .hot-products .product-actions .action-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

}

@media(max-width:575px) {

    .hot-products .product-actions {
        opacity: 1;
    }

    .hot-products .product-actions .action-btn {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

}

/*==================================================
BOTTOM CART BAR
==================================================*/

.hot-products .cart-bar {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 56px;

    display: flex;
    align-items: center;

    background: #ffffff;
    border-top: 1px solid #ececec;

    z-index: 25;

    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);

    transition:
        transform .35s ease,
        opacity .35s ease,
        visibility .35s ease;
}

/*==================================================
SHOW ON HOVER
==================================================*/

.hot-products .product-card:hover .cart-bar {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/*==================================================
QUANTITY BOX
==================================================*/

.hot-products .qty-box {
    width: 112px;
    height: 100%;

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

    border-right: 1px solid #ececec;
    flex-shrink: 0;
}

/*==================================================
QTY BUTTONS
==================================================*/

.hot-products .qty-minus,
.hot-products .qty-plus {

    width: 36px;
    height: 100%;

    border: none;
    background: #fff;

    cursor: pointer;

    font-size: 22px;
    font-weight: 400;
    color: #222;

    transition: .25s;
}

.hot-products .qty-minus:hover,
.hot-products .qty-plus:hover {

    background: #f5f5f5;
    color: #000;
}

/*==================================================
INPUT
==================================================*/

.hot-products .qty-box input {

    width: 40px;

    border: none;
    outline: none;

    text-align: center;

    font-size: 15px;
    font-weight: 600;
    color: #222;

    background: transparent;
}

.hot-products .qty-box input::-webkit-outer-spin-button,
.hot-products .qty-box input::-webkit-inner-spin-button {
    appearance: none;
}

.hot-products .qty-box input[type=number] {
    appearance: textfield;
}

/*==================================================
ADD TO CART BUTTON
==================================================*/

.hot-products .cart-btn {

    flex: 1;

    height: 100%;

    border: none;

    background: #fff;

    cursor: pointer;

    font-size: 14px;
    font-weight: 600;

    color: #222;

    letter-spacing: .3px;
    text-transform: uppercase;

    transition: .3s;
}

/*==================================================
BUTTON HOVER
==================================================*/

.hot-products .cart-btn:hover {

    background: #222;
    color: #fff;
}

/*==================================================
BUTTON ACTIVE
==================================================*/

.hot-products .cart-btn:active {

    transform: scale(.98);
}

/*==================================================
SLIDE EFFECT
==================================================*/

.hot-products .cart-bar {

    overflow: hidden;
}

.hot-products .cart-btn {

    position: relative;
    overflow: hidden;
}

.hot-products .cart-btn::before {

    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 100%;

    background: rgba(255, 255, 255, .15);

    transition: .5s;
}

.hot-products .cart-btn:hover::before {

    left: 100%;
}

/*==================================================
QTY BUTTON PRESS
==================================================*/

.hot-products .qty-minus:active,
.hot-products .qty-plus:active {

    transform: scale(.90);
}

/*==================================================
CART BAR SHADOW
==================================================*/

.hot-products .cart-bar {

    box-shadow: 0 -6px 15px rgba(0, 0, 0, .05);
}

/*==================================================
IMAGE LIFT
==================================================*/

.hot-products .product-card:hover .product-image {
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

/*==================================================
SMOOTH TRANSITIONS
==================================================*/

.hot-products .cart-bar,
.hot-products .cart-btn,
.hot-products .qty-box,
.hot-products .qty-minus,
.hot-products .qty-plus,
.hot-products .qty-box input {

    transition: .3s;
}

/*==================================================
DISABLED BUTTON
==================================================*/

.hot-products .cart-btn:disabled {

    background: #eee;
    color: #999;
    cursor: not-allowed;
}

/*==================================================
MOBILE
==================================================*/

@media(max-width:991px) {

    .hot-products .cart-bar {

        height: 50px;

    }

    .hot-products .qty-box {

        width: 96px;

    }

    .hot-products .qty-minus,
    .hot-products .qty-plus {

        width: 30px;
        font-size: 20px;

    }

    .hot-products .cart-btn {

        font-size: 13px;

    }

}

/*==================================================
MOBILE SMALL
==================================================*/

@media(max-width:575px) {

    .hot-products .cart-bar {

        opacity: 1;
        visibility: visible;
        transform: none;

        /* position: relative; */

        margin-top: 10px;

        height: 48px;

        border: 1px solid #eee;

    }

    .hot-products .qty-box {

        height: 48px;

    }

    .hot-products .cart-btn {

        height: 48px;

    }

    .hot-products .product-card:hover .cart-bar {

        transform: none;

    }

}

/*==================================================
PRODUCT CONTENT
==================================================*/

.hot-products .product-content {
    width: 100%;
    padding: 18px 2px 5px;
    text-align: left;
    background: #fff;
    position: relative;
    z-index: 2;
}

/*==================================================
PRICE
==================================================*/

.hot-products .price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.hot-products .price .old-price {
    font-size: 14px;
    color: #9a9a9a;
    text-decoration: line-through;
    font-weight: 400;
}

.hot-products .price .new-price {
    font-size: 17px;
    color: #111;
    font-weight: 600;
    letter-spacing: .2px;
}

/* Sale Price */

.hot-products .product-card:hover .price .new-price {
    color: #000;
}

/*==================================================
PRODUCT TITLE
==================================================*/

.hot-products .product-title {
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 500;
    color: #222;
    transition: .30s;
}

.hot-products .product-title a {
    color: inherit;
    text-decoration: none;
}

.hot-products .product-title:hover,
.hot-products .product-title a:hover {
    color: #c58f5c;
}

/*==================================================
TEXT SPACING
==================================================*/

.hot-products .product-title {
    min-height: 50px;
    margin-bottom: 16px;
}

/*==================================================
COLOR SWATCH WRAPPER
==================================================*/

.hot-products .color-swatches {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
    padding-left: 2px;
}

/*==================================================
COLOR SWATCH
==================================================*/

.hot-products .swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #ddd;
    position: relative;
    transition: .30s;
}

/* Hover */

.hot-products .swatch:hover {
    transform: scale(1.18);
}

/* Active */

.hot-products .swatch.active {
    border-color: #222;
}

/* Ring */

.hot-products .swatch.active::after {
    content: "";
    position: absolute;
    inset: -4px;
    border: 1px solid #222;
    border-radius: 50%;
}

/*==================================================
WHITE SWATCH FIX
==================================================*/

.hot-products .swatch[style*="#fff"],
.hot-products .swatch[style*="#ffffff"] {
    border: 1px solid #ccc;
}

/*==================================================
PRODUCT HOVER
==================================================*/

/* .hot-products .product-card:hover .product-content {
    transform: translateY(-2px);
} */

.hot-products .product-card:hover .product-title {
    color: #000;
}

/*==================================================
PRICE ANIMATION
==================================================*/

.hot-products .price,
.hot-products .product-title,
.hot-products .color-swatches {
    transition: .30s;
}

/*==================================================
TEXT CLAMP
==================================================*/

.hot-products .product-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*==================================================
HOVER UNDERLINE
==================================================*/

.hot-products .product-title {
    position: relative;
}

.hot-products .product-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #222;
    transition: .35s;
}

.hot-products .product-card:hover .product-title::after {
    width: 100%;
}

/*==================================================
PRODUCT SPACING
==================================================*/

.hot-products .product-content>*:last-child {
    margin-bottom: 0;
}

/*==================================================
TYPOGRAPHY
==================================================*/

.hot-products .product-content,
.hot-products .price,
.hot-products .product-title {
    font-family: inherit;
}

/*==================================================
SMOOTH EFFECTS
==================================================*/

.hot-products .product-content *,
.hot-products .product-content *::before,
.hot-products .product-content *::after {
    transition: .30s;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:991px) {

    .hot-products .product-content {
        padding-top: 15px;
    }

    .hot-products .product-title {
        font-size: 15px;
        min-height: 46px;
    }

    .hot-products .price .new-price {
        font-size: 16px;
    }

    .hot-products .price .old-price {
        font-size: 13px;
    }

    .hot-products .swatch {
        width: 18px;
        height: 18px;
    }

}

@media(max-width:575px) {

    .hot-products .product-content {
        padding: 14px 0 0;
    }

    .hot-products .product-title {
        font-size: 14px;
        line-height: 1.5;
        min-height: auto;
    }

    .hot-products .price {
        margin-bottom: 8px;
    }

    .hot-products .price .new-price {
        font-size: 15px;
    }

    .hot-products .price .old-price {
        font-size: 12px;
    }

    .hot-products .color-swatches {
        gap: 8px;
    }

    .hot-products .swatch {
        width: 16px;
        height: 16px;
    }

    .hot-products .swatch.active::after {
        inset: -3px;
    }

}

/*==================================================
PREMIUM PRODUCT CARD
==================================================*/

.hot-products .product-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

/* .hot-products .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
} */

/*==================================================
IMAGE CONTAINER
==================================================*/

.hot-products .product-image {
    position: relative;
    overflow: hidden;
    background: #f8f8f8;
}

/*==================================================
IMAGE OVERLAY
==================================================*/

.hot-products .product-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    z-index: 2;
    pointer-events: none;
    transition: .35s;
}

.hot-products .product-card:hover .product-image::before {
    background: rgba(255, 255, 255, .08);
}

/*==================================================
BOTTOM SHADOW
==================================================*/

.hot-products .product-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;

    background: linear-gradient(to top,
            rgba(0, 0, 0, .12),
            rgba(0, 0, 0, 0));

    opacity: 0;
    transition: .35s;
    pointer-events: none;
}

.hot-products .product-card:hover .product-image::after {
    opacity: 1;
}

/*==================================================
IMAGE ZOOM
==================================================*/

.hot-products .product-image img {
    transition:
        transform .65s cubic-bezier(.22, .61, .36, 1),
        opacity .40s ease;
}

.hot-products .product-card:hover .product-image img {
    transform: scale(1.08);
}

/*==================================================
PREMIUM BORDER
==================================================*/

.hot-products .product-card {
    border: 1px solid transparent;
}

/* .hot-products .product-card:hover {
    border-color: #efefef;
} */

/*==================================================
CONTENT ANIMATION
==================================================*/

.hot-products .product-content {
    transition:
        transform .30s,
        opacity .30s;
}

.hot-products .product-card:hover .product-content {
    transform: translateY(-3px);
}

/*==================================================
PRICE ANIMATION
==================================================*/

.hot-products .product-card:hover .price {
    transform: translateX(2px);
}

/*==================================================
TITLE ANIMATION
==================================================*/

.hot-products .product-card:hover .product-title {
    letter-spacing: .15px;
}

/*==================================================
SWATCH ANIMATION
==================================================*/

.hot-products .color-swatches {
    transition: .30s;
}

.hot-products .product-card:hover .color-swatches {
    transform: translateY(-2px);
}

/*==================================================
BADGE ANIMATION
==================================================*/

.hot-products .badge {
    transition:
        transform .35s,
        opacity .35s;
}

.hot-products .product-card:hover .badge {
    transform: translateY(-2px);
}

/*==================================================
BUTTON FLOAT
==================================================*/

.hot-products .product-actions .action-btn {
    transition:
        transform .35s,
        opacity .35s,
        box-shadow .35s;
}

.hot-products .product-actions .action-btn:hover {
    transform: translateY(-2px) scale(1.08);
}

/*==================================================
SWATCH HOVER
==================================================*/

.hot-products .swatch {
    transition:
        transform .25s,
        box-shadow .25s;
}

.hot-products .swatch:hover {
    box-shadow: 0 0 0 4px rgba(0, 0, 0, .06);
}

/*==================================================
CART BAR SHADOW
==================================================*/

.hot-products .cart-bar {
    box-shadow:
        0 -8px 18px rgba(0, 0, 0, .06);
}

/*==================================================
PREMIUM BUTTON
==================================================*/

.hot-products .cart-btn {
    position: relative;
    overflow: hidden;
}

/* Shine */

.hot-products .cart-btn::after {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background: linear-gradient(110deg,
            transparent,
            rgba(255, 255, 255, .35),
            transparent);

    transform: skewX(-25deg);

    transition: .6s;
}

.hot-products .cart-btn:hover::after {
    left: 150%;
}

/*==================================================
IMAGE SMOOTHING
==================================================*/

.hot-products .product-image img {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/*==================================================
CARD FOCUS
==================================================*/

.hot-products .product-card:focus-within {
    box-shadow:
        0 15px 40px rgba(0, 0, 0, .10);
}

/*==================================================
PREMIUM TRANSITIONS
==================================================*/

.hot-products .product-card,
.hot-products .product-card * {
    transition-timing-function:
        cubic-bezier(.22, .61, .36, 1);
}

/*==================================================
SMALL SCREEN
==================================================*/

@media(max-width:991px) {

    .hot-products .product-card:hover {

        transform: none;

        box-shadow: 0 8px 20px rgba(0, 0, 0, .06);

    }

    .hot-products .product-card:hover .product-content {

        transform: none;

    }

    .hot-products .product-card:hover .price {

        transform: none;

    }

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:575px) {

    .hot-products .product-card {

        box-shadow: none;

    }

    .hot-products .product-card:hover {

        box-shadow: none;

        border-color: transparent;

    }

    .hot-products .product-image::after {

        display: none;

    }

    .hot-products .product-image::before {

        display: none;

    }

}

.hot-products button {
    position: relative;
    overflow: hidden;
}

.hot-products .btn-ripple {

    position: absolute;

    border-radius: 50%;

    transform: scale(0);

    animation: hotProductsRipple .6s linear;

    background: rgba(255, 255, 255, .35);

    pointer-events: none;

}

@keyframes hotProductsRipple {

    to {

        transform: scale(4);

        opacity: 0;

    }

}


/*==========================================
LOAD MORE
==========================================*/

.hot-products .hot-products-load-more {
    margin-top: 60px;
    text-align: center;
}

.hot-products .hot-products-load-btn {

    min-width: 220px;
    height: 55px;

    border: 2px solid #222;
    background: #fff;

    color: #222;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    cursor: pointer;

    transition: .35s;

    position: relative;
    overflow: hidden;
}

.hot-products .hot-products-load-btn:hover {

    background: #222;
    color: #fff;

}

.hot-products .hot-products-load-btn::before {

    content: "";

    position: absolute;

    left: -120%;
    top: 0;

    width: 70%;
    height: 100%;

    background: rgba(255, 255, 255, .3);

    transform: skewX(-25deg);

    transition: .55s;

}

.hot-products .hot-products-load-btn:hover::before {

    left: 160%;

}

.hot-products .hot-products-load-btn:active {

    transform: scale(.98);

}

@media(max-width:575px) {

    .hot-products .hot-products-load-btn {

        width: 100%;

    }

}

/*==================================================
VIDEO SHOPPING SECTION
==================================================*/

.video-shopping {
    position: relative;
    width: 100%;
    padding: 20px 0;
    background: #fff;
    overflow: hidden;
}

.video-shopping .container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}

/*==================================================
HEADER
==================================================*/

.video-shopping .video-shopping-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 45px;
}

.video-shopping .video-shopping-title {
    margin: 0;
    color: #111;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.4px;
}

/*==================================================
NAVIGATION
==================================================*/

.video-shopping .video-shopping-navigation {
    display: flex;
    align-items: center;
    gap: 12px;
}

.video-shopping .video-prev,
.video-shopping .video-next {

    width: 48px;
    height: 48px;

    border: 1px solid #e5e5e5;
    border-radius: 50%;

    background: #fff;
    color: #222;

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

    cursor: pointer;

    transition: .35s;
}

.video-shopping .video-prev svg,
.video-shopping .video-next svg {

    width: 18px;
    height: 18px;

    transition: .35s;
}

.video-shopping .video-prev:hover,
.video-shopping .video-next:hover {

    background: #222;
    color: #fff;
    border-color: #222;

}

.video-shopping .video-prev:hover svg,
.video-shopping .video-next:hover svg {

    transform: scale(1.15);

}

.video-shopping .video-prev:active,
.video-shopping .video-next:active {

    transform: scale(.95);

}

/*==================================================
SWIPER
==================================================*/

.video-shopping .videoShoppingSlider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-shopping .videoShoppingSlider .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.video-shopping .videoShoppingSlider .swiper-slide {
    height: auto;
    display: flex;
}

/*==================================================
VIDEO CARD
==================================================*/

.video-shopping .video-card {

    position: relative;

    width: 100%;

    background: #fff;

    overflow: hidden;

    transition:
        transform .35s,
        box-shadow .35s;

}

.video-shopping .video-card:hover {

    transform: translateY(-6px);

}

.video-shopping .video-card::before {

    content: "";

    position: absolute;

    inset: 0;

    border: 1px solid transparent;

    pointer-events: none;

    transition: .35s;

}

.video-shopping .video-card:hover::before {

    border-color: #ececec;

}

/*==================================================
VIDEO WRAPPER
==================================================*/

.video-shopping .video-wrapper {

    position: relative;

    overflow: hidden;

    background: #f5f5f5;

    aspect-ratio: 9/16;

}

.video-shopping .video-wrapper video {

    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

}

/*==================================================
PREMIUM SHADOW
==================================================*/

.video-shopping .video-card:hover {

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .08);

}

/*==================================================
SMOOTH TRANSITIONS
==================================================*/

.video-shopping .video-card,
.video-shopping .video-card *,
.video-shopping .video-wrapper,
.video-shopping .video-wrapper * {

    transition-timing-function:
        cubic-bezier(.22, .61, .36, 1);

}

/*==================================================
DESKTOP
==================================================*/

@media(min-width:1200px) {

    .video-shopping .videoShoppingSlider {

        padding-bottom: 5px;

    }

}

/*==================================================
TABLET
==================================================*/

@media(max-width:991px) {

    .video-shopping {

        padding: 70px 0;

    }

    .video-shopping .video-shopping-title {

        font-size: 36px;

    }

    .video-shopping .video-shopping-header {

        margin-bottom: 35px;

    }

    .video-shopping .video-prev,
    .video-shopping .video-next {

        width: 44px;
        height: 44px;

    }

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:767px) {

    .video-shopping {

        padding: 55px 0;

    }

    .video-shopping .video-shopping-header {

        flex-direction: column;
        align-items: flex-start;
        gap: 20px;

    }

    .video-shopping .video-shopping-title {

        font-size: 30px;

    }

    .video-shopping .video-shopping-navigation {

        gap: 10px;

    }

    .video-shopping .video-prev,
    .video-shopping .video-next {

        width: 42px;
        height: 42px;

    }

}

/*==================================================
SMALL MOBILE
==================================================*/

@media(max-width:480px) {

    .video-shopping .container {

        padding: 0 12px;

    }

    .video-shopping .video-shopping-title {

        font-size: 26px;

    }

    .video-shopping .video-prev,
    .video-shopping .video-next {

        width: 40px;
        height: 40px;

    }

}

/*==================================================
VIDEO
==================================================*/

.video-shopping .shopping-video {

    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center;

    background: #f5f5f5;

    transform: scale(1);

    transition:
        transform .8s cubic-bezier(.22, .61, .36, 1),
        filter .35s ease,
        opacity .35s ease;

    will-change: transform;

}

/*==================================================
VIDEO HOVER
==================================================*/

.video-shopping .video-card:hover .shopping-video {

    transform: scale(1.05);

}

/*==================================================
VIDEO OVERLAY
==================================================*/

.video-shopping .video-wrapper::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(to top,
            rgba(0, 0, 0, .28),
            rgba(0, 0, 0, .05),
            rgba(0, 0, 0, 0));

    z-index: 2;

    opacity: .75;

    pointer-events: none;

    transition: .35s;

}

.video-shopping .video-card:hover .video-wrapper::before {

    opacity: 1;

}

/*==================================================
TOP LIGHT
==================================================*/

.video-shopping .video-wrapper::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .12),
            transparent 35%);

    opacity: 0;

    transition: .4s;

    z-index: 2;

    pointer-events: none;

}

.video-shopping .video-card:hover .video-wrapper::after {

    opacity: 1;

}

/*==================================================
SHINE EFFECT
==================================================*/

.video-shopping .video-wrapper .shine {

    position: absolute;

    top: 0;

    left: -140%;

    width: 60%;
    height: 100%;

    background:
        linear-gradient(100deg,
            transparent,
            rgba(255, 255, 255, .18),
            transparent);

    transform: skewX(-25deg);

    z-index: 3;

    pointer-events: none;

}

.video-shopping .video-card:hover .shine {

    left: 170%;

    transition: .8s;

}

/*==================================================
VIDEO SHADOW
==================================================*/

.video-shopping .video-wrapper {

    box-shadow:
        0 8px 18px rgba(0, 0, 0, .05);

}

/*==================================================
VIDEO BORDER
==================================================*/

.video-shopping .video-wrapper {

    border-radius: 4px;

}

/*==================================================
GPU
==================================================*/

.video-shopping .shopping-video,
.video-shopping .video-wrapper {

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

}

/*==================================================
FOCUS
==================================================*/

.video-shopping .video-card:focus-within .video-wrapper {

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .12);

}

/*==================================================
TABLET
==================================================*/


/*==================================================
MOBILE
==================================================*/

@media(max-width:575px) {


    .video-shopping .video-wrapper::before {

        opacity: .85;

    }

}

/*==========================================
PRODUCT CARD
==========================================*/

.video-shopping .video-product {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    background: #fff;
    border-radius: 6px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
    /* transform: translateY(20px);
    opacity: 0;
    visibility: hidden; */
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: .35s;
}

.video-shopping .video-card:hover .video-product {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/*==========================================
PRODUCT IMAGE
==========================================*/

.video-shopping .video-product-image {
    width: 70px;
    height: 90px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
    background: #f5f5f5;
}

.video-shopping .video-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: .45s;
}

.video-shopping .video-card:hover .video-product-image img {
    transform: scale(1.08);
}

/*==========================================
CONTENT
==========================================*/

.video-shopping .video-product-content {
    flex: 1;
    min-width: 0;
}

.video-shopping .video-product-content h3 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: .3s;
}

.video-shopping .video-card:hover .video-product-content h3 {
    color: #000;
}

/*==========================================
PRICE
==========================================*/

.video-shopping .video-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.video-shopping .video-price .old-price {
    font-size: 13px;
    color: #9a9a9a;
    text-decoration: line-through;
}

.video-shopping .video-price .new-price {
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

/*==========================================
BUTTON
==========================================*/

.video-shopping .video-product-btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f5f5f5;
    color: #222;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: .3s;
}

.video-shopping .video-product-btn:hover {
    background: #111;
    color: #fff;
    transform: translateX(3px);
}

/*==========================================
HOVER EFFECTS
==========================================*/

.video-shopping .video-product {
    overflow: hidden;
}

.video-shopping .video-product::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: skewX(-25deg);
    transition: .7s;
}

.video-shopping .video-card:hover .video-product::before {
    left: 160%;
}

.video-shopping .video-product-content,
.video-shopping .video-price,
.video-shopping .video-product-btn {
    transition: .3s;
}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:991px) {

    .video-shopping .video-product {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 10px;
    }

    .video-shopping .video-product-image {
        width: 62px;
        height: 80px;
    }

    .video-shopping .video-product-content h3 {
        font-size: 14px;
    }

    .video-shopping .video-price .new-price {
        font-size: 15px;
    }

    .video-shopping .video-product-btn {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

}

@media(max-width:575px) {

    .video-shopping .video-product {
        position: relative;
        left: 0;
        right: 0;
        bottom: 0;
        margin-top: 12px;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: 1px solid #eee;
        box-shadow: none;
    }

    .video-shopping .video-product-image {
        width: 58px;
        height: 74px;
    }

    .video-shopping .video-product-content h3 {
        font-size: 13px;
    }

    .video-shopping .video-price .old-price {
        font-size: 12px;
    }

    .video-shopping .video-price .new-price {
        font-size: 14px;
    }

    .video-shopping .video-product-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .video-shopping .video-card:hover .video-product {
        transform: none;
    }

}



/*==========================================
SHOP LOOK SECTION
==========================================*/

.shop-look {
    width: 100%;
    padding: 50px 0;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.shop-look .container {
    max-width: 1800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/*==========================================
SECTION HEADING
==========================================*/

.shop-look .shop-look-heading {
    text-align: center;
    margin-bottom: 55px;
}

.shop-look .shop-look-heading h2 {
    margin: 0;
    color: #111;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.4px;
}

.shop-look .shop-look-heading p {
    margin: 12px auto 0;
    max-width: 560px;
    color: #777;
    font-size: 16px;
    line-height: 1.7;
}

/*==========================================
GRID
==========================================*/

.shop-look .shop-look-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/*==========================================
LOOK CARD
==========================================*/

.shop-look .look-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    transition: .35s;
}

.shop-look .look-card:hover {
    transform: translateY(-5px);
}

/*==========================================
IMAGE
==========================================*/

.shop-look .look-image {
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.shop-look .look-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: .7s cubic-bezier(.22, .61, .36, 1);
}

.shop-look .look-card:hover img {
    transform: scale(1.05);
}

/*==========================================
IMAGE OVERLAY
==========================================*/

.shop-look .look-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .04);
    opacity: 0;
    transition: .35s;
    z-index: 2;
    pointer-events: none;
}

.shop-look .look-card:hover .look-image::before {
    opacity: 1;
}

/*==========================================
CARD SHADOW
==========================================*/

.shop-look .look-card {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.shop-look .look-card:hover {
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

/*==========================================
HOTSPOT
==========================================*/

.shop-look .look-hotspot {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #111;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.shop-look .look-hotspot:hover {
    background: #111;
    color: #fff;
    transform: translate(-50%, -50%) scale(1.08);
}

/*==========================================
HOTSPOT PULSE
==========================================*/

.shop-look .look-hotspot span {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .5);
    animation: shopLookPulse 2s infinite;
}

@keyframes shopLookPulse {

    0% {
        transform: scale(.8);
        opacity: 1;
    }

    100% {
        transform: scale(1.7);
        opacity: 0;
    }

}

/*==========================================
ICON
==========================================*/

.shop-look .look-hotspot svg {
    width: 20px;
    height: 20px;
    transition: .3s;
}

.shop-look .look-hotspot:hover svg {
    transform: rotate(90deg);
}

/*==========================================
SMOOTH
==========================================*/

.shop-look .look-card,
.shop-look .look-card *,
.shop-look .look-image,
.shop-look .look-image * {
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

/*==========================================
TABLET
==========================================*/

@media(max-width:991px) {

    .shop-look {
        padding: 70px 0;
    }

    .shop-look .shop-look-heading {
        margin-bottom: 40px;
    }

    .shop-look .shop-look-heading h2 {
        font-size: 34px;
    }

    .shop-look .shop-look-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

}

/*==========================================
MOBILE
==========================================*/

@media(max-width:767px) {

    .shop-look {
        padding: 55px 0;
    }

    .shop-look .shop-look-grid {
        grid-template-columns: 1fr;
    }

    .shop-look .shop-look-heading h2 {
        font-size: 28px;
    }

    .shop-look .shop-look-heading p {
        font-size: 14px;
    }

    .shop-look .look-hotspot {
        width: 48px;
        height: 48px;
    }

}

/*==========================================
SMALL MOBILE
==========================================*/

@media(max-width:480px) {

    .shop-look .container {
        padding: 0 12px;
    }

    .shop-look .look-hotspot {
        width: 44px;
        height: 44px;
    }

    .shop-look .look-hotspot svg {
        width: 18px;
        height: 18px;
    }

}


/*==========================================
DRAWER
==========================================*/

.shop-look .look-drawer {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .18);
    overflow: hidden;
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: .35s;
    max-height: 430px;
}

.shop-look .look-card.active .look-drawer {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/*==========================================
HEADER
==========================================*/

.shop-look .drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.shop-look .drawer-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #111;
}

/*==========================================
CLOSE
==========================================*/

.shop-look .drawer-close {
    width: 38px;
    height: 38px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.shop-look .drawer-close:hover {
    background: #111;
    color: #fff;
    transform: rotate(90deg);
}

/*==========================================
PRODUCT LIST
==========================================*/

.shop-look .drawer-products {
    max-height: 340px;
    overflow-y: auto;
    padding: 8px 0;
}

.shop-look .drawer-products::-webkit-scrollbar {
    width: 5px;
}

.shop-look .drawer-products::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 20px;
}

/*==========================================
PRODUCT
==========================================*/

.shop-look .drawer-product {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 14px 20px;
    border-bottom: 1px solid #f2f2f2;
    transition: .3s;
    background: #fff;
}

.shop-look .drawer-product:last-child {
    border-bottom: none;
}

.shop-look .drawer-product:hover {
    background: #fafafa;
}

/*==========================================
IMAGE
==========================================*/

.shop-look .drawer-image {
    width: 72px;
    height: 90px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
    background: #f5f5f5;
}

.shop-look .drawer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .45s;
}

.shop-look .drawer-product:hover .drawer-image img {
    transform: scale(1.08);
}

/*==========================================
CONTENT
==========================================*/

.shop-look .drawer-content {
    flex: 1;
    min-width: 0;
}

.shop-look .drawer-content h4 {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: .3s;
}

.shop-look .drawer-product:hover h4 {
    color: #000;
}

/*==========================================
PRICE
==========================================*/

.shop-look .drawer-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.shop-look .drawer-price .old-price {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
}

.shop-look .drawer-price .new-price {
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

/*==========================================
VIEW BUTTON
==========================================*/

.shop-look .drawer-view {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #222;
    flex-shrink: 0;
    transition: .3s;
}

.shop-look .drawer-view svg {
    width: 18px;
    height: 18px;
    transition: .3s;
}

.shop-look .drawer-view:hover {
    background: #111;
    color: #fff;
    transform: scale(1.08);
}

.shop-look .drawer-view:hover svg {
    transform: scale(1.1);
}

/*==========================================
SHINE
==========================================*/

.shop-look .drawer-product {
    position: relative;
    overflow: hidden;
}

.shop-look .drawer-product::before {
    content: "";
    position: absolute;
    left: -130%;
    top: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: skewX(-25deg);
    transition: .8s;
}

.shop-look .drawer-product:hover::before {
    left: 170%;
}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:991px) {

    .shop-look .look-drawer {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .shop-look .drawer-header {
        padding: 16px;
    }

    .shop-look .drawer-product {
        padding: 12px 16px;
    }

    .shop-look .drawer-image {
        width: 64px;
        height: 82px;
    }

}

@media(max-width:575px) {

    .shop-look .look-drawer {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-height: 360px;
    }

    .shop-look .drawer-header h3 {
        font-size: 16px;
    }

    .shop-look .drawer-product {
        padding: 10px 14px;
        gap: 12px;
    }

    .shop-look .drawer-image {
        width: 56px;
        height: 72px;
    }

    .shop-look .drawer-content h4 {
        font-size: 14px;
    }

    .shop-look .drawer-price .new-price {
        font-size: 15px;
    }

    .shop-look .drawer-view {
        width: 36px;
        height: 36px;
    }

}

/*==========================================
PREMIUM CARD
==========================================*/

.shop-look .look-card {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition: transform .45s cubic-bezier(.22, .61, .36, 1), box-shadow .45s;
}

.shop-look .look-card.active {
    z-index: 100;
}

.shop-look .look-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .12);
}

/*==========================================
IMAGE
==========================================*/

.shop-look .look-image {
    position: relative;
    overflow: hidden;
}

.shop-look .look-image img {
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: transform .8s cubic-bezier(.22, .61, .36, 1);
}

.shop-look .look-card:hover .look-image img {
    transform: scale(1.06);
}

/*==========================================
GRADIENT
==========================================*/

.shop-look .look-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    background: linear-gradient(to top, rgba(0, 0, 0, .22), rgba(0, 0, 0, 0));
    opacity: 0;
    transition: .4s;
    pointer-events: none;
}

.shop-look .look-card:hover .look-image::after {
    opacity: 1;
}

/*==========================================
HOTSPOT
==========================================*/

.shop-look .look-hotspot {
    overflow: hidden;
}

.shop-look .look-hotspot::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent);
    transform: skewX(-25deg);
    transition: .7s;
}

.shop-look .look-hotspot:hover::before {
    left: 170%;
}

.shop-look .look-hotspot svg {
    transition: transform .35s;
}

.shop-look .look-hotspot:hover svg {
    transform: rotate(90deg) scale(1.15);
}

/*==========================================
DRAWER
==========================================*/

.shop-look .look-drawer {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform-origin: bottom center;
    transition:
        opacity .35s,
        visibility .35s,
        transform .35s,
        box-shadow .35s;
}

.shop-look .look-card.active .look-drawer {
    box-shadow: 0 30px 60px rgba(0, 0, 0, .18);
}

/*==========================================
PRODUCT
==========================================*/

.shop-look .drawer-product {
    transform: translateX(0);
    transition:
        background .3s,
        transform .3s;
}

.shop-look .drawer-product:hover {
    transform: translateX(5px);
}

/*==========================================
TITLE
==========================================*/

.shop-look .drawer-content h4 {
    position: relative;
}

.shop-look .drawer-content h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: #111;
    transition: .3s;
}

.shop-look .drawer-product:hover h4::after {
    width: 100%;
}

/*==========================================
PRICE
==========================================*/

.shop-look .drawer-price {
    transition: .3s;
}

.shop-look .drawer-product:hover .drawer-price {
    transform: translateX(2px);
}

/*==========================================
VIEW BUTTON
==========================================*/

.shop-look .drawer-view {
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

.shop-look .drawer-view:active {
    transform: scale(.92);
}

/*==========================================
DRAWER HEADER
==========================================*/

.shop-look .drawer-header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: #fff;
}

/*==========================================
SCROLLBAR
==========================================*/

.shop-look .drawer-products {
    scrollbar-width: thin;
    scrollbar-color: #d8d8d8 transparent;
}

/*==========================================
GPU
==========================================*/

.shop-look .look-card,
.shop-look .look-card *,
.shop-look .look-image,
.shop-look .look-image * {
    transform-style: preserve-3d;
}

/*==========================================
SMOOTH
==========================================*/

.shop-look .look-card,
.shop-look .look-card *,
.shop-look .look-card *::before,
.shop-look .look-card *::after {
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

/*==========================================
FOCUS
==========================================*/

.shop-look .look-card:focus-within {
    box-shadow: 0 22px 55px rgba(0, 0, 0, .15);
}

/*==========================================
ACTIVE HOTSPOT
==========================================*/

.shop-look .look-card.active .look-hotspot {
    background: #111;
    color: #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}

/*==========================================
ACTIVE PULSE
==========================================*/

.shop-look .look-card.active .look-hotspot span {
    animation-duration: 1.2s;
}

/*==========================================
MOBILE
==========================================*/

@media(max-width:991px) {

    .shop-look .look-card:hover {
        transform: none;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    }

    .shop-look .drawer-product:hover {
        transform: none;
    }

}

@media(max-width:575px) {

    .shop-look .look-hotspot {
        width: 46px;
        height: 46px;
    }

    .shop-look .look-card.active .look-hotspot {
        transform: translate(-50%, -50%) rotate(45deg) scale(.95);
    }

    .shop-look .look-drawer {
        border-radius: 6px;
    }

    .shop-look .drawer-header {
        padding: 14px;
    }

}


/*==========================================
CUSTOMER REVIEW
==========================================*/

.customer-review {
    padding: 90px 0;
    background: #f7f7f7;
    overflow: hidden;
    position: relative;
}

.customer-review .container {
    /* max-width: 850px; */
    margin: auto;
    padding: 0 15px;
}

/*==========================================
HEADING
==========================================*/

.customer-review .customer-review-heading {
    text-align: center;
    margin-bottom: 55px;
}

.customer-review .customer-review-heading h2 {
    margin: 0;
    font-size: 46px;
    font-weight: 600;
    color: #111;
    line-height: 1.2;
    letter-spacing: -.5px;
}

.customer-review .customer-review-heading p {
    margin: 12px auto 0;
    max-width: 550px;
    font-size: 17px;
    line-height: 1.7;
    color: #777;
}

/*==========================================
SWIPER
==========================================*/

.customer-review .customerReviewSlider {
    overflow: visible;
    position: relative;
}

.customer-review .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    width: 380px;
    transition: .5s;

    opacity: .35;

    transform: scale(.82);
}

.customerReviewSlider .swiper-slide-active {

    opacity: 1;

    transform: scale(1);

    z-index: 5;

}

.customerReviewSlider .swiper-slide-prev,
.customerReviewSlider .swiper-slide-next {

    opacity: .75;

    transform: scale(.9);

}

/*==========================================
CARD
==========================================*/

.customer-review .review-card {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 50px 45px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
    transition: .4s;
}

.customer-review .review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
}

/*==========================================
STARS
==========================================*/

.customer-review .review-stars {
    font-size: 22px;
    color: #ffb400;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

/*==========================================
TEXT
==========================================*/

.customer-review .review-text {
    margin: 0 auto 35px;
    max-width: 620px;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 400;
    color: #555;
}

/*==========================================
USER
==========================================*/

.customer-review .review-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/*==========================================
IMAGE
==========================================*/

.customer-review .review-user-image {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 18px;
    border: 3px solid #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.customer-review .review-user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .4s;
}

.customer-review .review-card:hover .review-user-image img {
    transform: scale(1.08);
}

/*==========================================
NAME
==========================================*/

.customer-review .review-user h3 {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 600;
    color: #111;
}

/*==========================================
TRANSITIONS
==========================================*/

.customer-review .review-card,
.customer-review .review-card *,
.customer-review .review-user-image img {
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

/*==========================================
TABLET
==========================================*/

@media(max-width:991px) {

    .customer-review {
        padding: 70px 0;
    }

    .customer-review .review-card {
        padding: 40px 30px;
    }

    .customer-review .customer-review-heading h2 {
        font-size: 38px;
    }

    .customer-review .review-text {
        font-size: 18px;
    }

    .customer-review .review-user h3 {
        font-size: 24px;
    }

}

/*==========================================
MOBILE
==========================================*/

@media(max-width:575px) {

    .customer-review {
        padding: 55px 0;
    }

    .customer-review .container {
        padding: 0 12px;
    }

    .customer-review .review-card {
        padding: 30px 20px;
        border-radius: 8px;
    }

    .customer-review .customer-review-heading {
        margin-bottom: 35px;
    }

    .customer-review .customer-review-heading h2 {
        font-size: 30px;
    }

    .customer-review .customer-review-heading p {
        font-size: 14px;
    }

    .customer-review .review-stars {
        font-size: 18px;
        margin-bottom: 18px;
    }

    .customer-review .review-text {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

    .customer-review .review-user-image {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .customer-review .review-user h3 {
        font-size: 20px;
    }

}

/*==========================================
VERIFIED BUYER
==========================================*/

.customer-review .verified-buyer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    margin-top: 2px;
}

.customer-review .verified-buyer svg {
    width: 18px;
    height: 18px;
    color: #111;
    flex-shrink: 0;
    transition: .3s;
}

.customer-review .review-card:hover .verified-buyer svg {
    transform: rotate(360deg);
}

/*==========================================
QUOTE ICON
==========================================*/

.customer-review .review-card {
    position: relative;
    overflow: hidden;
}

.customer-review .review-card::before {
    content: "❝";
    position: absolute;
    top: 25px;
    left: 35px;
    font-size: 90px;
    font-weight: 700;
    line-height: 1;
    color: #f5f5f5;
    pointer-events: none;
    z-index: 0;
}

.customer-review .review-card>* {
    position: relative;
    z-index: 2;
}

/*==========================================
SHINE EFFECT
==========================================*/

.customer-review .review-card::after {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(100deg,
            transparent,
            rgba(255, 255, 255, .45),
            transparent);
    transform: skewX(-25deg);
    transition: .8s;
    pointer-events: none;
}

.customer-review .review-card:hover::after {
    left: 170%;
}

/*==========================================
CARD BORDER
==========================================*/

.customer-review .review-card {
    border: 1px solid transparent;
}

.customer-review .review-card:hover {
    border-color: #ececec;
}

/*==========================================
TEXT ANIMATION
==========================================*/

.customer-review .review-text {
    transition: .35s;
}

.customer-review .review-card:hover .review-text {
    color: #333;
}

/*==========================================
NAME
==========================================*/

.customer-review .review-user h3 {
    transition: .3s;
}

.customer-review .review-card:hover .review-user h3 {
    letter-spacing: .3px;
}

/*==========================================
AVATAR
==========================================*/

.customer-review .review-user-image {
    transition: .35s;
}

.customer-review .review-card:hover .review-user-image {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .12);
}

/*==========================================
PAGINATION
==========================================*/

.customer-review .customer-review-pagination {
    position: relative;
    margin-top: 35px;
    text-align: center;
}

.customer-review .customer-review-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    background: #bdbdbd;
    opacity: 1;
    transition: .35s;
    border-radius: 50%;
}

.customer-review .customer-review-pagination .swiper-pagination-bullet:hover {
    background: #444;
}

.customer-review .customer-review-pagination .swiper-pagination-bullet-active {
    width: 26px;
    border-radius: 20px;
    background: #111;
}

/*==========================================
FOCUS
==========================================*/

.customer-review .review-card:focus-within {
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

/*==========================================
SMOOTH
==========================================*/

.customer-review .review-card,
.customer-review .review-card *,
.customer-review .review-card::before,
.customer-review .review-card::after {
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

/*==========================================
TABLET
==========================================*/

@media(max-width:991px) {

    .customer-review .review-card::before {
        font-size: 72px;
        top: 20px;
        left: 25px;
    }

    .customer-review .verified-buyer {
        font-size: 14px;
    }

}

/*==========================================
MOBILE
==========================================*/

@media(max-width:575px) {

    .customer-review .review-card::before {
        font-size: 56px;
        top: 15px;
        left: 18px;
    }

    .customer-review .verified-buyer {
        font-size: 13px;
        gap: 6px;
    }

    .customer-review .verified-buyer svg {
        width: 16px;
        height: 16px;
    }

    .customer-review .customer-review-pagination {
        margin-top: 25px;
    }

    .customer-review .customer-review-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 5px !important;
    }

    .customer-review .customer-review-pagination .swiper-pagination-bullet-active {
        width: 20px;
    }

}

/*==========================================
SLIDE ANIMATION
==========================================*/

.customer-review .review-card {
    opacity: .3;
    transform: translateY(30px) scale(.96);
    transition: .6s;
}

.customer-review .swiper-slide-active .review-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.customer-review .review-stars,
.customer-review .review-text,
.customer-review .review-user-image,
.customer-review .review-user h3,
.customer-review .verified-buyer {
    opacity: 0;
    transform: translateY(20px);
    transition: .5s;
}

.customer-review .review-show {
    opacity: 1;
    transform: translateY(0);
}

.customer-review .review-stars {
    transition-delay: .10s;
}

.customer-review .review-text {
    transition-delay: .20s;
}

.customer-review .review-user-image {
    transition-delay: .35s;
}

.customer-review .review-user h3 {
    transition-delay: .45s;
}

.customer-review .verified-buyer {
    transition-delay: .55s;
}




/*==================================================
INSTAGRAM SHOP
PART 2A
Base Layout + Grid + Images
==================================================*/

/*==========================================
SECTION
==========================================*/

.instagram-shop {
    position: relative;
    padding: 40px 0;
    background: #fff;
    overflow: hidden;
}

.instagram-shop * {
    box-sizing: border-box;
}

.instagram-shop .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/*==========================================
HEADING
==========================================*/

.instagram-shop .instagram-shop-heading {
    text-align: center;
    margin-bottom: 55px;
}

.instagram-shop .instagram-shop-heading h2 {
    margin: 0;
    font-size: 44px;
    font-weight: 600;
    line-height: 1.2;
    color: #111;
    letter-spacing: -.5px;
}

.instagram-shop .instagram-shop-heading p {
    margin: 12px auto 0;
    max-width: 650px;
    font-size: 17px;
    line-height: 1.7;
    color: #777;
    font-weight: 400;
}

/*==========================================
GRID
==========================================*/

.instagram-shop .instagram-shop-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    align-items: start;
}

/*==========================================
ITEM
==========================================*/

.instagram-shop .instagram-item {
    position: relative;
    overflow: visible;
    border-radius: 8px;
    transition: .45s cubic-bezier(.22, .61, .36, 1);
    z-index: 1;
}

.instagram-shop .instagram-item:hover {
    z-index: 50;
}

/*==========================================
IMAGE
==========================================*/

.instagram-shop .instagram-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #f7f7f7;
    cursor: pointer;
}

/*==========================================
IMAGE SIZE
==========================================*/

.instagram-shop .instagram-image {
    aspect-ratio: 1/1;
}

.instagram-shop .instagram-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.22, .61, .36, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/*==========================================
HOVER ZOOM
==========================================*/

.instagram-shop .instagram-item:hover img {
    transform: scale(1.08);
}

/*==========================================
OVERLAY
==========================================*/

.instagram-shop .instagram-image::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .05);
    opacity: 0;
    transition: .35s;
    z-index: 2;
    pointer-events: none;
}

.instagram-shop .instagram-item:hover .instagram-image::before {
    opacity: 1;
}

/*==========================================
SHINE
==========================================*/

.instagram-shop .instagram-image::after {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(100deg,
            transparent,
            rgba(255, 255, 255, .28),
            transparent);
    transform: skewX(-25deg);
    transition: .8s;
    z-index: 3;
    pointer-events: none;
}

.instagram-shop .instagram-item:hover .instagram-image::after {
    left: 170%;
}

/*==========================================
HOTSPOT
==========================================*/

.instagram-shop .instagram-hotspot {
    position: absolute;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .15);
    transition: .35s;
    z-index: 20;
    overflow: hidden;
}

/*==========================================
DEFAULT POSITION
==========================================*/

.instagram-shop .instagram-hotspot {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/*==========================================
CUSTOM POSITION
==========================================*/

.instagram-shop .hotspot-top-right {
    top: 26%;
    left: 72%;
}

.instagram-shop .hotspot-center {
    top: 52%;
    left: 50%;
}

.instagram-shop .hotspot-bottom-left {
    top: 74%;
    left: 32%;
}

/*==========================================
DOT
==========================================*/

.instagram-shop .hotspot-dot {
    width: 8px;
    height: 8px;
    background: #111;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: .3s;
}

/*==========================================
PING
==========================================*/

.instagram-shop .hotspot-ping {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    animation: instagramPulse 2s infinite;
}

@keyframes instagramPulse {

    0% {
        transform: scale(.9);
        opacity: 1;
    }

    70% {
        transform: scale(1.8);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }

}

/*==========================================
HOTSPOT HOVER
==========================================*/

.instagram-shop .instagram-hotspot:hover {
    background: #111;
    transform: translate(-50%, -50%) scale(1.08);
}

.instagram-shop .instagram-hotspot:hover .hotspot-dot {
    background: #fff;
}

/*==========================================
ACTIVE HOTSPOT
==========================================*/

.instagram-shop .instagram-item.active .instagram-hotspot {
    background: #111;
}

.instagram-shop .instagram-item.active .hotspot-dot {
    background: #fff;
}

/*==========================================
GPU
==========================================*/

.instagram-shop .instagram-item,
.instagram-shop .instagram-item *,
.instagram-shop .instagram-image img {
    transform-style: preserve-3d;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/*==========================================
TRANSITION
==========================================*/

.instagram-shop .instagram-item,
.instagram-shop .instagram-item *,
.instagram-shop .instagram-item::before,
.instagram-shop .instagram-item::after {
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

/*==========================================
TABLET
==========================================*/

@media(max-width:1199px) {

    .instagram-shop .instagram-shop-grid {
        grid-template-columns: repeat(4, 1fr);
    }

}

@media(max-width:991px) {

    .instagram-shop {
        padding: 70px 0;
    }

    .instagram-shop .instagram-shop-heading {
        margin-bottom: 40px;
    }

    .instagram-shop .instagram-shop-heading h2 {
        font-size: 34px;
    }

    .instagram-shop .instagram-shop-heading p {
        font-size: 15px;
    }

    .instagram-shop .instagram-shop-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }

}

/*==========================================
MOBILE
==========================================*/

@media(max-width:767px) {

    .instagram-shop .instagram-shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .instagram-shop .instagram-hotspot {
        width: 32px;
        height: 32px;
    }

    .instagram-shop .hotspot-dot {
        width: 7px;
        height: 7px;
    }

}

@media(max-width:575px) {

    .instagram-shop {
        padding: 55px 0;
    }

    .instagram-shop .container {
        padding: 0 12px;
    }

    .instagram-shop .instagram-shop-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .instagram-shop .instagram-shop-heading h2 {
        font-size: 28px;
    }

    .instagram-shop .instagram-shop-heading p {
        font-size: 14px;
        line-height: 1.6;
    }

    .instagram-shop .instagram-hotspot {
        width: 30px;
        height: 30px;
    }

    .instagram-shop .hotspot-dot {
        width: 6px;
        height: 6px;
    }

}

/*==========================================
POPUP LAYOUT
PART 2B-1
==========================================*/

.instagram-shop .instagram-popup {
    position: absolute;
    width: 320px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    z-index: 100;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .18);
    transition: opacity .35s, transform .35s, visibility .35s;
    pointer-events: none;
}

.instagram-shop .instagram-item.active .instagram-popup,
.instagram-shop .instagram-item:hover .instagram-popup {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/*==========================================
DEFAULT POSITION
==========================================*/

.instagram-shop .instagram-popup {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(.92);
}

.instagram-shop .instagram-item.active .instagram-popup,
.instagram-shop .instagram-item:hover .instagram-popup {
    transform: translate(-50%, -50%) scale(1);
}

/*==========================================
LEFT
==========================================*/

.instagram-shop .popup-left {
    left: -18px;
    top: 50%;
    transform: translate(-100%, -50%) scale(.92);
}

.instagram-shop .instagram-item:hover .popup-left,
.instagram-shop .instagram-item.active .popup-left {
    transform: translate(-100%, -50%) scale(1);
}

/*==========================================
RIGHT
==========================================*/

.instagram-shop .popup-right {
    left: calc(100% + 18px);
    top: 50%;
    transform: translateY(-50%) scale(.92);
}

.instagram-shop .instagram-item:hover .popup-right,
.instagram-shop .instagram-item.active .popup-right {
    transform: translateY(-50%) scale(1);
}

/*==========================================
TOP
==========================================*/

.instagram-shop .popup-top {
    left: 50%;
    top: -18px;
    transform: translate(-50%, -100%) scale(.92);
}

.instagram-shop .instagram-item:hover .popup-top,
.instagram-shop .instagram-item.active .popup-top {
    transform: translate(-50%, -100%) scale(1);
}

/*==========================================
HEADER
==========================================*/

.instagram-shop .popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: #fff;
    border-bottom: 1px solid #efefef;
}

.instagram-shop .popup-label {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    border-radius: 30px;
}

/*==========================================
BODY
==========================================*/

.instagram-shop .popup-body {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 18px;
}

/*==========================================
IMAGE
==========================================*/

.instagram-shop .popup-image {
    width: 90px;
    height: 112px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 6px;
    background: #f6f6f6;
}

.instagram-shop .popup-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s cubic-bezier(.22, .61, .36, 1);
}

.instagram-shop .instagram-item:hover .popup-image img {
    transform: scale(1.08);
}

/*==========================================
CONTENT
==========================================*/

.instagram-shop .popup-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*==========================================
TITLE
==========================================*/

.instagram-shop .popup-content h3 {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    color: #111;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: .3s;
}

.instagram-shop .instagram-item:hover .popup-content h3 {
    color: #000;
}

/*==========================================
TITLE UNDERLINE
==========================================*/

.instagram-shop .popup-content h3::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: #111;
    margin-top: 6px;
    transition: .35s;
}

.instagram-shop .instagram-item:hover .popup-content h3::after {
    width: 100%;
}

/*==========================================
DESCRIPTION
==========================================*/

.instagram-shop .popup-content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #777;
}

/*==========================================
IMAGE SHADOW
==========================================*/

.instagram-shop .popup-image {
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

/*==========================================
SHINE
==========================================*/

.instagram-shop .instagram-popup::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(100deg,
            transparent,
            rgba(255, 255, 255, .35),
            transparent);
    transform: skewX(-25deg);
    transition: .8s;
    pointer-events: none;
}

.instagram-shop .instagram-item:hover .instagram-popup::before {
    left: 170%;
}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:991px) {

    .instagram-shop .instagram-popup {
        width: 290px;
    }

    .instagram-shop .popup-body {
        padding: 15px;
        gap: 12px;
    }

    .instagram-shop .popup-image {
        width: 80px;
        height: 100px;
    }

}

@media(max-width:575px) {

    .instagram-shop .instagram-popup {
        left: 10px !important;
        right: 10px !important;
        top: auto !important;
        bottom: 10px !important;
        width: auto;
        transform: none !important;
    }

    .instagram-shop .popup-body {
        padding: 14px;
    }

    .instagram-shop .popup-image {
        width: 70px;
        height: 88px;
    }

    .instagram-shop .popup-content h3 {
        font-size: 14px;
    }

}


/*==========================================
POPUP PRICE
==========================================*/

.instagram-shop .popup-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.instagram-shop .popup-price .old-price {
    font-size: 13px;
    font-weight: 400;
    color: #9a9a9a;
    text-decoration: line-through;
}

.instagram-shop .popup-price .new-price {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    letter-spacing: .2px;
}

/*==========================================
RATING
==========================================*/

.instagram-shop .popup-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    font-size: 13px;
    color: #f6b800;
    line-height: 1;
}

.instagram-shop .popup-rating span {
    color: #777;
    font-size: 12px;
}

/*==========================================
FOOTER
==========================================*/

.instagram-shop .popup-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px 18px;
    background: #fff;
    border-top: 1px solid #efefef;
}

/*==========================================
BUTTON
==========================================*/

.instagram-shop .popup-footer button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #111;
    transition: .35s cubic-bezier(.22, .61, .36, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .04);
}

/*==========================================
SVG
==========================================*/

.instagram-shop .popup-footer button svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: .35s;
}

/*==========================================
BUTTON HOVER
==========================================*/

.instagram-shop .popup-footer button:hover {
    background: #111;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
}

.instagram-shop .popup-footer button:hover svg {
    transform: scale(1.12);
}

/*==========================================
ACTIVE
==========================================*/

.instagram-shop .popup-footer button.active {
    background: #111;
    color: #fff;
}

/*==========================================
WISHLIST
==========================================*/

.instagram-shop .popup-wishlist {
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

/*==========================================
COMPARE
==========================================*/

.instagram-shop .popup-compare {
    font-size: 19px;
    font-weight: 500;
    line-height: 1;
}

/*==========================================
QUICK VIEW
==========================================*/

.instagram-shop .popup-view-btn {
    position: relative;
    overflow: hidden;
}

/*==========================================
BUTTON SHINE
==========================================*/

.instagram-shop .popup-footer button::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(100deg,
            transparent,
            rgba(255, 255, 255, .35),
            transparent);
    transform: skewX(-25deg);
    transition: .75s;
}

.instagram-shop .popup-footer button:hover::before {
    left: 170%;
}

/*==========================================
PRICE ANIMATION
==========================================*/

.instagram-shop .popup-price {
    transition: .3s;
}

.instagram-shop .instagram-item:hover .popup-price {
    transform: translateX(2px);
}

/*==========================================
FOOTER ANIMATION
==========================================*/

.instagram-shop .popup-footer {
    transition: .35s;
}

.instagram-shop .instagram-item:hover .popup-footer {
    background: #fcfcfc;
}

/*==========================================
GLASS EFFECT
==========================================*/

.instagram-shop .instagram-popup {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/*==========================================
POPUP SHADOW
==========================================*/

.instagram-shop .instagram-item:hover .instagram-popup {
    box-shadow:
        0 22px 55px rgba(0, 0, 0, .18),
        0 8px 18px rgba(0, 0, 0, .08);
}

/*==========================================
ACTIVE BUTTON SCALE
==========================================*/

.instagram-shop .popup-footer button:active {
    transform: scale(.92);
}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:991px) {

    .instagram-shop .popup-footer {
        padding: 12px 15px;
        gap: 8px;
    }

    .instagram-shop .popup-footer button {
        width: 38px;
        height: 38px;
    }

    .instagram-shop .popup-price .new-price {
        font-size: 16px;
    }

}

@media(max-width:575px) {

    .instagram-shop .popup-footer {
        justify-content: center;
    }

    .instagram-shop .popup-footer button {
        width: 34px;
        height: 34px;
    }

    .instagram-shop .popup-footer button svg {
        width: 16px;
        height: 16px;
    }

    .instagram-shop .popup-price {
        margin-bottom: 8px;
    }

    .instagram-shop .popup-price .old-price {
        font-size: 12px;
    }

    .instagram-shop .popup-price .new-price {
        font-size: 15px;
    }

    .instagram-shop .popup-rating {
        font-size: 12px;
    }

    .instagram-shop .popup-rating span {
        font-size: 11px;
    }

}


/*==========================================
PART 2C
PREMIUM POLISH
==========================================*/

/*==========================================
PREMIUM CARD
==========================================*/

.instagram-shop .instagram-item {
    transform: translateZ(0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition:
        transform .45s cubic-bezier(.22, .61, .36, 1),
        box-shadow .45s cubic-bezier(.22, .61, .36, 1);
}

.instagram-shop .instagram-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

/*==========================================
IMAGE
==========================================*/

.instagram-shop .instagram-image {
    position: relative;
    isolation: isolate;
}

.instagram-shop .instagram-image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 45%;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .18),
            transparent);
    opacity: 0;
    transition: .35s;
    pointer-events: none;
    z-index: 2;
}

.instagram-shop .instagram-item:hover .instagram-image::after {
    opacity: 1;
}

/*==========================================
POPUP
==========================================*/

.instagram-shop .instagram-popup {
    overflow: visible;
    transform-origin: center;
}

/*==========================================
POPUP ARROW
==========================================*/

.instagram-shop .instagram-popup::after {
    content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 8px rgba(0, 0, 0, .04);
}

/*==========================================
LEFT
==========================================*/

.instagram-shop .popup-left::after {
    right: -7px;
    top: 50%;
    margin-top: -7px;
}

/*==========================================
RIGHT
==========================================*/

.instagram-shop .popup-right::after {
    left: -7px;
    top: 50%;
    margin-top: -7px;
}

/*==========================================
TOP
==========================================*/

.instagram-shop .popup-top::after {
    bottom: -7px;
    left: 50%;
    margin-left: -7px;
}

/*==========================================
BOTTOM
==========================================*/

.instagram-shop .popup-bottom::after {
    top: -7px;
    left: 50%;
    margin-left: -7px;
}

/*==========================================
POPUP ENTRANCE
==========================================*/

.instagram-shop .instagram-popup {
    filter: blur(3px);
}

.instagram-shop .instagram-item:hover .instagram-popup,
.instagram-shop .instagram-item.active .instagram-popup {
    filter: blur(0);
}

/*==========================================
HEADER
==========================================*/

.instagram-shop .popup-header {
    background: #fff;
    position: relative;
    z-index: 2;
}

/*==========================================
BODY
==========================================*/

.instagram-shop .popup-body {
    align-items: center;
}

/*==========================================
IMAGE EFFECT
==========================================*/

.instagram-shop .popup-image {
    position: relative;
    overflow: hidden;
}

.instagram-shop .popup-image::before {
    content: "";
    position: absolute;
    left: -120%;
    top: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(100deg,
            transparent,
            rgba(255, 255, 255, .45),
            transparent);
    transform: skewX(-25deg);
    transition: .75s;
    z-index: 3;
}

.instagram-shop .instagram-item:hover .popup-image::before {
    left: 170%;
}

/*==========================================
TITLE
==========================================*/

.instagram-shop .popup-content h3 {
    transition: .35s;
}

.instagram-shop .instagram-item:hover .popup-content h3 {
    letter-spacing: .2px;
}

/*==========================================
LABEL
==========================================*/

.instagram-shop .popup-label {
    transition: .35s;
}

.instagram-shop .instagram-item:hover .popup-label {
    background: #000;
}

/*==========================================
PRICE
==========================================*/

.instagram-shop .popup-price {
    transition: .3s;
}

.instagram-shop .instagram-item:hover .popup-price {
    transform: translateX(3px);
}

/*==========================================
RATING
==========================================*/

.instagram-shop .popup-rating {
    transition: .3s;
}

.instagram-shop .instagram-item:hover .popup-rating {
    letter-spacing: .4px;
}

/*==========================================
BUTTONS
==========================================*/

.instagram-shop .popup-footer button {
    position: relative;
    overflow: hidden;
}

.instagram-shop .popup-footer button::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .18);
    opacity: 0;
    transform: scale(.8);
    transition: .35s;
}

.instagram-shop .popup-footer button:hover::after {
    opacity: 1;
    transform: scale(1);
}

/*==========================================
HOTSPOT
==========================================*/

.instagram-shop .instagram-hotspot {
    transition:
        transform .35s,
        background .35s,
        box-shadow .35s;
}

.instagram-shop .instagram-hotspot:hover {
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, .25),
        0 15px 30px rgba(0, 0, 0, .18);
}

.instagram-shop .instagram-item.active .instagram-hotspot {
    transform: translate(-50%, -50%) scale(1.08);
}

/*==========================================
PULSE
==========================================*/

.instagram-shop .instagram-item.active .hotspot-ping {
    animation-duration: 1.2s;
}

/*==========================================
GPU
==========================================*/

.instagram-shop .instagram-item,
.instagram-shop .instagram-item *,
.instagram-shop .instagram-popup,
.instagram-shop .instagram-popup * {
    transform-style: preserve-3d;
}

/*==========================================
SMOOTH
==========================================*/

.instagram-shop .instagram-item,
.instagram-shop .instagram-item *,
.instagram-shop .instagram-popup,
.instagram-shop .instagram-popup *,
.instagram-shop .instagram-popup::before,
.instagram-shop .instagram-popup::after {
    transition-timing-function: cubic-bezier(.22, .61, .36, 1);
}

/*==========================================
FOCUS
==========================================*/

.instagram-shop .instagram-item:focus-within {
    box-shadow:
        0 25px 60px rgba(0, 0, 0, .16);
}

/*==========================================
MOBILE
==========================================*/

@media(max-width:991px) {

    .instagram-shop .instagram-item:hover {
        transform: none;
    }

    .instagram-shop .instagram-popup::after {
        display: none;
    }

}

@media(max-width:575px) {

    .instagram-shop .instagram-popup {
        border-radius: 8px;
    }

    .instagram-shop .popup-header {
        padding: 12px;
    }

    .instagram-shop .popup-body {
        padding: 12px;
    }

    .instagram-shop .popup-footer {
        padding: 12px;
    }

    .instagram-shop .popup-label {
        font-size: 10px;
        padding: 0 10px;
        height: 24px;
    }

    .instagram-shop .instagram-hotspot {
        width: 30px;
        height: 30px;
    }

    .instagram-shop .hotspot-dot {
        width: 6px;
        height: 6px;
    }

}


/*==========================================
ASSURANCE SLIDER
==========================================*/

.assurance-slider {
    position: relative;
    width: 100%;
    padding: 60px 0;
    background: #ffffff;
    overflow: hidden;
}

.assurance-wrapper {
    width: 100%;
    overflow: hidden;
}

.assurance-track {
    display: flex;
    align-items: stretch;
    will-change: transform;
    transition: transform .45s ease;
}

/*==========================================
ITEM
==========================================*/

.assurance-item {

    flex: 0 0 25%;

    padding: 15px 20px;

    text-align: center;

    user-select: none;

    cursor: grab;

}

.assurance-item:active {

    cursor: grabbing;

}

.assurance-icon {

    width: 60px;
    height: 60px;

    margin: 0 auto 18px;

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

    border-radius: 50%;

    transition: .35s;

}

.assurance-icon i {

    font-size: 32px;
    color: #2d2d2d;

    transition: .35s;

}

.assurance-content h3 {

    font-size: 22px;
    font-weight: 600;

    color: #2f2f2f;

    margin-bottom: 10px;

    line-height: 1.2;

}

.assurance-content p {

    font-size: 18px;

    color: #6f6f6f;

    line-height: 1.6;

}

/*==========================================
HOVER
==========================================*/

.assurance-item:hover .assurance-icon {

    transform: translateY(-4px) scale(1.08);

}

.assurance-item:hover .assurance-icon i {

    color: #000;

}

.assurance-item:hover h3 {

    color: #000;

}

/*==========================================
NAVIGATION
==========================================*/

/* .assurance-prev,
.assurance-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 48px;
    height: 48px;

    border: none;

    background: #fff;

    border-radius: 50%;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);

    cursor: pointer;

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

    z-index: 20;

    transition: .3s;

}

.assurance-prev {

    left: 15px;

}

.assurance-next {

    right: 15px;

}

.assurance-prev:hover,
.assurance-next:hover {

    transform: translateY(-50%) scale(1.08);

}

.assurance-prev i,
.assurance-next i {

    font-size: 18px;

    color: #222;

} */

/*==========================================
DOTS
==========================================*/

.assurance-dots {

    margin-top: 40px;

    display: flex;

    justify-content: center;

    gap: 12px;

}

.assurance-dots button {

    width: 10px;
    height: 10px;

    border-radius: 50%;

    border: none;

    background: #d5d5d5;

    cursor: pointer;

    transition: .3s;

}

.assurance-dots button.active {

    width: 34px;

    border-radius: 50px;

    background: #111;

}

/*==========================================
LARGE LAPTOP
==========================================*/

@media(max-width:1400px) {

    .assurance-content h3 {

        font-size: 24px;

    }

    .assurance-content p {

        font-size: 16px;

    }

}

/*==========================================
TABLET
==========================================*/

@media(max-width:992px) {

    .assurance-slider {

        padding: 50px 0;

    }

    .assurance-item {

        flex: 0 0 50%;

        padding: 10px 15px;

    }

    .assurance-content h3 {

        font-size: 22px;

    }

    .assurance-content p {

        font-size: 15px;

    }

    .assurance-prev,
    .assurance-next {

        width: 42px;
        height: 42px;

    }

}

/*==========================================
MOBILE
==========================================*/

@media(max-width:768px) {

    .assurance-item {

        flex: 0 0 100%;

    }

    .assurance-icon {

        width: 55px;
        height: 55px;

    }

    .assurance-icon i {

        font-size: 28px;

    }

    .assurance-content h3 {

        font-size: 21px;

    }

    .assurance-content p {

        font-size: 15px;

    }

    /* .assurance-prev,
    .assurance-next {

        display: none;

    } */

    .assurance-slider {

        padding: 40px 0;

    }

}

/*==========================================
SMALL MOBILE
==========================================*/

@media(max-width:480px) {

    .assurance-content h3 {

        font-size: 19px;

    }

    .assurance-content p {

        font-size: 14px;

    }

    .assurance-item {

        padding: 10px;

    }

    .assurance-dots {

        margin-top: 25px;

    }

}

/*==========================================
FOOTER
==========================================*/

.footer {
    width: 100%;
    background: #f7f7f7;
    /* margin-top: 80px; */
    position: relative;
}

.footer .container {
    width: min(1400px, 92%);
    margin: auto;
}

/*==========================================
TOP AREA
==========================================*/

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 70px;
    padding: 85px 0;
}

/*==========================================
COLUMN
==========================================*/

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 24px;
    font-weight: 600;
    color: #111;
    margin-bottom: 28px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: #6b6b6b;
    font-size: 18px;
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: #000;
    padding-left: 6px;
}

/*==========================================
NEWSLETTER
==========================================*/

.footer-newsletter {
    width: 100%;
}

.newsletter-text {
    color: #6b6b6b;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 28px;
}

/*==========================================
INPUT
==========================================*/

.newsletter-input {
    position: relative;
    display: flex;
    align-items: center;
    height: 64px;
    border: 1px solid #d8d8d8;
    background: #fff;
}

.newsletter-icon {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-icon i {
    font-size: 20px;
    color: #666;
}

.newsletter-input input {
    flex: 1;
    border: none;
    outline: none;
    height: 100%;
    background: none;
    font-size: 17px;
    color: #222;
    padding-right: 60px;
}

.newsletter-input input::placeholder {
    color: #8d8d8d;
}

.newsletter-input button {
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 100%;
    border: none;
    background: none;
    cursor: pointer;
    transition: .3s;
}

.newsletter-input button i {
    font-size: 18px;
    color: #222;
}

.newsletter-input button:hover {
    background: #111;
}

.newsletter-input button:hover i {
    color: #fff;
}

/*==========================================
PAYMENTS
==========================================*/

.payment-methods {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 26px;
}

.payment-methods img {
    height: 24px;
    width: auto;
    opacity: .75;
    transition: .3s;
}

.payment-methods img:hover {
    opacity: 1;
}

/*==========================================
BOTTOM BAR
==========================================*/

.footer-bottom {
    background: #fff;
    border-top: 1px solid #ececec;
}

.footer-bottom-wrapper {
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
}

/*==========================================
SELECT
==========================================*/

.footer-selector select {
    border: none;
    outline: none;
    background: none;
    font-size: 16px;
    color: #333;
    cursor: pointer;
}

/*==========================================
COPYRIGHT
==========================================*/

.footer-copyright {
    font-size: 17px;
    color: #555;
}

.footer-copyright a {
    color: #111;
    text-decoration: none;
    font-weight: 600;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/*==========================================
SCROLL TO TOP
==========================================*/

.scroll-top {
    position: fixed;
    right: 25px;
    bottom: 30px;
    width: 56px;
    height: 56px;
    border: 1px solid #111;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
    z-index: 100;
}

.scroll-top i {
    font-size: 18px;
    color: #111;
}

.scroll-top:hover {
    background: #111;
    transform: translateY(-4px);
}

.scroll-top:hover i {
    color: #fff;
}

/*==========================================
SMOOTH ANIMATION
==========================================*/

.footer-column,
.newsletter-input,
.payment-methods {
    transition: .35s;
}


/*==========================================
LARGE LAPTOP
==========================================*/

@media (max-width:1400px) {

    .footer-grid {
        gap: 50px;
    }

    .footer-title {
        font-size: 26px;
    }

    .footer-links a {
        font-size: 17px;
    }

    .newsletter-text {
        font-size: 17px;
    }

}

/*==========================================
LAPTOP
==========================================*/

@media (max-width:1200px) {

    .footer-grid {

        grid-template-columns: repeat(3, 1fr);

        gap: 50px 40px;

    }

    .footer-newsletter {

        grid-column: span 3;

        max-width: 650px;

    }

}

/*==========================================
TABLET
==========================================*/

@media (max-width:991px) {

    .footer {

        margin-top: 60px;

    }

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 45px 35px;

        padding: 70px 0;

    }

    .footer-newsletter {

        grid-column: span 2;

        max-width: 100%;

    }

    .footer-title {

        font-size: 24px;

    }

    .footer-links a {

        font-size: 16px;

    }

    .newsletter-text {

        font-size: 16px;

    }

    .newsletter-input {

        height: 58px;

    }

    .payment-methods {

        flex-wrap: wrap;

        gap: 14px;

    }

    .footer-bottom-wrapper {

        flex-direction: column;

        gap: 18px;

        padding: 25px 0;

    }

    .footer-copyright {

        text-align: center;

        line-height: 1.8;

    }

}

/*==========================================
MOBILE
==========================================*/

@media (max-width:767px) {

    .footer-grid {

        display: block;

        padding: 50px 0;

    }

    .footer-column {

        border-bottom: 1px solid #ececec;

    }

    .footer-column:last-child {

        border-bottom: none;

    }

    /*=========================
Accordion Title
=========================*/

    .footer-title {

        font-size: 20px;

        margin: 0;

        padding: 22px 0;

        cursor: pointer;

        position: relative;

        user-select: none;

    }

    .footer-title::after {

        content: "+";

        position: absolute;

        right: 0;

        top: 50%;

        transform: translateY(-50%);

        font-size: 22px;

        transition: .3s;

    }

    /*=========================
Accordion Open
=========================*/

    .footer-column.active .footer-title::after {

        transform: translateY(-50%) rotate(45deg);

    }

    /*=========================
Hide Content
=========================*/

    .footer-links,
    .newsletter-text,
    .newsletter-form,
    .payment-methods {

        max-height: 0;

        overflow: hidden;

        opacity: 0;

        transition: all .35s ease;

    }

    /*=========================
Show Content
=========================*/

    .footer-column.active .footer-links {

        max-height: 600px;

        opacity: 1;

        padding-bottom: 20px;

    }

    .footer-column.active .newsletter-text {

        max-height: 150px;

        opacity: 1;

        margin-bottom: 20px;

    }

    .footer-column.active .newsletter-form {

        max-height: 150px;

        opacity: 1;

    }

    .footer-column.active .payment-methods {

        max-height: 120px;

        opacity: 1;

        margin-top: 20px;

    }

    .footer-links li {

        margin-bottom: 16px;

    }

    .footer-links a {

        font-size: 15px;

    }

    .newsletter-text {

        font-size: 15px;

        line-height: 1.7;

    }

    .newsletter-input {

        height: 54px;

    }

    .newsletter-input input {

        font-size: 15px;

    }

    .footer-bottom {

        padding: 20px 0;

    }

    .footer-bottom-wrapper {

        gap: 15px;

    }

    .footer-selector select {

        font-size: 15px;

    }

    .footer-copyright {

        font-size: 14px;

        text-align: center;

        line-height: 1.7;

    }

    .scroll-top {

        width: 48px;

        height: 48px;

        right: 18px;

        bottom: 18px;

    }

}

/*==========================================
SMALL MOBILE
==========================================*/

@media (max-width:480px) {

    .footer {

        margin-top: 40px;

    }

    .footer-grid {

        padding: 40px 0;

    }

    .footer-title {

        font-size: 18px;

        padding: 18px 0;

    }

    .footer-links a {

        font-size: 14px;

    }

    .newsletter-text {

        font-size: 14px;

    }

    .newsletter-input {

        height: 50px;

    }

    .newsletter-icon {

        width: 50px;

    }

    .newsletter-input button {

        width: 50px;

    }

    .payment-methods {

        justify-content: flex-start;

        gap: 12px;

    }

    .payment-methods img {

        height: 20px;

    }

    .footer-copyright {

        font-size: 13px;

    }

}

/*==========================================
SCROLL TO TOP
==========================================*/

.scroll-top {

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    transition: .35s ease;

}

.scroll-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}



/*==========================================
COLLECTION BANNER
==========================================*/

.collection-banner {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.collection-banner-image {
    position: absolute;
    inset: 0;
}

.collection-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .35);
}

.collection-banner .container {
    position: relative;
    height: 100%;
}

.collection-banner-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.collection-title {
    margin: 0 0 12px;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: .5px;
}

.collection-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
}

.collection-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.collection-breadcrumb a:hover {
    color: #d8a73b;
}

.collection-breadcrumb span {
    color: #fff;
    font-size: 14px;
}

.collection-breadcrumb .active {
    opacity: .9;
}


/*==========================================
PRODUCT TOOLBAR
==========================================*/

.product-toolbar {
    padding: 30px 0 40px;
    background: #fff;
}

.product-toolbar-wrapper {

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    column-gap: 40px;

}

/*==========================================
LEFT
==========================================*/

.toolbar-left {

    justify-self: start;

}

.filter-btn {

    display: flex;

    align-items: center;

    gap: 8px;

    border: none;

    background: none;

    cursor: pointer;

    color: #777;

    font-size: 15px;

    font-weight: 500;

    transition: .3s;

}

.filter-btn:hover {

    color: #000;

}

.filter-btn i {

    font-size: 18px;

}

/*==========================================
CENTER
==========================================*/

.toolbar-center {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

}

.grid-btn {

    width: 30px;

    height: 28px;

    padding: 3px;

    display: grid;

    gap: 2px;

    border: none;

    background: none;

    cursor: pointer;

}

.grid-btn span {

    background: #bdbdbd;

    transition: .3s;

}

.grid-btn:hover span {

    background: #444;

}

.grid-btn.active span {

    background: #222;

}

.grid-btn[data-grid="2"] {

    grid-template-columns: repeat(2, 1fr);

}

.grid-btn[data-grid="3"] {

    grid-template-columns: repeat(3, 1fr);

}

.grid-btn[data-grid="4"] {

    grid-template-columns: repeat(4, 1fr);

}

.grid-btn[data-grid="5"] {

    grid-template-columns: repeat(5, 1fr);

}

.grid-btn[data-grid="6"] {

    grid-template-columns: repeat(6, 1fr);

}


.toolbar-right {

    justify-self: end;

}


.sort-select {

    width: 175px;

    height: 42px;

    padding: 0 18px;

    border: 1px solid #e5e5e5;

    background: #fff;

    font-size: 14px;

    color: #555;

    outline: none;

    cursor: pointer;

    transition: .3s;

}

.sort-select:hover {

    border-color: #999;

}

.sort-select:focus {

    border-color: #111;

}

@media(max-width:991px) {

    .product-toolbar-wrapper {

        grid-template-columns: 1fr;

        row-gap: 20px;

    }

    .toolbar-left,
    .toolbar-center,
    .toolbar-right {

        justify-self: center;

    }

    .sort-select {

        width: 220px;

    }

}


/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:991px) {

    .collection-banner {
        height: 220px;
    }

    .collection-title {
        font-size: 34px;
    }

    .product-toolbar-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .toolbar-left {
        order: 1;
    }

    .toolbar-center {
        order: 2;
    }

    .toolbar-right {
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }

}

@media(max-width:576px) {

    .collection-banner {
        height: 180px;
    }

    .collection-title {
        font-size: 28px;
    }

    .collection-breadcrumb {
        font-size: 13px;
    }

    .toolbar-center {
        gap: 6px;
    }

    .grid-btn {
        width: 24px;
        height: 24px;
    }

    .sort-select {
        width: 100%;
    }

}

/*==========================================
PRODUCT GRID
==========================================*/


.product-list-section {
    padding-bottom: 60px;
}

.product-list-section .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media(max-width:991px) {
    .product-list-section .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:575px) {
    .product-list-section .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

.product-list-section .product-card {
    width: 100%;
    background: #fff;
}

.product-list-section .product-item {
    width: 100%;
}

.product-list-section .product-image {

    position: relative;

    overflow: hidden;

    aspect-ratio: 3/4;

    background: #f5f5f5;

}

.product-list-section .product-image-link {

    display: block;

    width: 100%;

    height: 100%;

}

.product-list-section .product-img,
.product-list-section .product-video {

    width: 100%;

    height: 100%;

    object-fit: cover;

    position: absolute;

    inset: 0;

}

.product-list-section .product-image-link::before {
    content: "";
    display: block;
    padding-top: 140%;
}

.product-list-section .main-img {

    opacity: 1;

    transition: .45s;

}

.product-list-section .hover-img {

    opacity: 0;

    transition: .45s;

}

.product-list-section .product-card:hover .main-img {

    opacity: 0;

}

.product-list-section .product-card:hover .hover-img {

    opacity: 1;

}

.product-list-section .product-badges {

    position: absolute;

    top: 15px;

    right: 15px;

    display: flex;

    flex-direction: column;

    align-items: flex-end;

    gap: 8px;

    z-index: 20;

}

.product-list-section .badge {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 7px 12px;

    min-width: 58px;

    border-radius: 3px;

    font-size: 12px;

    font-weight: 600;

    line-height: 1;

    color: #fff;

}

.product-list-section .badge-new {

    background: #58c9ef;

}

.product-list-section .badge-sale {

    background: #ff6200;

}

.product-list-section .badge-preorder {

    background: #2f6ff3;

}

.product-list-section .product-actions {

    position: absolute;

    top: 15px;

    left: 15px;

    display: flex;

    flex-direction: column;

    gap: 10px;

    z-index: 20;

    opacity: 0;

    transform: translateX(-15px);

    transition: .35s;

}

.product-list-section .product-card:hover .product-actions {

    opacity: 1;

    transform: translateX(0);

}

.product-list-section .action-btn {

    width: 36px;

    height: 36px;

    border: none;

    border-radius: 50%;

    background: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

}

.product-list-section .product-hover {

    position: absolute;

    inset: 0;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 12px;

    background: rgba(255, 255, 255, .18);

    opacity: 0;

    transition: .35s;

}

.product-list-section .product-card:hover .product-hover {

    opacity: 1;

}

.product-list-section .hover-btn {

    width: 150px;
    text-align: center;
    height: 42px;
    line-height: 42px;

    border: none;

    cursor: pointer;

    font-size: 14px;

    font-weight: 600;

    transition: .3s;

}

.product-list-section .quick-view-btn {

    background: #fff;

}

.product-list-section .quick-add-btn {

    background: #d6a438;

    color: #fff;

}

/*==========================================
TOOLBAR LEFT
==========================================*/

.toolbar-left {
    display: flex;
    align-items: center;
}

/*==========================================
FILTER BUTTON
==========================================*/

.filter-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    height: 46px;

    padding: 0 22px;

    border: 1px solid #d9d9d9;

    background: #ffffff;

    color: #222;

    font-size: 15px;
    font-weight: 500;

    border-radius: 6px;

    cursor: pointer;

    transition: all .3s ease;

    white-space: nowrap;

    outline: none;

}

.filter-btn i {

    font-size: 20px;

    line-height: 1;

    transition: .3s;

}

.filter-btn span {

    line-height: 1;

}

/*==========================================
HOVER
==========================================*/

.filter-btn:hover {

    background: #111;

    border-color: #111;

    color: #fff;

}

.filter-btn:hover i {

    transform: rotate(-20deg);

}

/*==========================================
ACTIVE
==========================================*/

.filter-btn:active {

    transform: scale(.97);

}

/*==========================================
FOCUS
==========================================*/

.filter-btn:focus-visible {

    box-shadow: 0 0 0 3px rgba(0, 0, 0, .12);

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:991px) {

    .filter-btn {

        height: 42px;

        padding: 0 18px;

        font-size: 14px;

    }

    .filter-btn i {

        font-size: 18px;

    }

}

@media(max-width:767px) {

    .toolbar-left {

        width: 100%;

    }

    .filter-btn {

        width: 100%;

        justify-content: center;

    }

}

@media(max-width:480px) {

    .filter-btn {

        height: 40px;

        padding: 0 15px;

        font-size: 14px;

        gap: 8px;

    }

    .filter-btn i {

        font-size: 17px;

    }

}


/*==========================================
FILTER OVERLAY
==========================================*/

.filter-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    opacity: 0;

    visibility: hidden;

    transition: .35s ease;

    z-index: 9998;

}

.filter-overlay.active {

    opacity: 1;

    visibility: visible;

}

/*==========================================
FILTER DRAWER
==========================================*/

.filter-drawer {

    position: fixed;

    top: 0;

    left: 0;

    width: 420px;

    max-width: 100%;

    height: 100vh;

    background: #fff;

    transform: translateX(-100%);

    transition: .35s ease;

    display: flex;

    flex-direction: column;

    z-index: 9999;

    box-shadow: 10px 0 40px rgba(0, 0, 0, .12);

}

.filter-drawer.active {

    transform: translateX(0);

}

/*==========================================
HEADER
==========================================*/

.filter-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 22px 30px;

    border-bottom: 1px solid #ededed;

    flex-shrink: 0;

}

.filter-header h2 {

    margin: 0;

    font-size: 24px;

    font-weight: 700;

    color: #111;

    letter-spacing: .5px;

}

.filter-close {

    width: 42px;

    height: 42px;

    border: none;

    background: none;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: .3s;

}

.filter-close i {

    font-size: 28px;

    color: #111;

}

.filter-close:hover {

    transform: rotate(90deg);

}

/*==========================================
BODY
==========================================*/

.filter-body {

    flex: 1;

    overflow-y: auto;

    padding: 25px 30px;

}

/*==========================================
CUSTOM SCROLLBAR
==========================================*/

.filter-body::-webkit-scrollbar {

    width: 6px;

}

.filter-body::-webkit-scrollbar-thumb {

    background: #c8c8c8;

    border-radius: 20px;

}

.filter-body::-webkit-scrollbar-track {

    background: #f6f6f6;

}

/*==========================================
GROUP
==========================================*/

.filter-group {

    border-bottom: 1px solid #efefef;

    padding: 0 0 22px;

    margin-bottom: 22px;

}

.filter-group:last-child {

    border: none;

    margin-bottom: 0;

}

/*==========================================
TITLE
==========================================*/

.filter-title {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: none;

    background: none;

    padding: 0;

    cursor: pointer;

    font-size: 17px;

    font-weight: 600;

    color: #111;

}

.filter-title span {

    pointer-events: none;

}

.filter-title i {

    font-size: 22px;

    transition: .3s;

}

.filter-title.active i {

    transform: rotate(180deg);

}

/*==========================================
CONTENT
==========================================*/

.filter-content {

    margin-top: 18px;

}

/*==========================================
FOOTER
==========================================*/

.filter-footer {

    padding: 20px 30px;

    border-top: 1px solid #ededed;

    display: flex;

    gap: 15px;

    background: #fff;

    flex-shrink: 0;

}

.filter-clear {

    flex: 1;

    height: 48px;

    border: 1px solid #d8d8d8;

    background: #fff;

    cursor: pointer;

    font-size: 15px;

    font-weight: 600;

    transition: .3s;

}

.filter-clear:hover {

    background: #111;

    color: #fff;

    border-color: #111;

}

.filter-apply {

    flex: 1;

    height: 48px;

    border: none;

    background: #111;

    color: #fff;

    cursor: pointer;

    font-size: 15px;

    font-weight: 600;

    transition: .3s;

}

.filter-apply:hover {

    opacity: .9;

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:768px) {

    .filter-drawer {

        width: 100%;

    }

    .filter-header {

        padding: 18px 20px;

    }

    .filter-body {

        padding: 20px;

    }

    .filter-footer {

        padding: 18px 20px;

    }

}

/*==========================================
ACCORDION CONTENT
==========================================*/

.filter-content {

    overflow: hidden;

    max-height: 1000px;

    opacity: 1;

    transition: max-height .35s ease, opacity .35s ease;

}

.filter-group.collapsed .filter-content {

    max-height: 0;

    opacity: 0;

    margin-top: 0;

}

.filter-group.collapsed .filter-title i {

    transform: rotate(0deg);

}

.filter-group .filter-title i {

    transform: rotate(180deg);

}

/*==========================================
CHECKBOX
==========================================*/

.filter-checkbox {

    display: flex;

    align-items: center;

    gap: 12px;

    position: relative;

    cursor: pointer;

    margin-bottom: 16px;

    user-select: none;

}

.filter-checkbox:last-child {

    margin-bottom: 0;

}

.filter-checkbox input {

    display: none;

}

.checkmark {

    width: 18px;

    height: 18px;

    border: 1.5px solid #bfbfbf;

    border-radius: 3px;

    position: relative;

    transition: .25s;

    flex-shrink: 0;

}

.checkmark::after {

    content: "";

    position: absolute;

    left: 5px;

    top: 1px;

    width: 5px;

    height: 10px;

    border: solid #fff;

    border-width: 0 2px 2px 0;

    transform: rotate(45deg) scale(0);

    transition: .2s;

}

.filter-checkbox input:checked+.checkmark {

    background: #111;

    border-color: #111;

}

.filter-checkbox input:checked+.checkmark::after {

    transform: rotate(45deg) scale(1);

}

.label-text {

    flex: 1;

    font-size: 15px;

    color: #333;

    transition: .3s;

}

.filter-content .count {
    font-size: 14px;
    color: #999 !important;
    background-color: transparent;
    right: 8px;
}

.filter-checkbox:hover .label-text {

    color: #000;

}

/*==========================================
COLOR
==========================================*/

.filter-color {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 16px;

    cursor: pointer;

}

.filter-color:last-child {

    margin-bottom: 0;

}

.filter-color input {

    display: none;

}

.color-swatch {

    width: 22px;

    height: 22px;

    border-radius: 50%;

    position: relative;

    flex-shrink: 0;

}

.color-swatch::after {

    content: "";

    position: absolute;

    inset: -4px;

    border: 1px solid transparent;

    border-radius: 50%;

    transition: .3s;

}

.filter-color input:checked+.color-swatch::after {

    border-color: #111;

}

.filter-color:hover .color-swatch {

    transform: scale(1.08);

}

/*==========================================
SIZE
==========================================*/

.size-list {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}

.size-item {

    cursor: pointer;

}

.size-item input {

    display: none;

}

.size-item span {

    min-width: 46px;

    height: 42px;

    padding: 0 16px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #d8d8d8;

    transition: .3s;

    font-size: 14px;

    font-weight: 500;

}

.size-item input:checked+span {

    background: #111;

    color: #fff;

    border-color: #111;

}

.size-item span:hover {

    border-color: #111;

}

/*==========================================
TAGS
==========================================*/

.tag-list {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}

.tag-item {

    cursor: pointer;

}

.tag-item input {

    display: none;

}

.tag-item span {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 10px 18px;

    border: 1px solid #d8d8d8;

    border-radius: 50px;

    font-size: 14px;

    transition: .3s;

}

.tag-item input:checked+span {

    background: #111;

    color: #fff;

    border-color: #111;

}

.tag-item span:hover {

    border-color: #111;

}

/*==========================================
PRICE
==========================================*/

.price-filter {

    padding-top: 6px;

}

.price-slider {

    position: relative;

    height: 6px;

    margin: 25px 0;

}

.price-track {

    position: absolute;

    inset: 0;

    background: #e6e6e6;

    border-radius: 50px;

}

.price-progress {

    position: absolute;

    left: 10%;

    right: 30%;

    height: 100%;

    background: #111;

    border-radius: 50px;

}

.price-slider input[type="range"] {

    position: absolute;

    left: 0;

    top: -6px;

    width: 100%;

    appearance: none;

    background: none;

    pointer-events: none;

}

.price-slider input::-webkit-slider-thumb {

    appearance: none;

    width: 18px;

    height: 18px;

    border-radius: 50%;

    background: #111;

    cursor: pointer;

    pointer-events: auto;

}

.price-values {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 20px;

    font-size: 15px;

    color: #333;

}

.price-filter-btn {

    width: 100%;

    height: 46px;

    border: none;

    background: #111;

    color: #fff;

    cursor: pointer;

    font-size: 15px;

    font-weight: 600;

    transition: .3s;

}

.price-filter-btn:hover {

    opacity: .9;

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:768px) {

    .label-text {

        font-size: 14px;

    }

    .count {

        font-size: 13px;

    }

    .size-item span {

        min-width: 42px;

        height: 38px;

    }

    .tag-item span {

        padding: 8px 14px;

        font-size: 13px;

    }

}