/* Regular weight */
@font-face {
    font-family: 'High Speed';
    src: url('../fonts/High Speed.otf') format('opentype'), url('../fonts/High Speed.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* If metropolis-regular is another font you want to use */
@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-purple: #6b2eb5;
    --dark-purple: #2d1b69;
    --bright-blue: #3b5cff;
    --light-purple: #9b4dca;
    --text-white: #ffffff;
    --text-light: #e8e8ff;
    --gradient-purple: linear-gradient(135deg, #6b2eb5 0%, #2d1b69 50%, #3b5cff 100%);
    --gradient-hero: linear-gradient(90deg, #6b2eb5 0%, #2d1b69 40%, #3b5cff 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}



/* Navbar */
.navbar {
    background: transparent;
    padding: 5px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

    .navbar.scrolled {
        background: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

        .navbar.scrolled .logo {
            filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(246deg) brightness(104%) contrast(97%);
        }

        .navbar.scrolled .nav-links a {
            color: var(--primary-purple);
        }

        .navbar.scrolled .btn-register {
            color: var(--primary-purple);
            border-color: var(--primary-purple);
        }

        .navbar.scrolled .btn-login {
            background: var(--primary-purple);
            color: white;
            border-color: var(--primary-purple);
        }

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 1px;
}

    .logo img {
        width: 80px;
        transition: filter 0.3s ease;
    }

.nav-links {
    display: flex;
    gap: 35px;
}

    .nav-links a {
        color: var(--text-white);
        text-decoration: none;
        font-size: 15px;
        transition: all 0.3s;
    }

        .nav-links a:hover {
            opacity: 0.8;
        }

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn-register,
.btn-login {
    padding: 8px 24px;
    border-radius: 5px;
    border: 1px solid var(--text-white);
    background: transparent;
    color: var(--text-white);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login {
    background: var(--text-white);
    color: var(--primary-purple);
}

    .btn-register:hover,
    .btn-login:hover {
        transform: translateY(-2px);
    }



.about-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: visible;
    background: white;
    z-index: 2;
}

/* Purple decorative shapes */
.purple-shape-left {
    position: absolute;
    width: 550px;
    height: 550px;
    background: linear-gradient(90deg, #150C9D 0%, #67009071 100%), rgba(0, 0, 0, 0.6);
    border-radius: 100px;
    transform: rotate(45deg);
    left: -350px;
    bottom: 100px;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.25), -5px -5px 20px rgba(130, 100, 255, 0.15);
    z-index: -5;
}

.purple-shape-right {
    position: absolute;
    width: 800px;
    height: 400px;
    border-radius: 0;
    right: -900px; /* Changed from -250px */
    top: -160px; /* Changed from -150px */
    transform: rotate(42deg); /* Remove rotation */
    z-index: -5;
    background: #6a00ff; /* example color */
    filter: drop-shadow(-40px 20px 20px rgba(0, 0, 0, 0.25));
}

.purple-shape-right2 {
    position: absolute;
    width: 600px;
    height: 400px;
    border-radius: 89px;
    background: #9b61ba;
    right: -275px;
    top: -150px;
    transform: rotate(42deg);
    z-index: -5;
    filter: drop-shadow(-20px 20px 20px rgba(74, 3, 88, 0.20));
}

.about-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.top-row {
    display: flex;
    justify-content: flex-end;
    padding-right: 250px;
}

.text-content {
    max-width: 600px;
}

    .text-content h1 {
        font-size: 48px;
        color: #452baa;
        margin-bottom: 30px;
        font-weight: 700;
    }

    .text-content p {
        font-size: 15px;
        color: #452baa;
        line-height: 1.8;
        margin-bottom: 40px;
    }

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.button-wrapper {
    position: absolute;
    left: 100px;
    bottom: 350px;
    z-index: 10;
}

.watch-video-btn {
    display: inline-block;
    padding: 14px 40px;
    background: white;
    color: #452baa;
    border: 2px solid white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .watch-video-btn:hover {
        background: transparent;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
    }

.right-content {
    position: relative;
}

.features-list {
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

    /* Spacing between items */
    .feature-item:nth-child(1) {
        margin-bottom: 40px;
    }

    .feature-item:nth-child(2) {
        margin-bottom: 40px;
        margin-left: 100px;
    }

    .feature-item:nth-child(3) {
        margin-bottom: 40px;
        margin-left: 200px;
    }

    .feature-item:nth-child(4) {
        margin-left: 300px;
    }

.icon-box {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-text {
    font-size: 18px;
    color: #452baa;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



.features-section {
    padding: 20px 10px;
    max-width: 1200px;
    margin: 0 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 90px;
    background: transparent;
}

.feature-card {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 20px 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-height: 140px;
    margin-left: 60px;
}

.image-container {
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 125px;
    height: 125px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: -1;
}

    .image-container img {
        width: 80px;
        height: 80px;
        object-fit: contain;
    }

.card-content {
    flex: 1;
}

    .card-content h3 {
        font-size: 18px;
        color: #5a3fb5;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .card-content p {
        font-size: 13px;
        color: #666;
        line-height: 1.6;
    }

.collection {
    background-image: url('../images/Artboard\ 1\ 2.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0 120px;
    position: relative;
    z-index: 10;
}

    .collection .container {
        padding: 40px;
    }

    .collection h2 {
        font-size: 48px;
        text-align: center;
        margin-bottom: 60px;
        font-weight: 300;
    }

.collection-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%; /* Make it span full width */
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 1500px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.slider-btn.prev {
    left: 0; /* instead of -80px */
}

.slider-btn.next {
    right: 0; /* instead of -80px */
}


.product-card {
    background: var(--text-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .product-image img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

.product-card h3 {
    font-size: 16px;
    color: var(--dark-purple);
    margin-bottom: 12px;
    font-weight: 600;
}

.product-rating {
    margin-bottom: 15px;
}

.star {
    color: #ffd700;
    font-size: 16px;
}

.product-price {
    background: var(--primary-purple);
    border-color: transparent;
    color: var(--text-white);
    padding: 10px 30px;
    border-radius: 25px;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--primary-purple);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

    .slider-btn:hover {
        background: var(--text-white);
        transform: translateY(-50%) scale(1.1);
    }


@media (min-width: 1000px) and (max-width: 1500px) {
    .purple-shape-right {
        position: absolute;
        width: 800px;
        height: 400px;
        border-radius: 0;
        right: -1100px; /* Changed from -250px */
        top: -205px; /* Changed from -150px */
        transform: rotate(42deg); /* Remove rotation */
        z-index: -5;
        background: #6a00ff; /* example color */
        filter: drop-shadow(-40px 20px 20px rgba(0, 0, 0, 0.25));
    }
}

/* Large desktops */
@media (min-width: 1700px) and (max-width: 1800px) {
    .purple-shape-right {
        position: absolute;
        width: 800px;
        height: 400px;
        border-radius: 0;
        right: -1000px; /* Changed from -250px */
        top: -205px; /* Changed from -150px */
        transform: rotate(42deg); /* Remove rotation */
        z-index: -5;
        background: #6a00ff; /* example color */
        filter: drop-shadow(-40px 20px 20px rgba(0, 0, 0, 0.25));
    }

    .purple-shape-right2 {
        position: absolute;
        width: 600px;
        height: 400px;
        background: linear-gradient(135deg, #da70d6 0%, #9370db 100%);
        border-radius: 0;
        right: -190px;
        top: -150px;
        transform: rotate(45deg);
        z-index: -5;
        filter: drop-shadow(-20px 20px 20px rgba(74, 3, 88, 0.20));
    }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .logo {
        font-size: 24px;
    }

    .btn-register,
    .btn-login {
        padding: 6px 16px;
        font-size: 12px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-text {
        max-width: 100%;
    }

        .hero-text h1 {
            font-size: 32px;
        }

        .hero-text p {
            font-size: 13px;
            max-width: 100%;
        }

    .hero-image {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
    }

        .hero-image img {
            width: 100%;
            max-width: 350px;
        }

    .about-section {
        min-height: auto;
        padding: 60px 0;
    }

    .purple-shape-left {
        width: 400px;
        height: 400px;
        left: -250px;
        bottom: -150px;
    }

    .purple-shape-right {
        width: 600px;
        height: 250px;
        right: -200px;
        top: -150px;
    }

    .about-container {
        padding: 20px;
        gap: 40px;
    }

    .top-row {
        justify-content: flex-start;
    }

    .text-content {
        max-width: 100%;
    }

        .text-content h1 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .text-content p {
            font-size: 14px;
            margin-bottom: 30px;
        }

    .button-wrapper {
        position: relative;
        left: 0;
        bottom: 0;
        margin-bottom: 30px;
    }

    .watch-video-btn {
        color: #452baa;
        border-color: #452baa;
        padding: 12px 30px;
        font-size: 14px;
    }

        .watch-video-btn:hover {
            background: #452baa;
            color: white;
        }

    .bottom-row {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .feature-item {
        gap: 15px;
    }

        .feature-item:nth-child(1) {
            margin-bottom: 30px;
        }

        .feature-item:nth-child(2) {
            margin-bottom: 30px;
            margin-left: 0;
        }

        .feature-item:nth-child(3) {
            margin-bottom: 30px;
            margin-left: 0;
        }

        .feature-item:nth-child(4) {
            margin-left: 0;
        }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .feature-text {
        font-size: 14px;
    }

    .features-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 60px 20px;
    }

    .feature-card {
        padding: 30px 20px;
        margin-top: 40px;
        margin-left: 0;
    }

    .image-container {
        left: 50%;
        top: -80px;
        transform: translateX(-50%);
    }

    .card-content {
        text-align: center;
    }

    .collection {
        padding: 60px 0 80px;
    }

        .collection h2 {
            font-size: 32px;
            margin-bottom: 40px;
        }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slider-btn {
        display: none;
    }

    .product-card {
        padding: 30px 20px;
    }

    .product-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .text-content h1 {
        font-size: 28px;
    }

    .purple-shape-left {
        width: 300px;
        height: 300px;
        left: -200px;
    }

    .purple-shape-right {
        width: 600px;
        height: 200px;
        right: -150px;
    }

    .feature-text {
        font-size: 12px;
    }

    .image-container {
        width: 100px;
        height: 100px;
    }

        .image-container img {
            width: 60px;
            height: 60px;
        }

    .card-content h3 {
        font-size: 18px;
    }

    .card-content p {
        font-size: 13px;
    }
}

.purple-shape-left {
    left: -300px; /* Reduce from -350px */
}

.purple-shape-right {
    right: -250px; /* Reduce from -250px */
}

.hero-image {
    right: -250px; /* Reduce from -100px */
}

.hero-decoration {
    right: -50px; /* Reduce from -100px */
}

/* Apply to entire page */
body {
    font-family: 'High Speed', sans-serif;
}

/* Or apply to specific sections */
.collection h2 {
    font-family: 'Metropolis', sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.product-card h3 {
    font-family: 'Metropolis', sans-serif;
    font-size: 16px;
    color: var(--dark-purple);
    margin-bottom: 12px;
    font-weight: 600;
}

/* If you want to use Metropolis for body text */
body {
    font-family: 'Metropolis', sans-serif;
}

/* And High Speed for headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Metropolis', sans-serif;
}

.gradient-text h1 span {
    font-family: 'High Speed', sans-serif;
}

.card-content h3 {
    font-family: sans-serif;
}


.gradient-text {
    font-family: 'High Speed', sans-serif;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Keep the rest of the hero text in your default font */
.hero-text h1 {
    font-family: 'Metropolis', sans-serif; /* or whatever your body font is */
    font-size: 48px;
    /* your other h1 styles */
}

.feature-text {
    font-family: 'High Speed', sans-serif;
}

.collection-title h2 {
    font-family: 'Metropolis', sans-serif !important;
}

.section-title {
    font-size: 48px;
    text-align: left;
    margin-bottom: 60px;
    font-weight: 300;
    color: var(--primary-purple);
    font-family: 'Metropolis', sans-serif !important;
}

@media(max-width: 968px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .logo {
        font-size: 24px;
    }

    .btn-register,
    .btn-login {
        padding: 6px 16px;
        font-size: 12px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-text {
        max-width: 100%;
    }

        .hero-text h1 {
            font-size: 32px;
        }

        .hero-text p {
            font-size: 13px;
            max-width: 100%;
        }

    .hero-image {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
    }

        .hero-image img {
            width: 100%;
            max-width: 350px;
        }

    /* About Section Mobile Fixes */
    .about-section {
        min-height: auto;
        padding: 60px 0;
        overflow: hidden;
    }

    .purple-shape-left {
        width: 300px;
        height: 300px;
        left: -200px;
        bottom: -100px;
    }

    .purple-shape-right {
        display: none; /* Hide the decorative image on mobile */
    }

    .about-container {
        padding: 20px;
        gap: 40px;
    }

    .top-row {
        justify-content: flex-start;
        padding-right: 0;
    }

    .text-content {
        max-width: 100%;
        min-width: auto;
        width: 100%; /* Use full available width */
    }

        .text-content h1 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .text-content p {
            font-size: 14px;
            margin-bottom: 30px;
            line-height: 1.6;
            width: 100%; /* Ensure full width on mobile */
        }

    .button-wrapper {
        position: static;
        left: auto;
        bottom: auto;
        margin-bottom: 30px;
        text-align: center;
        width: 100%;
    }

    .watch-video-btn {
        color: #452baa;
        border-color: #452baa;
        background: white;
        padding: 12px 30px;
        font-size: 14px;
        display: inline-block;
    }

        .watch-video-btn:hover {
            background: #452baa;
            color: white;
        }

    .bottom-row {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .features-list {
        width: 100%;
        gap: 25px;
    }

    .feature-item {
        gap: 15px;
        margin-left: 0 !important;
        margin-bottom: 25px !important;
    }

        .feature-item:nth-child(1),
        .feature-item:nth-child(2),
        .feature-item:nth-child(3),
        .feature-item:nth-child(4) {
            text-align: center !important;
            margin-left: 0 !important;
            margin-bottom: 25px !important;
        }

        .feature-item:last-child {
            margin-bottom: 0 !important;
        }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

        .icon-box img {
            width: 30px !important;
            height: 30px !important;
        }

    .feature-text {
        font-size: 13px;
        line-height: 1.4;
    }

    .features-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 60px 20px;
        margin: 0 20px;
    }

    .feature-card {
        padding: 30px 20px;
        margin-top: 40px;
        margin-left: 0;
    }

    .image-container {
        left: 50%;
        top: -80px;
        transform: translateX(-50%);
    }

    .card-content {
        text-align: center;
    }

    .collection {
        padding: 60px 0 80px;
    }

        .collection h2 {
            font-size: 32px;
            margin-bottom: 40px;
        }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slider-btn {
        display: none;
    }

    .product-card {
        padding: 30px 20px;
    }

    .product-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .text-content h1 {
        font-size: 26px;
    }

    .text-content p {
        font-size: 8px;
    }

    .purple-shape-left {
        width: 250px;
        height: 250px;
        left: -150px;
        bottom: -80px;
    }

    .feature-text {
        font-size: 12px;
    }

    .feature-item:nth-child(1),
    .feature-item:nth-child(2),
    .feature-item:nth-child(3),
    .feature-item:nth-child(4) {
        text-align: center !important;
        margin-left: 0 !important;
        margin-bottom: 10px !important;
    }


    .icon-box {
        width: 45px;
        height: 45px;
    }

        .icon-box img {
            width: 25px !important;
            height: 25px !important;
        }

    .watch-video-btn {
        padding: 10px 25px;
        font-size: 13px;
    }

    .text-content h1 {
        font-size: 26px;
    }

    .text-content p {
        font-size: 13px;
    }

    .image-container {
        width: 100px;
        height: 100px;
    }

        .image-container img {
            width: 60px;
            height: 60px;
        }

    .card-content h3 {
        font-size: 16px;
    }

    .card-content p {
        font-size: 12px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media (max-width: 200px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .text-content h1 {
        font-size: 26px;
    }

    .text-content p {
        font-size: 8px;
    }

    .purple-shape-left {
        width: 250px;
        height: 250px;
        left: -150px;
        bottom: -80px;
    }

    .feature-text {
        font-size: 12px;
    }

    .feature-item:nth-child(1),
    .feature-item:nth-child(2),
    .feature-item:nth-child(3),
    .feature-item:nth-child(4) {
        text-align: center !important;
        margin-left: 0 !important;
        margin-bottom: 10px !important;
    }


    .icon-box {
        width: 45px;
        height: 45px;
    }

        .icon-box img {
            width: 25px !important;
            height: 25px !important;
        }

    .watch-video-btn {
        padding: 10px 25px;
        font-size: 13px;
    }

    .image-container {
        width: 100px;
        height: 100px;
    }

        .image-container img {
            width: 60px;
            height: 60px;
        }

    .card-content h3 {
        font-size: 16px;
    }

    .card-content p {
        font-size: 12px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

.hero {
    min-height: 80vh;
    background: url("../images/Artboard\ 1\ 1.png") center / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
    z-index: 20;
}

/* container becomes a flex child */
.container {
    width: 100%;
    padding-left: 5%;
    padding-right: 0; /* 🔑 allow image to touch right edge */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between; /* 🔑 flex does the spacing */
    width: 100%;
}

/* Left side */
.hero-text {
    max-width: 600px;
    color: #fff;
    z-index: 2;
}

.gradient-text {
    background: linear-gradient(90deg, #ffffff 0%, #b8c5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 2px;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-text p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 520px;
}

.btn-watch {
    padding: 12px 32px;
    border-radius: 8px;
    border: 2px solid var(--text-light);
    background: white;
    color: var(--light-purple);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

    .btn-watch:hover {
        background: transparent;
        color: var(--text-light);
        transform: translateY(-2px);
    }

/* Right side */
.hero-image {
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0; /* 🔑 prevents image shrinking */
}

    .hero-image img {
        width: clamp(700px, 70vw, 1200px);
        max-width: none;
        height: auto;
        display: block;
    }

body {
    font-family: 'Metropolis', sans-serif;
}

/* And High Speed for headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Metropolis', sans-serif;
}

.gradient-text h1 span {
    font-family: 'High Speed', sans-serif;
}

.card-content h3 {
    font-family: sans-serif;
}


.gradient-text {
    font-family: 'High Speed', sans-serif;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Keep the rest of the hero text in your default font */
.hero-text h1 {
    font-family: 'Metropolis', sans-serif; /* or whatever your body font is */
    font-size: 48px;
    /* your other h1 styles */
}

.feature-text {
    font-family: 'High Speed', sans-serif;
}

.collection-title h2 {
    font-family: 'Metropolis', sans-serif !important;
}


@media (max-width: 968px) {
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 20px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .nav-links {
        display: none;
    }

    .logo {
        font-size: 24px;
    }

    .btn-register,
    .btn-login {
        padding: 6px 16px;
        font-size: 12px;
    }

    .hero {
        padding: 100px 0 60px;
        overflow-x: hidden;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
        overflow-x: hidden;
    }

    .hero-text {
        max-width: 100%;
    }

        .hero-text h1 {
            font-size: 32px;
        }

        .hero-text p {
            font-size: 13px;
            max-width: 100%;
        }

    .hero-image {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
        width: 100%;
        justify-content: center;
    }

        .hero-image img {
            width: 100%;
            max-width: 350px;
        }

    .about-section {
        min-height: auto;
        padding: 60px 0;
        overflow-x: hidden;
    }

    .purple-shape-left {
        width: 400px;
        height: 400px;
        left: -250px;
        bottom: -150px;
    }

    .purple-shape-right {
        display: none;
    }

    .purple-shape-right2 {
        display: none;
    }

    .about-container {
        padding: 20px;
        gap: 40px;
        max-width: 100%;
    }

    .top-row {
        justify-content: flex-start;
        padding-right: 0;
    }

    .text-content {
        max-width: 100%;
        width: 100%;
    }

        .text-content h1 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        .text-content p {
            font-size: 14px;
            margin-bottom: 30px;
            width: 100%;
        }

    .button-wrapper {
        position: static;
        left: auto;
        bottom: auto;
        margin-bottom: 30px;
        text-align: center;
    }

    .watch-video-btn {
        color: #452baa;
        border-color: #452baa;
        background: white;
        padding: 12px 30px;
        font-size: 14px;
    }

        .watch-video-btn:hover {
            background: #452baa;
            color: white;
        }

    .bottom-row {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .features-list {
        width: 100%;
    }

    .feature-item {
        gap: 15px;
        margin-left: 0 !important;
        margin-bottom: 25px !important;
    }

        .feature-item:nth-child(1),
        .feature-item:nth-child(2),
        .feature-item:nth-child(3),
        .feature-item:nth-child(4) {
            margin-left: 0 !important;
            margin-bottom: 25px !important;
        }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

        .icon-box img {
            width: 30px !important;
        }

    .feature-text {
        font-size: 14px;
    }

    .features-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 60px 20px;
        margin: 0;
        max-width: 100%;
    }

    .feature-card {
        padding: 30px 20px;
        margin-top: 40px;
        margin-left: 0;
        max-width: 100%;
    }

    .image-container {
        left: 50%;
        top: -80px;
        transform: translateX(-50%);
    }

    .card-content {
        text-align: center;
    }

    .collection {
        padding: 60px 0 80px;
        overflow-x: hidden;
    }

        .collection .container {
            padding: 40px 20px;
            max-width: 100%;
        }

        .collection h2 {
            font-size: 32px;
            margin-bottom: 40px;
        }

    .collection-slider {
        position: relative;
        width: 100%;
        padding: 0 50px;
    }

    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 100%;
    }

    .slider-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

        .slider-btn.prev {
            left: 5px;
        }

        .slider-btn.next {
            right: 5px;
        }

    .product-card {
        padding: 20px 15px;
    }

    .product-image {
        height: 120px;
        margin-bottom: 15px;
    }

    .product-card h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .product-price {
        padding: 8px 20px;
        font-size: 14px;
    }
} 











/* Regular weight */
/*@font-face {
    font-family: 'High Speed';
    src: url('../') format('opentype'),
         url('../fonts/High Speed.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}*/

/* If metropolis-regular is another font you want to use */
/*@font-face {
    font-family: 'Metropolis';
    src: url('../fonts/metropolis-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
:root {
    --primary-purple: #6b2eb5;
    --dark-purple: #2d1b69;
    --bright-blue: #3b5cff;
    --light-purple: #9b4dca;
    --text-white: #ffffff;
    --text-light: #e8e8ff;
    --gradient-purple: linear-gradient(135deg, #6b2eb5 0%, #2d1b69 50%, #3b5cff 100%);
    --gradient-hero: linear-gradient(90deg, #6b2eb5 0%, #2d1b69 40%, #3b5cff 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
}*/



/* Navbar */
/*.navbar {
    background: transparent;
    padding: 5px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .logo {
    filter: brightness(0) saturate(100%) invert(27%) sepia(51%) saturate(2878%) hue-rotate(246deg) brightness(104%) contrast(97%);
}

.navbar.scrolled .nav-links a {
    color: var(--primary-purple);
}

.navbar.scrolled .btn-register {
    color: var(--primary-purple);
    border-color: var(--primary-purple);
}

.navbar.scrolled .btn-login {
    background: var(--primary-purple);
    color: white;
    border-color: var(--primary-purple);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 1px;
}

.logo img {
    width: 80px;
    transition: filter 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn-register,
.btn-login {
    padding: 8px 24px;
    border-radius: 5px;
    border: 1px solid var(--text-white);
    background: transparent;
    color: var(--text-white);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login {
    background: var(--text-white);
    color: var(--primary-purple);
}

.btn-register:hover,
.btn-login:hover {
    transform: translateY(-2px);
}*/

/* Hero Section */
/* .hero {
    background-image: url('./images/slide1-background.png');
    background-size: cover;
    background-position: center;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    z-index: 20;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text {
    flex: 0 0 auto;
    max-width: 520px;
    z-index: 2;
}

.hero-text h1 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
}

.gradient-text {
    background: linear-gradient(90deg, #ffffff 0%, #b8c5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 2px;
}

.hero-text p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 520px;
}

.btn-watch {
    padding: 12px 32px;
    border-radius: 8px;
    border: 2px solid var(--text-light);
    background: white;
    color: var(--light-purple);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-watch:hover {
    background: transparent;
    color: var(--text-light);
    transform: translateY(-2px);
}

.hero-image {
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.hero-image img {
    width: 1100px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hero-decoration {
    position: absolute;
    bottom: -50px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 92, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
} */

/*.about-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: visible;
    background: white;
    z-index: 2;
}*/

/* Purple decorative shapes */
/*.purple-shape-left {
    position: absolute;
    width: 600px;
    height: 600px;
    background: #452baa;
    border-radius: 100px;
    transform: rotate(45deg);
    left: -350px;
    bottom: -100px;
    box-shadow: 
        15px 15px 40px rgba(0, 0, 0, 0.25),
        -5px -5px 20px rgba(130, 100, 255, 0.15);
    z-index: -5;
}

.purple-shape-right {
    position: absolute;
    width: 800px;
    height: 400px;
    border-radius: 0;
    right: -800px;*/ /* Changed from -250px */
    /*top: -100px;*/ /* Changed from -150px */
    /*transform: rotate(42deg);*/ /* Remove rotation */
    /*z-index: -5;
    
  background: #6a00ff;*/ /* example color */
  /*filter: drop-shadow(-40px 20px 20px rgba(0, 0, 0, 0.25));
}
.purple-shape-right2 {
    position: absolute;
    width: 600px;
    height: 400px;
    background: linear-gradient(135deg, #da70d6 0%, #9370db 100%);
    border-radius: 0;
    right: -250px;
    top: -150px;
    transform: rotate(45deg);
    z-index: -5;
  filter: drop-shadow(-20px 20px 20px rgba(74, 3, 88, 0.20));
}
.about-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.top-row {
    display: flex;
    justify-content: flex-end;
      padding-right: 250px;
}

.text-content {
    max-width: 600px;
}

.text-content h1 {
    font-size: 48px;
    color: #452baa;
    margin-bottom: 30px;
    font-weight: 700;
}

.text-content p {
    font-size: 15px;
    color: #452baa;
    line-height: 1.8;
    margin-bottom: 40px;
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.button-wrapper {
    position: absolute;
    left: 100px;
    bottom: 200px;
    z-index: 10;
}

.watch-video-btn {
    display: inline-block;
    padding: 14px 40px;
    background: white;
    color: #452baa;
    border: 2px solid white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.watch-video-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.right-content {
    position: relative;
}

.features-list {
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}*/

/* Spacing between items */
/*.feature-item:nth-child(1) {
    margin-bottom: 40px;
}

.feature-item:nth-child(2) {
    margin-bottom: 40px;
    margin-left: 100px;
}

.feature-item:nth-child(3) {
    margin-bottom: 40px;
    margin-left: 200px;
}

.feature-item:nth-child(4) {
    margin-left: 300px;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-text {
    font-size: 18px;
    color: #452baa;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



.features-section {
    padding: 20px 10px;
    max-width: 900px;
    margin: 0 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    background: transparent;
}

.feature-card {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 20px 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    min-height: 140px;
    margin-left: 60px;
}

.image-container {
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 125px;
    height: 125px;
    background: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    z-index: -1;
}

.image-container img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 18px;
    color: #5a3fb5;
    margin-bottom: 12px;
    font-weight: 600;
}

.card-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.collection {
    background-image: url('../images/slide3-background(our collection).png');
    background-size: cover;
    background-position: center;
    padding: 80px 0 120px;
    position: relative;
    z-index: 10;
}
.collection .container{
    padding: 40px;
}

.collection h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.collection-slider {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;*/ /* Make it span full width */
/*}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.slider-btn.prev {
    left: 0;*/ /* instead of -80px */
/*}

.slider-btn.next {
    right: 0;*/ /* instead of -80px */
/*}


.product-card {
    background: var(--text-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-image {
    width: 100%;
    height: 200px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-card h3 {
    font-size: 16px;
    color: var(--dark-purple);
    margin-bottom: 12px;
    font-weight: 600;
}

.product-rating {
    margin-bottom: 15px;
}

.star {
    color: #ffd700;
    font-size: 16px;
}

.product-price {
    background: var(--primary-purple);
    border-color: transparent;
    color: var(--text-white);
    padding: 10px 30px;
    border-radius: 25px;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    color: var(--primary-purple);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--text-white);
    transform: translateY(-50%) scale(1.1);
}*/


/* Mobile Responsive */
/*@media (max-width: 968px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .logo {
        font-size: 24px;
    }

    .btn-register,
    .btn-login {
        padding: 6px 16px;
        font-size: 12px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 13px;
        max-width: 100%;
    }

    .hero-image {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
    }

    .hero-image img {
        width: 100%;
        max-width: 350px;
    }

    .about-section {
        min-height: auto;
        padding: 60px 0;
    }

    .purple-shape-left {
        width: 400px;
        height: 400px;
        left: -250px;
        bottom: -150px;
    }

    .purple-shape-right {
        width: 600px;
        height: 250px;
        right: -200px;
        top: -150px;
    }

    .about-container {
        padding: 20px;
        gap: 40px;
    }

    .top-row {
        justify-content: flex-start;

    }

    .text-content {
        max-width: 100%;
    }

    .text-content h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .text-content p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .button-wrapper {
        position: relative;
        left: 0;
        bottom: 0;
        margin-bottom: 30px;
    }

    .watch-video-btn {
        color: #452baa;
        border-color: #452baa;
        padding: 12px 30px;
        font-size: 14px;
    }

    .watch-video-btn:hover {
        background: #452baa;
        color: white;
    }

    .bottom-row {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }

    .feature-item {
        gap: 15px;
    }

    .feature-item:nth-child(1) {
        margin-bottom: 30px;
    }

    .feature-item:nth-child(2) {
        margin-bottom: 30px;
        margin-left: 0;
    }

    .feature-item:nth-child(3) {
        margin-bottom: 30px;
        margin-left: 0;
    }

    .feature-item:nth-child(4) {
        margin-left: 0;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .feature-text {
        font-size: 14px;
    }

    .features-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 60px 20px;
    }

    .feature-card {
        padding: 30px 20px;
        margin-top: 40px;
        margin-left: 0;
    }

    .image-container {
        left: 50%;
        top: -80px;
        transform: translateX(-50%);
    }

    .card-content {
        text-align: center;
    }

    .collection {
        padding: 60px 0 80px;
    }

    .collection h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slider-btn {
        display: none;
    }

    .product-card {
        padding: 30px 20px;
    }

    .product-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .text-content h1 {
        font-size: 28px;
    }

    .purple-shape-left {
        width: 300px;
        height: 300px;
        left: -200px;
    }

    .purple-shape-right {
        width: 600px;
        height: 200px;
        right: -150px;
    }

    .feature-text {
        font-size: 12px;
    }

    .image-container {
        width: 100px;
        height: 100px;
    }

    .image-container img {
        width: 60px;
        height: 60px;
    }

    .card-content h3 {
        font-size: 18px;
    }

    .card-content p {
        font-size: 13px;
    }
}
.purple-shape-left {
    left: -300px;*/ /* Reduce from -350px */
/*}

.purple-shape-right {
    right: -250px;*/ /* Reduce from -250px */
/*}

.hero-image {
    right: -250px;*/ /* Reduce from -100px */
/*}

.hero-decoration {
    right: -50px;*/ /* Reduce from -100px */
/*}*/

/* Apply to entire page */
/*body {
    font-family: 'High Speed', sans-serif;
}*/

/* Or apply to specific sections */
/*.collection h2 {
 font-family: 'Metropolis', sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 300;
}

.product-card h3 {
 font-family: 'Metropolis', sans-serif;
    font-size: 16px;
    color: var(--dark-purple);
    margin-bottom: 12px;
    font-weight: 600;
}*/

/* If you want to use Metropolis for body text */
/*body {
    font-family: 'Metropolis', sans-serif;
}*/

/* And High Speed for headings */
 /*h1,h2, h3, h4, h5, h6 {
    font-family: 'Metropolis', sans-serif;
}
.gradient-text h1 span{
       font-family: 'High Speed', sans-serif;
  
}
.card-content h3{
    font-family: sans-serif;
}


.gradient-text {
    font-family: 'High Speed', sans-serif;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}*/

/* Keep the rest of the hero text in your default font */
/*.hero-text h1 {
    font-family: 'Metropolis', sans-serif;*/ /* or whatever your body font is */
    /*font-size: 48px;*/
    /* your other h1 styles */
/*}
.feature-text{
       font-family: 'High Speed', sans-serif;
  
}
.collection-title h2{
     font-family: 'Metropolis', sans-serif !important;
}
.section-title {
    font-size: 48px;
    text-align: left;
    margin-bottom: 60px;
    font-weight: 300;
    color: var(--primary-purple);
     font-family: 'Metropolis', sans-serif !important;
}
@media(max-width: 968px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .logo {
        font-size: 24px;
    }

    .btn-register,
    .btn-login {
        padding: 6px 16px;
        font-size: 12px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 13px;
        max-width: 100%;
    }

    .hero-image {
        position: relative;
        right: 0;
        top: 0;
        transform: none;
    }

    .hero-image img {
        width: 100%;
        max-width: 350px;
    }*/

    /* About Section Mobile Fixes */
    /*.about-section {
        min-height: auto;
        padding: 60px 0;
        overflow: hidden;
    }

    .purple-shape-left {
        width: 300px;
        height: 300px;
        left: -200px;
        bottom: -100px;
    }

    .purple-shape-right {
        display: none;*/ /* Hide the decorative image on mobile */
    /*}

    .about-container {
        padding: 20px;
        gap: 40px;
    }

    .top-row {
        justify-content: flex-start;
        padding-right: 0;
    }

    .text-content {
        max-width: 100%;
        min-width: auto;
        width: 100%;*/ /* Use full available width */
    /*}

    .text-content h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .text-content p {
        font-size: 14px;
        margin-bottom: 30px;
        line-height: 1.6;
        width: 100%;*/ /* Ensure full width on mobile */
    /*}

    .button-wrapper {
        position: static;
        left: auto;
        bottom: auto;
        margin-bottom: 30px;
        text-align: center;
        width: 100%;
    }

    .watch-video-btn {
        color: #452baa;
        border-color: #452baa;
        background: white;
        padding: 12px 30px;
        font-size: 14px;
        display: inline-block;
    }

    .watch-video-btn:hover {
        background: #452baa;
        color: white;
    }

    .bottom-row {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
    }

    .features-list {
        width: 100%;
        gap: 25px;
    }

    .feature-item {
        gap: 15px;
        margin-left: 0 !important;
        margin-bottom: 25px !important;
    }

    .feature-item:nth-child(1),
    .feature-item:nth-child(2),
    .feature-item:nth-child(3),
    .feature-item:nth-child(4) {
        text-align: center !important;
        margin-left: 0 !important;
        margin-bottom: 25px !important;
    }

    .feature-item:last-child {
        margin-bottom: 0 !important;
    }

    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .icon-box img {
        width: 30px !important;
        height: 30px !important;
    }

    .feature-text {
        font-size: 13px;
        line-height: 1.4;
    }

    .features-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 60px 20px;
        margin: 0 20px;
    }

    .feature-card {
        padding: 30px 20px;
        margin-top: 40px;
        margin-left: 0;
    }

    .image-container {
        left: 50%;
        top: -80px;
        transform: translateX(-50%);
    }

    .card-content {
        text-align: center;
    }

    .collection {
        padding: 60px 0 80px;
    }

    .collection h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .slider-btn {
        display: none;
    }

    .product-card {
        padding: 30px 20px;
    }

    .product-image {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .text-content h1 {
        font-size: 26px;
    }

    .text-content p {
        font-size: 8px;
    }

    .purple-shape-left {
        width: 250px;
        height: 250px;
        left: -150px;
        bottom: -80px;
    }

    .feature-text {
        font-size: 12px;
    }
      .feature-item:nth-child(1),
    .feature-item:nth-child(2),
    .feature-item:nth-child(3),
    .feature-item:nth-child(4) {
        text-align: center !important;
        margin-left: 0 !important;
        margin-bottom: 10px !important;
    }


    .icon-box {
        width: 45px;
        height: 45px;
    }

    .icon-box img {
        width: 25px !important;
        height: 25px !important;
    }

    .watch-video-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
    .text-content h1 {
        font-size: 26px;
    }

    .text-content p {
        font-size: 13px;
    }
    .image-container {
        width: 100px;
        height: 100px;
    }

    .image-container img {
        width: 60px;
        height: 60px;
    }

    .card-content h3 {
        font-size: 16px;
    }

    .card-content p {
        font-size: 12px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}
@media (max-width: 200px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .text-content h1 {
        font-size: 26px;
    }

    .text-content p {
        font-size: 8px;
    }

    .purple-shape-left {
        width: 250px;
        height: 250px;
        left: -150px;
        bottom: -80px;
    }

    .feature-text {
        font-size: 12px;
    }
      .feature-item:nth-child(1),
    .feature-item:nth-child(2),
    .feature-item:nth-child(3),
    .feature-item:nth-child(4) {
        text-align: center !important;
        margin-left: 0 !important;
        margin-bottom: 10px !important;
    }


    .icon-box {
        width: 45px;
        height: 45px;
    }

    .icon-box img {
        width: 25px !important;
        height: 25px !important;
    }

    .watch-video-btn {
        padding: 10px 25px;
        font-size: 13px;
    }

    .image-container {
        width: 100px;
        height: 100px;
    }

    .image-container img {
        width: 60px;
        height: 60px;
    }

    .card-content h3 {
        font-size: 16px;
    }

    .card-content p {
        font-size: 12px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

.hero {
  min-height: 80vh;
  background: url("../images/slide1-background.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  z-index: 20;
}*/

/* container becomes a flex child */
/*.container {
  width: 100%;
  padding-left: 5%;
  padding-right: 0;*/ /* 🔑 allow image to touch right edge */
/*}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;*/ /* 🔑 flex does the spacing */
  /*width: 100%;
}*/

/* Left side */
/*.hero-text {
  max-width: 600px;
  color: #fff;
  z-index: 2;
}
.gradient-text {
    background: linear-gradient(90deg, #ffffff 0%, #b8c5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 2px;
}

.hero-text h1{
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 25px;
}
.hero-text p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 520px;
}

.btn-watch {
    padding: 12px 32px;
    border-radius: 8px;
    border: 2px solid var(--text-light);
    background: white;
    color: var(--light-purple);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-watch:hover {
    background: transparent;
    color: var(--text-light);
    transform: translateY(-2px);
}*/

/* Right side */
/*.hero-image {
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;*/ /* 🔑 prevents image shrinking */
/*}

.hero-image img {
  width: clamp(700px, 70vw, 1200px);
  max-width: none;
  height: auto;
  display: block;
}
body {
    font-family: 'Metropolis', sans-serif;
}*/

/* And High Speed for headings */
 /*h1,h2, h3, h4, h5, h6 {
    font-family: 'Metropolis', sans-serif;
}
.gradient-text h1 span{
       font-family: 'High Speed', sans-serif;
  
}
.card-content h3{
    font-family: sans-serif;
}


.gradient-text {
    font-family: 'High Speed', sans-serif;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}*/

/* Keep the rest of the hero text in your default font */
/*.hero-text h1 {
    font-family: 'Metropolis', sans-serif;*/ /* or whatever your body font is */
    /*font-size: 48px;*/
    /* your other h1 styles */
/*}
.feature-text{
       font-family: 'High Speed', sans-serif;
  
}
.collection-title h2{
     font-family: 'Metropolis', sans-serif !important;
}*/