﻿/*
Template Name: Electro - HTML Ecommerce Template
Author: yaminncco

Colors:
	Body 		: #333
	Headers 	: #2B2D42
	Primary 	: #ff4081
	Dark 		: #15161D ##1E1F29
	Grey 		: #E4E7ED #FBFBFC #8D99AE #B9BABC

Fonts: Montserrat

Table OF Contents
------------------------------------
1 > GENERAL
------ Typography
------ Buttons
------ Inputs
------ Sections
------ Breadcrumb
2 > HEADER
------ Top header
------ Logo
------ Search
------ Cart
3 > NAVIGATION
------ Main nav
------ Responsive Nav
4 > CATEGORY SHOP
5 > HOT DEAL
6 > PRODUCT
------ Product
------ Widget product
------ Product slick
7 > STORE PAGE
------ Aside
------ Store
8 > PRODUCT DETAILS PAGE
------ Product view
------ Product details
------ Product tab
9 > CHECKOUT PAGE
10 > NEWSLETTER
11 > FOOTER
11 > SLICK STYLE
12 > RESPONSIVE
------------------------------------*/

/*=========================================================
	01 -> GENERAL
===========================================================*/

/*----------------------------*\
	Typography
\*----------------------------*/

body {
    font-family: Poppins,Poppins Fallback,Roboto,Helvetica Neue,Arial,sans-serif;
    font-weight: 400;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    color: #2B2D42;
    font-weight: 700;
    margin: 0 0 10px;
}

a {
    color: #2B2D42;
    font-weight: 500;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

    a:hover, a:focus {
        color: #ff4081;
        text-decoration: none;
        outline: none;
    }

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none
}

/*----------------------------*\
	Buttons
\*----------------------------*/

.primary-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff4081;
    border: none;
    border-radius: 40px;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

    .primary-btn:hover, .primary-btn:focus {
        opacity: 0.9;
        color: #FFF;
    }

/*----------------------------*\
	Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
    height: 40px;
    padding: 0px 15px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    width: 100%;
}

textarea.input {
    padding: 15px;
    min-height: 90px;
}

/*-- Number input --*/

.input-number {
    position: relative;
}

    .input-number input[type="number"]::-webkit-inner-spin-button, .input-number input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .input-number input[type="number"] {
        -moz-appearance: textfield;
        height: 40px;
        width: 100%;
        border: 1px solid #E4E7ED;
        background-color: #FFF;
        padding: 0px 35px 0px 15px;
    }

    .input-number .qty-up, .input-number .qty-down {
        position: absolute;
        display: block;
        width: 20px;
        height: 20px;
        border: 1px solid #E4E7ED;
        background-color: #FFF;
        text-align: center;
        font-weight: 700;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .input-number .qty-up {
        right: 0;
        top: 0;
        border-bottom: 0px;
    }

    .input-number .qty-down {
        right: 0;
        bottom: 0;
    }

        .input-number .qty-up:hover, .input-number .qty-down:hover {
            background-color: #E4E7ED;
            color: #ff4081;
        }

/*-- Select input --*/

.input-select {
    padding: 0px 15px;
    background: #FFF;
    border: 1px solid #E4E7ED;
    height: 40px;
}

/*-- checkbox & radio input --*/

.input-radio, .input-checkbox {
    position: relative;
    display: block;
}

    .input-radio input[type="radio"]:not(:checked), .input-radio input[type="radio"]:checked, .input-checkbox input[type="checkbox"]:not(:checked), .input-checkbox input[type="checkbox"]:checked {
        position: absolute;
        margin-left: -9999px;
        visibility: hidden;
    }

    .input-radio label, .input-checkbox label {
        font-weight: 500;
        min-height: 20px;
        padding-left: 20px;
        margin-bottom: 5px;
        cursor: pointer;
    }

    .input-radio input[type="radio"] + label span, .input-checkbox input[type="checkbox"] + label span {
        position: absolute;
        left: 0px;
        top: 4px;
        width: 14px;
        height: 14px;
        border: 2px solid #E4E7ED;
        background: #FFF;
    }

    .input-radio input[type="radio"] + label span {
        border-radius: 50%;
    }

        .input-radio input[type="radio"] + label span:after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%) scale(0);
            -ms-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
            background-color: #FFF;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            opacity: 0;
            -webkit-transition: all 0.2s;
            transition: all 0.2s;
        }

    .input-checkbox input[type="checkbox"] + label span:after {
        content: '✔';
        position: absolute;
        top: -2px;
        left: 1px;
        font-size: 10px;
        color: #FFF;
        opacity: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }

    .input-radio input[type="radio"]:checked + label span, .input-checkbox input[type="checkbox"]:checked + label span {
        background-color: #ff4081;
        border-color: #ff4081;
    }

        .input-radio input[type="radio"]:checked + label span:after {
            opacity: 1;
            -webkit-transform: translate(-50%, -50%) scale(1);
            -ms-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
        }

        .input-checkbox input[type="checkbox"]:checked + label span:after {
            opacity: 1;
            -webkit-transform: scale(1);
            -ms-transform: scale(1);
            transform: scale(1);
        }

    .input-radio .caption, .input-checkbox .caption {
        margin-top: 5px;
        max-height: 0;
        overflow: hidden;
        -webkit-transition: 0.3s max-height;
        transition: 0.3s max-height;
    }

    .input-radio input[type="radio"]:checked ~ .caption, .input-checkbox input[type="checkbox"]:checked ~ .caption {
        max-height: 800px;
    }

/*----------------------------*\
	Section
\*----------------------------*/

.section {
    padding-top: 10px;
    padding-bottom: 30px;
    overflow: hidden;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    margin-top: 15px;
}

    .section-title .title {
        display: inline-block;
        text-transform: uppercase;
        margin: 0px;
    }

    .section-title .section-nav {
        float: right;
    }

        .section-title .section-nav .section-tab-nav {
            display: inline-block;
        }

.section-tab-nav li {
    display: inline-block;
    margin-right: 15px;
}

    .section-tab-nav li:last-child {
        margin-right: 0px;
    }

    .section-tab-nav li a {
        font-weight: 700;
        color: #8D99AE;
    }

        .section-tab-nav li a:after {
            content: "";
            display: block;
            width: 0%;
            height: 2px;
            background-color: #ff4081;
            -webkit-transition: 0.2s all;
            transition: 0.2s all;
        }

    .section-tab-nav li.active a {
        color: #ff4081;
    }

        .section-tab-nav li a:hover:after, .section-tab-nav li a:focus:after, .section-tab-nav li.active a:after {
            width: 100%;
        }

.section-title .section-nav .products-slick-nav {
    top: 0px;
    right: 0px;
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
    padding: 30px 0px;
    background: #FBFBFC;
    border-bottom: 1px solid #E4E7ED;
    margin-bottom: 30px;
}

    #breadcrumb .breadcrumb-header {
        display: inline-block;
        margin-top: 0px;
        margin-bottom: 0px;
        margin-right: 15px;
        text-transform: uppercase;
    }

    #breadcrumb .breadcrumb-tree {
        display: inline-block;
    }

        #breadcrumb .breadcrumb-tree li {
            display: inline-block;
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
        }

            #breadcrumb .breadcrumb-tree li + li {
                margin-left: 10px;
            }

                #breadcrumb .breadcrumb-tree li + li:before {
                    content: '/';
                    display: inline-block;
                    color: #8D99AE;
                    margin-right: 10px;
                }

            #breadcrumb .breadcrumb-tree li a {
                color: #8D99AE;
            }

                #breadcrumb .breadcrumb-tree li a:hover {
                    color: #ff4081;
                }

/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #1E1F29;
}

.header-links li {
    display: inline-block;
    margin-right: 15px;
    font-size: 12px;
}

    .header-links li:last-child {
        margin-right: 0px;
    }

    .header-links li a {
        color: #FFF;
    }

        .header-links li a:hover {
            color: #ff4081;
        }

    .header-links li i {
        color: #ff4081;
        margin-right: 5px;
    }

/*----------------------------*\
	Logo
\*----------------------------*/

#header {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #15161D;
}

