/* LuckMeKart — Gold + White + Light Yellow */
:root {
    --lm-gold: #D4AF37;           /* classic gold accent */
    --lm-gold-rich: #B8860B;      /* dark goldenrod — primary UI */
    --lm-gold-deep: #8B6914;     /* hover / emphasis */
    --lm-gold-soft: #E8D48A;     /* borders, highlights */
    --lm-cream: #FFFEF8;         /* off-white page */
    --lm-yellow-light: #FFF9E6;  /* light yellow panels */
    --lm-yellow-pale: #FFFCF0;   /* softer yellow */
    --primary-color: var(--lm-gold-rich);
    --secondary-color: #8B7355;
    /* Bootstrap 5 primary override (loaded after bootstrap.min.css) */
    --bs-primary: #B8860B;
    --bs-primary-rgb: 184, 134, 11;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--lm-cream);
    color: #3d3428;
}

/* Top navigation — white with gold accent */
.navbar-luckmekart {
    background: #ffffff !important;
    border-bottom: 2px solid var(--lm-gold-soft);
}

.navbar-luckmekart .nav-link {
    color: #5c4d3a !important;
}

.navbar-luckmekart .nav-link:hover,
.navbar-luckmekart .nav-link:focus {
    color: var(--lm-gold-rich) !important;
}

.navbar-brand {
    color: var(--lm-gold-rich) !important;
    letter-spacing: 0.06em;
}

.btn-primary {
    background-color: var(--lm-gold-rich);
    border-color: var(--lm-gold-rich);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--lm-gold-deep);
    border-color: var(--lm-gold-deep);
    color: #fff;
}

.btn-outline-primary {
    color: var(--lm-gold-rich);
    border-color: var(--lm-gold-rich);
    background-color: #fff;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--lm-gold-rich);
    border-color: var(--lm-gold-rich);
    color: #fff;
}

.text-primary {
    color: var(--lm-gold-rich) !important;
}

/* Cards & panels — light yellow where Bootstrap uses bg-light */
.bg-light {
    background-color: var(--lm-yellow-light) !important;
}

.bg-primary {
    background-color: var(--lm-gold-rich) !important;
}

.border-primary {
    border-color: var(--lm-gold-soft) !important;
}

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.card {
    border-radius: 10px;
    background-color: #ffffff;
    border-color: rgba(232, 212, 138, 0.45);
}

/* Carousel dots — gold */
.carousel-indicators [data-bs-target] {
    background-color: rgba(184, 134, 11, 0.35);
}
.carousel-indicators .active {
    background-color: #B8860B;
}

/* Products page: Horizontal categories with circular images */
.products-categories-wrap {
    width: 100%;
}

.categories-horizontal {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.5rem;
}

.categories-horizontal::-webkit-scrollbar {
    height: 6px;
}

.categories-horizontal::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.categories-horizontal::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.categories-scroll {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1.5rem;
    padding: 0.5rem 0.25rem 1rem;
    width: max-content;
}

.category-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-width: 90px;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.category-item:hover,
.category-item.active {
    color: var(--primary-color);
}

.category-icon-circle {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--lm-yellow-pale);
    border: 2px solid var(--lm-gold-soft);
    margin-bottom: 0.5rem;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.category-item:hover .category-icon-circle,
.category-item.active .category-icon-circle {
    border-color: var(--lm-gold-rich);
    background: var(--lm-yellow-light);
}

.category-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.category-icon-circle i {
    font-size: 1.4rem;
}

.category-name {
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.badge {
    font-weight: 500;
}

/* Home: horizontal scrolling product rail (Flipkart-style row) */
.home-product-rail-outer {
    position: relative;
}

.home-product-rail-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    border: 1px solid rgba(232, 212, 138, 0.85);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.97);
    color: var(--lm-gold-rich);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.home-product-rail-nav:active:not(:disabled) {
    background: var(--lm-yellow-light);
}

.home-product-rail-nav:is(:disabled, .is-disabled) {
    opacity: 0.32;
    cursor: not-allowed;
    pointer-events: none;
}

.home-product-rail-nav-prev {
    left: 4px;
}

.home-product-rail-nav-next {
    right: 4px;
}

.home-product-rail {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding: 12px 10px 14px;
    scroll-snap-type: x proximity;
    touch-action: pan-x;
    overscroll-behavior-x: contain;
}

