.zoom-in-zoom-out {
    width: auto;
    height: auto;
    background: green;
    animation: zoom-in-zoom-out 2000s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
    0% {
        transform: scale(1, 1);
    }

    50% {
        transform: scale(1.2, 1.2);
    }

    100% {
        transform: scale(1, 1);
    }
}

:root {
    --accent: #f29a9c;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    background-color: white;
}

.hero-track {
    display: flex;
    height: 100%;
    will-change: transform;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-slide {
    min-width: 100vw;
    height: 100%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease-out;
    opacity: 0.65;
    z-index: 1;
    pointer-events: none;
}

.hero-content-box {
    position: relative;
    z-index: 50;
    text-align: center;
    width: 90%;
    pointer-events: none;
}

.hero-animate-part {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    color: #ffffff !important;
}

.active-slide .hero-animate-part {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto;
}

.hero-title {
    font-family: 'Noto Serif', serif;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
    font-size: 2.8rem;
    color: #ffffff !important;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 8.5rem;
    }
}

.hero-btn {
    display: inline-block;
    margin-top: 2rem;
    background: white !important;
    color: var(--accent) !important;
    padding: 14px 40px;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.3s ease;
}

@media (min-width: 768px) {
    .hero-btn {
        padding: 22px 65px;
        font-size: 11px;
        letter-spacing: 5px;
    }
}

.hero-btn:hover {
    transform: scale(1.05);
}

.dot-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.dot {
    width: 25px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: 0.4s;
}

.dot.active {
    background: white;
    width: 80px;
}

.serif-atelier {
    font-family: 'Noto Serif', serif;
}

.sans-atelier {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#atelier-slider {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding: 2rem 5% 5rem 5%;
    cursor: grab;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

#atelier-slider:active {
    cursor: grabbing;
}

.product-card-atelier {
    flex: 0 0 auto;
    width: 300px;
    scroll-snap-align: center;
    user-select: none;
}



.rounded-huge-atelier {
    border-radius: 3.5rem !important;
}

.product-card-atelier img {
    pointer-events: none;
    -webkit-user-drag: none;
}