.header-logo {
    float: left;
}

    .header-logo .logo img {
        display: block;
        width:100%
    }

/*----------------------------*\
	Search
\*----------------------------*/

.header-search {
    padding: 15px 0px;
}

    .header-search form {
        position: relative;
    }

        .header-search form .input-select {
            margin-right: -4px;
            border-radius: 40px 0px 0px 40px;
        }

        .header-search form .input {
            width: calc(100% - 260px);
            margin-right: -4px;
        }

        .header-search form .search-btn {
            height: 40px;
            width: 100px;
            background: #ff4081;
            color: #FFF;
            font-weight: 700;
            border: none;
            border-radius: 0px 40px 40px 0px;
        }

/*----------------------------*\
	Cart
\*----------------------------*/

.header-ctn {
    float: right;
    padding: 15px 0px;
}

    .header-ctn > div {
        display: inline-block;
    }

        .header-ctn > div + div {
            margin-left: 15px;
        }

        .header-ctn > div > a {
            display: block;
            position: relative;
            width: 90px;
            text-align: center;
            color: #FFF;
        }

            .header-ctn > div > a > i {
                display: block;
                font-size: 18px;
            }

            .header-ctn > div > a > span {
                font-size: 12px;
            }

            .header-ctn > div > a > .qty {
                position: absolute;
                right: 15px;
                top: -10px;
                width: 20px;
                height: 20px;
                line-height: 20px;
                text-align: center;
                border-radius: 50%;
                font-size: 10px;
                color: #FFF;
                background-color: #ff4081;
            }

    .header-ctn .menu-toggle {
        display: none;
    }

.cart-dropdown {
    position: absolute;
    width: 300px;
    background: #FFF;
    padding: 15px;
    box-shadow: 0px 0px 0px 2px #E4E7ED;
    z-index: 99;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.dropdown.open > .cart-dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown.open {
    position: relative !important;
}


.cart-dropdown .cart-list {
    max-height: 180px;
    overflow-y: scroll;
    margin-bottom: 15px;
}

    .cart-dropdown .cart-list .product-widget {
        padding: 0px;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .cart-dropdown .cart-list .product-widget:last-child {
            margin-bottom: 0px;
        }

        .cart-dropdown .cart-list .product-widget .product-img {
            left: 0px;
            top: 0px;
        }

        .cart-dropdown .cart-list .product-widget .product-body .product-price {
            color: #2B2D42;
        }

.cart-dropdown .cart-btns {
    margin: 0px -17px -17px;
}

    .cart-dropdown .cart-btns > a {
        display: inline-block;
        width: calc(50% - 0px);
        padding: 12px;
        background-color: #ff4081;
        color: #FFF;
        text-align: center;
        font-weight: 700;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

        .cart-dropdown .cart-btns > a:first-child {
            margin-right: -4px;
            background-color: #1e1f29;
        }

        .cart-dropdown .cart-btns > a:hover {
            opacity: 0.9;
        }

.cart-dropdown .cart-summary {
    border-top: 1px solid #E4E7ED;
    padding-top: 15px;
    padding-bottom: 15px;
}

/*=========================================================
	03 -> Navigation
===========================================================*/

#navigation {
    background: #FFF;
    border-bottom: 2px solid #E4E7ED;
    border-top: 3px solid #ff4081;
}

/*----------------------------*\
	Main nav
\*----------------------------*/

.main-nav > li + li {
    margin-left: 30px
}

.main-nav > li > a {
    padding: 20px 0px;
}

    .main-nav > li > a:hover, .main-nav > li > a:focus, .main-nav > li.active > a {
        color: #ff4081;
        background-color: transparent;
    }

    .main-nav > li > a:after {
        content: "";
        display: block;
        width: 0%;
        height: 2px;
        background-color: #ff4081;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

    .main-nav > li > a:hover:after, .main-nav > li > a:focus:after, .main-nav > li.active > a:after {
        width: 100%;
    }

.header-ctn li.nav-toggle {
    display: none;
}

/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
    .header-ctn .menu-toggle {
        display: inline-block;
    }

    #responsive-nav {
        position: fixed;
        left: 0;
        top: 0;
        background: #15161D;
        height: 100vh;
        max-width: 250px;
        width: 0%;
        overflow: hidden;
        z-index: 22;
        padding-top: 60px;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

        #responsive-nav.active {
            -webkit-transform: translateX(0%);
            -ms-transform: translateX(0%);
            transform: translateX(0%);
            width: 100%;
        }

    .main-nav {
        margin: 0px;
        float: none;
    }

        .main-nav > li {
            display: block;
            float: none;
        }

            .main-nav > li + li {
                margin-left: 0px;
            }

            .main-nav > li > a {
                padding: 15px;
                color: #FFF;
            }
}

/*=========================================================
	04 -> CATEGORY SHOP
===========================================================*/

.shop {
    position: relative;
    overflow: hidden;
    margin: 15px 0px;
}

    .shop:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0px;
        width: 60%;
        background: #ff4081;
        opacity: 0.9;
        -webkit-transform: skewX(-45deg);
        -ms-transform: skewX(-45deg);
        transform: skewX(-45deg);
    }

    .shop:after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 1px;
        width: 100%;
        background: #ff4081;
        opacity: 0.9;
        -webkit-transform: skewX(-45deg) translateX(-100%);
        -ms-transform: skewX(-45deg) translateX(-100%);
        transform: skewX(-45deg) translateX(-100%);
    }

    .shop .shop-img {
        position: relative;
        background-color: #E4E7ED;
        z-index: -1;
    }

        .shop .shop-img > img {
            width: 100%;
            -webkit-transition: 0.2s all;
            transition: 0.2s all;
        }

    .shop:hover .shop-img > img {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    .shop .shop-body {
        position: absolute;
        top: 0;
        width: 75%;
        padding: 30px;
        z-index: 10;
    }

        .shop .shop-body h3 {
            color: #FFF;
        }

        .shop .shop-body .cta-btn {
            color: #FFF;
            text-transform: uppercase;
        }

/*=========================================================
	05 -> HOT DEAL
===========================================================*/

#hot-deal.section {
    padding: 60px 0px;
    margin: 30px 0px;
    background-color: #e9efff;
    background-position: center;
    background-repeat: no-repeat;
}

.hot-deal {
    text-align: center;
}

    .hot-deal .hot-deal-countdown {
        margin-bottom: 30px;
    }

        .hot-deal .hot-deal-countdown > li {
            position: relative;
            display: inline-block;
            width: 100px;
            height: 100px;
            background: #ff4081e6;
            text-align: center;
            border-radius: 50%;
            margin: 0px 5px;
        }

            .hot-deal .hot-deal-countdown > li > div {
                position: absolute;
                left: 0;
                right: 0;
                top: 50%;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
            }

                .hot-deal .hot-deal-countdown > li > div h3 {
                    color: #FFF;
                    margin-bottom: 0px;
                }

                .hot-deal .hot-deal-countdown > li > div span {
                    display: block;
                    font-size: 10px;
                    text-transform: uppercase;
                    color: #FFF;
                }

    .hot-deal p {
        text-transform: uppercase;
        font-size: 24px;
    }

    .hot-deal .cta-btn {
        margin-top: 15px;
    }