/* After base padding — room for prev/next arrows */
.home-product-rail-outer .home-product-rail {
    padding-left: 48px;
    padding-right: 48px;
}

/* Homepage category strip: arrows + scroll, no yellow rail box */
.home-product-rail-outer.home-category-rail-outer .home-product-rail.home-category-rail {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding-top: 4px;
    padding-bottom: 10px;
}

.home-product-rail::-webkit-scrollbar {
    height: 6px;
}

.home-product-rail::-webkit-scrollbar-thumb {
    background: rgba(184, 134, 11, 0.4);
    border-radius: 3px;
}

.home-product-rail-inner {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.5rem;
    min-width: min-content;
    padding: 2px 2px 4px;
}

.home-product-tile {
    flex: 0 0 auto;
    width: 156px;
    scroll-snap-align: start;
    border-radius: 10px;
}

@media (min-width: 576px) {
    .home-product-tile {
        width: 172px;
    }
}

.home-product-tile-img-wrap {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    background: #fff;
}

.home-product-tile-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    height: auto;
    vertical-align: middle;
}

.home-product-tile-placeholder {
    width: 100%;
    aspect-ratio: 1;
    min-height: 100px;
}

.home-product-tile-title {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    min-height: 2.7em;
    color: #3d3428;
}

.home-product-tile .btn-sm {
    font-size: 0.75rem;
    padding: 0.35rem 0.5rem;
}

/* Home Hero Carousel */
.hero-carousel {

    background: #111;
    border-radius: 0;
    margin-bottom: 0;
}

.hero-fullwidth {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: -1.5rem;
    padding-top: 0;
}

.hero-slide {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(15, 23, 42, 0.78),
        rgba(15, 23, 42, 0.38),
        rgba(15, 23, 42, 0.18)
    );
}

/* Per-slide tint (matches each banner SVG palette) */
.hero-slide-theme-violet .hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(46, 16, 72, 0.88),
        rgba(91, 33, 182, 0.42),
        rgba(219, 39, 119, 0.2)
    );
}
.hero-slide-theme-teal .hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(8, 47, 53, 0.88),
        rgba(8, 145, 178, 0.4),
        rgba(22, 163, 74, 0.18)
    );
}
.hero-slide-theme-amber .hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(67, 20, 7, 0.88),
        rgba(194, 65, 12, 0.45),
        rgba(202, 138, 4, 0.22)
    );
}
.hero-slide-theme-sapphire .hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(15, 30, 60, 0.88),
        rgba(37, 99, 235, 0.42),
        rgba(147, 51, 234, 0.2)
    );
}
.hero-slide-theme-rose .hero-overlay {
    background: linear-gradient(
        90deg,
        rgba(76, 5, 25, 0.88),
        rgba(185, 28, 28, 0.44),
        rgba(244, 63, 94, 0.22)
    );
}