.cart-overlay-atelier {
    transform: translateY(105%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.group:hover .cart-overlay-atelier {
    transform: translateY(0);
}

.nav-arrow-atelier {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 50;
}

.nav-arrow-atelier:hover {
    background: #000;
    color: #fff;
    border-color: #000;
    transform: scale(1.05);
}

.star-filled-atelier {
    font-variation-settings: 'FILL' 1;
    color: #f29a9c;
    font-size: 16px !important;
}

.star-active {
    color: #f29a9c !important;
    font-variation-settings: 'FILL' 1, 'wght' 400 !important;
}

.star-empty {
    color: #e2e8f0 !important;
    font-variation-settings: 'FILL' 0, 'wght' 400 !important;
}

.material-symbols-outlined {
    font-size: 15px !important;
    display: inline-block;
    vertical-align: middle;
}

.serif-italic {
    font-family: 'Noto Serif', serif;
    font-style: italic;
}

.sans-bold {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.serif-bold-italic {
    font-family: 'Noto Serif', serif;
    font-weight: 700;
    font-style: italic;
}

.sans-extra-bold {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.collections-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 3rem 10% 6rem 10%;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.collections-slider:active {
    cursor: grabbing;
    scroll-snap-type: none;
}

.collection-item {
    flex: 0 0 auto;
    width: 300px;
    scroll-snap-align: center;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (min-width: 768px) {
    .collection-item {
        width: 380px;
    }
}

.atelier-card {
    border-radius: 3.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

img {
    pointer-events: none;
    -webkit-user-drag: none;
}

.text-scrim {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.4) 40%,
            rgba(0, 0, 0, 0) 100%);
}

section:nth-of-type(3) {
    background: linear-gradient(180deg, #ffffff 0%, #fff0f1 50%, #ffffff 100%) !important;
    position: relative;
}

section:nth-of-type(3)::before {
    content: "Special Offer";
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Noto Serif', serif;
    font-style: italic;
    font-size: 15vw;
    color: rgba(242, 154, 156, 0.08);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

section:nth-of-type(3) h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

section:nth-of-type(3) h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 1px;
    background: #f29a9c;
}

section:nth-of-type(3) .product-card-atelier {
    background: #ffffff;
    border-radius: 4rem;
    padding: 15px;
    box-shadow: 0 15px 45px rgba(242, 154, 156, 0.12) !important;
    border: 1px solid rgba(242, 154, 156, 0.2);
    transition: all 0.5s ease;
}

section:nth-of-type(3) .product-card-atelier:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(242, 154, 156, 0.2) !important;
    border-color: #f29a9c;
}

section:nth-of-type(3) .product-card-atelier span[style*="background-color: var(--red)"],
section:nth-of-type(3) .product-card-atelier span[style*="background-color: #6b6b6b"] {
    background: linear-gradient(135deg, #f29a9c 0%, #a83836 100%) !important;
    border: 2px solid white;
    box-shadow: 0 5px 15px rgba(168, 56, 54, 0.3);
    animation: soft-pulse 2.5s infinite;
}

@keyframes soft-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(168, 56, 54, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(168, 56, 54, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(168, 56, 54, 0.3);
    }
}



section:nth-of-type(2) {
    position: relative;
}

section:nth-of-type(2)::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(242, 154, 156, 0.05);
    filter: blur(80px);
    border-radius: 50%;
    top: -50px;
    right: -50px;
    z-index: 0;
}

.product-card-atelier {
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.product-card-atelier:hover {
    transform: translateY(-15px) scale(1.01);
}

.product-card-atelier .relative::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(242, 154, 156, 0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.product-card-atelier:hover .relative::before {
    opacity: 1;
}

#collections-track .atelier-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

#collections-track .atelier-card img {
    transition: transform 2s cubic-bezier(0.2, 1, 0.3, 1);
}

#collections-track .collection-item:hover img {
    transform: scale(1.15) rotate(1deg);
}

section.py-40 {
    background: #ffffff !important;
    position: relative;
}

section.py-40 h2 {
    font-weight: 300 !important;
    letter-spacing: -2px;
    background: linear-gradient(to right, #333 0%, #f29a9c 50%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: textShine 8s linear infinite;
}

@keyframes textShine {
    to {
        background-position: 200% center;
    }
}

.reveal-item {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-item.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.hero-btn,
.cart-overlay-atelier button {
    box-shadow: 0 10px 20px rgba(242, 154, 156, 0.2);
    transition: all 0.4s ease !important;
    position: relative;
    overflow: hidden;
}

.hero-btn:hover {
    box-shadow: 0 15px 30px rgba(242, 154, 156, 0.4);
    transform: translateY(-3px);
}

section.py-40 {
    background-color: #ffffff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

section.py-40 h2 {
    font-size: clamp(2.2rem, 8.5vw, 7.5rem) !important;
    line-height: 1.05 !important;
    width: 100% !important;
    max-width: 95vw !important;
    margin: 0 auto !important;
    font-family: 'Noto Serif', serif !important;
    font-style: italic !important;
    font-weight: 700 !important;
    color: #1a1a1a !important;
    text-align: center !important;
    letter-spacing: -0.03em !important;
    word-wrap: break-word !important;
    display: block !important;
}

section.py-40 span.absolute {
    font-size: 25vw !important;
    color: #f29a9c !important;
    opacity: 0.05 !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    white-space: nowrap;
    font-family: 'Noto Serif', serif !important;
    font-style: italic;
}

.nav-arrow-atelier {
    position: relative;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 1px solid rgba(242, 151, 153, 0.4) !important;
    background: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1) !important;
    cursor: pointer;
    z-index: 10;
}

.nav-arrow-atelier::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #f29799;
    transition: height 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    z-index: 0;
    border-radius: 50% 50% 0 0;
}

.nav-arrow-atelier:hover::before {
    height: 100%;
    border-radius: 0;
}

.nav-arrow-atelier span {
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1) !important;
    color: var(--color-1st) !important;
}

.nav-arrow-atelier:hover span {
    color: #ffffff !important;
    animation: arrowSlide 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

@keyframes arrowSlide {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    40% {
        transform: translateX(20px);
        opacity: 0;
    }

    41% {
        transform: translateX(-20px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.nav-arrow-atelier:hover span[style*="west"] {
    animation: arrowSlideWest 0.5s cubic-bezier(0.2, 1, 0.3, 1);
}

@keyframes arrowSlideWest {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    40% {
        transform: translateX(-20px);
        opacity: 0;
    }

    41% {
        transform: translateX(20px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.nav-arrow-atelier:hover {
    border-color: var(--color-1st) !important;
    box-shadow: 0 15px 30px rgba(242, 151, 153, 0.3) !important;
}

.product-card-atelier .mt-8 {
    margin-top: 1rem !important;
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.product-card-atelier h3 {
    font-size: 1.5rem !important;
    color: #1a1a1a !important;
    margin-bottom: 2px !important;
}

.product-card-atelier p.text-stone-400 {
    font-size: 0.85rem !important;
    color: #777 !important;
    margin-bottom: 4px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    text-transform: capitalize !important;
}

.product-card-atelier p.text-accent-red {
    font-size: 1.7rem !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    letter-spacing: -1px !important;
}

.product-card-atelier p.text-accent-red::after {
    font-size: 0.6rem !important;
    text-transform: lowercase;
    font-weight: 400;
    color: inherit;
    opacity: 0.5;
    margin-left: 4px;
}

.product-card-atelier:hover .mt-8 {
    transform: translateY(-5px);
}

.product-card-atelier:hover h3,
.product-card-atelier:hover p.text-stone-400,
.product-card-atelier:hover p.text-accent-red {
    color: var(--color-1st) !important;
}

.space-y-1 span.text-accent-red {
    all: unset !important;
    display: block !important;
    color: var(--color-1st) !important;
    font-size: 10px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5em !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
}

.hero-slide {
    width: 100vw !important;
    height: 100vh !important;
}

.hero-slide img {
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover !important;
    scale: 1.2 !important;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-loading-bar-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 200;
}

#hero-loading-line {
    height: 100%;
    width: 0%;
    background: #f29799;
    box-shadow: 0 0 20px rgba(242, 151, 153, 0.8);
    transition: width 0.1s linear;
}

.hero-content-box {
    width: 90% !important;
    max-width: 1400px;
}

#hero-viewport {
    height: 100vh !important;
    height: 100dvh !important;
    width: 100vw !important;
    background: #000;
    overflow: hidden !important;
    position: relative;
}

.hero-slide {
    overflow: hidden !important;
}

.hero-slide img {
    width: 120% !important;
    height: 120% !important;
    top: -10% !important;
    left: -10% !important;
    object-fit: cover !important;
    filter: brightness(0.7) contrast(1.1);
    transition: opacity 1s ease-in-out !important;
}

.active-slide img {
    animation: kenBurnsUltimate 12s ease-in-out infinite alternate !important;
}

@keyframes kenBurnsUltimate {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-15px, -10px);
    }
}

.hero-content-box {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 90% !important;
    z-index: 50;
    text-align: center !important;
}

.hero-title {
    font-family: 'Noto Serif', serif !important;
    font-style: italic !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.1 !important;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    font-size: clamp(3.2rem, 10vw, 8rem) !important;
}

#hero-dots {
    display: flex !important;
    gap: 12px !important;
    bottom: 50px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    align-items: center !important;
    z-index: 1000;
}

.dot {
    height: 3px !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border: none !important;
    position: relative !important;
    overflow: hidden !important;
    width: 30px !important;
    transition: width 0.6s cubic-bezier(0.19, 1, 0.22, 1) !important;
}

.dot.active {
    width: 100px !important;
}

.dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    box-shadow: 0 0 10px white;
}

.dot.active.run-timer::after {
    animation: lineLoading 6.5s linear forwards !important;
}

@keyframes lineLoading {
    0% {
        left: -100%;
    }

    100% {
        left: 0%;
    }
}

#master-aura {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 5;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
    opacity: 0;
    transition: opacity 0.5s ease;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem !important;
        letter-spacing: -2px !important;
    }

    .dot.active {
        width: 70px !important;
    }

    #master-aura {
        width: 350px;
        height: 350px;
    }

    .hero-btn {
        padding: 18px 45px !important;
        font-size: 10px !important;
        margin-top: 30px !important;
    }
}

section.py-24.border-t {
    background-color: #faf9f6 !important;
    padding-top: 120px !important;
    padding-bottom: 120px !important;
}

.atelier-card {
    border-radius: 6rem !important;
    clip-path: inset(0% 0% 0% 0% round 6rem);
    transition: all 1.2s cubic-bezier(0.2, 1, 0.3, 1) !important;
    background: #000;
}

.collection-item:hover .atelier-card {
    clip-path: inset(3% 3% 3% 3% round 6rem);
    transform: scale(1.02);
}

.atelier-card img {
    filter: brightness(0.8) contrast(1.1);
    transition: transform 3s cubic-bezier(0.1, 0, 0.2, 1) !important;
    scale: 1.1;
}

.collection-item:hover img {
    transform: scale(1.3) rotate(2deg);
    filter: brightness(1) contrast(1);
}

.collection-item h3 {
    font-family: 'Noto Serif', serif !important;
    font-weight: 400 !important;
    font-style: italic !important;
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    line-height: 0.9 !important;
    letter-spacing: -2px !important;
    text-transform: lowercase !important;
    position: relative;
    z-index: 10;
    margin-bottom: 20px !important;
    transition: all 0.8s ease;
}

.collection-item:hover h3 {
    letter-spacing: -1px !important;
    transform: translateY(-10px);
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.collection-item .sans-extra-bold {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    padding: 12px 30px !important;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 10px !important;
    letter-spacing: 4px !important;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.collection-item:hover .sans-extra-bold {
    opacity: 1;
    transform: translateY(0);
}

#collections-track::-webkit-scrollbar {
    height: 3px;
}

#collections-track::-webkit-scrollbar-track {
    background: rgba(242, 151, 153, 0.05);
}

#collections-track::-webkit-scrollbar-thumb {
    background: #f29799;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .collection-item h3 {
        font-size: 2.5rem !important;
    }

    .atelier-card {
        border-radius: 4rem !important;
    }

    .collection-item .sans-extra-bold {
        opacity: 1;
        transform: none;
    }
}

#atelier-slider,
#collections-track,
.product-card-atelier,
.collection-item,
.collection-item h3,
.hero-track {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

#atelier-slider,
#collections-track {
    cursor: grab;
}

#atelier-slider:active,
#collections-track:active {
    cursor: grabbing;
}

