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

html {
    scroll-behavior: smooth;
}

body.srishty-fashion-page {
    margin: 0;
    background: #fafaf8;
    color: #0a0a0a;
    font-family: "Outfit", Arial, sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

body.srishty-fashion-page.sf-nav-open {
    overflow: hidden;
}

body.srishty-fashion-page a {
    color: inherit;
    text-decoration: none;
}

body.srishty-fashion-page img {
    display: block;
    max-width: 100%;
}

body.srishty-fashion-page button,
body.srishty-fashion-page input {
    font: inherit;
}

:root {
    --sf-black: #0a0a0a;
    --sf-white: #fafaf8;
    --sf-cream: #f2f0ee;
    --sf-ash: #dedbd7;
    --sf-gray: #77716c;
    --sf-red: #d42b2b;
    --sf-red-dark: #a61d1d;
    --sf-display: "Cormorant Garamond", Georgia, serif;
    --sf-body: "Outfit", Arial, sans-serif;
    --sf-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

.sf-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    background: var(--sf-black);
    color: var(--sf-white);
    transition: opacity .7s var(--sf-ease), visibility .7s var(--sf-ease);
}

.sf-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.sf-loader-logo {
    font-family: var(--sf-display);
    font-size: 48px;
    font-weight: 300;
}

.sf-loader-bar {
    width: 210px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, .2);
}

.sf-loader-bar span {
    display: block;
    height: 100%;
    background: var(--sf-red);
    transform: scaleX(0);
    transform-origin: left;
    animation: sf-loader-bar 1.1s var(--sf-ease) forwards;
}

@keyframes sf-loader-bar {
    to {
        transform: scaleX(1);
    }
}

.sf-cursor,
.sf-cursor-ring {
    display: none;
}

@media (pointer: fine) {
    body.srishty-fashion-page {
        cursor: none;
    }

    .sf-cursor,
    .sf-cursor-ring {
        position: fixed;
        z-index: 9998;
        display: block;
        pointer-events: none;
        transform: translate(-50%, -50%);
    }

    .sf-cursor {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--sf-white);
        mix-blend-mode: difference;
        transition: width .25s var(--sf-ease), height .25s var(--sf-ease), opacity .25s;
    }

    .sf-cursor-ring {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: 999px;
        transition: width .35s var(--sf-ease), height .35s var(--sf-ease), border-color .25s;
    }

    body.sf-cursor-active .sf-cursor {
        width: 20px;
        height: 20px;
    }

    body.sf-cursor-active .sf-cursor-ring {
        width: 58px;
        height: 58px;
        border-color: rgba(212, 43, 43, .7);
    }
}

.sf-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    min-height: 76px;
    display: grid;
    grid-template-columns: minmax(150px, 220px) 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 0 48px;
    color: var(--sf-white);
    transition: background .35s, color .35s, box-shadow .35s, backdrop-filter .35s;
}

.sf-nav.is-scrolled {
    color: var(--sf-black);
    background: rgba(250, 250, 248, .9);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .08);
    backdrop-filter: blur(20px);
}

.sf-logo {
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    font-family: var(--sf-display);
    font-size: 28px;
    font-weight: 400;
}

.sf-logo img {
    width: auto;
    max-width: 176px;
    max-height: 58px;
    object-fit: contain;
}

.sf-logo span {
    display: inline-block;
}

.sf-nav-menu {
    display: flex;
    justify-content: center;
    gap: 34px;
}

.sf-nav-menu a {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.sf-nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -7px;
    height: 1px;
    background: var(--sf-red);
    transition: right .3s var(--sf-ease);
}

.sf-nav-menu a:hover::after,
.sf-nav-menu a:focus-visible::after {
    right: 0;
}

.sf-nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.sf-search {
    position: relative;
    width: 190px;
}

.sf-search span {
    position: absolute;
    top: 50%;
    left: 13px;
    font-size: 18px;
    transform: translateY(-50%);
}

.sf-search input {
    width: 100%;
    height: 40px;
    padding: 0 14px 0 40px;
    color: inherit;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    outline: 0;
}

.sf-nav.is-scrolled .sf-search input {
    background: rgba(10, 10, 10, .04);
    border-color: rgba(10, 10, 10, .12);
}

.sf-search input::placeholder {
    color: currentColor;
    opacity: .72;
}

.sf-icon-link,
.sf-mobile-toggle {
    position: relative;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 999px;
}

.sf-icon-link:hover,
.sf-mobile-toggle:hover {
    color: var(--sf-red);
}

.sf-cart-count {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sf-white);
    background: var(--sf-red);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
}

.sf-mobile-toggle {
    display: none;
}

