@charset "UTF-8";
*{
    margin:0;
    padding:0;
    box-sizing: border-box;

}

body {
    font-family: 'Poppins', sans-serif;
}
.container{
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}
a{
    text-decoration: none;
}
.main-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    padding: 0.8rem 0;
    .logo{
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        font-weight: 800;
        color: #2a2a2a;
        letter-spacing: 1px;
        position: relative;
        padding-bottom: 5px;
    }
    .logo::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40%;
        height: 3px;
        background: #f06292;
        transition: width 0.4s ease-in-out;
    }
    .logo:hover::after {
        width: 70%;
    }
    .menu-toggle {
        display: none;
        cursor: pointer;
        font-size: 1.8rem;
    }
    .main-nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 60px;
    }

    .nav-links {
        list-style: none;
        display: flex;
        li {
            margin-left: 2.5rem;
        }
        a {
            font-size: 1rem;
            font-weight: 600;
            color: #333;
            position: relative;
            padding: 0.5rem 0;
            transition: color 0.2s ease-in-out;
        }
        a:hover{
            color: #f06292;
        }
        a::after{
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background-color: #f06292;
            transition: width 0.4s ease-in-out;
        }
        a:hover::after{
            width: 100%;
        }
    }

    .nav-icons {
        display: flex;
        align-items: center;
        a {
            margin-left: 1.5rem;
            font-size: 1.3rem;
            color: #2a2a2a;
            position: relative;
            transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;

        }
        a:hover{
            color: #f06292;
            transform: scale(1.1);
        }
        .cart-count {
            position: absolute;
            top: -8px;
            right: -10px;
            background-color: #f06292;
            color: #f4f4f4 !important;
            font-size: 0.7rem;
            font-weight: 600;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            justify-content: center;
            align-items: center;
            line-height: 1;
        }
    }
}
.search-results {
    display: none;
    position: absolute;
    top: 69px;
    left: 0;
    background: white;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-results.active {
    display: block;
}

.search-item {
    display: flex;
    align-items: center;
    padding: 8px;
    gap: 10px;
}

.search-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.search-item a {
    flex-grow: 1;
    text-decoration: none;
    color: #333;
}
.no-results{
    padding: 10px;
}
.show-all {
    display: block;
    text-align: center;
    padding: 10px;
    background: #f0f0f0;
    text-decoration: none;
    color: #000;
    font-weight: bold;
}
.bottom-nav{
    display: none;
}
.side-menu{
    display: none;
}
@media (max-width: 768px) {
    .login-wrapper{
        flex-direction: column;
        .login-form-container{
            padding: 2rem 1rem;
        }
    }
    .footer-bottom{
        padding-top: 2rem;
    }
    .container{
        padding: 0 1rem;
    }

    main {
        .cta-section {
        margin: 0 !important;
        .cta {
            h2 {
                font-size: 1.5rem;
            }
        }
    }
        .hero {
            .hero-content {
                margin-left: 0 !important;
                padding: 0 20px;

                .hero-head {
                    font-size: 2rem;
                }
            }
        }
    }
}
@media (max-width: 1250px) {
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    }
}
@media (max-width: 980px) {
    .catalog {
        .main-content {
            flex-direction: column;
            .filters{
                flex:0;
            }
        }
        }
    .hero-content{
            margin-left: 100px !important;
        }
    .main-header {
        .main-nav nav {
            display: none;
        }
        .search-overlay{
            background: white;
            border-top: 1px solid black;
            top: 85.59px;
            width: 100%;
        }
        .search-overlay input{
            width: 100%;
            margin: 10px 0;
        }
        .search-results{
            top: 70px;
        }
        .nav-icons {
            display: flex;
            align-items: center;
            a:not(#search-icon) {
                display: none;
            }
            #search-icon {
                margin-left: 1.5rem;
                font-size: 1.3rem;
                color: #2a2a2a;
                transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
            }
            #search-icon:hover {
                color: #f06292;
                transform: scale(1.1);
            }
        }

        .menu-toggle {
            display: block !important;
        }
    }

    .side-menu {
        position: fixed;
        top: 0;
        left: -300px;
        width: 300px;
        height: calc(100vh - 57px);
        background: white;
        z-index: 1001;
        transition: left 0.3s ease-in-out;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;

    }

    .side-menu.active {
        left: 0;
    }

    .side-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #eee;
        background: #f8f9fa;
    }

    .side-menu-header h3 {
        margin: 0;
        color: #2a2a2a;
        font-size: 1.2rem;
        font-weight: 600;
    }

    .close-menu {
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #666;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color 0.2s ease-in-out;
    }

    .close-menu:hover {
        color: #f06292;
    }

    .side-menu-links {
        flex: 1;
        padding: 1rem 0;
    }

    .side-menu-links a {
        display: flex;
        align-items: center;
        padding: 1rem 1.5rem;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
        border-left: 3px solid transparent;
    }

    .side-menu-links a:hover {
        background-color: #f8f9fa;
        color: #f06292;
        border-left-color: #f06292;
    }

    .side-menu-links a i {
        margin-right: 0.8rem;
        font-size: 1.1rem;
        width: 20px;
        text-align: center;
    }
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: calc(100vh - 57px);
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* Нижняя навигация с подписями */
    .bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        justify-content: space-around;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        padding: 0.5rem 0 0.8rem 0;
        z-index: 999;
    }

    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        color: #2a2a2a;
        text-decoration: none;
        transition: color 0.2s ease-in-out, transform 0.2s ease-in-out;
        position: relative;
        min-width: 60px;
    }

    .bottom-nav-item:hover {
        color: #f06292;
        transform: translateY(-2px);
    }

    .bottom-nav-item i {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

    .bottom-nav-item span {
        font-size: 0.7rem;
        font-weight: 500;
        line-height: 1;
    }

    .bottom-nav-item .cart-count {
        position: absolute;
        top: -5px;
        right: 10px;
        background-color: #f06292;
        color: #fff;
        font-size: 0.6rem;
        font-weight: 600;
        border-radius: 50%;
        width: 16px;
        height: 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 1;
        margin: 0;
    }

    /* Скрываем стандартные элементы */
    .main-header .nav-links {
        display: none;
    }
}

