body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: aliceblue !important;
    /* color: rgb(22, 22, 22) !important; */
}

.pro-slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.pro-header {
    text-align: center;
    margin-bottom: 60px;
}

.pro-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #f43f5e, #d946ef, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

.pro-header p {
    font-size: 1.2rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.pro-cards-wrapper {
    position: relative;
    height: 500px;
    perspective: 1000px;
    overflow: visible;
    width: 100%;
}

.pro-card {
    width: 360px;
    height: 450px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    opacity: 0;
    z-index: 1;
}

.pro-card.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    z-index: 10;
}

.pro-card.prev {
    opacity: 0.7;
    transform: translate(-125%, -50%) rotateY(20deg) scale(0.85);
    z-index: 5;
}

.pro-card.next {
    opacity: 0.7;
    transform: translate(25%, -50%) rotateY(-20deg) scale(0.85);
    z-index: 5;
}

.pro-card-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 35px;
    background: linear-gradient(145deg, #1e293b, #334155);
    border-radius: 20px;
}

.pro-card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(to right, #fec300, #ff7a00);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pro-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 32px;
    background: linear-gradient(to right, #fec300, #ff7a00);
    box-shadow: 0 5px 15px #fec30074;
}

.pro-card-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fec300, #ff7a00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.pro-card-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #cbd5e1;
}

.pro-card-button {
    padding: 14px 30px;
    background: linear-gradient(to right, #fec300, #ff7a00);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
    margin-top: auto;
    box-shadow: 0 5px 15px #fec30074;
}

.pro-card-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px #fec30093;
}

.pro-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 20;
    padding: 0 20px;
    transform: translateY(-50%);
}

.pro-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(to right, #fec300, #ff7a00);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.pro-nav-btn:hover {
    transform: scale(1.1);
}

.pro-nav-btn i {
    font-size: 24px;
    color: white;
}

.pro-dots {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 15px;
}

.pro-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.pro-dot.active {
    background: white;
    transform: scale(1.4);
    box-shadow: 0 0 10px #fec30074;
}

.pro-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.pro-feature {
    background: rgba(30, 41, 59, 0.6);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pro-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pro-feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(to right, #fec300, #ff7a00);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.pro-feature-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pro-feature-content p {
    font-size: 14px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .pro-header h1 {
        font-size: 2.5rem;
    }

    .pro-card {
        width: 250px;
        height: 380px;
    }

    .pro-card.prev {
        transform: translate(-120%, -50%) rotateY(20deg) scale(0.8);
    }

    .pro-card.next {
        transform: translate(20%, -50%) rotateY(-20deg) scale(0.8);
    }

    .pro-nav-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .pro-header h1 {
        font-size: 2rem;
    }

    .pro-header p {
        font-size: 1rem;
    }

    .pro-card {
        width: 230px;
        height: 300px;
    }

    .pro-card-content {
        padding: 25px;
    }

    .pro-card-title {
        font-size: 1.1rem;
    }

    .pro-card-text {
        font-size: 0.8rem;
    }

    .pro-features {
        grid-template-columns: 1fr;
    }

    .pro-cards-wrapper {
        width: 100%;
        height: 350px;
        overflow: hidden;
    }
}

/* catogrys  */

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    text-align: center;
    margin-bottom: 50px;
}

.header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.slider-section {
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 30px;
    padding-left: 15px;
    border-left: 5px solid #fec30074;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    /* background: rgba(255, 255, 255, 0.8); */
    backdrop-filter: blur(10px);
    padding: 20px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

.slider-wrapper {
    overflow: hidden;
    /* margin: 0 -10px; */
}

.slider {
    width: 100%;
    overflow-x: scroll;
    display: flex;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    /* padding: 10px; */
}

.slide {
    flex: 0 0 calc(25% - 20px);
    margin: 0 10px;
    /* background: white; */
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s;
}



.slide-img {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(135deg, #f0f4ff 0%, #e6f0ff 100%); */
    /* padding: 20px; */
    border: 1px;
    border-radius: 15px;
    overflow: hidden;
}

.slide-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    border-radius: 10px;
    overflow: hidden;
}

.slide:hover .slide-img img {
    transform: scale(1.05);
}

.slide-content {
    padding: 20px;
}

.slide-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.slide-desc {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.slide-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 700;
    color: #fec30074;
    font-size: 1.3rem;
}

.add-to-cart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(to right, #fec300, #ff7a00);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart:hover {
    transform: rotate(90deg) scale(1.1);
}

.slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    padding: 0 15px;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: linear-gradient(to right, #fec300, #ff7a00);
    color: white;
}

.view-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(to right, #fec300, #ff7a00);
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px #fec30074;
    margin-top: 30px;
}

.view-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px #fec30074;
}