.sf-hero {
    position: relative;
    min-height: 650px;
    height: 88vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: var(--sf-white);
    background: var(--sf-black);
}

.sf-hero-image {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?w=1800&q=88");
    background-position: center 20%;
    background-size: cover;
    opacity: .72;
    transform: scale(1.05);
    transition: transform 6s var(--sf-ease);
}

.sf-hero-image.is-loaded {
    transform: scale(1);
}

.sf-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(8, 7, 6, .78), rgba(8, 7, 6, .28), rgba(8, 7, 6, .08)),
        linear-gradient(to top, rgba(8, 7, 6, .66), transparent 45%);
}

.sf-hero-content {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100% - 80px));
    padding: 0 0 92px 80px;
}

.sf-eyebrow {
    margin: 0 0 14px;
    color: var(--sf-red);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.sf-hero h1 {
    margin: 0 0 26px;
    font-family: var(--sf-display);
    font-size: 96px;
    font-weight: 300;
    line-height: .92;
}

.sf-hero h1 em,
.sf-section h2 em,
.sf-trending h2 em {
    color: var(--sf-red);
    font-style: italic;
}

.sf-hero-copy {
    max-width: 430px;
    margin: 0 0 38px;
    color: rgba(255, 255, 255, .7);
    font-size: 16px;
    line-height: 1.8;
}

.sf-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.sf-btn {
    min-height: 48px;
    padding: 0 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: background .3s var(--sf-ease), color .3s var(--sf-ease), border-color .3s var(--sf-ease), transform .3s var(--sf-ease);
}

.sf-btn:hover,
.sf-btn:focus-visible {
    transform: translateY(-2px);
}

.sf-btn-light {
    color: var(--sf-black);
    background: var(--sf-white);
}

.sf-btn-light:hover {
    color: var(--sf-white);
    background: var(--sf-red);
}

.sf-btn-outline {
    color: var(--sf-white);
    border-color: rgba(255, 255, 255, .44);
    background: rgba(255, 255, 255, .04);
}

.sf-btn-outline:hover {
    border-color: var(--sf-white);
    background: rgba(255, 255, 255, .12);
}

.sf-btn-dark {
    width: 100%;
    color: var(--sf-white);
    background: var(--sf-black);
}

.sf-btn-dark:hover {
    background: var(--sf-red);
}

.sf-btn-red {
    color: var(--sf-white);
    background: var(--sf-red);
}

.sf-btn-red:hover {
    background: var(--sf-red-dark);
}

.sf-hero-counter {
    position: absolute;
    top: 48%;
    right: 48px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255, 255, 255, .36);
}

.sf-hero-counter span {
    font-family: var(--sf-display);
    font-size: 76px;
    font-weight: 300;
    line-height: .9;
}

.sf-hero-counter small {
    color: rgba(255, 255, 255, .48);
    font-size: 11px;
    text-transform: uppercase;
}

.sf-scroll-cue {
    position: absolute;
    right: 82px;
    bottom: 34px;
    z-index: 2;
    width: 1px;
    height: 54px;
    overflow: hidden;
    background: rgba(255, 255, 255, .25);
}

.sf-scroll-cue span {
    position: absolute;
    inset: 0;
    background: var(--sf-red);
    animation: sf-scroll-cue 1.8s ease-in-out infinite;
}

@keyframes sf-scroll-cue {
    from {
        transform: translateY(-110%);
    }
    to {
        transform: translateY(110%);
    }
}

.sf-marquee {
    overflow: hidden;
    background: var(--sf-black);
    color: rgba(255, 255, 255, .62);
}

.sf-marquee div {
    width: max-content;
    min-height: 46px;
    display: flex;
    align-items: center;
    animation: sf-marquee 26s linear infinite;
}

.sf-marquee span {
    padding: 0 36px;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
}

.sf-marquee b {
    width: 5px;
    height: 5px;
    display: inline-block;
    background: var(--sf-red);
    border-radius: 999px;
}

@keyframes sf-marquee {
    to {
        transform: translateX(-50%);
    }
}

.sf-section {
    padding: 98px 80px;
}

.sf-section-head {
    margin-bottom: 56px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
}

.sf-section h2,
.sf-trending h2,
.sf-offer h2,
.sf-newsletter h2,
.sf-gallery h2 {
    margin: 0;
    font-family: var(--sf-display);
    font-size: 60px;
    font-weight: 300;
    line-height: 1.02;
}

.sf-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.sf-text-link span {
    font-size: 18px;
    transition: transform .3s var(--sf-ease);
}

.sf-text-link:hover span {
    transform: translateX(6px);
}