/*=========================================================
	06 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/

.product {
    position: relative;
    margin: 15px 0px;
    -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
    box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

    .product:hover {
        -webkit-box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #ff4081;
        box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px #ff4081;
    }

    .product .product-img {
        position: relative;
        /*  max-height: 250px !important
*/
    }

        .product .product-img > img {
            width: 100%;
        }

        .product .product-img .product-label {
            position: absolute;
            top: 15px;
            right: 15px;
        }

            .product .product-img .product-label > span {
                border: 2px solid;
                padding: 2px 10px;
                font-size: 12px;
            }

                .product .product-img .product-label > span.sale {
                    background-color: #FFF;
                    border-color: #ff4081;
                    color: #ff4081;
                }

                .product .product-img .product-label > span.new {
                    background-color: #ff4081;
                    border-color: #ff4081;
                    color: #FFF;
                }

    .product .product-body {
        position: relative;
        padding: 15px;
        background-color: #FFF;
        text-align: center;
        z-index: 20;
    }

        .product .product-body .product-category {
            text-transform: uppercase;
            font-size: 12px;
            color: #8D99AE;
        }

        .product .product-body .product-name {
            text-transform: uppercase;
            font-size: 14px;
        }

            .product .product-body .product-name > a {
                font-weight: 700;
            }

                .product .product-body .product-name > a:hover, .product .product-body .product-name > a:focus {
                    color: #ff4081;
                }

        .product .product-body .product-price {
            color: #ff4081;
            font-size: 18px;
        }

            .product .product-body .product-price .product-old-price {
                font-size: 70%;
                font-weight: 400;
                color: #8D99AE;
            }

        .product .product-body .product-rating {
            position: relative;
            margin: 15px 0px 10px;
            height: 20px;
        }

            .product .product-body .product-rating > i {
                position: relative;
                width: 14px;
                margin-right: -4px;
                background: #FFF;
                color: #E4E7ED;
                z-index: 10;
            }

                .product .product-body .product-rating > i.fa-star {
                    color: #ff4081;
                }

            .product .product-body .product-rating:after {
                content: "";
                position: absolute;
                top: 50%;
                left: 0;
                right: 0;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
                height: 1px;
                background-color: #E4E7ED;
            }

        .product .product-body .product-btns > button {
            position: relative;
            width: 40px;
            height: 40px;
            line-height: 40px;
            background: transparent;
            border: none;
            -webkit-transition: 0.2s all;
            transition: 0.2s all;
        }

            .product .product-body .product-btns > button:hover {
                background-color: #E4E7ED;
                color: #ff4081;
                border-radius: 50%;
            }

            .product .product-body .product-btns > button .tooltipp {
                position: absolute;
                bottom: 100%;
                left: 50%;
                -webkit-transform: translate(-50%, -15px);
                -ms-transform: translate(-50%, -15px);
                transform: translate(-50%, -15px);
                width: 150px;
                padding: 10px;
                font-size: 12px;
                line-height: 10px;
                background: #1e1f29;
                color: #FFF;
                text-transform: uppercase;
                z-index: 10;
                opacity: 0;
                visibility: hidden;
                -webkit-transition: 0.2s all;
                transition: 0.2s all;
            }

            .product .product-body .product-btns > button:hover .tooltipp {
                opacity: 1;
                visibility: visible;
                -webkit-transform: translate(-50%, -5px);
                -ms-transform: translate(-50%, -5px);
                transform: translate(-50%, -5px);
            }

    .product .add-to-cart {
        position: absolute;
        left: 1px;
        right: 1px;
        bottom: 1px;
        padding: 15px;
        background: #ffb3de;
        text-align: center;
        -webkit-transform: translateY(0%);
        -ms-transform: translateY(0%);
        transform: translateY(100%);
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
        z-index: 2;
    }

    .product:hover .add-to-cart {
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        transform: translateY(100%);
    }

    .product .add-to-cart .add-to-cart-btn {
        position: relative;
        border: 2px solid transparent;
        height: 40px;
        padding: 0 30px;
        background-color: #ff4081;
        color: #FFF;
        text-transform: uppercase;
        font-weight: 700;
        border-radius: 40px;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

        .product .add-to-cart .add-to-cart-btn > i {
            position: absolute;
            left: 0;
            top: 0;
            width: 40px;
            height: 40px;
            line-height: 38px;
            color: #ff4081;
            opacity: 0;
            visibility: hidden;
        }

        .product .add-to-cart .add-to-cart-btn:hover {
            background-color: #FFF;
            color: #ff4081;
            border-color: #ff4081;
            padding: 0px 30px 0px 50px;
        }

            .product .add-to-cart .add-to-cart-btn:hover > i {
                opacity: 1;
                visibility: visible;
            }

/*----------------------------*\
	Widget product
\*----------------------------*/

.product-widget {
    position: relative;
}

    .product-widget + .product-widget {
        margin: 30px 0px;
    }

    .product-widget .product-img {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 60px;
    }

        .product-widget .product-img > img {
            width: 100%;
        }

    .product-widget .product-body {
        padding-left: 75px;
        min-height: 60px;
    }

        .product-widget .product-body .product-category {
            text-transform: uppercase;
            font-size: 10px;
            color: #8D99AE;
        }

        .product-widget .product-body .product-name {
            text-transform: uppercase;
            font-size: 12px;
        }

            .product-widget .product-body .product-name > a {
                font-weight: 700;
            }

                .product-widget .product-body .product-name > a:hover, .product-widget .product-body .product-name > a:focus {
                    color: #ff4081;
                }

        .product-widget .product-body .product-price {
            font-size: 14px;
            color: #ff4081;
        }

            .product-widget .product-body .product-price .product-old-price {
                font-size: 70%;
                font-weight: 400;
                color: #8D99AE;
            }

            .product-widget .product-body .product-price .qty {
                font-weight: 400;
                margin-right: 10px;
            }

    .product-widget .delete {
        position: absolute;
        top: 0;
        left: 0;
        height: 14px;
        width: 14px;
        text-align: center;
        font-size: 10px;
        padding: 0;
        background: #1e1f29;
        border: none;
        color: #FFF;
    }

/*----------------------------*\
	Products slick
\*----------------------------*/

.products-slick .slick-list {
    padding-bottom: 60px;
    margin-bottom: -60px;
    z-index: 2;
}

.products-slick .product.slick-slide {
    margin: 15px;
}

.products-tabs > .tab-pane {
    display: block;
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow-y: hidden;
    padding-bottom: 60px;
    margin-bottom: -60px;
}

    .products-tabs > .tab-pane.active {
        opacity: 1;
        visibility: visible;
        height: auto;
    }

.products-slick-nav {
    right: 15px;
    z-index: 10;
}

    /*.products-slick-nav .slick-prev, .products-slick-nav .slick-next {
  position: static;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: 20px;
  height: 20px;
  display: inline-block !important;
  margin: 0px 2px;
}*/

    .products-slick-nav .slick-prev:before, .products-slick-nav .slick-next:before {
        font-size: 14px;
    }

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

.aside + .aside {
    margin-top: 30px;
}

.aside > .aside-title {
    text-transform: uppercase;
    font-size: 18px;
    margin: 15px 0px 30px;
}

/*-- checkbox Filter --*/

.checkbox-filter > div + div {
    margin-top: 10px;
}

.checkbox-filter .input-radio label, .checkbox-filter .input-checkbox label {
    font-size: 12px;
}

    .checkbox-filter .input-radio label small, .checkbox-filter .input-checkbox label small {
        color: #8D99AE;
    }

/*-- Price Filter --*/

#price-slider {
    margin-bottom: 15px;
}

.noUi-target {
    background-color: #FFF;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #E4E7ED;
    border-radius: 0px;
}

.noUi-connect {
    background-color: #ff4081;
}

.noUi-horizontal {
    height: 6px;
}

    .noUi-horizontal .noUi-handle {
        width: 12px;
        height: 12px;
        left: -6px;
        top: -4px;
        border: none;
        background: #ff4081;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-radius: 50%;
    }

.noUi-handle:before, .noUi-handle:after {
    display: none;
}

.price-filter .input-number {
    display: inline-block;
    width: calc(50% - 7px);
}

/*----------------------------*\
	Store
\*----------------------------*/

.store-filter {
    margin-bottom: 15px;
    margin-top: 15px;
}

/*-- Store Sort --*/

.store-sort {
    display: inline-block;
}

    .store-sort label {
        font-weight: 500;
        font-size: 12px;
        text-transform: uppercase;
        margin-right: 15px;
    }

/*-- Store Grid --*/

