/* ==========================================
   EFE MÜSICK - Premium Style v1.0 (Optimized)
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

@font-face {
    font-family: 'HelpMe';
    src: url('../fonts/HelpMe.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'HorstBlackletter';
    src: url('../fonts/HorstBlackletter.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'SanguineFrost';
    src: url('../fonts/SanguineFrost.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'VampireWars';
    src: url('../fonts/VampireWars.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #090909;
    color: white;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    position: relative;
    padding-top: 95px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    background: 
        radial-gradient(circle at 15% 25%, rgba(236, 72, 153, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        #050508;
    filter: blur(60px);
    animation: auroraMotion 20s ease infinite alternate;
}

@keyframes auroraMotion {
    0% {
        transform: scale(1) translate(0px, 0px);
    }
    50% {
        transform: scale(1.15) translate(3%, -5%);
    }
    100% {
        transform: scale(1) translate(-3%, 3%);
    }
}

nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1500px;
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 35px;
    background: rgba(8, 8, 12, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.18);
    border-radius: 20px;
    z-index: 9999;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 
                0 0 30px rgba(139, 92, 246, 0.05);
}

nav.scrolled {
    background: rgba(8, 8, 8, 0.9);
    padding: 16px 80px;
    border: 1px solid rgba(139, 92, 246, 0.25);
    box-shadow: 0 0 45px rgba(139, 92, 246, 0.15);
}

.logo, .logo a, .logo a:visited, .logo a:hover, .logo a:active {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 5px;
    color: rgb(183, 0, 255);
    cursor: pointer;
    user-select: none;
    font-family: 'HelpMe', sans-serif;
    text-decoration: none;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

nav ul li a, 
.nav-animation a,
header a, 
.nav-links a, 
nav a, 
.menu a, 
.header-menu a,
header span, 
header div {
    text-decoration: none;
    color: rgb(183, 0, 255);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: .3s;
    font-family: 'Montserrat', sans-serif;
}

nav ul li a:hover {
    color: #8b5cf6;
}

header {
    height: auto;
    display: block;
    margin-top: 0;
    padding-top: 100px;
}

.hero {
    padding-top: 200px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    margin-top: 0;
    position: relative;
    z-index: 2;
}

.hero-content {
    width: 900px;
    max-width: 90%;
    margin: auto;
    margin-top: 0px;
}

.hero-tag {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: #a0a0a0;
    margin-bottom: 15px;
}

.hero h1 {
    font-family: 'HorstBlackletter', sans-serif;
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f472b6 10%, #a855f7 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.35));
    margin-bottom: 20px;
}

.hero-content p {
    font-family: 'SanguineFrost', sans-serif;
    font-size: 22px;
    letter-spacing: 1.5px;
    color: #d8b4fe;
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.buy,
.listen {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    padding: 18px 42px;
    border-radius: 30px;
    background: #8b5cf6;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: .35s;
}

.listen {
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0);
}

.buy:hover {
    transform: translateY(-5px);
    background: #8b5cf6;
    box-shadow: 0 0 35px #8b5cf6;
}

.listen:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: #f472b6;
    box-shadow: 0 0 20px rgba(244, 114, 182, 0.4), 0 0 40px rgba(168, 85, 247, 0.2);
    transform: translateY(-5px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 520px;
    max-width: 100%;
    border-radius: 25px;
    transition: .4s;
    box-shadow: 0 0 60px rgba(139,92,246,.25);
}

.hero-image img:hover {
    transform: scale(1.03);
}

.features {
    width: 90%;
    max-width: 1200px;
    margin: 120px auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.card {
    background: #101010;
    border: 1px solid #1d1d1d;
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    transition: .3s;
}

.card:hover {
    transform: translateY(-8px);
    border-color: #8b5cf6;
}

.card h2 {
    color: #8b5cf6;
    font-size: 30px;
}

.card p {
    margin-top: 10px;
    color: #bfbfbf;
}

.products {
    width: 90%;
    max-width: 1200px;
    margin: 120px auto;
}

.products h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    min-height: 50vh;
}

.product {
    background: #101010;
    border-radius: 20px;
    overflow: hidden;
    transition: .35s;
    border: 1px solid #1e1e1e;
    text-align: center;
    padding-bottom: 25px;
}

.product:hover {
    transform: translateY(-10px);
    border-color: #8b5cf6;
}

.product img {
    width: 100%;
    display: block;
}

.product h3 {
    padding: 25px 25px 10px;
}

.product span {
    display: block;
    padding: 0 25px 20px;
    color: #9b5cff;
    font-weight: bold;
    font-size: 18px;
}

.product .buy {
    display: block;
    margin: 25px;
    width: calc(100% - 50px);
    padding: 16px;
    background: #8b5cf6;
    color: white;
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: none;
    transition: .35s;
}

.product .buy:hover {
    box-shadow: 0 0 25px #8b5cf6;
    transform: translateY(-3px);
}

.minimal-footer {
    background-color: #0b0b0bfa;
    padding: 30px 50px;
    border-top: 1px solid #1a1a1a00;
    color: #666;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.minimal-footer .footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.minimal-footer a {
    color: #666;
    text-decoration: none;
    margin: 0 15px;
    transition: 0.3s;
}

.minimal-footer a:hover {
    color: #fff;
}

.latest {
    width: 90%;
    max-width: 1200px;
    margin: 500px auto 120px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.latest-text {
    flex: 1;
}

.latest-text span {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgb(183, 0, 255);
    text-transform: uppercase;
}

.latest-text h2 {
    margin-top: 15px;
    font-size: 54px;
}

.latest-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #f3eded;
    line-height: 1.6;
    max-width: 600px;
    margin-top: 25px;
}

.latest-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.latest-image img {
    width: 450px;
    max-width: 100%;
    border-radius: 20px;
    transition: .35s;
    box-shadow: 0 0 60px rgba(139,92,246,.25);
}

.latest-image img:hover {
    transform: rotate(-2deg) scale(1.04);
}

.shop-page {
    width: 90%;
    max-width: 1200px;
    margin: 180px auto 100px;
}

.shop-page h1 {
    font-size: 60px;
    margin-bottom: 10px;
    font-family: 'VampireWars', sans-serif;
}

.shop-page p {
    color: #aaa;
    margin-bottom: 60px;
    font-size: 20px;
}

.logo a {
    color: #a855f7;
    text-decoration: none;
}

.product-page {
    width: 90%;
    max-width: 1200px;
    margin: 120px auto;
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 70px;
    align-items: start;
}

.product-left {
    flex: 1;
}

.product-left img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 60px rgba(139,92,246,.25);
}

.product-right {
    flex: 1;
}

.product-right h1 {
    font-size: 60px;
}

#product-price {
    font-family: 'Montserrat', sans-serif;
    color: rgb(183, 0, 255);
    font-size: 35px;
    display: block;
}

.product-right p {
    font-size: 20px;
    color: #bdbdbd;
    line-height: 40px;
    margin-bottom: 35px;
}

.product-right .buy,
.product-right button {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.checkout {
    width: 90%;
    max-width: 700px;
    margin: 180px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout h1 {
    font-size: 55px;
    margin-bottom: 30px;
}

.checkout input {
    padding: 18px;
    background: #11111100;
    border: 1px solid #f955ff98;
    border-radius: 10px;
    color: white;
    font-size: 18px;
    outline: none;
    transition: border-color 0.3s;
}

.checkout input:focus {
    border-color: #4c00ff;
}

.checkout h2 {
    margin-top: 20px;
    font-size: 32px;
    color: #8b5cf6;
}

.checkout button {
    margin-top: 20px;
}

.audio-player {
    margin-top: 40px;
    padding: 25px;
    background: transparent;
    border-radius: 15px;
    border: 1px solid #2a2a2a;
}

.audio-player h3 {
    margin-bottom: 15px;
    font-size: 18px;
    letter-spacing: 2px;
    color: #8b5cf6;
}

.audio-player audio {
    width: 100%;
}

#search {
    width: 100%;
    max-width: 500px;
    padding: 18px;
    margin: 40px auto;
    display: block;
    background: #151515;
    border: 1px solid #2c2c2c;
    border-radius: 12px;
    color: white;
    font-size: 18px;
    outline: none;
    transition: border-color 0.3s;
}

#search:focus {
    border-color: #8b5cf6;
}

.filters {
    margin: 30px 0 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filters button {
    padding: 14px 28px;
    background: #181818;
    border: 1px solid #2c2c2c;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: .3s;
    font-weight: 700;
}

.filters button:hover {
    background: #8b5cf6;
    border-color: #8b5cf6;
}

.featured-products {
    width: 90%;
    max-width: 1200px;
    margin: 120px auto;
    text-align: center;
}

.featured-products h2 {
    font-size: 42px;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    min-height: 50vh;
}

.product-card {
    position: relative;
    overflow: hidden;
    background: #0f0f13;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: .35s;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    cursor: pointer;
}

.product-card::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    opacity: .18;
    transition: .4s;
    pointer-events: none;
}

.product-card:hover::before {
    transform: scale(1.4);
    opacity: .35;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: #a855f7;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 18px;
    transition: .4s;
    display: block;
}

.product-card:hover img {
    transform: scale(1.04);
}

.product-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    font-weight: 800;
    margin-top: 10px;
}

.product-card p {
    color: #9d9d9d;
    line-height: 1.7;
    font-size: 16px;
}

.product-card h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #8b5cf6;
    margin-top: auto;
}

.product-card .buy {
    margin: 10px 25px 0;
    width: calc(100% - 50px);
}

.product-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cover-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

#product-image {
    width: 340px;
    height: 340px;
    object-fit: cover;
    border-radius: 12px;
    transition: .3s;
}

#product-image:hover {
    transform: scale(1.02);
}

.product-info h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 25px;
}

.product-info p {
    font-size: 22px;
    line-height: 1.8;
    color: #bdbdbd;
    margin-bottom: 35px;
}

.product-info h2 {
    font-size: 60px;
    font-weight: 900;
    color: #9d63ff;
    margin-bottom: 40px;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.product-features div {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 14px 18px;
    font-size: 15px;
    font-weight: 600;
    color: #ddd;
    transition: .25s;
}

.product-features div:hover {
    transform: translateY(-3px);
    border-color: #8b5cf6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
    color: #fff;
}

.gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin: 25px auto 0;
}

.gallery-thumb {
    display: block;
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: .25s;
    opacity: .7;
}

.gallery-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
}

.gallery-thumb.active {
    border-color: #8b5cf6;
    opacity: 1;
}

.player {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    background: transparent;
    border-radius: 20px;
    padding: 22px;
    margin: 35px 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.player-play {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: #8b5cf6;
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    cursor: pointer;
    flex-shrink: 0;
    transition: .3s;
}

.player-play:hover {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.5);
}

#current-time,
#duration {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    width: 42px;
    text-align: center;
    flex-shrink: 0;
}

#visualizer {
    flex: 1;
    height: 70px;
    display: block;
}

#buy-button {
    width: 100%;
    margin-top: 20px;
    padding: 18px;
    font-size: 20px;
    font-weight: 800;
    border-radius: 16px;
}

.particles {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: -2;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.25;
    }
    90% {
        opacity: 0.25;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.particles div {
    position: absolute;
    bottom: -10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: particleFloat 12s infinite linear;
    opacity: 0.7;
}

.particles div:nth-child(odd) {
    background: rgba(244, 114, 182, 0.6);
    box-shadow: 0 0 10px rgba(244, 114, 182, 0.8), 0 0 20px rgba(244, 114, 182, 0.4);
}

.particles div:nth-child(even) {
    background: rgba(168, 85, 247, 0.6);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.8), 0 0 20px rgba(168, 85, 247, 0.4);
}

.particles div:nth-child(1) { left: 5%; animation-duration: 12s; animation-delay: 0s; }
.particles div:nth-child(2) { left: 18%; animation-duration: 18s; animation-delay: 2s; }
.particles div:nth-child(3) { left: 31%; animation-duration: 15s; animation-delay: 4s; }
.particles div:nth-child(4) { left: 46%; animation-duration: 20s; animation-delay: 1s; }
.particles div:nth-child(5) { left: 60%; animation-duration: 17s; animation-delay: 3s; }
.particles div:nth-child(6) { left: 73%; animation-duration: 13s; animation-delay: 5s; }
.particles div:nth-child(7) { left: 86%; animation-duration: 19s; animation-delay: 2s; }
.particles div:nth-child(8) { left: 95%; animation-duration: 16s; animation-delay: 6s; }

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050508;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #f472b6 0%, #a855f7 100%);
    border-radius: 10px;
    border: 2px solid #050508;
}

::-webkit-scrollbar-thumb:hover {
    background: #f472b6;
}

.features-container {
    padding: 50px 20px;
    margin-top: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 40px 20px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(244, 114, 182, 0.6);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 
                0 0 20px rgba(139, 92, 246, 0.3);
}

.feature-card h3 {
    font-family: 'SanguineFrost', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.feature-card p {
    font-family: 'Montserrat', sans-serif;
    color: #a8a8a8;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.products-container {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    letter-spacing: 8px;
    background: linear-gradient(to right, #f472b6, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price {
    display: block;
    font-size: 2.0rem;
    color: #f472b6;
    font-weight: bold;
    margin-bottom: 20px;
}

.buy-btn {
    text-decoration: none;
    display: inline-block;
    background: transparent;
    border: 2px solid #a855f7;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    transition: 0.3s;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.buy-btn:hover {
    background: #a855f7;
    box-shadow: 0 0 20px #a855f7;
}

@keyframes subtle-glitch {
    0%, 90% { 
        transform: translate(0); 
        text-shadow: none; 
    }
    92% { 
        transform: translate(-1px, 0); 
        text-shadow: 1px 0 #ff00c1;
    }
    94% { 
        transform: translate(1px, 0); 
        text-shadow: -1px 0 #00fff9;
    }
    96% { 
        transform: translate(0); 
        text-shadow: none; 
    }
}

footer .logo {
    font-size: 70px;
    margin-top: 40px;
    margin-left: -15px;
    display: inline-block;
    color: rgb(183, 0, 255);
    animation: subtle-glitch 1s infinite;
}

h2 {
    font-family: 'VampireWars', sans-serif;
}

.buy {
    background: transparent;
    border: 1px solid rgba(157, 99, 255, 0.4);
    color: #fff;
    padding: 10px 22px;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

.buy:hover {
    background: rgba(157, 99, 255, 0.2);
    border-color: #9d63ff;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.cart-item-anim {
    transition: all 0.4s ease;
    animation: fadeIn 0.8s ease-out;
}

.cart-item-anim:hover {
    transform: scale(1.02);
    border-color: #9b5cff;
    box-shadow: 0 0 20px rgba(255, 0, 179, 0.445);
}

.product-card a, 
.btn-buy,
.latest-text a,
.nav-animation a {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media(max-width: 1100px) {
    .hero {
        flex-direction: column;
        text-align: center;
        margin-top: 120px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    nav {
        padding: 20px;
    }

    nav ul {
        display: none;
    }

    .latest {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .latest-image img {
        width: 90%;
    }

    .product-page {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Espacio prolijo entre la imagen y los botones */
}

.hero-sick-img {
    max-width: 350px; /* Achicamos el ancho máximo para que no ocupe toda la pantalla */
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

@keyframes floatAndGlow {
    0% {
        transform: translateY(0px);
        filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.4));
    }
    50% {
        transform: translateY(-12px);
        filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.8));
    }
    100% {
        transform: translateY(0px);
        filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.4));
    }
}

.hero-sick-img {
    animation: floatAndGlow 4s ease-in-out infinite;
}