/* Yamin Shop — storefront styles (gb-pd / gb-co / home) */
:root {
    /* New logo: green #005a1e + orange #fa821e */
    --ys-bg: #ffffff;
    --ys-surface: #ffffff;
    --ys-ink: #1f1f1f;
    --ys-muted: #4b5563;
    --ys-border: #c8e0c8;
    --ys-primary: #005a1e;
    --ys-primary-dark: #0a5028;
    --ys-accent: #fa821e;
    --ys-danger: #d25a14;
    --ys-radius: 12px;
    --ys-shadow: 0 8px 24px rgba(0, 90, 30, 0.08);
    --font-bn: "Hind Siliguri", "Noto Sans Bengali", system-ui, sans-serif;
    --title-color: #1f1f1f;
    --paragraph-color: #4b5563;
    --border-color: #c8e0c8;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-bn);
    color: var(--ys-ink);
    background: #fff;
    min-height: 100vh;
    line-height: 1.55;
}

a {
    color: var(--ys-primary);
    text-decoration: none;
}

a:hover {
    color: var(--ys-primary-dark);
}

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

.container {
    width: min(1120px, calc(100% - 2rem));
    margin-inline: auto;
}

.main {
    padding-bottom: 3rem;
}

/* Alerts */
.alert {
    width: min(1120px, calc(100% - 2rem));
    margin: 1rem auto 0;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid transparent;
}

.alert-success {
    background: #e8f5e9;
    border-color: #a5d6a7;
    color: #1b5e20;
}

.alert-error {
    background: #ffebee;
    border-color: #ef9a9a;
    color: #b71c1c;
}

.alert ul {
    margin: 0;
    padding-left: 1.1rem;
}

/* Nav */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1.25rem;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ys-border);
}

.site-nav__brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ys-primary-dark);
    letter-spacing: -0.02em;
}

.site-nav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.site-nav__list a {
    color: var(--ys-muted);
    font-weight: 500;
}

.site-nav__list a:hover {
    color: var(--ys-primary);
}

.site-nav__cart {
    margin-left: auto;
    background: var(--ys-primary);
    color: #fff !important;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
}

.site-nav__cart:hover {
    background: var(--ys-primary-dark);
}

/* Home grid */
.product-grid-section {
    padding: 2rem 0 1rem;
}

.product-grid-section h2 {
    margin: 0 0 1.25rem;
    font-size: clamp(1.4rem, 2.5vw, 1.85rem);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 1.1rem;
}

.product-card {
    background: var(--ys-surface);
    border: 1px solid var(--ys-border);
    border-radius: var(--ys-radius);
    overflow: hidden;
    box-shadow: var(--ys-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(27, 94, 32, 0.14);
}

.product-card a {
    color: inherit;
    display: block;
    padding: 0.85rem;
}

.product-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    background: #e8f5e9;
}

.product-card h3 {
    margin: 0.75rem 0 0.35rem;
    font-size: 1rem;
    line-height: 1.35;
}

.product-card__price {
    margin: 0;
    font-weight: 700;
    color: var(--ys-primary-dark);
}

.variant-badge {
    display: inline-block;
    margin-top: 0.45rem;
    font-size: 0.75rem;
    color: var(--ys-primary);
    background: #e8f5e9;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
}

/* Product details (gb-pd) */
.page-content {
    padding-top: 1.5rem;
}

.gb-pd__card {
    background: var(--ys-surface);
    border: 1px solid var(--ys-border);
    border-radius: calc(var(--ys-radius) + 4px);
    padding: 1.25rem;
    box-shadow: var(--ys-shadow);
}

.gb-pd-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    color: var(--ys-muted);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.gb-pd-breadcrumb a {
    color: var(--ys-muted);
}

.gb-pd__row {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 1.75rem;
}

@media (max-width: 860px) {
    .gb-pd__row {
        grid-template-columns: 1fr;
    }
}

.gb-pd-gallery__main {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--ys-radius);
    border: 1px solid var(--ys-border);
    background: #f1f8e9;
}

.gb-pd-gallery__thumbs {
    display: flex;
    gap: 0.55rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.gb-pd-gallery__thumb {
    width: 68px;
    height: 68px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    background: #fff;
}

.gb-pd-gallery__thumb.is-active,
.gb-pd-gallery__thumb:hover {
    border-color: var(--ys-accent);
}

.gb-pd-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gb-pd-info__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    line-height: 1.25;
}