.store-grid {
    float: right;
}

    .store-grid li {
        display: inline-block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        background-color: #FFF;
        border: 1px solid #E4E7ED;
        text-align: center;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

        .store-grid li + li {
            margin-left: 5px;
        }

        .store-grid li:hover {
            background-color: #E4E7ED;
            color: #ff4081;
        }

        .store-grid li.active {
            background-color: #ff4081;
            border-color: #ff4081;
            color: #FFF;
            cursor: default;
        }

        .store-grid li a {
            display: block;
        }

/*-- Store Pagination --*/

.store-pagination {
    float: right;
}

    .store-pagination li {
        display: inline-block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        background-color: #FFF;
        border: 1px solid #E4E7ED;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

        .store-pagination li + li {
            margin-left: 5px;
        }

        .store-pagination li:hover {
            background-color: #E4E7ED;
            color: #ff4081;
        }

        .store-pagination li.active {
            background-color: #ff4081;
            border-color: #ff4081;
            color: #FFF;
            font-weight: 500;
            cursor: default;
        }

        .store-pagination li a {
            display: block;
        }

.store-qty {
    margin-right: 30px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-img .slick-prev {
    -webkit-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
    left: 15px;
}

#product-main-img .slick-next {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
    right: 15px;
}

#product-main-img .slick-prev, #product-main-img .slick-next {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

#product-main-img:hover .slick-prev, #product-main-img:hover .slick-next {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
}

#product-main-img .zoomImg {
    background-color: #FFF;
}

#product-imgs .product-preview {
    margin: 0px 5px;
    border: 1px solid #E4E7ED;
}

    #product-imgs .product-preview.slick-current {
        border-color: #ff4081;
    }

#product-imgs .slick-prev {
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

#product-imgs .slick-next {
    top: calc(100% - 20px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
    content: "\f106";
}

#product-imgs .slick-next:before {
    content: "\f107";
}

.product-preview img {
    width: 100%;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
    text-transform: uppercase;
    font-size: 18px;
}

.product-details .product-rating {
    display: block;
    margin-right: 15px;
}

    .product-details .product-rating > i {
        color: #E4E7ED;
    }

        .product-details .product-rating > i.fa-star {
            color: #ff4081;
        }

.product-details .review-link {
    font-size: 12px;
}

.product-details .product-price {
    display: inline-block;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #ff4081;
}

    .product-details .product-price .product-old-price {
        font-size: 70%;
        font-weight: 400;
        color: #8D99AE;
    }

.product-details .product-available {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 30px;
    color: #ff4081;
}

.product-details .product-options {
    margin-top: 30px;
    margin-bottom: 30px;
}

    .product-details .product-options label {
        font-weight: 500;
        font-size: 12px;
        text-transform: uppercase;
        margin-right: 15px;
        margin-bottom: 0px;
    }

    .product-details .product-options .input-select {
        width: 90px;
    }

.product-details .add-to-cart {
    margin-bottom: 30px;
}

    .product-details .add-to-cart .add-to-cart-btn {
        position: relative;
        border: 2px solid transparent;
        height: 40px;
        padding: 0 30px;
        background-color: #ff4081;
        color: #FFF;
        text-transform: uppercase;
        font-weight: 700;
        border-radius: 40px;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

        .product-details .add-to-cart .add-to-cart-btn > i {
            position: absolute;
            left: 0;
            top: 0;
            width: 40px;
            height: 40px;
            line-height: 38px;
            color: #ff4081;
            opacity: 0;
            visibility: hidden;
        }

        .product-details .add-to-cart .add-to-cart-btn:hover {
            background-color: #FFF;
            color: #ff4081;
            border-color: #ff4081;
            padding: 0px 30px 0px 50px;
        }

            .product-details .add-to-cart .add-to-cart-btn:hover > i {
                opacity: 1;
                visibility: visible;
            }

    .product-details .add-to-cart .qty-label {
        display: inline-block;
        font-weight: 500;
        font-size: 12px;
        text-transform: uppercase;
        margin-right: 15px;
        margin-bottom: 0px;
    }

        .product-details .add-to-cart .qty-label .input-number {
            width: 90px;
            display: inline-block;
        }

.product-details .product-btns li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
}

    .product-details .product-btns li + li {
        margin-left: 15px;
    }

.product-details .product-links {
    margin-top: 15px;
}

    .product-details .product-links li {
        display: inline-block;
        text-transform: uppercase;
        font-size: 12px;
    }

        .product-details .product-links li + li {
            margin-left: 10px;
        }

/*----------------------------*\
	 Product tab
\*----------------------------*/

#product-tab {
    margin-top: 60px;
}

    #product-tab .tab-nav {
        position: relative;
        text-align: center;
        padding: 15px 0px;
        margin-bottom: 30px;
    }

        #product-tab .tab-nav:after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            height: 1px;
            background-color: #E4E7ED;
            z-index: -1;
        }

        #product-tab .tab-nav li {
            display: inline-block;
            background: #FFF;
            padding: 0px 15px;
        }

            #product-tab .tab-nav li + li {
                margin-left: 15px;
            }

            #product-tab .tab-nav li a {
                display: block;
                font-weight: 700;
                color: #8D99AE;
            }

            #product-tab .tab-nav li.active a {
                color: #ff4081;
            }

            #product-tab .tab-nav li a:after {
                content: "";
                display: block;
                width: 0%;
                height: 2px;
                background-color: #ff4081;
                -webkit-transition: 0.2s all;
                transition: 0.2s all;
            }

            #product-tab .tab-nav li a:hover:after, #product-tab .tab-nav li a:focus:after, #product-tab .tab-nav li.active a:after {
                width: 100%;
            }

/*-- Rating --*/

.rating-avg {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

    .rating-avg .rating-stars {
        margin-left: 10px;
    }

    .rating-avg .rating-stars, .rating .rating-stars {
        display: inline-block;
    }

        .rating-avg .rating-stars > i, .rating .rating-stars > i {
            color: #E4E7ED;
        }

            .rating-avg .rating-stars > i.fa-star, .rating .rating-stars > i.fa-star {
                color: #ff4081;
            }

.rating li {
    margin: 5px 0px;
}

.rating .rating-progress {
    position: relative;
    display: inline-block;
    height: 9px;
    background-color: #E4E7ED;
    width: 120px;
    margin: 0px 10px;
    border-radius: 5px;
}

    .rating .rating-progress > div {
        background-color: #ff4081;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        border-radius: 5px;
    }

.rating .sum {
    display: inline-block;
    font-size: 12px;
    color: #8D99AE;
}

/*-- Reviews --*/

.reviews li {
    position: relative;
    padding-left: 145px;
    margin-bottom: 30px;
}

.reviews .review-heading {
    position: absolute;
    width: 130px;
    left: 0;
    top: 0;
    height: 70px;
}

.reviews .review-body {
    min-height: 70px;
}

.reviews .review-heading .name {
    margin-bottom: 5px;
    margin-top: 0px;
}

.reviews .review-heading .date {
    color: #8D99AE;
    font-size: 10px;
    margin: 0;
}

.reviews .review-heading .review-rating {
    margin-top: 5px;
}

    .reviews .review-heading .review-rating > i {
        color: #E4E7ED;
    }

        .reviews .review-heading .review-rating > i.fa-star {
            color: #ff4081;
        }

.reviews-pagination {
    text-align: center;
}

    .reviews-pagination li {
        display: inline-block;
        width: 35px;
        height: 35px;
        line-height: 35px;
        text-align: center;
        background-color: #FFF;
        border: 1px solid #E4E7ED;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

        .reviews-pagination li:hover {
            background-color: #E4E7ED;
            color: #ff4081;
        }

        .reviews-pagination li.active {
            background-color: #ff4081;
            border-color: #ff4081;
            color: #FFF;
            cursor: default;
        }

        .reviews-pagination li a {
            display: block;
        }

/*-- Review Form --*/

.review-form .input {
    margin-bottom: 15px;
}

.review-form .input-rating {
    margin-bottom: 15px;
}

    .review-form .input-rating .stars {
        display: inline-block;
        vertical-align: top;
    }

        .review-form .input-rating .stars input[type="radio"] {
            display: none;
        }

        .review-form .input-rating .stars > label {
            float: right;
            cursor: pointer;
            padding: 0px 3px;
            margin: 0px;
        }

            .review-form .input-rating .stars > label:before {
                content: "\f006";
                font-family: FontAwesome;
                color: #E4E7ED;
                -webkit-transition: 0.2s all;
                transition: 0.2s all;
            }

            .review-form .input-rating .stars > label:hover:before, .review-form .input-rating .stars > label:hover ~ label:before {
                color: #ff4081;
            }

        .review-form .input-rating .stars > input:checked label:before, .review-form .input-rating .stars > input:checked ~ label:before {
            content: "\f005";
            color: #ff4081;
        }

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
    margin-bottom: 30px;
}

.shiping-details {
    margin-bottom: 30px;
}

.order-details {
    position: relative;
    padding: 0px 30px 30px;
    border-right: 1px solid #E4E7ED;
    border-left: 1px solid #E4E7ED;
    border-bottom: 1px solid #E4E7ED;
}

    .order-details:before {
        content: "";
        position: absolute;
        left: -1px;
        right: -1px;
        top: -15px;
        height: 30px;
        border-top: 1px solid #E4E7ED;
        border-left: 1px solid #E4E7ED;
        border-right: 1px solid #E4E7ED;
    }

.order-summary {
    margin: 15px 0px;
}

    .order-summary .order-col {
        display: table;
        width: 100%;
    }

        .order-summary .order-col:after {
            content: "";
            display: block;
            clear: both;
        }

        .order-summary .order-col > div {
            display: table-cell;
            padding: 10px 0px;
        }

            .order-summary .order-col > div:first-child {
                width: calc(100% - 150px);
            }

            .order-summary .order-col > div:last-child {
                width: 150px;
                text-align: right;
            }

        .order-summary .order-col .order-total {
            font-size: 24px;
            color: #ff4081;
        }

.order-details .payment-method {
    margin: 30px 0px;
}

.order-details .order-submit {
    display: block;
    margin-top: 30px;
}

/*=========================================================
	10 -> NEWSLETTER
===========================================================*/

#newsletter.section {
    border-top: 2px solid #E4E7ED;
    border-bottom: 3px solid #ff4081;
    margin-top: 30px;
}