main{
    .hero {
        min-height: 70vh;
        display: flex;
        align-items: center;
        position: relative;
        color: #f8f8f8;
        text-align: left;
        padding: 100px 0;
    }
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
        z-index: 1;
    }
    .hero-content {
        position: relative;
        z-index: 2;
        max-width: 550px;
        margin-left: 300px;
        p{
            font-size: 1.1rem;
            margin-bottom: 1.5em;
            max-width: 90%;
            text-shadow: 5px 5px 5px rgb(0 0 0 / 70%);
        }
    }
    .hero-head{
        font-size: 3rem;
        margin-bottom: 0.5em;
        line-height: 1.2;
        display: inline-block;
        text-shadow: 5px 5px 5px rgb(0 0 0 / 70%);
    }

    .btn{
        display: inline-block;
        padding: 12px 28px;
        background-color: #f06292;
        color: #f8f8f8;
        border-radius: 10px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: background-color 0.3s ease, transform 0.3s ease;
        border: none;
        cursor: pointer;
        font-weight: 600;
    }
    .btn:hover{
        background-color: #f06292;
        transform: translateY(-3px);
    }
    h2{
        color: #f06292;
    }
    .featured-categories {
        padding: 80px 0 60px 0;
        h2{
            text-align: center;
            margin-bottom: 1.5em;
        }
        
    }
    .featured-products{
        padding: 80px 0 60px 0;
        background-color: aliceblue;
        h2{
            text-align: center;
            margin-bottom: 1.5em;
        }
    }
    .why-us {
        text-align: center;
        padding: 80px 0;
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-top: 50px;
            .benefit-item {
                padding: 30px;
                background-color: #ffffff;
                border-radius: 15px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
                transition: background-color 0.3s ease, transform 0.3s ease;
                .benefit-icon {
                    font-size: 3rem;
                    margin-bottom: 15px;
                    line-height: 1;
                }
                h4{
                    color: #f06292;
                    margin-bottom: 0.5em;
                }
                p {
                    margin-bottom: 1em;
                    color: #555555;
                }
                .icon-quality::before {
                    content: '🌸';
                    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
                }
                
                .icon-design::before {
                    content: '🎨';
                    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
                }
                
                .icon-delivery::before {
                    content: '🚚';
                    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
                }
                
                .icon-support::before {
                    content: '💬';
                    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
                }
                
            }
            .benefit-item:hover {
                background-color: aliceblue;
                transform: translateY(-5px);
            }
        }
    }
    .cta-section {
        margin: 80px auto;
        .cta{
            background: linear-gradient(to right, #8b1376, #cfaf83);
            color: #f3f2f2;
            text-align: center;
            padding: 60px 0;
            border-radius: 15px;
        }
        h2 {
            color: #f8f8f8;
            margin-bottom: 0.5em;
            font-size: 2.2rem;
        }
        p {
            color: #f8f8f8;
            opacity: 0.9;
            margin-bottom: 1.5em;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .btn {
            background-color: #f8f8f8;  
            color: #f06292;
            font-weight: 600;
        }
        .btn:hover{
            background-color: #f06292;
            color: #f8f8f8;
            font-weight: 600;
    }
    }
}
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.category-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 320px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .category-item-content {
        position: relative;
        z-index: 2;
        padding: 25px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
        width: 100%;
        h3{
            color: #f8f8f8;
            margin-bottom: 0.2em;
            font-size: 1.5rem;
        }
    }
}
.category-item:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.category-item:hover img {
    transform: scale(1.08);
}
.main-footer {
    background-color: #1a1a1a;
    color: #f4f4f4;
    padding: 5rem 0 2rem 0;
    margin-top: 6rem;
    position: relative;
    overflow: hidden;
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 3rem;
        position: relative;
        z-index: 1;
        .footer-column h4 {
            font-family: 'Playfair Display', serif;
            color: #f06292;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        .footer-column {
        ul {
            list-style: none;
            padding: 0;
            }
            p{
                color: #ccc;
                font-size: 0.95rem;
                transition: color 0.2s ease-in-out;
            }
            a{
                color: #ccc;
                font-size: 0.95rem;
                transition: color 0.2s ease-in-out;
            }
            a:hover {
                color: #f4f4f4;
            }
            h4::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 40px;
                height: 3px;
                background: #f06292;
                opacity: 0.7;
            }
            li{
                margin-bottom: 0.8rem;
            }
            li a::before {
                content: '›';
                font-family: 'YourFont', 'Arial', 'Helvetica', sans-serif;
                margin-right: 8px;
                color: #f06292;
                opacity: 0.6;
            }
        }
        .social-icons a {
            display: inline-block;
            margin-right: 1rem;
            font-size: 1.5rem;
            color: #ccc;
            transition: color 0.4s ease-in-out, transform 0.4s ease-in-out;
        }
        .social-icons a:hover {
            color: #f06292;
            transform: translateY(-3px) scale(1.1);
        }
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #444;
        font-size: 0.9rem;
        color: #aaa;
        position: relative;
        z-index: 1;
        padding-bottom: 2rem;
    }
}
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.3;
    pointer-events: none;
}
.breadcrumb-nav {
    padding: 1.5rem 0;
    background-color: #f9f9f9;
    border-bottom: 1px solid #ddd;
    .breadcrumbs {
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 0.9rem;
        li {
            display: inline-block;
            color: #777;
            a {
                color: #2a2a2a;
                transition: color 0.2s ease-in-out;
            }
        }
    }
    .breadcrumbs li:not(:last-child)::after {
        content: '/';
        margin: 0 0.75rem;
        color: rgba(240, 98, 146, 0.43);
    }
}
main{
    padding-top: 85px;
}
.category-img{
    width: 350px;
    height: 350px;
}
.search-overlay {
    position: absolute;
    left: 0;
    right: 0;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    width: 40%;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
}

