/* ===================================================
   NEERSHAY — Custom Home CSS
   Palette: Gold #C5A059 · Navy #0A2342 · BG #F9F9F9
   =================================================== */

/* --- Design Tokens --- */
:root {
    --gold: #C5A059;
    --gold-light: #E5CBA1;
    --gold-dark: #A07D3A;
    --navy: #0A2342;
    --navy-mid: #1D2B44;
    --navy-light: #2A3F5E;
    --white: #FFFFFF;
    --off-white: #F9F6F1;
    --text-muted: rgba(255, 255, 255, 0.68);
    --font-head: 'Playfair Display', 'Bellefair', serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius: 12px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 2px 12px rgba(10, 35, 66, 0.08);
    --shadow-md: 0 6px 28px rgba(10, 35, 66, 0.14);
}

/* --- Fonts --- */
body {
    font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
}

/* Header Logo — Match footer logo style */
.site-title a,
.logo_text,
.top_panel_logo_text {
    font-family: var(--font-head) !important;
    font-size: 1.6rem !important;
    color: var(--gold) !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
    text-decoration: none !important;
}

/* --- Navigation Menu Refinement --- */
/* Only style typography & hover — the theme already centers the menu correctly */

.header-type-default .nav-menu > li > a {
    font-family: var(--font-body) !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: var(--navy) !important;
    letter-spacing: 0.20em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    padding: 2px 6px !important;
    line-height: 1.15 !important;
    transition: color 0.3s ease, background-color 0.3s ease !important;
    background-color: transparent !important;
    box-shadow: none !important;
    text-decoration: none !important;
    position: relative !important;
}

.header-type-default .nav-menu > li {
    margin: 0 2px !important;
    padding: 0 !important;
}

.header-type-default .nav-menu {
    gap: 6px !important;
}

.header-type-default .nav-menu > li > a:hover {
    color: var(--gold) !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Active/current page state */
.header-type-default .nav-menu > li.current-menu-item > a,
.header-type-default .nav-menu > li.current-menu-ancestor > a {
    color: var(--gold) !important;
    background-color: transparent !important;
    box-shadow: none !important;
    font-weight: 600 !important;
}


/* ==========================================
   GLOBAL LAYOUT — prevent horizontal scroll
   ========================================== */
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    background: var(--white) !important;
}

@media screen and (max-width: 79.99875em) {
    .header-type-default {
        display: none !important;
    }
}

/* Scope content_wrap resets to only our custom sections — not the nav bar */
.page-template-template-home .page_content_wrap,
.page-template-template-home main#main {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

/* Inner content area used by the WooCommerce shortcodes and body */
.page-template-template-home .page_content_wrap>.content_wrap {
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

/* Nav bar: give it enough room so logo and icons are never clipped */
.top_panel_navi .content_wrap {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    box-sizing: border-box !important;
}

/* Suppress the theme's default footer when our custom one is rendered */
.page-template-template-home .footer_wrap,
.page-template-template-home #footer_wrap,
.page-template-template-home .footer_inner {
    display: none !important;
}

/* ==========================================
   SECTION BASE
   ========================================== */
.ns-section {
    padding: 50px 0;
}

.ns-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.ns-section-title {
    margin-bottom: 56px;
}

.ns-section-title h2 {
    font-family: var(--font-head);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--navy);
    margin: 0 0 14px;
    line-height: 1.2;
}

.ns-section-title h2 span {
    display: block;
    width: 52px;
    height: 3px;
    background: var(--gold);
    margin-top: 16px;
}

.ns-section-title p {
    color: #555;
    font-size: 1.05rem;
    margin: 0;
}

/* ==========================================
   HERO SLIDER
   ========================================== */
.ns-hero-slider {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    height: 88vh;
    min-height: 520px;
    background: var(--navy);
    overflow: hidden;
}

.ns-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Base Gradient Overlay for excellent text contrast */
.ns-slide__bg-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg,
            rgba(10, 35, 66, 0.18) 0%,
            rgba(10, 35, 66, 0.6) 100%);
}



.ns-slide__content-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 50px;
    /* Slight offset for visual balance */
}

.ns-slide__content {
    max-width: 820px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ns-slide__eyebrow {
    display: inline-block;
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 13px;
    /* Default */
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.ns-slide__title {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 5vw, 54px);
    /* Default */
    color: var(--white);
    line-height: 1.15;
    font-weight: 700;
    margin: 0 0 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.ns-slide__subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    /* Default */
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 45px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
}

/* Swiper Controls Overrides */
.ns-hero-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.ns-hero-slider .swiper-pagination-bullet-active {
    background: var(--gold);
    width: 28px;
    border-radius: 4px;
}

.ns-hero-slider .swiper-button-next,
.ns-hero-slider .swiper-button-prev {
    color: var(--gold);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ns-hero-slider:hover .swiper-button-next,
.ns-hero-slider:hover .swiper-button-prev {
    opacity: 0.6;
}

.ns-hero-slider .swiper-button-next:hover,
.ns-hero-slider .swiper-button-prev:hover {
    opacity: 1;
}

/* ==========================================
   BUTTON
   ========================================== */
.ns-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 16px 40px;
    text-decoration: none !important;
    border: 2px solid var(--gold);
    transition: var(--transition);
    cursor: pointer;
}

.ns-btn--gold {
    background: var(--gold);
    color: var(--white) !important;
}

.ns-btn--gold:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.35);
}