.newsletter {
    text-align: center;
}

    .newsletter p {
        font-size: 24px;
    }

    .newsletter form {
        position: relative;
        max-width: 520px;
        margin: 30px auto;
    }

        .newsletter form:after {
            font-family: FontAwesome;
            position: absolute;
            font-size: 160px;
            color: #E4E7ED;
            top: 15px;
            -webkit-transform: translateY(-50%) rotate(15deg);
            -ms-transform: translateY(-50%) rotate(15deg);
            transform: translateY(-50%) rotate(15deg);
            z-index: -1;
            left: -90px;
        }

        .newsletter form .input {
            width: calc(100% - 160px);
            margin-right: -4px;
            border-radius: 40px 0px 0px 40px;
        }

        .newsletter form .newsletter-btn {
            width: 160px;
            height: 40px;
            font-weight: 700;
            background: #ff4081;
            color: #FFF;
            border: none;
            border-radius: 40px 40px 40px 40px;
        }

    .newsletter .newsletter-follow {
        text-align: center;
    }

        .newsletter .newsletter-follow li {
            display: inline-block;
            margin-right: 5px;
        }

            .newsletter .newsletter-follow li:last-child {
                margin-right: 0px;
            }

            .newsletter .newsletter-follow li a {
                position: relative;
                display: block;
                width: 40px;
                height: 40px;
                text-align: center;
                line-height: 40px;
                border: 1px solid #E4E7ED;
                background-color: #FFF;
                -webkit-transition: 0.2s all;
                transition: 0.2s all;
            }

                .newsletter .newsletter-follow li a:hover, .newsletter .newsletter-follow li a:focus {
                    background-color: #E4E7ED;
                    color: #ff4081;
                }

/*=========================================================
	11 -> FOOTER
===========================================================*/

#footer {
    background: #15161D;
    color: #B9BABC;
}

#bottom-footer {
    background: #1E1F29;
}

.footer {
    margin: 30px 0px;
}

    .footer .footer-title {
        color: #FFF;
        text-transform: uppercase;
        font-size: 18px;
        margin: 0px 0px 30px;
    }

.footer-links li + li {
    margin-top: 15px;
}

.footer-links li a {
    color: #B9BABC;
}

.footer-links li i {
    margin-right: 15px;
    color: #ff4081;
    width: 14px;
    text-align: center;
}

.footer-links li a:hover {
    color: #ff4081;
}

.copyright {
    margin-top: 30px;
    display: block;
    font-size: 12px;
}

.footer-payments li {
    display: inline-block;
    margin-right: 5px;
}

    .footer-payments li a {
        color: #15161D;
        font-size: 36px;
        display: block;
    }

/*=========================================================
	12 -> SLICK STYLE
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

.slick-prev, .slick-next {
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #ff4081 !important;
    background-color: #ff4081 !important;
    border-radius: 50%;
    z-index: 22;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

    .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
        background-color: #ff4081;
        border-color: #ff4081;
    }

    .slick-prev:before, .slick-next:before {
        font-family: FontAwesome;
        color: #2B2D42;
    }

    .slick-prev:before {
        content: "\f104";
    }

    .slick-next:before {
        content: "\f105";
    }

    .slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
        color: #FFC1ED;
    }

.slick-prev {
    left: 0px;
    background-color: #FFC1ED;
    color: #FFC1ED;
}

.slick-next {
    right: 0px;
    background-color: #FFC1ED;
    color: #FFC1ED;
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li, .slick-dots li button, .slick-dots li button:before {
    width: 10px;
    height: 10px;
}

    .slick-dots li button:before {
        content: "";
        opacity: 1;
        background: #E4E7ED;
        border-radius: 50%;
    }

    .slick-dots li.slick-active button:before {
        background-color: #ff4081;
    }

.custom-dots .slick-dots {
    position: static;
    margin: 15px 0px;
}

/*=========================================================
	13 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 1201px) {
}

@media only screen and (max-width: 991px) {
    #top-header .header-links.pull-left {
        float: none !important;
    }

    #top-header .header-links.pull-right {
        float: none !important;
        margin-top: 5px;
    }

    .header-logo {
        float: none;
        text-align: center;
    }

        .header-logo .logo {
            display: inline-block;
        }

    #product-imgs {
        margin-bottom: 60px;
        margin-top: 15px;
    }

    #rating {
        text-align: center;
    }

    #reviews {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title .section-nav {
        float: none;
        margin-top: 10px;
    }

    .section-tab-nav li {
        margin-top: 10px;
    }
}

@media only screen and (max-width: 480px) {
    [class*='col-xs'] {
        width: 100%;
    }

    .store-grid {
        float: none;
        margin-top: 10px;
    }

    .store-pagination {
        float: none;
        margin-top: 10px;
    }
}


/*Custom CSS Changes*/
@keyframes fadeInOut {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.shop:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0px;
    width: 50%;
    background: #ff4081;
    opacity: 0.9;
    -webkit-transform: skewX(-45deg);
    -ms-transform: skewX(-45deg);
    transform: skewX(-45deg);
    /*animation: fadeInOut 25s ease-in-out infinite;*/
}

.shop:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1px;
    width: 100%;
    background: #ff4081;
    opacity: 0.9;
    -webkit-transform: skewX(-45deg) translateX(-100%);
    -ms-transform: skewX(-45deg) translateX(-100%);
    transform: skewX(-45deg) translateX(-100%);
    /*animation: fadeInOut 25s ease-in-out infinite;*/
}

.shop .shop-body h3 {
    color: #FFF;
    /*animation: fadeInOut 15s ease-in-out infinite;*/
}

.shop .shop-body .cta-btn {
    color: #FFF;
    text-transform: uppercase;
    border: none;
    background-color: #1E1F29
}

.navbar-nav {
    display: block !important;
}

#navigation a {
    color: #2B2D42;
    text-decoration: none !important;
    font-weight: 500;
    font-weight: bold;
    font-size: 18px;
}

.dropdown-menu {
    position: absolute !important;
}

.dropdown-toggle::after {
    border-left: 0px !important;
    border-right: 0px !important;
}

.prdImg {
    width: 70px;
    height: 50px;
    object-fit: cover;
    cursor: pointer;
}

.welcome-text {
    color: #cccccc;
}


.welcome {
    cursor: none;
}

.dropdown-toggle::after {
    margin-left: 0px !important;
    border-top: 0px !important;
}