.sf-collections {
    background: var(--sf-cream);
}

.sf-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.sf-category-card {
    position: relative;
    min-height: 360px;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--sf-black);
}

.sf-category-card.is-wide {
    grid-column: span 2;
    aspect-ratio: auto;
}

.sf-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--sf-ease), filter .8s var(--sf-ease);
}

.sf-category-card:hover img {
    transform: scale(1.06);
    filter: brightness(.82);
}

.sf-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 7, 6, .76), rgba(8, 7, 6, .06) 58%);
}

.sf-category-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 32px;
    display: grid;
    gap: 9px;
    color: var(--sf-white);
}

.sf-category-copy small {
    color: var(--sf-red);
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    text-transform: uppercase;
}

.sf-category-copy strong {
    font-family: var(--sf-display);
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
}

.sf-category-copy em {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .74);
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    text-transform: uppercase;
}

.sf-category-copy em span {
    width: 24px;
    height: 1px;
    display: inline-block;
    background: var(--sf-red);
}

.sf-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.sf-product-card {
    position: relative;
    background: var(--sf-white);
    transform: translateY(0);
}

.sf-product-image {
    position: relative;
    aspect-ratio: 2 / 3;
    display: block;
    overflow: hidden;
    background: #efeeec;
}

.sf-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .75s var(--sf-ease);
}

.sf-product-card:hover .sf-product-image img {
    transform: scale(1.05);
}

.sf-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 10px;
    color: var(--sf-white);
    background: var(--sf-black);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.sf-badge.is-red {
    background: var(--sf-red);
}

.sf-wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sf-black);
    background: rgba(255, 255, 255, .9);
    border-radius: 999px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .3s var(--sf-ease), transform .3s var(--sf-ease), background .3s;
}

.sf-product-card:hover .sf-wishlist,
.sf-wishlist:focus-visible {
    opacity: 1;
    transform: translateY(0);
}

.sf-wishlist:hover {
    color: var(--sf-white);
    background: var(--sf-red);
}

.sf-product-info {
    padding: 18px 2px 0;
}

.sf-product-info small {
    display: block;
    margin-bottom: 6px;
    color: #9a928c;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.sf-product-info h3 {
    min-height: 44px;
    margin: 0 0 10px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.35;
}

.sf-product-info h3 a:hover {
    color: var(--sf-red);
}

.sf-product-foot {
    min-height: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sf-product-foot p {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.sf-product-foot span:not(.sf-stars) {
    font-family: var(--sf-display);
    font-size: 20px;
    font-weight: 500;
}

.sf-product-foot del {
    color: #99918c;
    font-size: 13px;
}

.sf-stars {
    color: var(--sf-red);
    font-size: 10px;
    white-space: nowrap;
}

.sf-add-cart-form,
.sf-product-info > .sf-btn {
    margin-top: 16px;
}

.sf-trending {
    padding: 88px 0 88px 80px;
    overflow: hidden;
    color: var(--sf-white);
    background: var(--sf-black);
}

.sf-trending .sf-section-head {
    padding-right: 80px;
}

.sf-carousel-controls {
    display: flex;
    gap: 12px;
}

.sf-carousel-btn {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--sf-white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .24);
    transition: background .3s var(--sf-ease), border-color .3s var(--sf-ease);
}

.sf-carousel-btn:hover {
    background: var(--sf-red);
    border-color: var(--sf-red);
}

.sf-carousel {
    overflow: hidden;
}

.sf-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform .55s var(--sf-ease);
}

.sf-carousel-slide {
    position: relative;
    flex: 0 0 300px;
    height: 410px;
    overflow: hidden;
    background: #201e1c;
}

.sf-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .82;
    transition: transform .55s var(--sf-ease), opacity .55s;
}

.sf-carousel-slide:hover img {
    opacity: .95;
    transform: scale(1.04);
}

.sf-carousel-slide span {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: grid;
    gap: 5px;
}

.sf-carousel-slide strong {
    font-family: var(--sf-display);
    font-size: 25px;
    font-weight: 300;
    line-height: 1.05;
}

.sf-carousel-slide em {
    color: var(--sf-red);
    font-style: normal;
    font-size: 15px;
}

.sf-offer {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
    overflow: hidden;
    color: var(--sf-white);
    background: var(--sf-black);
}

.sf-offer-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(135deg, rgba(8, 4, 4, .9), rgba(20, 4, 4, .42)),
        url("https://images.unsplash.com/photo-1469334031218-e382a71b716b?w=1800&q=84");
    background-position: center;
    background-size: cover;
}