.ns-btn--outline {
    background: transparent;
    color: var(--white) !important;
    border-color: var(--white);
}

.ns-btn--outline:hover {
    background: var(--white);
    color: var(--navy) !important;
}

/* ==========================================
   CATEGORIES
   ========================================== */
.ns-categories {
    background: var(--white);
}

.ns-categories__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ns-cat-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.ns-cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.ns-cat-card:hover img {
    transform: scale(1.06);
}

.ns-cat-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 35, 66, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 28px 24px;
    transition: var(--transition);
}

.ns-cat-card:hover .ns-cat-card__overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(10, 35, 66, 0.92) 100%);
}

.ns-cat-card__label {
    color: var(--white);
    font-family: var(--font-head);
    font-size: 1.45rem;
    line-height: 1.2;
    margin: 0;
}

.ns-cat-card__link {
    display: inline-block;
    margin-top: 10px;
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gold-light);
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
}

.ns-cat-card:hover .ns-cat-card__link {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   PRODUCTS
   ========================================== */
.ns-products {
    background: var(--off-white);
}

.ns-products--alt {
    background: var(--white);
}

/* Override WooCommerce product grid for our container */
.ns-products .woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
}

.ns-products .woocommerce ul.products li.product {
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    /* Fix for image width: remove theme's default 30px right padding */
    float: none !important;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
    display: flex !important;
    flex-direction: column;
}

/* Hide Wishlist Link/text below price — keep only the hover icon */
.tinvwl-woocommerce_before_shop_loop_item_title,
.tinvwl-woocommerce_after_shop_loop_item_title {
    display: none !important;
}

.ns-products .woocommerce ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.ns-products .woocommerce ul.products li.product a img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    border-radius: 0 !important;
    display: block;
    transition: transform 0.5s ease;
}

.ns-products .woocommerce ul.products li.product:hover a img {
    transform: scale(1.04);
}

.ns-products .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-head) !important;
    font-size: 1.05rem !important;
    padding: 16px 16px 4px !important;
    color: var(--navy) !important;
}

.ns-products .woocommerce ul.products li.product .price {
    padding: 0 16px 12px !important;
    color: var(--gold-dark) !important;
    font-weight: 600;
}

.ns-products .woocommerce ul.products li.product .button {
    margin: auto 16px 16px !important;
    background: var(--navy) !important;
    color: var(--white) !important;
    border-radius: 6px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    padding: 10px 18px !important;
    transition: var(--transition) !important;
}

.ns-products .woocommerce ul.products li.product .button:hover {
    background: var(--gold) !important;
}

/* Fix for Add to Cart icon inside hover actions */
.ns-products .woocommerce ul.products li.product .product-item__description--top-actions .button {
    background: #E9E9E9 !important;
    color: #1a1a1a !important;
    box-shadow: none !important;
    padding: 0px !important;
    margin: 0 5px 10px !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.ns-products .woocommerce ul.products li.product .product-item__description--top-actions .button:hover {
    background: var(--gold) !important;
    color: var(--white) !important;
}

.ns-products .woocommerce ul.products li.product .product-item__description--top-actions .button .text {
    display: none !important;
}

.woocommerce span.onsale {
    background: var(--gold) !important;
    min-height: auto !important;
    min-width: auto !important;
    padding: 6px 12px !important;
    border-radius: 4px !important;
}

/* ==========================================
   BRAND STORY
   ========================================== */
.ns-brand {
    background: var(--navy);
    color: var(--white);
}

.ns-brand__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ns-brand__image {
    position: relative;
    height: 520px;
    border-radius: var(--radius);
    overflow: hidden;
}

.ns-brand__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ns-brand__image::after {
    content: '';
    position: absolute;
    inset: -12px;
    border: 2px solid rgba(197, 160, 89, 0.4);
    border-radius: calc(var(--radius) + 12px);
    pointer-events: none;
}

.ns-brand__eyebrow {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.ns-brand__title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: var(--white);
    margin: 0 0 24px;
    line-height: 1.2;
}

.ns-brand__body {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 44px;
}

.ns-brand__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ns-brand__pillar {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 28px 16px;
    transition: var(--transition);
}

.ns-brand__pillar:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-4px);
}