.welcome:hover {
    background-color: inherit !important;
    color: inherit;
    pointer-events: none;
    cursor: default !important;
}

select.form-select {
    border-radius: 0.375rem;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    box-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

    select.form-select:focus {
        border-color: #86b7fe;
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

    select.form-select:hover {
        border-color: #999;
    }

body, html {
    font-family: Poppins,Poppins Fallback,Roboto,Helvetica Neue,Arial,sans-serif !important;
    font-size: 15px !important;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700 !important;
    margin: 0 0 10px !important;
}
/* Apply globally to all h3 and .h3 headings */
h3, .h3 {
    text-transform: none;
    margin: 0;
}


body, html,
h1, h2, h3, h4, h5, h6,
p, a, span, div,
button, input, select, textarea {
    font-family: Poppins,Poppins Fallback,Roboto,Helvetica Neue,Arial,sans-serif !important;
}

body {
    font-family: Poppins,Poppins Fallback,Roboto,Helvetica Neue,Arial,sans-serif;
    font-weight: 400;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    color: #2B2D42;
    font-weight: 700 !important;
    margin: 0 0 10px;
}

a {
    color: #2B2D42;
    font-weight: 900;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
    text-decoration: none !important;
}

    a:hover, a:focus {
        color: #ff4081;
        text-decoration: none;
        outline: none;
    }

.popup-content h2 {
    color: #ff4081;
}

.popup-content p {
    font-size: 14px;
    color: #333333;
}

.no-gutter-margins {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.row {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

.fade:not(.show) {
    opacity: 1 !important;
}

.product-img > img {
    /*    min-height:250px;
*/
}

#topSelling .product-img > img {
    min-height: auto !important;
}



@media (max-width: 767px) {
    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: none;
        background-color: #111;
        padding: 20px;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 999;
    }

        .mobile-menu.active {
            display: block;
        }

    #navigation a {
        color: #CCC !important;
    }
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

/* Base */
#responsive-nav {
    transition: all 0.3s ease;
}

/* Hidden for mobile */
.mobile-menu.hidden {
    display: none;
}

/* Show when active */
.mobile-menu.active {
    display: block;
}

/* Optional desktop-only styling */
.desktop-nav {
    display: flex !important;
    justify-content: space-between;
}

.font-16 {
    font-size: 16px !important;
}

.section-tab-nav button {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: #888;
}

.section-tab-nav .active button {
    color: #d40080;
    border-bottom: 3px solid #d40080;
}

#subscription.section {
    padding: 60px 0px;
    margin: 30px 0px;
    background-color: #E4E7ED;
    background-position: center;
    background-repeat: no-repeat;
}

.subscription {
    text-align: center;
}

    .subscription p {
        text-transform: uppercase;
        font-size: 24px;
    }

    .subscription .cta-btn {
        margin-top: 15px;
    }

.partner-signup {
    background: linear-gradient(to right, #f0f4ff, #e9efff);
    padding: 60px 20px;
    border-radius: 20px;
    max-width: 800px;
    margin: 40px auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.partner-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.partner-content p {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.partner-button {
    background-color: #ff4081;
    color: white;
    font-size: 16px;
    padding: 14px 28px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(225, 0, 152, 0.3);
}

    .partner-button:hover {
        background-color: #ff4085;
        transform: scale(1.05);
    }

.btn-white {
    background-color: #C71585 !important;
    color: #FFF !important
}

.blur {
    filter: blur(10px);
    trasition: filter 0.5s ease;
}

.clear {
    filter: blur(0);
    transition: filter 0.5s ease;
}

/* Splash screen styles */
body {
    margin: 0;
    background-color: #f69ab3; /* Match pink theme */
    overflow-x: hidden;
    font-family: sans-serif;
}

.splash-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100vw;
    height: 100vh;
    background-color: #f69ab3;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInZoom 2s ease-in-out infinite alternate;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    background: #f69ab3;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.6s ease;
}


@keyframes fadeInZoom {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.splash-container img {
    width: 300px;
    max-width: 80vw;
}

.adndesc {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 8px;
    border: 1px solid #ccc;
    resize: vertical;
    box-sizing: border-box;
    outline-color: #FFC1ED;
}

.errorDec {
    font-size: '10px';
    margin-top: '4px';
    color: '#666';
    text-align: 'right'
}

.spin-icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
/* Shared styles for all */
#navigation button,
.menu-toggle button,
.mobile-menu button {
    text-decoration: none !important;
    font-weight: bold;
    font-size: 18px;
}

/* Color overrides */
#navigation button {
    color: #2B2D42;
}

.menu-toggle button,
.mobile-menu button {
    color: #FFF;
}

.main-nav > li > button {
    padding: 20px 0px;
}

#top-header button {
    color: #ccc !important;
}

button.act {
    border-bottom: 2PX SOLID #ff4081;
    COLOR: #ff4081;
    border-radius: inherit;
}

.wishlist-img {
    width: 150px;
    height: 150px;
}

.wishlist-section {
    background: #f8f9fa;
    min-height: 100vh;
}

.wishlist-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

.ml-10 {
    margin-left: 10px !important;
}

.margin-10 {
    margin: 10px !important;
}

.btn-secondary-custom {
    background-color: transparent;
    border: 2px solid #E600A0; /* same primary color */
    color: #E600A0;
    font-size: 16px;
    border-radius: 999px; /* pill shape */
    padding: 10px 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

    .btn-secondary-custom:hover {
        background-color: #E600A0;
        color: #fff;
    }

.btn-custom {
    color: #fff;
}

    .btn-custom:hover {
        color: #ff4081 !important;
    }

.btn-outline-primary {
    background-color: #ff4081;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(225, 0, 152, 0.3);
}

    .btn-outline-primary:hover {
        background-color: #c1007f;
        transform: scale(1.05);
    }
/* Give dropdown enough width */
.cart-dropdown {
    width: 300px; /* adjust for your design */
    max-height: 400px; /* limit height before scrolling */
    overflow: hidden; /* scroll only vertically */
    padding: 10px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 20px;
}

    /* Product widget styling */
    .cart-dropdown .product-widget {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px 0;
        border-bottom: 1px solid #eee;
    }

        .cart-dropdown .product-widget:last-child {
            border-bottom: none;
        }

    .cart-dropdown
    .product-img img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 4px;
    }

    .cart-dropdown
    .product-body {
        flex: 1;
    }

    .cart-dropdown
    .product-name {
        font-size: 14px;
        font-weight: 500;
        margin: 0;
        color: #333;
    }

    .cart-dropdown
    .product-price {
        font-size: 13px;
        color: #555;
    }

    .cart-dropdown
    .delete {
        background: transparent;
        border: none;
        color: #999;
        font-size: 16px;
        cursor: pointer;
    }

    /* Cart summary and buttons */
    .cart-dropdown
    .cart-summary {
        margin-top: 10px;
        font-size: 14px;
    }

    .cart-dropdown
    .cart-btns {
        display: flex;
        gap: 8px;
        margin-top: 10px;
    }

        .cart-dropdown
        .cart-btns a {
            flex: 1;
            text-align: center;
            padding: 8px;
            background: #ff4081;
            color: white;
            font-size: 14px;
            border-radius: 4px;
            text-decoration: none;
        }

            .cart-dropdown
            .cart-btns a:first-child {
                background: #333;
            }

            .cart-dropdown
            .cart-btns a:hover {
                opacity: 0.9;
            }

.error {
    color: red;
}
/* BACKDROP for blur effect */
.cart-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6); /* semi-transparent white */
    backdrop-filter: blur(6px); /* BLUR */
    z-index: 9998;
    display: none;
}

    /* Show backdrop when cart is open */
    .cart-backdrop.active {
        display: block;
    }

/* DROPDOWN styles */
.cart-dropdown {
    z-index: 99999;
}

@media (max-width: 767px) {
    /* Mobile: absolute position, still above backdrop */
    .cart-dropdown {
        position: relative !important;
        top: 100%; /* directly under trigger */
        right: 0;
        margin-right: -70px;
    }
}

@media (min-width: 768px) {
    /* Desktop: fixed position */
    .cart-dropdown {
        position: absolute !important;
        top: 70px; /* adjust for header */
        right: 20px;
    }
}