.search-overlay input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E9ECEF;
    border-radius: 8px;
    font-size: 1rem;
    appearance: none;
}
.search-overlay input:focus{
    border-color: #E9ECEF;
}
.search-overlay button {
    margin-left: 10px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
.main-header.search-active .search-overlay {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}


.catalog-page{
    .categories{
        animation: slideUp 0.8s ease-out forwards;
        padding-top: 60px;
        .category-grid{
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            transition: max-height 0.5s ease;
            max-height: 1000px;
            .category-item{
                height: 150px;
                span{
                    color: #f8f8f8;
                    margin-bottom: 0.2em;
                    font-weight: 600;
                }
            }
        }
        .category-grid.collapsed {
            max-height: 160px;
            overflow: hidden;
            padding-top: 10px;
            position: relative;
          }
          .show-more-btn {
            display: block;
            margin: 20px auto 0;
            padding: 10px 15px;
            font-size: 16px;
            background-color: #fff;
            border-radius: 10px;
            border: 1px solid #ccc;
            cursor: pointer;
            z-index: 2;
            position: relative;
            transition: background-color 0.3s ease;
          }
    }
    
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
    .product-card {
        background-color: white;
        display: block;
        width: 300px;
        height: 420px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 35px #f0629233;

    }
    
    .product-image {
        display: block;
        width: 100%;
        height: 250px;
        overflow: hidden;
        position: relative;
    }
    
    .product-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }
    .product-card:hover .product-title{
        color:#f06292;
    }
    .product-card:hover .product-image img {
        transform: scale(1.05);
    }
    
    .discount-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #ff4757;
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        font-weight: bold;
    }
    
    .product-info {
        padding: 15px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .product-title {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 8px;
        height: 50px;
        overflow: hidden;
        display: -webkit-box;

        -webkit-box-orient: vertical;
    }
    
    .price-container {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
    }
    
    .current-price {
        font-size: 18px;
        font-weight: bold;
        color: #f06292;
        margin-right: 10px;
    }
    
    .original-price {
        font-size: 14px;
        color: #95a5a6;
        text-decoration: line-through;
    }
    
    .buttons {
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }
    
    .btn {
        font-size: 0.8em;
        text-align: center;
        padding: 10px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: bold;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }
    
    .btn-buy {
        background-color: #2ecc71;
        color: white;
        flex-grow: 1;
        margin-right: 10px;
    }
    
    .btn-buy:hover {
        background-color: #27ae60;
    }
    
    .btn-details {
        background: transparent;
        color:#f06292;
        flex-grow: 1;
        border: 1px solid #f06292;

    }
    
    .btn-details:hover {
        background-color: #f06292;
        color: white;
    }
    .in-cart{
        display: flex;
        align-items: center;
        width: 50%;
        gap: 5px;
        justify-content: center;
    }
    .in-cart:hover{
        background-color: #e91e63;
    }

}
.catalog{
    padding-top: 60px;
    animation: slideUp 0.8s ease-out forwards;
    .main-content {
        display: flex;
        gap: 20px;
    }
    
    .products-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        .sort-select {
            padding: 8px;
            border-radius: 5px;
            border: 1px solid #ddd;
        }
    }
    .filters {
        flex: 0 0 290px;
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        height: 100%;
        .price-values{
            display: flex;
            justify-content: space-between;
            font-weight: 600;
        }
    }
    .products-container {
        flex: 1;
    }
    .range-wrapper {
  position: relative;
  width: 100%;
  height: 40px;
}