.hero-slide-theme-violet .hero-kicker { color: #e9d5ff; }
.hero-slide-theme-teal .hero-kicker { color: #a5f3fc; }
.hero-slide-theme-amber .hero-kicker { color: #fde68a; }
.hero-slide-theme-sapphire .hero-kicker { color: #bfdbfe; }
.hero-slide-theme-rose .hero-kicker { color: #fecdd3; }

.hero-caption {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 56px 20px;
    max-width: 780px;
}

.hero-kicker {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 10px;
}

.hero-title {
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 10px;
}

.hero-text {
    font-size: 1.1rem;
    opacity: 0.95;
    margin: 0 0 18px;
}

/* Caption animations */
.carousel-item .hero-kicker,
.carousel-item .hero-title,
.carousel-item .hero-text,
.carousel-item .btn {
    opacity: 0;
    transform: translateY(14px);
}

.carousel-item.active .hero-kicker {
    animation: heroIn 700ms ease-out 100ms forwards;
}
.carousel-item.active .hero-title {
    animation: heroIn 750ms ease-out 180ms forwards;
}
.carousel-item.active .hero-text {
    animation: heroIn 800ms ease-out 260ms forwards;
}
.carousel-item.active .btn {
    animation: heroIn 850ms ease-out 340ms forwards;
}

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

@media (max-width: 768px) {
    .hero-slide { min-height: 360px; }
    .hero-title { font-size: 1.75rem; }
    .hero-text { font-size: 1rem; }
}

/* ========== Mobile Optimizations ========== */
@media (max-width: 991.98px) {
    .container, .container-fluid { padding-left: 12px; padding-right: 12px; }
    .navbar .container { padding-left: 12px; padding-right: 12px; }
    .navbar-brand { font-size: 1rem; }
    .navbar-brand img { width: 36px; height: 36px; }
    .btn, .form-control, .form-select { min-height: 44px; }
    .product-card .btn { min-height: 40px; }
}

@media (max-width: 767.98px) {
    .hero-slide { min-height: 280px; }
    .hero-caption { padding: 32px 16px; }
    .hero-title { font-size: 1.5rem; }
    .hero-text { font-size: 0.95rem; }
    .hero-kicker { font-size: 0.75rem; }
    .mt-4 { margin-top: 1rem !important; }
    .mb-4, .mb-5 { margin-bottom: 1.25rem !important; }
    .py-5 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
    .card-body { padding: 1rem; }
    .main-product-image-wrapper { min-height: 240px; padding: 8px; }
    .main-product-image-wrapper img { max-height: 320px; }
    .thumbnail-thumb { width: 48px; height: 48px; }
    .scroll-top-btn { width: 44px; height: 44px; right: 12px; bottom: 12px; }
    .chatbot-button { width: 48px; height: 48px; bottom: 72px; right: 12px; }
    .chatbot-panel { width: 100%; max-height: 85vh; border-radius: 16px 16px 0 0; }
}

@media (max-width: 575.98px) {
    .hero-slide { min-height: 240px; }
    .hero-title { font-size: 1.25rem; }
    .product-card .card-img-top,
    .card .card-img-top { height: 180px !important; }
    .category-item { min-width: 70px; }
    .category-icon-circle { width: 50px !important; height: 50px !important; border-radius: 25px !important; }
    .category-name { font-size: 0.7rem; max-width: 70px; }
    .table-responsive { font-size: 0.875rem; }
    .table th, .table td { padding: 0.5rem; }
    .d-flex.justify-content-between { flex-wrap: wrap; gap: 0.5rem; }
    .d-flex.justify-content-between h2 { margin-bottom: 0 !important; }
}

/* Touch-friendly: ensure tap targets */
@media (hover: none) and (pointer: coarse) {
    .nav-link, .dropdown-item, .btn { min-height: 44px; display: inline-flex; align-items: center; }
    .navbar .nav-link { padding: 0.75rem 1rem; }
    .product-card .btn { padding: 0.5rem 1rem; }
}

/* Footer mobile */
@media (max-width: 767.98px) {
    .full-width-footer .container-fluid { padding-left: 1rem; padding-right: 1rem; }
    .full-width-footer .col-md-4 { margin-bottom: 1rem; }
    .full-width-footer h5 { font-size: 1rem; margin-bottom: 0.5rem; }
    .full-width-footer p, .full-width-footer li { font-size: 0.9rem; }
}

/* Product detail mobile */
@media (max-width: 767.98px) {
    .main-product-image-wrapper img { max-height: 280px; object-fit: contain; }
    .thumbnail-btn { min-width: 44px; min-height: 44px; padding: 4px; }
    .thumbnail-btn .thumbnail-thumb { width: 48px; height: 48px; }
    .display-6 { font-size: 1.25rem; }
}

/* Admin Styles override */
.admin-card {
    border-left: 4px solid var(--primary-color);
}

/* Scroll to top button */
.scroll-top-btn {
    position: fixed;
    right: 18px !important;
    left: auto !important;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 22px rgba(0,0,0,0.18);
    z-index: 99999; /* always on top */
    /* Rollback: always visible */
    transition: transform 120ms ease, opacity 120ms ease;
    opacity: 0.95;
    transform: translateY(0);
    cursor: pointer;
    pointer-events: auto;
}

.scroll-top-btn.is-visible {
    opacity: 0.95;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top-btn:hover {
    transform: translateY(-2px);
    opacity: 1;
}

.scroll-top-btn:active {
    transform: translateY(0);
}

.scroll-top-btn:focus {
    outline: 3px solid rgba(184, 134, 11, 0.35);
    outline-offset: 2px;
}

.thumbnail-btn {
    border: none;
    background: transparent;
    padding: 0;
    transition: transform 180ms ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.thumbnail-btn img {
    transition: transform 300ms ease, box-shadow 300ms ease;
    border-radius: 8px;
}

.thumbnail-btn:hover {
    transform: translateY(-3px);
}

.thumbnail-btn:hover img {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.main-product-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    padding: 12px;
}

.main-product-image-wrapper img {
    max-width: 100%;
    max-height: 420px;
    object-fit: contain;
}

/* Product detail: full-screen image preview (lightbox + zoom) */
.lmk-product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    flex-direction: column;
    background: rgba(15, 15, 18, 0.94);
    -webkit-tap-highlight-color: transparent;
}
.lmk-product-lightbox[hidden] {
    display: none !important;
}
.lmk-product-lightbox__top {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
}
.lmk-product-lightbox__hint {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    margin: 0;
    flex: 1;
    text-align: center;
}
.lmk-product-lightbox__toolbar {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.lmk-product-lightbox__toolbar .btn {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
    font-weight: 600;
    min-width: 2.25rem;
}
.lmk-product-lightbox__toolbar .btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}
.lmk-product-lightbox__close {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.lmk-product-lightbox__close:hover {
    background: rgba(184, 134, 11, 0.85);
    color: #fff;
}
.lmk-product-lightbox__stage {
    flex: 1;
    min-height: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px 20px;
}
.lmk-product-lightbox__stage img {
    display: block;
    max-width: none;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    user-select: none;
    -webkit-user-drag: none;
}
.lmk-product-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lmk-product-lightbox__nav:hover {
    background: rgba(184, 134, 11, 0.9);
}
.lmk-product-lightbox__nav--prev { left: 8px; }
.lmk-product-lightbox__nav--next { right: 8px; }
.lmk-product-lightbox__nav[hidden] {
    display: none !important;
}
body.lmk-lightbox-open {
    overflow: hidden;
}
.main-product-image-wrapper--zoomable {
    cursor: zoom-in;
}
.main-product-image-wrapper--zoomable:focus {
    outline: 2px solid var(--bs-primary, #0d6efd);
    outline-offset: 2px;
}

.thumbnail-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #fff;
}

.admin-thumbnail-row {
    gap: 6px;
}

.admin-thumbnail-thumb {
    width: 48px;
    height: 48px;
}

.admin-thumbnail-row .thumbnail-btn {
    border-radius: 8px;
}

.full-width-footer {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Footer — solid gold only (no gradient) */
footer.footer-luckmekart,
.footer-luckmekart {
    background: #D4AF37 !important;
    background-color: #D4AF37 !important;
    background-image: none !important;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    color: #fff !important;
}

/* Inner wrapper must stay transparent so gold shows edge-to-edge */
.footer-luckmekart .container-fluid,
.footer-luckmekart .container {
    background: transparent !important;
    background-color: transparent !important;
}

.footer-luckmekart h5 {
    color: #fff !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.footer-luckmekart p,
.footer-luckmekart li,
.footer-luckmekart .text-white {
    color: #fff !important;
}

.footer-luckmekart hr {
    border-color: rgba(255, 255, 255, 0.45) !important;
    opacity: 1;
}

.footer-luckmekart a.text-white:hover,
.footer-luckmekart a.text-decoration-none:hover {
    color: #FFFEF0 !important;
    text-decoration: underline !important;
}
.admin-product-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 10px;
}

.admin-product-image-wrapper img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.chatbot-button {
    position: fixed;
    bottom: 88px;
    right: 18px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
    border: none;
    cursor: pointer;
    z-index: 100000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.chatbot-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(0,0,0,0.35);
}

.chatbot-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 100000;
}

.chatbot-modal.is-visible {
    display: flex;
}

.chatbot-panel {
    width: min(360px, 90%);
    max-height: 80vh;
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-panel header {
    background: var(--primary-color);
    color: #fff;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-login-callout {
    color: var(--primary-color);
}

.chatbot-panel .messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    background: var(--lm-yellow-pale);
}

.chatbot-panel .input-row {
    display: flex;
    border-top: 1px solid #e9ecef;
}

.chatbot-panel .input-row input {
    flex: 1;
    border: none;
    padding: 12px;
    outline: none;
    font-size: 0.95rem;
}

.chatbot-panel .input-row button {
    border: none;
    background: var(--primary-color);
    color: #fff;
    padding: 0 18px;
    cursor: pointer;
}