.gb-pd-info__price {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--ys-primary-dark);
    margin-bottom: 0.5rem;
}

.gb-pd-info__rating {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    color: #f9a825;
    margin-bottom: 1rem;
}

.gb-pd-info__rating-count {
    color: var(--ys-muted);
    font-size: 0.9rem;
}

.gb-pd-info__variants {
    margin-bottom: 1rem;
}

.gb-pd-info__variants label {
    display: block;
    font-size: 0.88rem;
    color: var(--ys-muted);
    margin-bottom: 0.35rem;
}

.gb-pd-info__variants select {
    width: 100%;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--ys-border);
    border-radius: 8px;
    background: #fff;
}

.gb-pd-info__actions {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin: 1rem 0 1.25rem;
}

.gb-pd-action-row {
    display: flex;
    gap: 0.65rem;
    align-items: stretch;
}

.gb-pd-action-row .gb-pd-info__add-btn {
    flex: 1;
}

.gb-pd-info__qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--ys-border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.gb-pd-info__qty button {
    width: 36px;
    height: 40px;
    border: 0;
    background: #f1f8e9;
    cursor: pointer;
    font-size: 1.1rem;
}

.gb-pd-info__qty input {
    width: 48px;
    height: 40px;
    border: 0;
    text-align: center;
    font-weight: 600;
}

.gb-pd-info__add-btn,
.gb-pd-info__buy-btn,
.gb-co-submit {
    border: 0;
    cursor: pointer;
    border-radius: 8px;
    padding: 0.7rem 1.1rem;
    font-weight: 600;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.gb-pd-info__add-btn {
    background: var(--ys-accent);
    color: #fff;
}

.gb-pd-info__add-btn:hover {
    background: #e07012;
}

.gb-pd-info__buy-btn {
    background: #fff;
    color: var(--ys-accent);
    border: 1.5px solid var(--ys-accent);
    width: 100%;
}

.gb-pd-info__contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

.gb-pd-info__wa-btn,
.gb-pd-info__call-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.9rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.92rem;
}

.gb-pd-info__wa-btn {
    background: #25d366;
    color: #fff !important;
}

.gb-pd-info__call-btn {
    background: #eef2ff;
    color: #1e3a8a !important;
}

.gb-pd-tabs {
    margin-top: 1.75rem;
    border-top: 1px solid var(--ys-border);
    padding-top: 1rem;
}

.gb-pd-tabs__headers {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.gb-pd-tabs__header {
    border: 0;
    background: transparent;
    padding: 0.5rem 0.85rem;
    border-radius: 8px;
    cursor: pointer;
    color: var(--ys-muted);
    font-family: inherit;
    font-weight: 600;
}

.gb-pd-tabs__header.is-active {
    background: #e8f5e9;
    color: var(--ys-primary-dark);
}

.gb-pd-tabs__pane-title {
    font-weight: 700;
    margin: 0 0 0.5rem;
}

/* Checkout (gb-co) */
.gb-co-grid {
    width: min(1120px, calc(100% - 2rem));
    margin: 1.5rem auto 0;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.1rem;
    align-items: start;
}

@media (max-width: 900px) {
    .gb-co-grid {
        grid-template-columns: 1fr;
    }
}

.gb-co-card {
    background: var(--ys-surface);
    border: 1px solid var(--ys-border);
    border-radius: var(--ys-radius);
    padding: 1.1rem 1.15rem;
    margin-bottom: 1rem;
    box-shadow: var(--ys-shadow);
}

.gb-co-card-title {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gb-co-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ys-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.gb-co-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

@media (max-width: 640px) {
    .gb-co-form-row {
        grid-template-columns: 1fr;
    }
}

.gb-co-field {
    margin-bottom: 0.85rem;
}

.gb-co-field label {
    display: block;
    font-size: 0.86rem;
    color: var(--ys-muted);
    margin-bottom: 0.3rem;
}

.gb-co-input,
.gb-co-textarea {
    width: 100%;
    border: 1px solid var(--ys-border);
    border-radius: 8px;
    padding: 0.65rem 0.75rem;
    font: inherit;
    background: #fff;
}

.gb-co-input:focus,
.gb-co-textarea:focus {
    outline: 2px solid rgba(67, 160, 71, 0.35);
    border-color: var(--ys-accent);
}

.gb-co-textarea {
    min-height: 110px;
    resize: vertical;
}

.gb-co-free-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.35rem;
    background: #e8f5e9;
    color: var(--ys-primary-dark);
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
}

.gb-co-item {
    display: grid;
    grid-template-columns: 56px 1fr auto auto;
    gap: 0.65rem;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid #eef2f0;
}

.gb-co-item img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--ys-border);
}