.range-wrapper input[type="range"] {
  position: absolute;
  width: 100%;
  pointer-events: none;
  -webkit-appearance: none;
  background: none;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.range-wrapper input[type="range"]::-webkit-slider-thumb {
  pointer-events: all;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f06292;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
}

.slider-track {
  position: absolute;
  height: 8px;
  background: #ddd;
  border-radius: 5px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

}
.loading-spinner::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 4px solid #f06292;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}
.pagination{
    justify-content: center;
    margin: 32px 0 0;
    position: relative;
    .page-link {
        display: inline-block;
        color: #000000;
        font-size: 18px;
        text-align: center;
        font-weight: 500;
        align-content: center;
        height: 36px;
        line-height: 16px;
        -webkit-text-decoration: none;
        text-decoration: none;
        transition: all .2s ease;
        width: 36px;

    }
    .active {
        border-radius: 50%;
        background: #f06292;
        color: white;
    }
    .disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }
    .nav-button i {
        display: inline-block;
        vertical-align: middle;
    }
    .ellipsis{
        align-content: center;

    }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.product-page {
    .product-hero {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 4rem;
        align-items: flex-start;
        margin-top: 3rem;
        margin-bottom: 6rem;
        position: relative;
        animation: slideUp 0.8s ease-out forwards;
        opacity: 0;
        .product-info {
            padding-top: 1rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            h1 {
                font-size: 2rem;
                margin-bottom: 0.5rem;
                line-height: 1.2;
                color: #2a2a2a;
            }
            .product-meta {
                display: flex;
                align-items: center;
                gap: 1.5rem;
                margin-bottom: 1.5rem;
                font-size: 0.9rem;
                color: #777;
                .rating-preview {
                    display: flex;
                    align-items: center;
                    gap: 0.5rem;
                    font-size: 15px;
                    .stars {
                        color: #f06292;
                        letter-spacing: 2px;
                    }
                    a{
                        text-decoration: none;
                        color: #f06292;
                    }
                }

            }
            .price-container{
                margin-bottom: 1.5rem;
            }
            .product-price {
                color: #f06292;
                font-size: 1.5rem;
                font-weight: 700;
                letter-spacing: 1px;
                align-items: baseline;
                margin-right: 15px;
            }
            .original-price{
                font-size: 1.3rem;
                color:#000000;
                opacity: 0.5;
                text-decoration: line-through;
            }
            .product-short-description {
                margin-bottom: 2rem;
                font-size: 1.1rem;
                line-height: 1.8;
                color: #555;
            }
            .product-options .option-group {
                margin-bottom: 2rem;
            }
            .quantity-controls {
                display: flex;
                align-items: center;
                margin-bottom: 1rem;
                width: 100%;
            }

            input:focus-visible {
                outline-offset: 0px;
            }
            #add-to-cart-btn {
                flex: 1;
                background-color: #f06292;
                color: white;
                border: none;
                border-radius: 4px;
                padding: 10px 15px;
                cursor: pointer;
                font-weight: 600;
                transition: background-color 0.2s;
            }
            #add-to-cart-btn:hover {
                background-color: #e91e63;
            }
            .wishlist-btn {
                background: transparent;
                border: none;
                color: #777;
                font-size: 1.4rem;
                cursor: pointer;
                margin-left: 10px;
                padding: 5px;
                transition: color 0.2s;
            }
            .wishlist-btn:hover {
                color: #f06292;
            }
            #buy-one-click-btn {
                width: 100%;
                background-color: #3a9d5d;
                color: white;
                border: none;
                border-radius: 4px;
                padding: 15px;
                font-size: 1.1rem;
                font-weight: 600;
                cursor: pointer;
                transition: background-color 0.2s;
            }
            #buy-one-click-btn:hover {
                background-color: #2e8b57;
            }

        }
        .product-gallery {
            display: flex;
            flex-direction: column;
            position: sticky;
            top: 100px;
            /* height: calc(100vh - 140px); */
            overflow: hidden;
            .main-image-carousel {
                max-height: 400px;
                margin-bottom: 1.5rem;
                position: relative;
                overflow: hidden;
                border-radius: 8px;
                flex-grow: 1;
            }
            

            .thumbnail-carousel .item.active {
                opacity: 1;
                border-color: #f06292;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }
            .thumbnail-carousel .item {
                border: 2px solid transparent;
                border-radius: 4px;
                overflow: hidden;
                cursor: pointer;
                opacity: 0.6;
                transition: all 0.3s ease;
            }

        }
    }
}
.quantity-btn {
    background-color: transparent;
    border: none;
    color: #c09f80;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    line-height: 1;
}
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
    width: fit-content;
    background-color: #fdfdfd;
    margin-right: 10px;
}
#quantity {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.5rem 0;
    -moz-appearance: textfield;
    appearance: textfield;
}
.registration-page{
    .login-wrapper {
        & .login-form-container {
            input {
                padding: 1rem 1rem 1rem;
            }}
        }
        .form-group {
            margin-bottom: 1rem !important;
        }
        .login-form-container {
            padding: 2rem 2.5rem !important;
        }
        .form-subtitle {
            margin-bottom: 1rem !important;
        }
        .btn-submit{
            display: block !important;
            margin-top: 30px;
        }
}
.log-container{
    padding-top: 65px;
    justify-items: center;
}
.login-wrapper {
    display: flex;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0, 123, 138, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 900px;
    width: 100%;
    animation: fadeInScale 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    .login-visual {
        flex-basis: 45%;
        background: linear-gradient(134deg, #9f4463, #f06292);
        color: white;
        padding: 4rem 2.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        position: relative;
        overflow: hidden;
        h2 {
            color: white;
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            line-height: 1.3;
            p {
                font-size: 1.1rem;
                opacity: 0.85;
                max-width: 300px;
            }
        }
    }
    .login-form-container {
        flex-basis: 55%;
        padding: 4rem 2.5rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: black;
            margin-bottom: 0.5rem;
            text-align: center;
        }
        .form-subtitle {
            font-size: 1rem;
            color: #6C757D;
            margin-bottom: 2.5rem;
            text-align: center;
        }
        .form-group {
            margin-bottom: 1.5rem;
            position: relative;
        }
        label {
            display: block;
            font-weight: 500;
            color: #6C757D;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
            transition: all 0.2s ease-in-out;
        }
        .form-input-wrapper {
            position: relative;
        }
        input{
            width: 100%;
            padding: 1rem 1rem 1rem calc(1rem * 2 + 18px);
            border: 1px solid #E9ECEF;
            border-radius: 8px;
            font-size: 1rem;
            appearance: none;
        }
        .input-icon {
            position: absolute;
            top: 50%;
            left: 1rem;
            transform: translateY(-50%);
            color: #6C757D;
            opacity: 0.6;
            transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out;
            pointer-events: none;
            width: 18px;
            height: 18px;
        }
        .form-options {
            margin-bottom: 2.5rem;
            font-size: 0.9rem;
            text-align: right;
            a{
                color: #f06292;
                text-decoration: none;
                font-weight: 600;
            }
            a:hover{
                text-decoration: underline;
            }
        }
        .btn-submit {
            width: 100%;
            padding: 1rem 1.5rem;
            background: linear-gradient(134deg, #9f4463, #f06292);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease-in-out;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            .btn-icon {
                width: 20px;
                height: 20px;
                stroke-width: 2;
            }
        }
        .btn-submit:hover, .btn-submit:focus {
            background: linear-gradient(135deg, #cd6387, #f06292);
            box-shadow: 0 6px 20px rgb(212 23 119 / 40%);
            transform: translateY(-2px);
            outline: none;
        }
    }
    .registration-prompt {
        margin-top: 2.5rem;
        text-align: center;
        padding-top: 1.5rem;
        border-top: 1px solid #E9ECEF;
        font-size: 1rem;
        color: #101010;
        .registration-link{
            font-weight: 600;
            text-decoration: none;
            color:#f06292;
        }
        .registration-link:hover{
            text-decoration: underline;
        }
    }

}
.alert{
    margin-bottom: 10px;
    font-weight: 600;
    ul{
        list-style: none;
    }
}
.user-cart{
    .cart-cont{
        padding-top: 65px;
    }
    .cart-page-title {
        font-size: 2.8rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 2.5rem;
        position: relative;
        padding-bottom: 1rem;
    }
    .cart-page-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, rgb(240, 98, 146), rgb(233, 30, 99));
        border-radius: 2px;
    }
    .cart-layout {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2.5rem;
        align-items: start;
        animation: fadeInUp 0.8s ease-out forwards;
        .cart-items-section {
            background-color: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 8px 24px rgba(52, 58, 64, 0.1);
            .cart-items-header {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-bottom: 1.5rem;
                padding-bottom: 1rem;
                border-bottom: 1px solid #dee2e6;

                .clear-cart-button {
                    font-size: 0.9rem;
                    color: #dc3545;
                    background: none;
                    border: none;
                    cursor: pointer;
                    font-weight: 500;
                    transition: color 0.2s ease-in-out;
                }                
            }
            .cart-item {
                display: grid;
                grid-template-columns: auto 1fr auto auto;
                gap: 1.5rem;
                align-items: center;
                padding: 1.5rem;
                border-bottom: 1px solid #E9ECEF;
                position: relative;
                overflow: hidden;
                .cart-item-image {
                    width: 100px;
                    height: 100px;
                    border-radius: 8px;
                    overflow: hidden;
                    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
                    z-index: 1;
                    img {
                        display: block;
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }    
                }
                .cart-item-details {
                    padding-right: 1rem;
                    display: flex;
                    flex-direction: column;
                    height: 100%;
                    justify-content: space-between;
                    .item-name {
                        font-size: 1.1rem;
                        font-weight: 500;
                        a{
                            color: black;
                        }
                        a:hover{
                            color:rgb(233, 30, 99)
                        }
                    }
                    .item-price-single {
                        font-size: 0.9rem;
                        color: #6C757D;
                    }
                    .item-category {
                        font-size: 0.9rem;
                        color: #6C757D;
                    }
                }
                .cart-item-actions {
                    text-align: right;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-end;
                    justify-content: space-between;
                    z-index: 1;
                    .cart-item-price-total {
                        font-size: 1.1rem;
                        font-weight: 500;
                        color: #212529;
                        margin-bottom: 1rem;
                    }
                }
                .cart-item-remove button {
                    background: none;
                    border: none;
                    color: #6C757D;
                    cursor: pointer;
                    padding: 0.25rem;
                    display: flex;
                    align-items: center;
                    gap: 0.25rem;
                    font-size: 0.9rem;
                }
                .cart-item-remove button svg {
                    width: 16px;
                    height: 16px;
                    stroke-width: 2;
                }
            }
        }
        .order-summary-section {
            background-color: white;
            border-radius: 16px;
            padding: 2.5rem;
            box-shadow: 0 8px 24px rgba(52, 58, 64, 0.1);
            z-index: 100;
            .order-summary-heading {
                font-size: 1.5rem;
                font-weight: 600;
                margin-bottom: 1.5rem;
                padding-bottom: 1rem;
                border-bottom: 1px solid #dee2e6;
            }
            .summary-details dl {
                margin-bottom: 1.5rem;
            }
            .summary-details div {
                display: flex;
                justify-content: space-between;
                margin-bottom: 1rem;
                font-size: 1rem;
            }
            .summary-total {
                margin-top: 1.5rem;
                padding-top: 1.5rem;
                border-top: 2px solid #212529;
            }
            .btn-checkout {
                display: block;
                width: 100%;
                margin-top: 2.5rem;
                padding: 1rem;
                background: linear-gradient(134deg, #9f4463, #f06292);
                color: white;
                border: none;
                border-radius: 8px;
                font-size: 1.2rem;
                font-weight: 600;
                cursor: pointer;
                transition: all 0.4s ease-in-out;
                text-transform: uppercase;
                letter-spacing: 1px;
                text-align: center;
                text-decoration: none;
            }
            .btn-checkout:hover{

                    background: linear-gradient(135deg, #cd6387, #f06292);
                    box-shadow: 0 6px 20px rgb(212 23 119 / 40%);
                    transform: translateY(-2px);
                    outline: none;
            }
        }
    }
}
.cont-ord{
    .visible {
        max-height: 500px !important;
        opacity: 1 !important;
        padding: 1.5rem;
        margin-top: 1rem;
    }
    .form-group input[type="text"], .form-group input[type="email"], .form-group input[type="tel"], .form-group input[type="password"], .form-group select, .form-group textarea {
        width: 100%;
        padding: 1rem;
        padding-left: calc(1rem * 2.5);
        border: 1px solid #dee2e6;
        border-radius: 8px;
        font-size: 1rem;
        color: #212529;
        background-color: white;
        transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
        appearance: none;
        box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    }
    
    padding-top: 65px;
    .checkout-title {
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 2.5rem;
        color: #212529;
        position: relative;
        padding-bottom: 1rem;
    }
    fieldset{
        border: none;
    }
    .checkout-layout {
        display: grid;
        grid-template-columns: 1.8fr 1fr;
        gap: 2.5rem;
        align-items: start;
        animation: fadeIn 1s ease-out forwards;
        .checkout-form-column {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            .checkout-section {
                background-color: white;
                border-radius: 16px;
                padding: 2.5rem;
                box-shadow: 0 8px 24px rgba(52, 58, 64, 0.1);
                transition: box-shadow 0.3s ease-in-out;
                border: 1px solid #f1f3f5;
                .section-header {
                    display: flex;
                    align-items: center;
                    gap: 1rem;
                    margin-bottom: 1.5rem;
                    padding-bottom: 1rem;
                    border-bottom: 1px solid #f1f3f5;
                    .step-number {
                        background-color: #e91e63;
                        color: white;
                        
                        font-weight: 600;
                        font-size: 1.1rem;
                        width: 36px;
                        height: 36px;
                        border-radius: 50%;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        flex-shrink: 0;
                    }
                    h2 {
                        
                        font-size: 1.5rem;
                        font-weight: 600;
                        color: #212529;
                    }

                }
                legend {
                    font-weight: 600;
                    font-size: 1.1rem;
                    padding-bottom: 0.5rem;
                    margin-bottom: 1rem;
                    color: #212529;
                    width: 100%;
                    border-bottom: 1px solid #f1f3f5;
                }
                .form-row {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
                    gap: 1.5rem;
                }
                .form-group {
                    margin-bottom: 1.5rem;
                    position: relative;
                    label {
                        display: block;
                        font-weight: 500;
                        font-size: 0.9rem;
                        color: #6C757D;
                        margin-bottom: 0.5rem;
                        transition: all 0.2s ease-in-out;
                    }
                    .input-wrapper {
                        position: relative;
                    }
                    .input-icon {
                        position: absolute;
                        top: 50%;
                        left: 1rem;
                        transform: translateY(-50%);
                        color: #6C757D;
                        opacity: 0.6;
                        width: 18px;
                        height: 18px;
                        pointer-events: none;
                        transition: color 0.2s ease-in-out, opacity 0.2s ease-in-out;
                    }
                }
            }
        }
        .radio-group {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            .radio-option {
                display: block;
                background-color: white;
                border: 1px solid #dee2e6;
                border-radius: 8px;
                padding: 1rem;
                cursor: pointer;
                transition: border-color 0.2 ease, background-color 0.2 ease, box-shadow 0.2 ease;
                position: relative;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
                input[type="radio"] {
                    opacity: 0;
                    position: absolute;
                    width: 1px;
                    height: 1px;
                    pointer-events: auto;
                }
                label {
                    display: flex;
                    align-items: center;
                    gap: 1rem;
                    font-weight: 500;
                    color: #212529;
                    margin: 0;
                    cursor: pointer;
                }
                .radio-option input[type="radio"]:checked + label .radio-custom {
                    border-color: #e91e63;
                }
                .radio-custom {
                    width: 20px;
                    height: 20px;
                    border-radius: 50%;
                    border: 2px solid #dee2e6;
                    background-color: white;
                    transition: border-color 0.2s ease-in-out, background-color 0.2s ease-in-out;
                    position: relative;
                    flex-shrink: 0;
                }

                .option-icon {
                    width: 24px;
                    height: 24px;
                    color: #007B8A;
                }
                .option-details {
                    flex-grow: 1;
                    p {
                        font-size: 0.9rem;
                        color: #6C757D;
                        margin: 0;
                    }
                }
                .conditional-fields {
                    background-color: #fdfdfe;
                    border: 1px solid #f1f3f5;
                    border-radius: 8px;

                    max-height: 0;
                    overflow: hidden;
                    opacity: 0;
                    transition: max-height 0.4s ease-out, opacity 0.4s ease-out, padding 0.4s ease-out, margin 0.4s ease-out;
                    .visible {
                        max-height: 500px;
                        opacity: 1;
                        padding: 1.5rem;
                        margin-top: 1rem;
                    }
                }
            }
        }
        .order-summary-column {
            position: sticky;
            top: calc(1rem * 2 + 70px);
            z-index: 10;
            .order-summary-card {
                background-color: white;
                border-radius: 16px;
                padding: 2.5rem;
                box-shadow: 0 8px 24px rgba(52, 58, 64, 0.1);
                border: 1px solid #f1f3f5;
                h2 {
                    
                    font-size: 1.5rem;
                    font-weight: 600;
                    margin-bottom: 1.5rem;
                    padding-bottom: 1rem;
                    border-bottom: 1px solid #f1f3f5;
                    color: #212529;
                    text-align: center;
                }
                    dl {
                        margin-bottom: 0;
                        div {
                            display: flex;
                            justify-content: space-between;
                            margin-bottom: 0.5rem;
                            font-size: 1rem;
                            dt {
                                color: #6C757D;
                            }
                            dd {
                                font-weight: 500;
                                color: #212529;
                            }
                        }
                        .grand-total {
                            align-items: center;
                            margin-top: 1rem;
                            padding-top: 1rem;
                            border-top: 2px solid #212529;
                            
                            dt {
                                font-size: 1.1rem;
                                font-weight: 600;
                            }
                            dd {
                                font-size: 1.4rem;
                                font-weight: 700;
                                color: #e91e63;
                            }

                        }
                    }

            }
        }
        .place-order-button {
            display: block;
            width: 100%;
            margin-top: 2.5rem;
            padding: 1.5rem 2.5rem;
            background: linear-gradient(134deg, #9f4463, #f06292);
            color: white;
            border: none;
            border-radius: 8px;
            
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
            box-shadow:  0 6px 20px rgba(233, 30, 99, 0.2);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
            text-decoration: none;
        }
        .place-order-button:hover{
                background: linear-gradient(135deg, #cd6387, #f06292);
                box-shadow: 0 6px 20px rgb(212 23 119 / 40%);
                transform: translateY(-2px);
                outline: none;
        
        }
            dt {
                font-size: 1.1rem;
                font-weight: 600;
            }
            dd {
                font-size: 1.4rem;
                font-weight: 700;
                color: #e91e63;
            }
    }
}
.radio-option input[type="radio"]:checked + label .radio-custom::after {
    transform: translate(-50%, -50%) scale(1);
    border-color: #e91e63;
}
.radio-option .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #e91e63;
    transition: 0.2s ease-in-out;
}
@keyframes slideUp {
    0%{
    opacity: 0;
    transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}
input:focus {
    outline: none;
    box-shadow: none;
    border-color: transparent;
}
.footer-cards{
    img{
        max-width: 100%;
    }
}
.product-details-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, rgb(249 249 249), #ffffff);
    border-top: 1px solid rgb(221 221 221);
    border-bottom: 1px solid rgb(221 221 221);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.8s ease-out forwards;
    .details-container{
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        h2{
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
            padding-bottom: 1rem;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background-color: #f06292;
            border-radius: 2px;
        }
        .details-content{
            background-color: #ffffff;
            padding: 3rem;
            border-radius: 8px;
            box-shadow: 0 10px 30px #0000001a;
            font-size: 1.05rem;
            line-height: 1.8;
            color: #444;
            h3{
                margin-top: 2.5rem;
                margin-bottom: 1rem;
                font-size: 1.6rem;
                color: rgb(42 42 42);
                border-bottom: 1px solid #f062926e;
                padding-bottom: 0.5rem;
            }
            ul{
                list-style: none;
                padding-left: 0;
                margin-top: 1rem;
            }
            li{
                position: relative;
                padding-left: 1.8rem;
                margin-bottom: 0.8rem;
            }
            li::before {
                content: '•';
                position: absolute;
                left: 0;
                top: 1px;
                font-size: 1.5rem;
                line-height: 1;
                color:#f06292;
            }
        }
    }
}
.product-details-section:before{
    content: '';
    position: absolute;
    top: -10%;
    left: -15%;
    width: 40%;
    padding-bottom: 40%;
    background: radial-gradient(circle, rgba(192, 159, 128, 0.05), rgba(192, 159, 128, 0));
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}
.info-page{
    margin-top: 65px;
    padding: 6rem 0;
    background: linear-gradient(to bottom, rgb(249 249 249), #ffffff);
    border-top: 1px solid rgb(221 221 221);
    border-bottom: 1px solid rgb(221 221 221);
    position: relative;
    overflow: hidden;
    animation: slideUp 0.8s ease-out forwards;
    .info{
        background-color: #ffffff;
        padding: 3rem;
        border-radius: 8px;
        box-shadow: 0 10px 30px #0000001a;
        max-width: 900px;
        font-size: 1.05rem;
        margin: 0 auto;
        line-height: 1.8;
        color: #444;
    }
}
.profile-block{
    display: flex;
    padding-top: 60px;
    gap: 30px;
    .left-block{
        width: 25%;
    }
    ul{
        list-style: none;
        border:1px solid #e2e8f0;;
        border-bottom: none;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    a{
        width: 100%;
        display: inline-block;
        padding: .75rem 1rem;
        color: black;
        border-bottom: 1px solid #00000026;
        transition: all 0.3s ;
    }
    a:hover{
        color:white;
        background-color: #f06292;

    }
    .active{
        color:white;
        background-color: #f06292;
        border-bottom: none;
    }
}
.profile-wrapper{
.profile-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
    .form-button{
        margin-top: 1rem;
        text-align: center;
        button{
            width: 50%;
            padding: 1rem 1.5rem;
            background: linear-gradient(134deg, #9f4463, #f06292);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s ease-in-out;
        }
        button:hover, button:focus{
            background: linear-gradient(135deg, #cd6387, #f06292);
            box-shadow: 0 6px 20px rgb(212 23 119 / 40%);
            transform: translateY(-2px);
        }
    }
}

.profile-row {
    flex: 1 1 calc(50% - 10px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    input{
        width: 100%;
        padding: 1rem;
        border: 1px solid #E9ECEF;
        border-radius: 8px;
        font-size: 1rem;
        appearance: none;
    }
    label{
        display: block;
        font-weight: 500;
        color: #6C757D;
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        transition: all 0.2s ease-in-out;
    }
}