/* NO ALTERNATIVE — SHOP / PRODUCT CARDS */

.product-card {
    position: relative;

    min-width: 0;
}

.product-card__link {
    display: block;
}

.product-card__media {
    position: relative;

    aspect-ratio: 0.78;

    overflow: hidden;

    background: #0b0b0b;
}

.product-card__image {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.001);

    transition:
        transform 900ms cubic-bezier(
            0.16,
            1,
            0.3,
            1
        ),
        filter 500ms ease;
}

.product-card:hover .product-card__image {
    transform: scale(1.055);
}

.product-card__overlay {
    position: absolute;

    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.03) 40%,
            rgba(0, 0, 0, 0.30) 100%
        );

    transition: background 500ms ease;
}

.product-card:hover .product-card__overlay {
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.03) 25%,
            rgba(0, 0, 0, 0.42) 100%
        );
}

.product-card__top {
    position: absolute;

    top: 18px;
    right: 18px;
    left: 18px;

    z-index: 3;

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

    pointer-events: none;
}

.product-card__number {
    color: rgba(255, 255, 255, 0.65);

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 0.18em;
}

.product-card__status {
    padding: 8px 11px;

    background: rgba(5, 5, 5, 0.86);

    border: 1px solid rgba(255, 255, 255, 0.12);

    color: var(--color-white);

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

    letter-spacing: 0.14em;

    text-transform: uppercase;

    backdrop-filter: blur(8px);
}

.product-card__view {
    position: absolute;

    right: 18px;
    bottom: 18px;

    z-index: 3;

    width: 76px;
    height: 76px;

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

    gap: 3px;

    border-radius: 50%;

    background: var(--color-white);

    color: var(--color-black);

    font-size: 8px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.09em;

    text-transform: uppercase;

    opacity: 0;

    transform:
        translateY(16px)
        scale(0.84);

    transition:
        opacity 300ms ease,
        transform 450ms cubic-bezier(
            0.16,
            1,
            0.3,
            1
        );
}

.product-card:hover .product-card__view {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);
}

.product-card__information {
    padding-top: 21px;
}

.product-card__category {
    margin-bottom: 10px;

    color: rgba(255, 255, 255, 0.35);

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 0.17em;

    text-transform: uppercase;
}

.product-card__category a {
    transition: color 180ms ease;
}

.product-card__category a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.product-card__title {
    max-width: 90%;

    margin: 0;

    color: var(--color-white);

    font-size: 13px;
    font-weight: 500;

    line-height: 1.35;

    letter-spacing: 0.035em;

    text-transform: uppercase;
}

