/* Add custom CSS styles below */ 
@media (min-width: 1024px) {
    .main-nav:not(.fixed-pinned) .main-nav__inner {
        padding-bottom: 1rem;
        padding-top: 1rem;
    }
}

.slide picture, .slide img {
    width: 100%;
    height: 100% !important;
    display: block;
}
.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgba(255, 255, 255, 1);
    background-color: RGB(248, 246, 241);
}
.product-entry .btn--add-to-cart button {
    border-radius: 0;
    border-width: 1px 0 0;
    height: 100%;
    --tw-border-opacity: 1;
    background-color: #0b757c;
    border-color: #e5e7eb;
    border-color: rgba(229, 231, 235, var(--tw-border-opacity, 1));
}
.s-block {
    position: relative;
    background-color: #f8f6f1;
}
.store-header {
    min-height: 72px;
    position: relative;
    z-index: 20;
    --tw-border-opacity: 1;
    border-color: #ef4444;
    border-color: rgba(239, 68, 68, var(--tw-border-opacity, 1));
    --tw-bg-opacity: 1;
    background-color: #f3f4f6;
    background-color: rgb(248 246 241);
    padding: .625rem;
}
.s-button-primary-outline {
    color: #414042;
    color: #ffffff;
    fill: #414042;
    fill: #026d77 !important;
}

.product-entry{
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;

    background: #fff;

    border: 1px solid rgba(15,124,130,.12);
    border-radius: 24px;

    box-shadow:
        0 8px 24px rgba(16,24,40,.05),
        0 20px 50px rgba(16,24,40,.06);

    transition: .35s ease;
}

/* Inner Stroke */
.product-entry::after{
    content:"";
    position:absolute;
    inset:8px;
    border-radius:18px;
    border:1px solid rgba(212,180,106,.18);
    pointer-events:none;
}

/* Gold Accent */
.product-entry::before{
    content:"";
    position:absolute;
    top:0;
    right:32px;
    width:90px;
    height:3px;
    border-radius:20px;
    background:linear-gradient(
        90deg,
        #D4B46A,
        #F4D68A,
        #D4B46A
    );
}

.product-entry:hover{
    transform:translateY(-8px);

    border-color:#0F7C82;

    box-shadow:
        0 18px 45px rgba(16,24,40,.12),
        0 8px 25px rgba(15,124,130,.08);
}
.product-entry img {
    border-radius: 22px 22px 0 0;
    transition: .4s ease;
}

.product-entry:hover img {
    transform: scale(1.05);
}


.s-block--tabs-products .tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;

    margin: 0;
    padding: 0;
}
.s-block--tabs-products .tabs > [role="tab"]{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: auto;
    flex: 0 0 auto;
}
.footer-is-light .store-footer {
    border-top: 1px solid rgba(255,255,255,.08);

    background: linear-gradient(
        135deg,
        #0B6A6E 0%,
        #0E7679 35%,
        #117E81 70%,
        #0B6A6E 100%
    );

    color: #fff;

    position: relative;

    overflow: hidden;
}
.footer-is-light .store-footer::before{
    content:"";
    position:absolute;
    inset:0;

    background:
        radial-gradient(circle at top left,
        rgba(255,255,255,.08),
        transparent 45%),

        radial-gradient(circle at bottom right,
        rgba(255,255,255,.05),
        transparent 40%);

    pointer-events:none;
}
.footer-is-light .store-footer::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;

    background:linear-gradient(
        90deg,
        #D4B46A,
        #F1D58A,
        #D4B46A
    );
}