﻿:where([class^="ri-"])::before {
    content: "\f3c2";
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    overflow-x: hidden;
}

.header-navbar {
    background-color: #f8f9fa;
    padding: 1rem 0;
    position: relative;
    z-index: 10;
}

.header-nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

    .header-nav-link:hover {
        color: #666;
    }

.header-logo {
    font-family: 'Pacifico', serif;
    font-size: 1.8rem;
    color: #333;
    text-decoration: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-icon-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

    .header-icon-btn:hover {
        color: #666;
    }

.header-cart-count {
    font-size: 0.9rem;
    font-weight: 500;
}

.header-hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.header-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.header-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.header-hero-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.header-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.header-hero-text {
    max-width: 500px;
}

.header-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 1.5rem;
}

.header-hero-subtitle {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.header-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.header-btn-primary {
    background-color: #000000;
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .header-btn-primary:hover {
        background-color: #000000;
        color: white;
        transform: translateY(-2px);
    }

.header-btn-secondary {
    background-color: transparent;
    color: #000000;
    padding: 0.875rem 2rem;
    border: 2px solid #000000;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

    .header-btn-secondary:hover {
        background-color: #000000;
        color: white;
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .header-nav-container {
        padding: 0 1rem;
    }

    .header-nav-left {
        gap: 1rem;
    }

    .header-nav-link {
        font-size: 0.9rem;
    }

    .header-logo {
        font-size: 1.5rem;
    }

    .header-hero-container {
        padding: 0 1rem;
    }

    .header-hero-title {
        font-size: 2.5rem;
    }

    .header-hero-subtitle {
        font-size: 1rem;
    }

    .header-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-btn-primary,
    .header-btn-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .header-nav-left {
        display: none;
    }

    .header-logo {
        position: static;
        transform: none;
    }

    .header-hero-title {
        font-size: 2rem;
    }

    .header-hero-section {
        min-height: 500px;
    }
}

.section1-header {
    text-align: center;
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section1-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: section1-fadeInUp 1s ease-out 0.2s forwards;
}

.section1-subtitle {
    font-size: 1.1rem;
    color: #636e72;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    animation: section1-fadeInUp 1s ease-out 0.4s forwards;
}

.section1-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.section1-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.section1-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: section1-slideUp 0.8s ease-out forwards;
}

    .section1-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .section1-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .section1-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .section1-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .section1-card:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

.section1-image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.section1-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section1-card:hover .section1-product-image {
    transform: scale(1.08);
}

.section1-out-of-stock {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(45, 52, 54, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.section1-card:hover .section1-out-of-stock {
    opacity: 1;
    transform: translateY(0);
}

.section1-card-content {
    padding: 1.5rem;
}

.section1-product-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.section1-card:hover .section1-product-name {
    color: #6c5ce7;
}

.section1-price-wrapper {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section1-current-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3436;
}

.section1-original-price {
    font-size: 1rem;
    color: #b2bec3;
    text-decoration: line-through;
    font-weight: 400;
}

@keyframes section1-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes section1-slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .section1-title {
        font-size: 2.2rem;
    }

    .section1-container {
        padding: 0 1rem 3rem;
    }

    .section1-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .section1-image-wrapper {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .section1-title {
        font-size: 1.8rem;
    }

    .section1-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .section1-image-wrapper {
        height: 320px;
    }
}

.section2-hero {
    background: linear-gradient(135deg, #f8c8dc, #f5b7d4, #f2a6cc);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.section2-container {
    height: 100vh;
    display: flex;
    align-items: center;
    background-image: url(https://framerusercontent.com/images/zgH9iFm9Jy0JlSaToXSL6rCDlk.png);
}

.section2-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.section2-main-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: cover;
    object-position: center;
}

.section2-plus-icon {
    position: absolute;
    top: 45%;
    left: 20%;
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .section2-plus-icon:hover {
        transform: scale(1.1);
        background: #333;
    }

    .section2-plus-icon i {
        color: white;
        font-size: 18px;
    }

.section2-tooltip {
    position: absolute;
    top: -10px;
    left: 60px;
    background: white;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    width: 200px;
    overflow: hidden;
}

.section2-plus-icon:hover .section2-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.section2-tooltip-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background: rgba(0,0,0,0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
}

    .section2-tooltip-close i {
        color: white;
        font-size: 12px;
    }

.section2-tooltip-image {
    width: 60px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.section2-tooltip-content {
    display: flex;
    padding: 12px;
    gap: 12px;
    align-items: flex-start;
}

.section2-tooltip-text {
    flex: 1;
}

.section2-tooltip-title {
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.section2-tooltip-price {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    margin: 0;
}

.section2-content {
    padding-left: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.section2-title {
    font-size: 4rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.section2-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.section2-cta-button {
    background: #000;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

    .section2-cta-button:hover {
        background: #333;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.section2-template-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: #6c5ce7;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .section2-template-badge:hover {
        background: #5a4fcf;
        transform: translateY(-2px);
    }

@media (max-width: 992px) {
    .section2-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        padding: 2rem 0;
    }

    .section2-content {
        padding-left: 0;
        padding-top: 2rem;
        text-align: center;
    }

    .section2-title {
        font-size: 3rem;
    }

    .section2-description {
        max-width: 100%;
    }

    .section2-plus-icon {
        top: 40%;
        left: 15%;
    }
}

@media (max-width: 768px) {
    .section2-title {
        font-size: 2.5rem;
    }

    .section2-description {
        font-size: 1rem;
    }

    .section2-content {
        padding: 1rem;
    }

    .section2-template-badge {
        bottom: 1rem;
        right: 1rem;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .section2-plus-icon {
        width: 35px;
        height: 35px;
        top: 35%;
        left: 10%;
    }

        .section2-plus-icon i {
            font-size: 16px;
        }
}

@media (max-width: 576px) {
    .section2-title {
        font-size: 2rem;
    }

    .section2-cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .section2-tooltip {
        width: 180px;
        left: 50px;
    }
}

@media (max-width: 768px) {
    .section2-tooltip {
        left: 45px;
        top: -20px;
    }
}

.section3-container {
    padding: 80px 0;
    background-color: #ffffff;
}

.section3-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    animation: section3-fadeInUp 0.8s ease-out;
}

.section3-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    animation: section3-fadeInUp 0.8s ease-out 0.2s both;
}

.section3-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section3-product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    animation: section3-fadeInUp 0.8s ease-out;
}

    .section3-product-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .section3-product-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .section3-product-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .section3-product-card:nth-child(4) {
        animation-delay: 0.4s;
    }

    .section3-product-card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

.section3-product-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.section3-product-card:hover .section3-product-image {
    transform: scale(1.05);
}

.section3-product-info {
    padding: 1.5rem;
    background: #ffffff;
    position: relative;
}

.section3-card-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.section3-product-card:hover .section3-card-actions {
    opacity: 1;
    visibility: visible;
}

.section3-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.section3-product-card:hover .section3-card-overlay {
    opacity: 1;
    visibility: visible;
}

.section3-buy-button {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .section3-buy-button:hover {
        background: #333;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    .section3-buy-button:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

        .section3-buy-button:disabled:hover {
            transform: none;
            box-shadow: none;
        }

.section3-product-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.section3-product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section3-current-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.section3-original-price {
    font-size: 0.95rem;
    color: #999;
    text-decoration: line-through;
}

.section3-out-of-stock {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.75rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.section3-view-all {
    text-align: center;
    margin-top: 3rem;
    animation: section3-fadeInUp 0.8s ease-out 0.5s both;
}

.section3-view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}

    .section3-view-all-link:hover {
        color: #666;
        transform: translateX(5px);
    }

.section3-view-all-arrow {
    transition: transform 0.3s ease;
}

.section3-view-all-link:hover .section3-view-all-arrow {
    transform: translateX(5px);
}

@keyframes section3-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes section3-pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 768px) {
    .section3-container {
        padding: 60px 0;
    }

    .section3-title {
        font-size: 2rem;
    }

    .section3-product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .section3-product-image {
        height: 280px;
    }

    .section3-product-info {
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .section3-title {
        font-size: 1.75rem;
    }

    .section3-product-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .section3-product-image {
        height: 300px;
    }
}
.section4-hero-container {
    background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 50%, #ddd6fe 100%);
    min-height: 100vh;
    padding: 0;
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.section4-main-wrapper {
    padding: 0;
    height: 100%;
}

.section4-content-row {
    margin: 0;
    height: 100vh;
}

.section4-text-column {
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.section4-text-content {
    max-width: 500px;
}

.section4-main-heading {
    font-size: 4.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 24px;
    line-height: 1;
    letter-spacing: -0.03em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.section4-description-text {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 400;
    max-width: 450px;
}

.section4-cta-button {
    background-color: #111827;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

    .section4-cta-button:hover {
        background-color: #2a2a2a;
        transform: translateY(-1px);
        color: white;
    }

.section4-arrow-icon {
    font-size: 1.2rem;
}

.section4-image-column {
    padding: 0;
    height: 100vh;
    position: relative;
}

.section4-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.section4-model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.section4-product-card {
    position: absolute;
    top: 45%;
    left: 15%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    min-width: 200px;
}

.section4-plus-icon {
    background-color: #111827;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    flex-shrink: 0;
    cursor: pointer;
}

.section4-product-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section4-product-thumbnail {
    width: 50px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.section4-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section4-product-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.section4-product-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.2;
}

.section4-product-price {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.section4-plus-icon:hover {
    background-color: #2a2a2a;
    transform: scale(1.1);
}

@media (max-width: 991.98px) {
    .section4-content-row {
        flex-direction: column;
    }

    .section4-text-column {
        order: 2;
        padding: 40px 30px;
        height: auto;
    }

    .section4-image-column {
        order: 1;
        height: 60vh;
    }

    .section4-main-heading {
        font-size: 3.5rem;
    }

    .section4-product-card {
        top: 40%;
        left: 10%;
    }
}

@media (max-width: 767.98px) {
    .section4-hero-container {
        border-radius: 16px;
    }

    .section4-text-column {
        padding: 30px 20px;
    }

    .section4-main-heading {
        font-size: 3rem;
    }

    .section4-description-text {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .section4-cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .section4-image-column {
        height: 50vh;
    }

    .section4-product-card {
        top: 35%;
        left: 5%;
        padding: 12px;
        min-width: 180px;
    }

    .section4-plus-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .section4-product-thumbnail {
        width: 40px;
        height: 50px;
    }

    .section4-product-name,
    .section4-product-price {
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .section4-text-column {
        padding: 20px 15px;
    }

    .section4-main-heading {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .section4-description-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .section4-image-column {
        height: 45vh;
    }

    .section4-product-card {
        position: static;
        transform: none;
        margin: 20px auto 0;
        max-width: 200px;
    }
}

.section5-main-container {
    padding: 80px 20px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section5-header-section {
    text-align: center;
    margin-bottom: 60px;
    animation: section5-fadeInDown 0.8s ease-out;
}

.section5-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #212529;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section5-subtitle-text {
    font-size: 1.2rem;
    color: #6c757d;
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto;
}

.section5-categories-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 15px;
}

.section5-product-card {
    position: relative;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    background: #fff;
}

    .section5-product-card:hover {
        transform: translateY(-20px) scale(1.03);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

.section5-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.section5-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.section5-product-card:hover .section5-product-image {
    transform: scale(1.08);
}

.section5-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.section5-product-card:hover .section5-content-overlay {
    transform: translateY(0);
}

.section5-info-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 24px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
}

.section5-product-card:hover .section5-info-box {
    transform: translateY(0);
    opacity: 1;
}

.section5-category-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.section5-category-description {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.section5-cta-button {
    background: #212529;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    cursor: pointer;
}

    .section5-cta-button:hover {
        background: #000;
        transform: translateX(8px);
        color: #fff;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

.section5-arrow-icon {
    font-size: 1.1rem;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.section5-cta-button:hover .section5-arrow-icon {
    transform: translateX(4px);
}

.section5-outwear-bg {
    background: linear-gradient(135deg, #a8e6cf 0%, #7fcdcd 100%);
}

.section5-tops-bg {
    background: linear-gradient(135deg, #ffc0cb 0%, #ffb6c1 100%);
}

.section5-bottoms-bg {
    background: linear-gradient(135deg, #b0e0e6 0%, #87ceeb 100%);
}

.section5-accessories-bg {
    background: linear-gradient(135deg, #dda0dd 0%, #d8bfd8 100%);
}

@keyframes section5-fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes section5-slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section5-product-card {
    animation: section5-slideInUp 0.8s ease-out forwards;
    opacity: 0;
}

    .section5-product-card:nth-child(1) {
        animation-delay: 0.1s;
    }

    .section5-product-card:nth-child(2) {
        animation-delay: 0.2s;
    }

    .section5-product-card:nth-child(3) {
        animation-delay: 0.3s;
    }

    .section5-product-card:nth-child(4) {
        animation-delay: 0.4s;
    }

@media (max-width: 992px) {
    .section5-categories-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .section5-main-title {
        font-size: 2.5rem;
    }

    .section5-product-card {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .section5-categories-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section5-main-container {
        padding: 60px 15px;
    }

    .section5-main-title {
        font-size: 2.2rem;
    }

    .section5-product-card {
        height: 380px;
    }
}

@media (max-width: 576px) {
    .section5-main-container {
        padding: 40px 10px;
    }

    .section5-main-title {
        font-size: 1.9rem;
    }

    .section5-subtitle-text {
        font-size: 1.1rem;
    }

    .section5-product-card {
        height: 350px;
    }

    .section5-content-overlay {
        padding: 30px 20px 20px;
    }

    .section5-info-box {
        padding: 20px;
    }
}

.section6-features {
    padding: 4rem 1rem;
    background-color: white;
}

.section6-feature-card {
    text-align: left;
}

.section6-icon-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.section6-icon-green {
    background-color: #dcfce7;
}

.section6-icon-pink {
    background-color: #fce7f3;
}

.section6-icon-blue {
    background-color: #dbeafe;
}

.section6-icon-yellow {
    background-color: #fef3c7;
}

.section6-feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.75rem;
}

.section6-feature-desc {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
}

.section6-icon {
    font-size: 1.25rem;
}

.section6-icon-green-text {
    color: #059669;
}

.section6-icon-pink-text {
    color: #db2777;
}

.section6-icon-blue-text {
    color: #2563eb;
}

.section6-icon-yellow-text {
    color: #d97706;
}
.section-footer {
    background: #d8b4fe;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    margin: 15px;
    border-radius: 26px;
}

.section-footer-content {
    position: relative;
    z-index: 2;
    padding: 3rem 0;
}

.section-footer-newsletter {
    color: #374151;
}

    .section-footer-newsletter h2 {
        font-size: 1.5rem;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 2rem;
        color: #000000;
        font-family: 'Inter';
    }

.section-footer-form {
    position: relative;
    max-width: 400px;
    margin-bottom: 1.5rem;
}

.section-footer-input {
    width: 100%;
    padding: 1rem 4rem 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    background: rgba(255, 255, 255, 0.9);
}

    .section-footer-input::placeholder {
        color: #6b7280;
    }

.section-footer-submit {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: #000;
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .section-footer-submit:hover {
        background: #1f2937;
        transform: translateY(-50%) scale(1.05);
    }

.section-footer-disclaimer {
    font-size: 0.875rem;
    color: #000000;
    line-height: 1.5;
}

.section-footer-nav {
    color: #374151;
}

.section-footer-nav-title {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    color: #3e095d;
}

.section-footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.section-footer-nav-item {
    margin-bottom: 0.75rem;
}

.section-footer-nav-link {
    color: #09090b;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

    .section-footer-nav-link:hover {
        color: #374151;
    }

.section-footer-brand {
    position: absolute;
    top: 40%;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-footer-brand-text {
    font-size: 20rem;
    font-weight: 700;
    color: rgba(139, 92, 246, 0.3);
    margin: 0;
    line-height: 0.8;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .section-footer-newsletter h2 {
        font-size: 2rem;
    }

    .section-footer-brand-text {
        font-size: 12rem;
    }
}

@media (max-width: 767.98px) {
    .section-footer-newsletter h2 {
        font-size: 1.75rem;
    }

    .section-footer-brand-text {
        font-size: 9rem;
    }

    .section-footer-content {
        padding: 2rem 0;
    }
}

@media (max-width: 575.98px) {
    .section-footer-newsletter h2 {
        font-size: 1.5rem;
    }

    .section-footer-brand-text {
        font-size: 6rem;
    }
}
.section-footer-bottom {
    background-color: #fff;
    padding: 15px 0;
    width: 100%;
}

.section-footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.section-footer-bottom-copyright {
    color: #333;
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

.section-footer-bottom-rights {
    color: #333;
    font-size: 14px;
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .section-footer-bottom-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .section-footer-bottom {
        padding: 18px 0;
    }
}

@media (max-width: 576px) {
    .section-footer-bottom-copyright,
    .section-footer-bottom-rights {
        font-size: 13px;
    }

    .section-footer-bottom-container {
        padding: 0 15px;
    }
}

@media (max-width: 400px) {
    .section-footer-bottom-copyright,
    .section-footer-bottom-rights {
        font-size: 12px;
    }
}
.about-section1-container {
    background: linear-gradient(135deg, #e8d5ff 0%, #f0e6ff 50%, #ffffff 100%);
    min-height: 100vh;
    padding: 80px 0;
    margin-bottom:50px

}

.about-section1-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #5d4e75;
    text-align: center;
    margin-bottom: 2rem;
}

.about-section1-subtitle {
    font-size: 1.2rem;
    color: #7a6b8a;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem auto;
    line-height: 1.6;
}

.about-section1-images {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.about-section1-image-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .about-section1-image-card:hover {
        transform: translateY(-5px);
    }

    .about-section1-image-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
    }

.about-section1-image-1 {
    width: 280px;
    background: #c8a8e9;
}

.about-section1-image-2 {
    width: 280px;
    background: #a8d5ba;
}

.about-section1-image-3 {
    width: 280px;
    background: #b8a8d5;
}

@media (max-width: 992px) {
    .about-section1-title {
        font-size: 2.8rem;
    }

    .about-section1-images {
        gap: 1.5rem;
    }

    .about-section1-image-1,
    .about-section1-image-2,
    .about-section1-image-3 {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .about-section1-container {
        padding: 60px 0;
    }

    .about-section1-title {
        font-size: 2.2rem;
    }

    .about-section1-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .about-section1-images {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .about-section1-image-1,
    .about-section1-image-2,
    .about-section1-image-3 {
        width: 300px;
        max-width: 90vw;
    }
}

@media (max-width: 576px) {
    .about-section1-title {
        font-size: 1.8rem;
    }

    .about-section1-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .about-section1-image-card img {
        height: 250px;
    }
}
.about-section2-vision,
.about-section2-mission {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.about-section2-text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background-color: #ffffff;
    min-height: 100vh;
}

.about-section2-content {
    max-width: 450px;
    width: 100%;
}

.about-section2-title {
    font-size: 4rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.about-section2-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #444444;
    font-weight: 400;
    margin: 0;
}

.about-section2-image-container {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.about-section2-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-section2-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (max-width: 991.98px) {
    .about-section2-vision .row,
    .about-section2-mission .row {
        flex-direction: column;
    }

    .about-section2-text-container {
        padding: 60px 40px;
        min-height: 60vh;
    }

    .about-section2-image-container {
        min-height: 40vh;
    }

    .about-section2-title {
        font-size: 3rem;
        margin-bottom: 28px;
    }

    .about-section2-description {
        font-size: 1.05rem;
        line-height: 1.7;
    }
}

@media (max-width: 767.98px) {
    .about-section2-text-container {
        padding: 50px 30px;
        min-height: 70vh;
    }

    .about-section2-image-container {
        min-height: 30vh;
    }

    .about-section2-title {
        font-size: 2.5rem;
        margin-bottom: 24px;
    }

    .about-section2-description {
        font-size: 1rem;
        line-height: 1.6;
    }

    .about-section2-content {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .about-section2-text-container {
        padding: 40px 25px;
        min-height: 80vh;
    }

    .about-section2-image-container {
        min-height: 20vh;
    }

    .about-section2-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .about-section2-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}
.about-section3-container {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-section3-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-section3-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 64px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.about-section3-stats-row {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.about-section3-stat-card {
    border-radius: 24px;
    padding: 48px 32px;
    text-align: center;
    flex: 1;
    min-width: 260px;
    max-width: 280px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .about-section3-stat-card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    }

.about-section3-card-pink {
    background-color: #f8bbd9;
}

.about-section3-card-blue {
    background-color: #87ceeb;
}

.about-section3-card-yellow {
    background-color: #f0e68c;
}

.about-section3-card-green {
    background-color: #98d8c8;
}

.about-section3-stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.about-section3-stat-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.about-section3-stat-description {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .about-section3-stats-row {
        gap: 20px;
        padding: 0 20px;
    }

    .about-section3-stat-card {
        min-width: 240px;
    }
}

@media (max-width: 992px) {
    .about-section3-container {
        padding: 60px 0;
    }

    .about-section3-stats-row {
        justify-content: center;
    }

    .about-section3-stat-card {
        flex: 1 1 calc(50% - 12px);
        min-width: 220px;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .about-section3-container {
        padding: 50px 0;
    }

    .about-section3-title {
        font-size: 2.25rem;
    }

    .about-section3-subtitle {
        font-size: 1rem;
        margin-bottom: 48px;
        padding: 0 20px;
    }

    .about-section3-stats-row {
        gap: 24px;
        flex-direction: column;
        align-items: center;
    }

    .about-section3-stat-card {
        flex: none;
        width: 100%;
        max-width: 320px;
        padding: 40px 28px;
    }

    .about-section3-stat-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .about-section3-container {
        padding: 40px 0;
    }

    .about-section3-title {
        font-size: 1.875rem;
        padding: 0 20px;
    }

    .about-section3-stat-card {
        max-width: 280px;
        padding: 32px 24px;
    }

    .about-section3-stat-number {
        font-size: 3rem;
    }

    .about-section3-stat-title {
        font-size: 1.125rem;
    }
}
.about-section4 {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-section4-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
}

.about-section4-description {
    font-size: 1.1rem;
    color: #6c757d;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.about-section4-slider {
    position: relative;
    overflow: hidden;
}

.about-section4-slider-container {
    display: flex;
    transition: transform 0.5s ease;
}

.about-section4-slide {
    min-width: 20%;
    padding: 0 10px;
    box-sizing: border-box;
}

.about-section4-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 400px;
}

    .about-section4-card:hover {
        transform: translateY(-5px);
    }

.about-section4-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-section4-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

    .about-section4-nav:hover {
        background: #fff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

.about-section4-nav-left {
    left: 20px;
}

.about-section4-nav-right {
    right: 20px;
}

.about-section4-nav::after {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid #2c3e50;
    border-right: 2px solid #2c3e50;
}

.about-section4-nav-left::after {
    transform: rotate(-135deg);
    margin-left: 3px;
}

.about-section4-nav-right::after {
    transform: rotate(45deg);
    margin-right: 3px;
}

.about-section4-bullets {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.about-section4-bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .about-section4-bullet.active {
        background: #2c3e50;
        transform: scale(1.2);
    }

@media (max-width: 1200px) {
    .about-section4-slide {
        min-width: 25%;
    }
}

@media (max-width: 992px) {
    .about-section4-slide {
        min-width: 33.333%;
    }

    .about-section4-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section4-slide {
        min-width: 50%;
    }

    .about-section4 {
        padding: 60px 0;
    }

    .about-section4-title {
        font-size: 1.8rem;
    }

    .about-section4-description {
        font-size: 1rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .about-section4-slide {
        min-width: 100%;
    }

    .about-section4-nav {
        width: 40px;
        height: 40px;
    }

    .about-section4-nav-left {
        left: 10px;
    }

    .about-section4-nav-right {
        right: 10px;
    }
}