input[type="text"] {
    width: 100%;
    border: 1px solid #d1d5db; /* border-gray-300 */
    padding: 0.5rem 0.75rem; /* py-2 px-3 */
    border-radius: 0.25rem; /* rounded */
    outline: none;
}

    input[type="text"]:focus {
        border-color: #ec4899; /* pink-500 */
        box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.5); /* focus ring */
    }
    input[type="password"]:focus {
        border-color: #ec4899 !important; /* pink-500 */
        box-shadow: 0 0 0 2px rgba(236, 72, 153, 0.5) !important; /* focus ring */
    }

/* Desktop (default) */
.header-search .input-select {
    display: inline-block;
}

.header-search form .input {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    width: calc(100% - 260px); /* for select + button */
    margin-right: -4px;
}

.header-search .search-btn {
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}

/* Mobile */
@media (max-width: 768px) {
    .header-search .input-select {
        display: none;
    }

    .header-search form .input {
        border-top-left-radius: 40px;
        border-bottom-left-radius: 40px;
        width: calc(100% - 130px) !important; /* subtract only button width */
    }

    .header-search .search-btn {
        border-top-right-radius: 40px;
        border-bottom-right-radius: 40px;
    }
}

#navigation .menu-toggle button,
#navigation .mobile-menu button {
    color: #2B2D42; /* No !important needed */
}

@media (max-width: 769px) {
    .cart-dropdown {
        position: absolute !important;
    }
    .table-container {
        overflow-x: auto;
        width: 900px;
        border-collapse: collapse;
    }
}


@media (max-width: 768px) {
    #navigation .menu-toggle button,
    #navigation .mobile-menu button {
        color: #FFF;
    }
}




.swiper-button-prev,
.swiper-button-next {
    color: #ff4081 !important; /* Replace with your desired color */
}

    /* Optional: change background or add hover effect */
    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        color: #f69ab3 !important; /* Color on hover */
    }

/* Default bullets color */
.swiper-pagination-bullet {
    background-color: #ff4081 !important; /* unactive bullet color */
    opacity: 1; /* make sure opacity is 1 */
}

/* Active bullet color */
.swiper-pagination-bullet-active {
    background-color: #ff4081 !important; /* active bullet color */
}

/* Optional: add hover effect */
.swiper-pagination-bullet:hover {
    background-color: #f69ab3 !important;
}

.main-nav > li > button {
    background: transparent;
    border: none;
    font-weight: 600;
}

    .main-nav > li > button:hover,
    .main-nav > li > button:focus,
    .main-nav > li.active > button {
        color: #ff4081 !important;
    }

.main-nav > li.active > button {
    position: relative;
}

    .main-nav > li.active > button::after {
        content: "";
        height: 3px;
        width: 100%;
        background: #ff4081;
        position: absolute;
        left: 0;
        bottom: 8px;
    }

.dropdown-menu {
    padding: 10px;
}

.tree-dropdown .tree-menu {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
}

.tree-dropdown .tree-search {
    width: 100%;
    padding: 5px;
    margin-bottom: 5px;
    box-sizing: border-box;
}

.tree-dropdown .active button {
    background-color: #ffc0cb; /* pink highlight */
}
/* NavMenu dropdown fix */
.tree-dropdown {
    position: relative; /* ensure child ul positions relative to this */
}

    .tree-dropdown .dropdown-menu.tree-menu {
        display: none; /* hide by default */
        position: absolute; /* absolute below the button */
        top: 100%; /* below parent button */
        left: 0;
        background: #fff;
        min-width: 180px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        z-index: 1000;
        padding: 10px;
    }

    .tree-dropdown:hover .dropdown-menu.tree-menu,
    .tree-dropdown.active .dropdown-menu.tree-menu {
        display: block; /* show on hover or active */
    }

    .tree-dropdown .dropdown-menu.tree-menu li {
        margin-bottom: 5px;
    }

        .tree-dropdown .dropdown-menu.tree-menu li button {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            padding: 5px 10px;
            cursor: pointer;
        }

            .tree-dropdown .dropdown-menu.tree-menu li button:hover,
            .tree-dropdown .dropdown-menu.tree-menu li.active button {
                background-color: #f0f0f0;
            }

.ml-30 {
    margin-left: 30px !important;
}

.btnc-border-none {
    background-color: #1E1F29;
    border: none;
}

.footer-links{
    display:contents;
}
.product-add-heading {
    font-size: 1rem; /* or 16px */
    margin-top: 10px;
    color: #ff4081; /* keep your pink */
    font-weight: 600; /* optional */
}

.product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 500px; /* adjust */
    overflow: hidden;
    padding: 1rem;
}


.product-image-main {
    position: relative;
    min-height: 400px;
    background-position: center;
}

    .product-image-main > div {
        width: 100%;
        height: 100%;
    }

.cursor-zoom-in {
    cursor: zoom-in;
}
.product-thumbnails {
    margin-top: 1rem;
}

.thumbnail {
    transition: all 0.2s ease;
    max-width: 100px;
}

    .thumbnail:hover {
        transform: scale(1.05);
        border-color: #ff4081 !important;
    }

.border-pink {
    border: 2px solid #ff4081 !important;
}

.cursor-pointer {
    cursor: pointer;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .thumbnail {
        flex: 0 0 calc(33.333% - 8px) !important;
    }
}

@media (max-width: 576px) {
    .thumbnail {
        flex: 0 0 calc(50% - 8px) !important;
    }
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

.btn-pink {
    background-color: #ff4081;
    color: white;
    border: none;
}

    .btn-pink:hover {
        background-color: #a61e4d;
        color: white;
    }

.btn-outline-pink {
    color: #ff4081;
    border-color: #ff4081;
}

    .btn-outline-pink:hover {
        background-color: #ff4081;
        color: white;
    }
/* Custom CSS for Enhanced Tabs */
.tab-nav-wrapper {
    border-bottom: 2px solid #f1f3f5;
}

.nav-pills .nav-link {
    color: #ff4081;
    padding: 1rem 1.5rem;
    border-radius: 0;
    position: relative;
    transition: all 0.3s ease;
    font-weight: 500;
    border: none;
    background: transparent;
}

    .nav-pills .nav-link.active {
        color: #d63384 !important;
        background-color: transparent !important;
        font-weight: 600;
    }

        .nav-pills .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: #d63384;
            border-radius: 3px 3px 0 0;
        }

    .nav-pills .nav-link:hover:not(.active) {
        color: #fff;
        background-color: #ff4081;
    }

.custom-card {
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .custom-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

.section-title {
    color: #343a40;
    font-weight: 600;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 1.5rem;
}

.detail-list {
    list-style: none;
    padding: 0;
}

.detail-item {
    padding: 0.75rem 0;
    border-bottom: 1px dashed #e9ecef;
    display: flex;
    align-items: center;
}

    .detail-item:last-child {
        border-bottom: none;
    }

.rating-display {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
}

.rating-bar-item {
    margin-bottom: 0.75rem;
}

    .rating-bar-item:last-child {
        margin-bottom: 0;
    }

    .rating-bar-item .progress {
        height: 8px;
        border-radius: 4px;
    }

.star-value {
    min-width: 20px;
    font-weight: 600;
}

.rating-count {
    min-width: 20px;
    text-align: right;
    font-weight: 500;
}

.review-item {
    padding: 1.5rem;
    border-radius: 12px;
    background-color: #f8f9fa;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

    .review-item:hover {
        background-color: #e9ecef;
        transform: translateX(5px);
    }

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4081 0%, #a61e4d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.btn-pill {
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
}

.btn-pink {
    background-color: #ff4081;
    color: white;
    border: none;
}

    .btn-pink:hover {
        background-color: #a61e4d;
        color: white;
    }

.text-pink {
    color: #ff4081 !important;
}

.bg-pink {
    background-color: #ff4081 !important;
}

/* Animation for tab content */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-pills .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .rating-display {
        margin-bottom: 1.5rem;
    }
    .search-btn{
        width:130px;
    }
}
.text-pink {
    color: #ff4081 !important;
}