.product-card__bottom {
    margin-top: 20px;

    padding-top: 13px;

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

    gap: 16px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.product-card__price {
    color: rgba(255, 255, 255, 0.62);

    font-size: 11px;
    font-weight: 500;

    letter-spacing: 0.05em;
}

.product-card__price .woocommerce-Price-currencySymbol {
    margin-right: 2px;
}

.product-card__price del {
    margin-right: 8px;

    opacity: 0.35;
}

.product-card__price ins {
    color: var(--color-white);

    text-decoration: none;
}

.product-card__arrow {
    color: rgba(255, 255, 255, 0.4);

    font-size: 15px;

    transition:
        color 200ms ease,
        transform 300ms cubic-bezier(
            0.16,
            1,
            0.3,
            1
        );
}

.product-card:hover .product-card__arrow {
    color: var(--color-white);

    transform: translate(4px, -4px);
}

@media (max-width: 1100px) {
.product-card__media {
        aspect-ratio: 0.84;
    }
}

@media (max-width: 700px) {
.product-card__media {
        aspect-ratio: 0.82;
    }

.product-card__view {
        display: none;
    }

.product-card__title {
        max-width: 85%;

        font-size: 12px;
    }
}

.product-card__brand {
    margin-bottom: 7px;

    color: rgba(255, 255, 255, 0.72);

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

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.shop-archive {
    min-height: 100vh;

    padding-top: clamp(80px, 8vw, 130px);
    padding-bottom: clamp(100px, 10vw, 160px);

    background: var(--color-black);
}

.shop-archive__header {
    padding-bottom: clamp(70px, 8vw, 120px);
}

.shop-archive__meta {
    margin-bottom: 36px;

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

    gap: 30px;

    color: rgba(255, 255, 255, 0.35);

    font-size: 9px;
    font-weight: 500;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.shop-archive__heading-row {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(260px, 0.6fr);

    align-items: end;

    gap: clamp(50px, 8vw, 140px);
}

.shop-archive__title {
    margin: 0;

    color: var(--color-white);

    font-size: clamp(80px, 11vw, 180px);
    font-weight: 500;

    line-height: 0.76;

    letter-spacing: -0.075em;

    text-transform: uppercase;
}

.shop-archive__description {
    max-width: 380px;

    margin: 0;

    padding-bottom: 8px;

    color: rgba(255, 255, 255, 0.46);

    font-size: 13px;

    line-height: 1.75;
}

.shop-toolbar {
    min-height: 72px;

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

    gap: 40px;

    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.shop-toolbar__right {
    display: flex;
    align-items: center;

    gap: 30px;
}

.shop-filter-toggle {
    padding: 0;

    display: flex;
    align-items: center;

    gap: 20px;

    border: 0;

    background: transparent;

    color: var(--color-white);

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

    letter-spacing: 0.16em;

    text-transform: uppercase;

    cursor: pointer;
}

.shop-filter-toggle span:last-child {
    font-size: 17px;
    font-weight: 300;

    transition: transform 250ms ease;
}

.shop-filter-toggle[aria-expanded="true"]
span:last-child {
    transform: rotate(45deg);
}

.shop-toolbar
.woocommerce-result-count {
    margin: 0;

    color: rgba(255, 255, 255, 0.35);

    font-size: 9px;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}

.shop-filters {
    max-height: 0;

    overflow: hidden;

    background: #080808;

    border-bottom: 1px solid transparent;

    transition:
        max-height 500ms cubic-bezier(
            0.16,
            1,
            0.3,
            1
        ),
        border-color 250ms ease;
}

.shop-filters.is-open {
    max-height: 700px;

    border-color: var(--color-border);
}

.shop-filters__inner {
    padding-top: 55px;
    padding-bottom: 55px;

    display: grid;

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

    gap: clamp(60px, 10vw, 160px);
}

.shop-filter-group__label {
    display: block;

    margin-bottom: 24px;

    color: rgba(255, 255, 255, 0.32);

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 0.2em;

    text-transform: uppercase;
}

.shop-filter-group__options {
    border-top: 1px solid var(--color-border);
}

.shop-filter-group__options a {
    min-height: 52px;

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

    gap: 30px;

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

    color: rgba(255, 255, 255, 0.75);

    font-size: 11px;

    transition:
        color 180ms ease,
        padding-left 250ms ease;
}

.shop-filter-group__options a:hover {
    padding-left: 7px;

    color: var(--color-white);
}

.shop-filter-group__options
a span:last-child {
    color: rgba(255, 255, 255, 0.25);

    font-size: 9px;
}

.shop-products {
    padding-top: clamp(70px, 8vw, 120px);
}

.shop-products__grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap:
        clamp(60px, 7vw, 105px)
        clamp(12px, 1.5vw, 24px);
}

.shop-pagination {
    margin-top: clamp(90px, 10vw, 150px);

    padding-top: 25px;

    border-top: 1px solid var(--color-border);
}

.shop-pagination
.woocommerce-pagination {
    margin: 0;
}

.shop-pagination
.woocommerce-pagination ul {
    margin: 0 !important;
    padding: 0 !important;

    display: flex;

    gap: 8px;

    border: 0 !important;
}

.shop-pagination
.woocommerce-pagination ul li {
    border: 0 !important;
}

.shop-pagination
.woocommerce-pagination a,
.shop-pagination
.woocommerce-pagination span {
    width: 42px !important;
    height: 42px !important;

    padding: 0 !important;

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

    border: 1px solid var(--color-border);

    background: transparent !important;

    color: rgba(255, 255, 255, 0.55) !important;

    font-size: 10px !important;

    transition:
        background 180ms ease,
        color 180ms ease;
}

.shop-pagination
.woocommerce-pagination
.current,
.shop-pagination
.woocommerce-pagination
a:hover {
    background: var(--color-white) !important;

    color: var(--color-black) !important;
}

.shop-empty {
    min-height: 430px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.shop-empty__index {
    margin-bottom: 24px;

    color: rgba(255, 255, 255, 0.2);

    font-size: 9px;

    letter-spacing: 0.2em;
}

.shop-empty h2 {
    margin: 0 0 20px;

    font-size: clamp(42px, 6vw, 90px);
    font-weight: 500;

    line-height: 0.9;

    letter-spacing: -0.055em;

    text-transform: uppercase;
}

.shop-empty p {
    margin: 0;

    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 1100px) {
.shop-products__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
.shop-archive {
        padding-top: 65px;
    }

.shop-archive__heading-row {
        grid-template-columns: 1fr;

        gap: 34px;
    }

.shop-archive__title {
        font-size: clamp(
            70px,
            22vw,
            110px
        );
    }

.shop-toolbar {
        min-height: 68px;
    }

.shop-toolbar__result-count {
        display: none;
    }

.shop-toolbar__right {
        gap: 0;
    }

.shop-filters__inner {
        grid-template-columns: 1fr;

        gap: 50px;
    }

.shop-products__grid {
        grid-template-columns: 1fr;

        gap: 65px;
    }
}

.product-card {
    background: var(--color-black);
    transition: background 220ms ease;
}

.product-card:hover {
    background: var(--color-surface);
}

.product-card__media {
    aspect-ratio: 1 / 0.76;
    background: var(--color-surface);
}

.product-card__information {
    padding: 16px 20px 20px;
}

.product-card__brand,
.product-card__category {
    color: var(--color-muted);
    font-family: var(--font-mono);
    letter-spacing: 0.06em;
}

.product-card__title {
    max-width: 100%;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.product-card__bottom {
    margin-top: 16px;
}

.product-card__price {
    color: var(--color-white);
    font-family: var(--font-mono);
    font-size: 14px;
}

.product-card__status {
    padding: 4px 7px;
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: var(--color-on-accent);
    font-family: var(--font-mono);
}

.product-card__view {
    width: auto;
    height: auto;
    right: 18px;
    bottom: 18px;
    padding: 8px 12px;
    border-radius: 0;
    background: var(--color-accent);
    color: var(--color-on-accent);
    font-family: var(--font-mono);
    opacity: 0;
    transform: translateY(8px);
}

.product-card:hover .product-card__view {
    opacity: 1;
    transform: translateY(0);
}

.shop-page,
.shop-archive,
.woocommerce-shop .site-main,
.tax-product_cat .site-main,
.tax-product_brand .site-main {
    background: var(--color-black);
}

.shop-header,
.shop-archive__header,
.woocommerce-products-header {
    padding-top: var(--space-section);
    padding-bottom: var(--space-heading);
}

.shop-header h1,
.shop-archive__title,
.woocommerce-products-header__title {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.01em;
}

@media (max-width: 700px) {
.product-card__media {
        aspect-ratio: 1 / 0.82;
    }
}

.home-drop__grid .product-card {
    background: var(--color-black);
}

.product-card__media {
    aspect-ratio: 1.48 / 1;
    background: var(--color-surface);
}

.product-card__information {
    padding: 15px 18px 18px;
}

.product-card__brand,
.product-card__category,
.product-card__price,
.product-card__number,
.product-card__status {
    font-family: var(--font-mono);
}

.product-card__brand {
    color: var(--color-text-dim);
}

.product-card__category {
    margin-bottom: 7px;
    color: var(--color-muted);
}

.product-card__title {
    max-width: 100%;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: 0.01em;
}

.product-card__bottom {
    margin-top: 14px;
    padding-top: 11px;
}

.product-card__price {
    color: var(--color-text);
    font-size: 12px;
}

.product-card__status {
    padding: 5px 8px;
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: var(--color-on-accent);
}

.product-card__view {
    width: auto;
    height: auto;
    right: 14px;
    bottom: 14px;
    padding: 8px 10px;
    border-radius: 0;
    background: var(--color-accent);
    color: var(--color-on-accent);
    font-family: var(--font-mono);
}

.product-card__arrow {
    color: var(--color-accent-bright);
}

@media (max-width: 700px) {
.product-card__media {
        aspect-ratio: 1.25 / 1;
    }
}

.shop-archive__header {
    padding-bottom: 46px;
}

.shop-archive__meta {
    margin-bottom: 22px;
    font-family: var(--font-mono);
}

.shop-archive__heading-row {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
    gap: clamp(34px, 5vw, 72px);
}

.shop-archive__title {
    font-family: var(--font-display);
    font-size: clamp(72px, 8vw, 118px);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: 0.005em;
}

.shop-archive__description {
    max-width: 330px;
    color: var(--color-muted);
    font-size: 12px;
    line-height: 1.65;
}

.shop-toolbar {
    min-height: 58px;
}

.shop-products {
    padding-top: 52px;
}

.shop-products__grid {
    row-gap: 54px;
    column-gap: 16px;
}

.shop-pagination {
    margin-top: 64px;
}

@media (max-width: 700px) {
.shop-products {
        padding-top: 38px;
    }

.shop-products__grid {
        row-gap: 42px;
    }
}

.product-card {
    position: relative;
    overflow: hidden;
    background: var(--color-black);
    transform: translateZ(0);
    transition:
        background-color 320ms ease,
        box-shadow 320ms ease;
}

.product-card::before {
    content: "";
    position: absolute;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--color-accent-bright) 48%,
        transparent 100%
    );
    opacity: 0;
    transform: scaleX(.35);
    transform-origin: center;
    transition:
        opacity 320ms ease,
        transform 500ms cubic-bezier(.16, 1, .3, 1);
    pointer-events: none;
}

.product-card::after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background:
        radial-gradient(
            circle at 70% 18%,
            rgba(28, 143, 199, .075),
            transparent 33%
        );
    opacity: 0;
    transition: opacity 400ms ease;
    pointer-events: none;
}

.product-card:hover::before,
.product-card:focus-within::before {
    opacity: 1;
    transform: scaleX(1);
}

.product-card:hover::after,
.product-card:focus-within::after {
    opacity: 1;
}

.product-card__link {
    position: relative;
    z-index: 1;
}

.product-card__media {
    isolation: isolate;
    overflow: hidden;
}

.product-card__media::after {
    content: "";
    position: absolute;
    z-index: 4;
    inset: 0;
    background:
        linear-gradient(
            115deg,
            transparent 20%,
            rgba(234, 242, 246, .075) 44%,
            rgba(28, 143, 199, .08) 51%,
            transparent 70%
        );
    opacity: 0;
    transform: translateX(-115%);
    pointer-events: none;
}

.product-card:hover .product-card__media::after,
.product-card:focus-within .product-card__media::after {
    opacity: 1;
    animation: na-product-card-sheen 900ms cubic-bezier(.16, 1, .3, 1) both;
}

.product-card__image {
    transform-origin: center center;
    will-change: transform;
}

.product-card__top {
    z-index: 6;
}

.product-card__number {
    transition:
        color 280ms ease,
        opacity 280ms ease;
}

.product-card:hover .product-card__number,
.product-card:focus-within .product-card__number {
    color: var(--color-accent-bright);
}

.product-card__overlay {
    z-index: 3;
    background:
        linear-gradient(
            180deg,
            rgba(10, 15, 20, .02) 0%,
            rgba(10, 15, 20, .14) 58%,
            rgba(10, 15, 20, .66) 100%
        );
    transition: opacity 380ms ease;
}

.product-card:hover .product-card__overlay,
.product-card:focus-within .product-card__overlay {
    opacity: .72;
}

.product-card__view {
    z-index: 7;
    min-width: 92px;
    justify-content: space-between;
    gap: 14px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
    transform-origin: right bottom;
    will-change: transform, opacity;
}

.product-card__information {
    position: relative;
    z-index: 2;
    transition:
        background-color 320ms ease;
}

.product-card:hover .product-card__information,
.product-card:focus-within .product-card__information {
    background: rgba(19, 26, 33, .34);
}

.product-card__brand {
    transition: color 280ms ease;
}

.product-card:hover .product-card__brand,
.product-card:focus-within .product-card__brand {
    color: var(--color-accent-bright);
}

.product-card__category {
    transition: color 280ms ease;
}

.product-card__title {
    transition:
        color 280ms ease,
        transform 360ms cubic-bezier(.16, 1, .3, 1);
    will-change: transform;
}

.product-card__bottom {
    transition: border-color 320ms ease;
}

.product-card:hover .product-card__bottom,
.product-card:focus-within .product-card__bottom {
    border-color: rgba(28, 143, 199, .34);
}

.product-card__price {
    transition:
        color 280ms ease,
        transform 360ms cubic-bezier(.16, 1, .3, 1);
}

.product-card:hover .product-card__price,
.product-card:focus-within .product-card__price {
    color: var(--color-accent-bright);
}

.product-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 1px solid rgba(28, 143, 199, .24);
    transition:
        border-color 280ms ease,
        background-color 280ms ease,
        color 280ms ease;
    will-change: transform;
}

.product-card:hover .product-card__arrow,
.product-card:focus-within .product-card__arrow {
    border-color: var(--color-accent);
    background: rgba(15, 94, 130, .13);
    color: var(--color-accent-bright);
}

.shop-products__grid .product-card {
    min-width: 0;
}

.product-card__link:focus-visible {
    outline: 1px solid var(--color-accent-bright);
    outline-offset: -1px;
}

@media (hover: none), (pointer: coarse) {
.product-card::before,
    .product-card::after,
    .product-card__media::after {
        display: none;
    }

.product-card__view {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
.product-card,
    .product-card *,
    .product-card::before,
    .product-card::after,
    .product-card__media::after {
        animation: none !important;
        transition-duration: .01ms !important;
    }
}


/* =========================================================
   PRODUCT CARDS — FULL IMAGE FIT
   Preserve the complete product/lifestyle photograph instead
   of cropping it inside the catalogue card.
   ========================================================= */

.shop-products__grid .product-card__media,
.home-drop__grid .product-card__media,
.single-product-related__grid .product-card__media {
    aspect-ratio: 4 / 5;
    min-height: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(28, 143, 199, .045),
            transparent 48%
        ),
        #0b1015;
}

.shop-products__grid .product-card__image,
.home-drop__grid .product-card__image,
.single-product-related__grid .product-card__image {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center center !important;
    padding: 10px;
    box-sizing: border-box;
}

.shop-products__grid .product-card__information,
.home-drop__grid .product-card__information {
    min-height: 156px;
    padding: 17px 18px 19px;
}

.shop-products__grid .product-card__title,
.home-drop__grid .product-card__title {
    min-height: 2.15em;
    font-size: 18px;
    line-height: 1.08;
}

.shop-products__grid .product-card__bottom,
.home-drop__grid .product-card__bottom {
    margin-top: 15px;
}

@media (max-width: 1100px) {
    .shop-products__grid .product-card__media,
    .home-drop__grid .product-card__media,
    .single-product-related__grid .product-card__media {
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 700px) {
    .shop-products__grid .product-card__media,
    .home-drop__grid .product-card__media,
    .single-product-related__grid .product-card__media {
        aspect-ratio: 4 / 5;
    }

    .shop-products__grid .product-card__information,
    .home-drop__grid .product-card__information {
        min-height: 0;
    }

    .shop-products__grid .product-card__image,
    .home-drop__grid .product-card__image,
    .single-product-related__grid .product-card__image {
        padding: 8px;
    }
}


/* =========================================================
   SHOP — EXPLORE BUTTON ALIGNMENT
   ========================================================= */

/*
 * An older product-card rule used flex-direction: column for the
 * circular Explore button. The current rectangular version needs
 * horizontal text + arrow alignment.
 */

.product-card__view {
    width: auto;
    height: auto;
    min-width: 102px;

    display: inline-flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 9px 12px;

    border: 1px solid var(--color-accent);
    border-radius: 0;

    background: var(--color-accent);
    color: var(--color-on-accent);

    font-family: var(--font-mono);
    font-size: 8px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .11em;

    white-space: nowrap;
}

.product-card__view > * {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.product-card__view span:last-child,
.product-card__view svg,
.product-card__view i {
    flex: 0 0 auto;
    line-height: 1;
}

.product-card:hover .product-card__view,
.product-card:focus-within .product-card__view {
    background: var(--color-accent-bright);
    border-color: var(--color-accent-bright);
}


/* =========================================================
   SHOP — RESPONSIVE CARD PROPORTIONS
   ========================================================= */

@media (max-width: 1100px) {

    .shop-products__grid .product-card__media {
        aspect-ratio: 4 / 5;
    }
}

@media (max-width: 700px) {

    .shop-products__grid .product-card__media {
        aspect-ratio: 4 / 5;
    }

    .shop-products__grid .product-card__information {
        min-height: 0;
    }

    .product-card__view {
        min-width: 96px;
        gap: 8px;
        padding: 8px 10px;
    }
}