.gb-co-item__name {
    font-weight: 600;
    font-size: 0.95rem;
}

.gb-co-item__meta {
    color: var(--ys-muted);
    font-size: 0.82rem;
}

.gb-co-item__price {
    font-weight: 700;
    white-space: nowrap;
}

.gb-co-item__remove {
    border: 0;
    background: #ffebee;
    color: var(--ys-danger);
    width: 34px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
}

.gb-co-summary {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--ys-border);
}

.gb-co-summary__row {
    display: flex;
    justify-content: space-between;
    padding: 0.3rem 0;
    color: var(--ys-muted);
}

.gb-co-summary__row--total {
    color: var(--ys-ink);
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 0.25rem;
}

.gb-co-payments--card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gb-co-payment {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    padding: 0.75rem;
    border: 1.5px solid var(--ys-border);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
}

.gb-co-payment.is-selected {
    border-color: var(--ys-accent);
    background: #f1f8e9;
}

.gb-co-payment__icon {
    width: 28px;
    height: 28px;
}

.gb-co-payment__name {
    flex: 1;
    font-weight: 600;
}

.gb-co-payment__check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--ys-accent);
    box-shadow: inset 0 0 0 3px #fff;
    background: var(--ys-accent);
}

.gb-co-terms {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    margin-bottom: 0.9rem;
    font-size: 0.92rem;
    color: var(--ys-muted);
}

.gb-co-submit {
    width: 100%;
    justify-content: center;
    background: var(--ys-primary);
    color: #fff;
    padding: 0.85rem 1rem;
}

.gb-co-submit:hover {
    background: var(--ys-primary-dark);
}

/* Order success */
.order-success h1 {
    margin: 0.6rem 0;
}

@media (prefers-reduced-motion: reduce) {
    .product-card {
        transition: none;
    }
}

/* Turbo progress (Next.js-like top loader) */
#ys-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 200;
    background: linear-gradient(90deg, #43a047, #1b5e20);
    opacity: 0;
    pointer-events: none;
    transition: width 0.35s ease, opacity 0.2s ease;
}

#ys-progress.is-loading {
    opacity: 1;
    width: 72%;
}

#ys-progress.is-loading.is-done {
    width: 100%;
}

/* ===== Polished header / SPA chrome ===== */
.ys-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ys-border);
}

.ys-header__bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 64px;
    padding-block: 0.55rem;
}

.ys-logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--ys-primary-dark);
    white-space: nowrap;
}

.ys-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    flex: 1;
    align-items: center;
}

.ys-nav__link {
    color: var(--ys-muted);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
}

.ys-nav__link:hover,
.ys-nav__link.is-active {
    color: var(--ys-primary-dark);
    background: #e8f5e9;
}

.ys-header__actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-left: auto;
}