.sf-offer-content {
    position: relative;
    z-index: 1;
    width: min(820px, calc(100% - 42px));
    padding: 70px 28px;
    text-align: center;
}

.sf-offer h2 {
    font-size: 76px;
}

.sf-offer h2 span {
    display: block;
    color: var(--sf-red);
    font-style: italic;
    font-size: 120px;
    line-height: .8;
}

.sf-offer p:not(.sf-eyebrow) {
    max-width: 520px;
    margin: 18px auto 34px;
    color: rgba(255, 255, 255, .68);
    line-height: 1.7;
}

.sf-timer {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.sf-timer span {
    min-width: 72px;
    display: grid;
    gap: 4px;
}

.sf-timer strong {
    font-family: var(--sf-display);
    font-size: 48px;
    font-weight: 300;
    line-height: 1;
}

.sf-timer small {
    color: rgba(255, 255, 255, .48);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.sf-testimonials {
    background: var(--sf-cream);
}

.sf-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.sf-testimonial-grid figure {
    margin: 0;
    padding: 34px;
    background: rgba(255, 255, 255, .7);
    border: 1px solid rgba(255, 255, 255, .9);
}

.sf-testimonial-grid blockquote {
    margin: 0 0 28px;
    font-family: var(--sf-display);
    font-size: 22px;
    font-style: italic;
    line-height: 1.55;
}

.sf-testimonial-grid figcaption {
    display: grid;
    gap: 3px;
}

.sf-testimonial-grid strong {
    font-size: 14px;
    font-weight: 600;
}

.sf-testimonial-grid span {
    color: var(--sf-gray);
    font-size: 12px;
}

.sf-gallery {
    padding: 0 80px 96px;
    background: var(--sf-white);
}

.sf-gallery-head {
    padding: 94px 0 46px;
    text-align: center;
}

.sf-gallery h2 {
    font-size: 42px;
}

.sf-gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    grid-auto-rows: 210px;
    gap: 8px;
}

.sf-gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--sf-black);
}

.sf-gallery-item:nth-child(1),
.sf-gallery-item:nth-child(6) {
    grid-row: span 2;
}

.sf-gallery-item:nth-child(3) {
    grid-column: span 2;
}

.sf-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s var(--sf-ease), opacity .55s;
}

.sf-gallery-item span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: var(--sf-white);
    font-size: 30px;
    opacity: 0;
    background: rgba(8, 7, 6, .42);
    transition: opacity .3s var(--sf-ease);
}

.sf-gallery-item:hover img {
    transform: scale(1.06);
    opacity: .76;
}

.sf-gallery-item:hover span {
    opacity: 1;
}

.sf-newsletter {
    padding: 92px 80px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
    gap: 60px;
    align-items: center;
    color: var(--sf-white);
    background: var(--sf-black);
}

.sf-newsletter h2 {
    max-width: 620px;
    font-size: 58px;
}

.sf-newsletter p:not(.sf-eyebrow) {
    max-width: 460px;
    color: rgba(255, 255, 255, .56);
    line-height: 1.7;
}

.sf-newsletter-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.sf-newsletter-form input {
    min-width: 0;
    min-height: 54px;
    padding: 0 18px;
    color: var(--sf-white);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .32);
    outline: 0;
}

.sf-newsletter-form input:focus {
    border-bottom-color: var(--sf-red);
}

.sf-newsletter-form small {
    min-height: 18px;
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, .72);
}

.sf-footer {
    padding: 72px 80px 34px;
    color: rgba(255, 255, 255, .68);
    background: #070707;
}

.sf-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, minmax(150px, 1fr));
    gap: 44px;
}

.sf-footer h2,
.sf-footer h3 {
    margin: 0 0 18px;
    color: var(--sf-white);
}

.sf-footer h2 {
    font-family: var(--sf-display);
    font-size: 38px;
    font-weight: 300;
}

.sf-footer h3 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.sf-footer-logo {
    width: max-content;
    max-width: 230px;
    min-height: 72px;
    margin: 0 0 18px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sf-white);
}

.sf-footer-logo img {
    width: auto;
    max-width: 200px;
    max-height: 62px;
    object-fit: contain;
}

.sf-footer-logo span {
    color: var(--sf-black);
    font-family: var(--sf-display);
    font-size: 34px;
}

.sf-footer p {
    max-width: 320px;
    margin: 0;
    line-height: 1.8;
}

.sf-footer a {
    display: block;
    margin: 0 0 12px;
    font-size: 14px;
}

.sf-footer a:hover {
    color: var(--sf-red);
}

.sf-footer-bottom {
    margin-top: 56px;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 13px;
}