.ns-brand__pillar i,
.ns-brand__pillar svg {
    color: var(--gold);
    fill: var(--gold);
    display: block;
    margin: 0 auto 14px;
}

.ns-brand__pillar span {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.ns-testimonials {
    background: var(--navy-mid);
    color: var(--white);
    overflow: hidden;
    padding: 80px 0;
}

.ns-testimonials .ns-section-title h2 {
    color: var(--gold-light);
}

.ns-t-carousel {
    position: relative;
    overflow: hidden;
}

.ns-t-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Each slide = 2 cards wide, taking 100% of viewport */
.ns-t-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 0 40px;
    box-sizing: border-box;
}

.ns-t-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    padding: 36px 32px;
}

.ns-t-card__icon {
    color: var(--gold);
    fill: var(--gold);
    margin-bottom: 18px;
    display: block;
    flex-shrink: 0;
}

.ns-t-card__text {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 24px;
}

.ns-t-card__author {
    font-weight: 700;
    color: var(--gold);
    font-size: 0.92rem;
    letter-spacing: 0.06em;
}

/* Carousel nav */
.ns-t-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.ns-t-nav__dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.ns-t-nav__dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 4px;
}

/* ==========================================
   CUSTOM FOOTER
   ========================================== */
.ns-footer {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0 0;
}

.ns-footer__grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 2fr;
    gap: 56px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ns-footer__logo {
    font-family: var(--font-head);
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 18px;
    letter-spacing: 0.06em;
}

.ns-footer__tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 28px;
}

.ns-footer__social {
    display: flex;
    gap: 16px;
}

.ns-footer__social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.ns-footer__social a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.ns-footer__heading {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 24px;
}

.ns-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ns-footer__links li {
    margin-bottom: 12px;
}

.ns-footer__links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ns-footer__links a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}

.ns-footer__newsletter p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ns-footer__form {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
}

.ns-footer__form input {
    flex: 1;
    background: transparent;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 12px 0 !important;
    color: var(--white);
    font-size: 0.82rem;
    outline: none;
    min-width: 0;
}

.ns-footer__form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.ns-footer__form input:focus {
    border-color: var(--gold) !important;
}

.ns-footer__form button {
    flex-shrink: 0;
    background: var(--gold) !important;
    border: none !important;
    color: var(--white) !important;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    border-radius: 50% !important;
    cursor: pointer;
    transition: var(--transition);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.ns-footer__form button:hover {
    background: var(--gold-dark) !important;
    transform: scale(1.1);
}

.ns-footer__form button svg {
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
}

.ns-footer__bottom {
    text-align: center;
    padding: 22px 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.28);
    letter-spacing: 0.06em;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .ns-container {
        padding: 0 28px;
    }

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

    .ns-cat-card {
        height: 340px;
    }

    .ns-brand__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .ns-brand__image {
        height: 380px;
    }

    .ns-footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .ns-section {
        padding: 40px 0;
    }

    .ns-container {
        padding: 0 20px;
    }

    .ns-hero {
        height: 70vh;
        min-height: 460px;
    }

    .ns-hero__title {
        font-size: 2.4rem;
    }

    .ns-hero__content {
        bottom: 60px;
    }

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

    .ns-cat-card {
        height: 280px;
    }

    .ns-products .woocommerce ul.products {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }

    .ns-t-slide {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .ns-brand__pillars {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ns-footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

@media (max-width: 480px) {
    .ns-hero__title {
        font-size: 2rem;
    }

    .ns-hero__sub {
        font-size: 0.95rem;
    }

    .ns-btn {
        padding: 13px 28px;
        font-size: 0.78rem;
    }


    .ns-products .woocommerce ul.products {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================
   OFF-CANVAS CART FIX
   ========================================== */
.widget.woocommerce.widget_shopping_cart ul.woocommerce-mini-cart {
    min-height: auto !important;
    max-height: calc(100vh - 350px) !important;
    overflow-y: auto !important;
}

/* ==========================================
   FORM FIXES (AUTOFILL & PASSWORD VISIBILITY)
   ========================================== */

/* Override browser autofill yellow background */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px var(--theme-color-input_bg_color, #fff) inset !important;
    box-shadow: 0 0 0 30px var(--theme-color-input_bg_color, #fff) inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Fix show password toggle */
span.password-input {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

span.password-input input[type="password"] {
    padding-right: 40px !important;
    width: 100% !important;
}

.woocommerce-form .show-password-input,
.woocommerce-page .show-password-input {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    padding: 0 !important;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"></path><circle cx="12" cy="12" r="3"></circle></svg>') no-repeat center !important;
    background-size: contain !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: transparent !important;
    text-indent: -9999px !important;
    cursor: pointer !important;
    z-index: 10;
}