.ys-cart-btn,
.ys-nav-toggle,
.ys-admin-link {
    position: relative;
    width: 42px;
    height: 42px;
    border: 1px solid var(--ys-border);
    border-radius: 12px;
    background: #fff;
    color: var(--ys-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.ys-cart-btn__count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    background: var(--ys-danger);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

.ys-cart-btn__count.is-hot {
    transform: scale(1.05);
}

.ys-nav-toggle {
    display: none;
}

.ys-hero {
    padding: 2.2rem 0 1rem;
}

.ys-hero__inner {
    background: linear-gradient(135deg, #e8f5e9, #ffffff 55%);
    border: 1px solid var(--ys-border);
    border-radius: 18px;
    padding: 1.6rem 1.4rem;
    box-shadow: var(--ys-shadow);
}

.ys-hero__eyebrow {
    margin: 0;
    color: var(--ys-primary);
    font-weight: 700;
    font-size: 0.85rem;
}

.ys-hero h1 {
    margin: 0.35rem 0;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
}

.ys-hero p {
    margin: 0;
    color: var(--ys-muted);
}

.ys-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ys-page-title {
    margin: 0;
    font-size: 1.5rem;
}

.product-card__media {
    position: relative;
    display: block;
    padding: 0.85rem 0.85rem 0;
}

.product-card__body {
    padding: 0.75rem 0.85rem 0.95rem;
}

.product-card__actions {
    margin-top: 0.65rem;
}

.product-card__badge,
.ys-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: #e8f5e9;
    color: var(--ys-primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.product-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.ys-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    border: 0;
    border-radius: 10px;
    padding: 0.65rem 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    text-decoration: none;
}

.ys-btn--primary {
    background: var(--ys-primary);
    color: #fff !important;
}

.ys-btn--ghost {
    background: #fff;
    color: var(--ys-primary-dark) !important;
    border: 1px solid var(--ys-border);
}

.ys-btn--sm {
    padding: 0.45rem 0.75rem;
    font-size: 0.86rem;
}

.ys-btn--block {
    width: 100%;
}

.ys-spinner {
    width: 22px;
    height: 22px;
    border: 2px solid #c8e6c9;
    border-top-color: var(--ys-primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.product-grid.is-loading {
    opacity: 0.55;
    pointer-events: none;
}

.ys-empty {
    grid-column: 1 / -1;
    color: var(--ys-muted);
}

/* Cart drawer */
.ys-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    z-index: 16000;
}

.ys-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(430px, 100%);
    height: 100%;
    background: #fff;
    z-index: 16010;
    transform: translateX(105%);
    transition: transform 0.28s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
}

.ys-drawer.is-open {
    transform: translateX(0);
}

body.ys-drawer-open {
    overflow: hidden;
}

.ys-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid var(--ys-border);
}

.ys-drawer__head h2 {
    margin: 0;
    font-size: 1.1rem;
}

.ys-drawer__close {
    border: 0;
    background: #f3f4f6;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
}

.ys-drawer__body {
    padding: 1rem;
    overflow: auto;
    flex: 1;
}

.ys-cart-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ys-cart-line {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 0.65rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eef2f0;
}

.ys-cart-line img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
}

.ys-cart-line__info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 0.9rem;
}

.ys-cart-line__qty {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.25rem;
}

.ys-cart-line__qty button,
.js-cart-remove {
    width: 28px;
    height: 28px;
    border: 1px solid var(--ys-border);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

.ys-cart-line__aside {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    font-weight: 700;
}

.ys-cart-totals {
    margin-top: 1rem;
    display: grid;
    gap: 0.55rem;
}

.ys-cart-totals > div {
    display: flex;
    justify-content: space-between;
}

.ys-cart-empty {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--ys-muted);
}

.ys-cart-empty i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--ys-primary);
}

.ys-toast {
    position: fixed;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%) translateY(20px);
    background: #111827;
    color: #fff;
    padding: 0.7rem 1.1rem;
    border-radius: 999px;
    z-index: 100;
    opacity: 0;
    transition: 0.25s ease;
    font-weight: 600;
    font-size: 0.92rem;
}

.ys-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.site-footer {
    margin-top: 2.5rem;
    border-top: 1px solid var(--ys-border);
    background: #fff;
    padding: 1.5rem 0;
}

.site-footer__inner {
    display: grid;
    gap: 0.75rem;
}

.site-footer a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-right: 0.8rem;
    color: var(--ys-muted);
}

.site-footer__copy {
    margin: 0;
    color: #9ca3af;
    font-size: 0.85rem;
}

@media (max-width: 860px) {
    .ys-nav-toggle {
        display: inline-flex;
        order: 2;
    }

    .ys-header__actions {
        order: 3;
    }

    .ys-logo {
        order: 1;
        margin-right: auto;
    }

    .ys-nav {
        display: none;
        order: 4;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-bottom: 0.5rem;
    }

    .ys-nav.is-open {
        display: flex;
    }

    .ys-nav__link {
        border-radius: 10px;
    }

    .gb-co-item {
        grid-template-columns: 48px 1fr auto;
    }

    .gb-co-item__remove {
        display: none;
    }
}