.sf-toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    max-width: min(360px, calc(100% - 44px));
    padding: 14px 18px;
    color: var(--sf-white);
    background: var(--sf-black);
    border-left: 4px solid var(--sf-red);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
    opacity: 0;
    transform: translateY(14px);
    pointer-events: none;
    transition: opacity .25s var(--sf-ease), transform .25s var(--sf-ease);
}

.sf-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.sf-toast[data-type="error"] {
    border-left-color: #e09b2d;
}

.sf-btn:disabled {
    opacity: .7;
    transform: none;
}

.sf-reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .8s var(--sf-ease), transform .8s var(--sf-ease);
    transition-delay: var(--delay, 0ms);
}

.sf-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .sf-nav {
        grid-template-columns: auto auto 1fr;
        gap: 18px;
        padding: 0 28px;
    }

    .sf-mobile-toggle {
        display: inline-flex;
        order: -1;
    }

    .sf-nav-menu {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        padding: 18px 28px 28px;
        color: var(--sf-black);
        background: rgba(250, 250, 248, .98);
        box-shadow: 0 22px 36px rgba(0, 0, 0, .12);
        transform: translateY(-130%);
        transition: transform .35s var(--sf-ease);
    }

    .sf-nav-open .sf-nav-menu {
        transform: translateY(0);
    }

    .sf-nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, .08);
    }

    .sf-search {
        width: 160px;
    }

    .sf-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .sf-nav {
        min-height: 70px;
        grid-template-columns: auto 1fr auto;
        padding: 0 18px;
    }

    .sf-nav-actions {
        gap: 6px;
    }

    .sf-search {
        display: none;
    }

    .sf-icon-link {
        width: 38px;
        height: 38px;
    }

    .sf-hero {
        min-height: 590px;
        height: 86vh;
    }

    .sf-hero-content {
        width: calc(100% - 36px);
        padding: 0 0 70px 24px;
    }

    .sf-hero h1 {
        font-size: 66px;
    }

    .sf-hero-counter {
        display: none;
    }

    .sf-scroll-cue {
        right: 28px;
    }

    .sf-section,
    .sf-gallery,
    .sf-newsletter,
    .sf-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .sf-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .sf-section h2,
    .sf-trending h2,
    .sf-newsletter h2 {
        font-size: 46px;
    }

    .sf-category-grid,
    .sf-product-grid,
    .sf-testimonial-grid,
    .sf-newsletter,
    .sf-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sf-category-card.is-wide {
        grid-column: span 2;
    }

    .sf-trending {
        padding-left: 24px;
    }

    .sf-trending .sf-section-head {
        padding-right: 24px;
    }

    .sf-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 190px;
    }
}

@media (max-width: 640px) {
    .sf-logo img {
        max-width: 132px;
    }

    .sf-nav-actions .sf-icon-link:nth-of-type(2) {
        display: none;
    }

    .sf-hero {
        min-height: 560px;
    }

    .sf-hero-image {
        background-position: 58% center;
    }

    .sf-hero h1 {
        font-size: 48px;
    }

    .sf-hero-copy {
        font-size: 15px;
    }

    .sf-hero-actions,
    .sf-newsletter-form {
        grid-template-columns: 1fr;
        display: grid;
    }

    .sf-btn {
        width: 100%;
    }

    .sf-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .sf-section h2,
    .sf-trending h2,
    .sf-offer h2,
    .sf-newsletter h2 {
        font-size: 38px;
    }

    .sf-category-grid,
    .sf-product-grid,
    .sf-testimonial-grid,
    .sf-newsletter,
    .sf-footer-grid {
        grid-template-columns: 1fr;
    }

    .sf-category-card,
    .sf-category-card.is-wide {
        grid-column: auto;
        min-height: 330px;
    }

    .sf-product-info h3 {
        min-height: auto;
    }

    .sf-carousel-slide {
        flex-basis: 250px;
        height: 350px;
    }

    .sf-offer {
        min-height: 520px;
    }

    .sf-offer h2 span {
        font-size: 82px;
    }

    .sf-timer {
        gap: 12px;
    }

    .sf-timer span {
        min-width: 58px;
    }

    .sf-timer strong {
        font-size: 36px;
    }

    .sf-gallery {
        padding-bottom: 72px;
    }

    .sf-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
    }

    .sf-gallery-item:nth-child(1),
    .sf-gallery-item:nth-child(3),
    .sf-gallery-item:nth-child(6) {
        grid-column: auto;
        grid-row: auto;
    }

    .sf-newsletter-form {
        gap: 14px;
    }

    .sf-newsletter-form input {
        padding-left: 0;
    }

    .sf-footer-bottom {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}