#hero-viewport,
.hero-viewport {
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    aspect-ratio: auto;
}

#hero-track,
.hero-track {
    height: auto !important;
}

.hero-slide {
    height: auto !important;
    position: relative !important;
}

.hero-slide img {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    top: 0 !important;
    left: 0 !important;
    object-fit: contain !important;
    transform: none !important;
    animation: none !important;
    filter: brightness(0.8);
}

.hero-content-box {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100% !important;
    z-index: 10 !important;
}

@media (max-width: 768px) {
    #hero-dots {
        bottom: 10px !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
    }
}

@media (max-width: 768px) {
    .hero-content-box {
        top: auto !important;
        bottom: 50px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
    }

    .hero-title {
        font-size: 1.6rem !important;
        margin-bottom: 0px !important;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
    }

    .hero-btn {
        margin-top: 10px !important;
        padding: 8px 22px !important;
        font-size: 8px !important;
        letter-spacing: 2px !important;
    }

    .hero-slide::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 100%) !important;
        z-index: 2;
        pointer-events: none;
    }

    #hero-dots {
        bottom: 15px !important;
    }
}

@media (max-width: 768px) {
    .hero-content-box {
        width: 85% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .hero-title {
        font-size: 1.8rem !important;
        letter-spacing: 2px !important;
        margin-bottom: 5px !important;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
        line-height: 1.2 !important;
    }

    .hero-btn {
        margin-top: 15px !important;
        padding: 10px 28px !important;
        font-size: 9px !important;
        letter-spacing: 2px !important;
        border-radius: 50px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        background-color: white !important;
        color: #f29a9c !important;
    }

    .hero-slide::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.15);
        z-index: 2;
        pointer-events: none;
    }

    .hero-content-box {
        z-index: 10 !important;
    }

    #hero-dots {
        bottom: 15px !important;
        gap: 6px !important;
    }

    .dot {
        width: 15px !important;
        height: 2px !important;
    }

    .dot.active {
        width: 35px !important;
    }
}