.btn-pink {
    background: #ff4081 !important;
    color: #fff !important
}
.btn-outline-secondary {
    border: 1px solid #ff4081 !important;
    background-color: #ff4081 !important;
    color: #FFF !important
}
/* styles.css */
.bg-warning, .progress-bar{
    background-color: #ff4081 !important;
}
.fa-star {
    color: #ff4081 !important;
}
.text-pink {
    color: #ff4081 !important;
}
.mr-2 {
    margin-left: .5rem;
}
.mr-4 {
    margin-left: 1rem;
}
.btn-secondary {
    background-color: #8A4037 !important;
    margin-top: 15px !important;
    color: #FFF !important
}
    .btn-secondary:has(:hover) {
        color: #FFF !important
    }
.btn:hover {
    border: 1px solid #ff4081 !important;
}
/*End Custom CSS Changes*/
.product-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-img-circle img {
    width: 250px;
    height: 350px;
    /*object-fit: cover;
    border-radius: 50%;*/
    margin: 0 auto;
    display: block;
}

.product-category {
    color: #9e9e9e;
    font-size: 12px;
    margin: 10px 0 5px;
    text-transform: uppercase;
}

.product-name a {
    color: #007bff;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: none;
}

.product-price {
    color: #ff4081;
    font-weight: bold;
    font-size: 18px;
    margin: 10px 0;
}

.product-rating .fa-star {
    color: #ff4081;
    margin: 0 1px;
}

.product-btns-icons {
    margin-top: 10px;
}

.icon-btn {
    background: none;
    border: none;
    margin: 0 8px;
    font-size: 16px;
    cursor: pointer;
    color: #333;
}

.action-text {
    margin-top: 10px;
    font-weight: 500;
    color: #ff4081;
}

.add-to-cart {
    margin-top: 15px;
}

.add-to-cart-btn {
    width: 100%;
    background-color: #ff4081;
    color: #fff;
    font-weight: bold;
    border: none;
    padding: 12px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .add-to-cart-btn:hover {
        background-color: #e91e63;
    }

.fa-star-half-empty:before, .fa-star-half-full:before, .fa-star-half-o:before {
    color: #ff4081 !important;
}
.swiper-wrapper {
    margin-bottom: 10px; /* Tailwind's mb-4 */
}

/* Advanced Toggle Styles */
.advanced-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.cat-sect .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.advanced-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

    .advanced-toggle:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    }

.toggle-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advanced-categories {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shop card styles */
.cat-sect .shop {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

    .cat-sect .shop:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    }

.cat-sect .shop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cat-sect .shop-body {
    padding: 25px 20px;
    text-align: center;
}

    .cat-sect .shop-body h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #E4E7ED;
        margin-bottom: 15px;
    }

.cat-sect .cta-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .cat-sect .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    }

/* ===== MOBILE RESPONSIVE STYLES ===== */

/* Tablet (768px and below) */
@media (max-width: 768px) {
    .advanced-toggle-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }

    .cat-sect .section-title {
        font-size: 1.6rem;
    }

    .advanced-toggle {
        padding: 8px 16px;
    }

    .toggle-text {
        font-size: 0.8rem;
    }

    .cat-sect .shop {
        margin-bottom: 20px;
        border-radius: 12px;
    }

    .cat-sect .shop-body {
        padding: 20px 15px;
    }

        .cat-sect .shop-body h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
        }

    .cat-sect .cta-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Mobile Landscape (576px and below) */
@media (max-width: 576px) {
    .cat-sect .container {
        padding: 0 15px;
    }

    .cat-sect .section-title {
        font-size: 1.4rem;
    }

    .advanced-toggle {
        padding: 6px 14px;
    }

    .toggle-text {
        font-size: 0.75rem;
    }

    /* Ensure proper column layout for mobile */
    .cat-sect .col-md-4.col-xs-6 {
        width: 50%;
        padding: 0 8px;
    }

    .cat-sect .shop {
        margin-bottom: 16px;
        border-radius: 10px;
    }

    .cat-sect .shop-body {
        padding: 15px 12px;
    }

        .cat-sect .shop-body h3 {
            font-size: 1rem;
            margin-bottom: 10px;
        }

    .cat-sect .cta-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
        border-radius: 20px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .cat-sect .section-title {
        font-size: 1.3rem;
    }

    .advanced-toggle {
        padding: 5px 12px;
    }

    .toggle-text {
        font-size: 0.7rem;
    }

    .cat-sect .col-md-4.col-xs-6 {
        width: 50%;
        padding: 0 6px;
    }

    .cat-sect .shop {
        margin-bottom: 12px;
        border-radius: 8px;
    }

    .cat-sect .shop-body {
        padding: 12px 10px;
    }

        .cat-sect .shop-body h3 {
            font-size: 0.9rem;
        }

    .cat-sect .cta-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .cat-sect .container {
        padding: 0 10px;
    }

    .cat-sect .section-title {
        font-size: 1.2rem;
    }

    .cat-sect .col-md-4.col-xs-6 {
        width: 100%;
        padding: 0;
        margin-bottom: 10px;
    }

    .cat-sect .shop {
        margin-bottom: 10px;
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }

    .cat-sect .shop-body h3 {
        font-size: 0.85rem;
    }

    .cat-sect .cta-btn {
        padding: 5px 10px;
        font-size: 0.7rem;
        min-width: 80px;
    }
}

/* Fix for row spacing on mobile */
@media (max-width: 576px) {
    .cat-sect .row {
        margin: 0 -8px;
    }
}

@media (max-width: 480px) {
    .cat-sect .row {
        margin: 0 -6px;
    }
}

@media (max-width: 360px) {
    .cat-sect .row {
        margin: 0;
    }
}

/* Chiclet Styles */
/* Chiclet Styles */
#dc-dynamic-container-chiclet {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    transition: all 0.3s ease-in-out !important;
}

.chiclet-hidden {
    opacity: 0 !important;
    transform: translateY(-100px) !important;
    pointer-events: none !important;
}

.chiclet-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: all !important;
}

.sc-aXZVg.eQLrfD {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    padding: 5px 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
    color: white;
}

    .sc-aXZVg.eQLrfD:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
        background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    }

.sc-gEvEer.esXEQa {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .sc-gEvEer.esXEQa img {
        width: 20px;
        height: 20px;
        filter: brightness(0) invert(1);
    }

.sc-fqkvVR.dwJirI {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #dc-dynamic-container-chiclet {
        margin: 15px;
        top: 200px !important;
    }

    .sc-aXZVg.eQLrfD {
        padding: 10px 16px;
        border-radius: 20px;
    }

    .sc-gEvEer.esXEQa img {
        width: 18px;
        height: 18px;
    }

    .sc-fqkvVR.dwJirI {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    #dc-dynamic-container-chiclet {
        margin: 10px;
        top: 150px !important;
    }

    .sc-aXZVg.eQLrfD {
        padding: 8px 14px;
    }

    .sc-fqkvVR.dwJirI {
        font-size: 11px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    #dc-dynamic-container-chiclet {
        top: 120px !important;
        right: 5px !important;
    }

    .sc-fqkvVR.dwJirI {
        font-size: 10px;
    }

    .sc-aXZVg.eQLrfD {
        padding: 6px 12px;
    }
}
.position-relative .product-main-img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}

.position-relative .wishlist-btn {
    width: 40px;
    height: 40px;
    padding: 6px;
}

@media (max-width: 768px) {
    .position-relative .product-main-img {
        max-height: 280px;
    }
}

@media (max-width: 576px) {
    .position-relative .product-main-img {
        max-height: 220px;
    }

    .position-relative .wishlist-btn {
        width: 32px;
        height: 32px;
    }
}

.btn.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

    .btn.loading .spinner-border {
        width: 1rem;
        height: 1rem;
        border-width: 2px;
    }

/* Desktop styles */
.show-cat {
    z-index: 1998;
    position: absolute;
    margin: 20px;
    transition: all 0.3s ease-in-out;
    right: 0px;
    top: 250px;
    opacity: 1;
}

@media (max-width: 480px) {
    .show-cat {
        top: 435px; /* mobile-specific top */
        margin: 10px; /* adjust spacing if needed */
    }
}