@media (max-width: 1024px) {
    .slide {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .slide {
        flex: 0 0 calc(50% - 20px);
    }

    .header h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .slide {
        flex: 0 0 calc(100% - 20px);
    }

    .header h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .slider-container {
        padding: 4px;
    }
}

/* TESTIMONIALS */

.slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.cards-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    position: relative;
    height: 500px;
}

.card {
    width: 300px;
    height: fit-content;
    position: absolute;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: #1b2638;
    opacity: 0.7;
    transform: scale(0.85) translateX(0);
    filter: blur(2px);
}

.card.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 10;
    filter: blur(0);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card.prev {
    transform: scale(0.9) translateX(-110%);
    filter: blur(1px);
    z-index: 5;
}

.card.next {
    transform: scale(0.9) translateX(110%);
    filter: blur(1px);
    z-index: 5;
}

.card-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    color: white;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.card-button {
    padding: 12px 25px;
    background: white;
    color: #333;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    width: fit-content;
}

.card-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 20;
    padding: 0 20px;
    transform: translateY(-50%);
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.nav-btn:hover {
    transform: scale(1.1);
}

.nav-btn i {
    font-size: 20px;
    color: #333;
}

.dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    transform: scale(1.3);
}

.header {
    text-align: center;
    margin-bottom: 50px;
    color: white;
}

.header h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .card {
        width: 260px;
        height: 350px;
    }

    .card.prev {
        transform: scale(0.9) translateX(-100%);
    }

    .card.next {
        transform: scale(0.9) translateX(100%);
    }

    .header h1 {
        font-size: 32px;
    }

    .header p {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .card {
        width: 220px;
        height: 320px;
    }

    .card-content {
        padding: 20px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-text {
        font-size: 14px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }
}

/* footer  */

.footer-title {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ff7a00;
}

.newsletter-input {
    border: none;
    border-radius: 4px 0 0 4px;
    padding: 12px 15px;
    width: 70%;
    outline: none;
}

.newsletter-btn {
    border-radius: 0 4px 4px 0;
    background: #ff7a00;
    border: none;
    color: white;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter-btn:hover {
    background: #ff7a00;
}

.payment-method {
    background: #f1f5f9;
    border-radius: 6px;
    padding: 5px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    margin-bottom: 8px;
}

/* trending items */

/* .slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
} */

.slider-header {
    text-align: center;
    margin-bottom: 40px;
}

.slider-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #fec300, #ff7a00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
}

.slider-header p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    gap: 24px;
}

.product-card {
    flex: 0 0 calc(25% - 18px);
    border-radius: 12px;
    overflow: hidden;
    /* border: 2px solid #7a6002; */
    background: #1e293b00;
    transition: all 0.3s ease;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: #fec300;
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.view-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(to right, #fec300, #ff7a00);
    color: #000;
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 195, 0, 0.4);
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 10;
    transform: translateY(-50%);
    pointer-events: none;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(to right, #fec300, #ff7a00);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.nav-btn:hover {
    transform: scale(1.1);
}

.nav-btn i {
    font-size: 20px;
    color: #000;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(254, 195, 0, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fec300;
    transform: scale(1.3);
}

@media (max-width: 1024px) {
    .product-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

@media (max-width: 768px) {
    .product-card {
        flex: 0 0 calc(50% - 12px);
    }

    .slider-header h1 {
        font-size: 2rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .product-card {
        flex: 0 0 100%;
    }

    .slider-header h1 {
        font-size: 1.75rem;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
    }

    .nav-btn i {
        font-size: 16px;
    }
}