@media (max-width: 768px) {
    #atelier-slider {
        gap: 12px !important;
    }

    .product-card-atelier {
        width: calc(49% - -2px) !important;
        min-width: 0 !important;
    }

    .product-card-atelier .rounded-huge-atelier {
        border-radius: 1.5rem !important;
    }

    .product-card-atelier h3 {
        font-size: 13px !important;
        margin-top: 5px !important;
        letter-spacing: 0.5px !important;
    }

    .product-card-atelier p.text-stone-400 {
        font-size: 10px !important;
        margin-bottom: 2px !important;
    }

    .product-card-atelier p.text-accent-red {
        font-size: 14px !important;
        margin-top: 5px !important;
    }

    .product-card-atelier .cart-overlay-atelier {
        padding: 8px !important;
    }

    .product-card-atelier .cart-overlay-atelier button {
        padding: 10px 4px !important;
        font-size: 8px !important;
        letter-spacing: 0px !important;
    }

    .product-card-atelier .absolute.top-10.left-10 {
        top: 8px !important;
        left: 8px !important;
        padding: 3px 8px !important;
        font-size: 7px !important;
    }

    .product-card-atelier .material-symbols-outlined {
        font-size: 10px !important;
    }
}

.product-card-atelier img,
.product-card-atelier .star-active,
.product-card-atelier .star-empty,
.product-card-atelier span[style*="background-color"],
.product-card-atelier .material-symbols-outlined {
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
}

.product-card-atelier h3,
.product-card-atelier p {
    pointer-events: none !important;
}

.product-card-atelier .cart-overlay-atelier,
.product-card-atelier .cart-overlay-atelier button,
.product-card-atelier .cart-overlay-atelier a {
    pointer-events: auto !important;
}

#atelier-slider,
.no-scrollbar,
#collections-track {
    touch-action: pan-y !important;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 5;
}

@media (min-width: 1024px) {
    #hero-viewport.hero-viewport,
    #hero-viewport {
        height: 100vh !important;
        min-height: 100vh !important;
        display: block !important;
    }
}