.top-products-section {
    min-height: 100vh;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    /* background-color: red; */
    /* background:rgba(39, 186, 196, 0.122); */
    /* background-color: rgba(0, 0, 0, 0.081); */
    /* background-color: white; */
    /* color: black; */
}

.background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    /* background: linear-gradient(45deg, #60a5fa, #3b82f6); */
    filter: blur(60px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    background: linear-gradient(45deg, #818cf8, #6366f1);
}

.section-content {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}
/* 
.section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(to right, #60a5fa, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
} */

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    perspective: 1000px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    /* border: 1px solid rgba(4, 4, 4, 0.1); */
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    /* color: black; */
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(14, 14, 14, 0.1),
        transparent
    );
    transition: 0.5s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    transform: translateZ(20px) rotateX(5deg);
    border-color: rgba(3, 3, 3, 0.2);
}

.product-image-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    /* height: 400px; */
    object-fit:cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    /* background: rgba(99, 102, 241, 0.9); */
    /* background-color: rgb(99,110,113); */
    background-color: rgb(220, 218, 218);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    /* color: #fff; */
    color: black;
}

.product-description {
    font-size: 0.9rem;
    /* color: rgba(255, 255, 255, 0.7); */
    color: black;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.feature i {
    color: #818cf8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    /* background: linear-gradient(45deg, #272727f4, #c0c1c1c2); */
    /* background-color: liner; */
    background: linear-gradient(var( --steelblue-1),var( --steelblue-1),var( --steelblue-4),var( --steelblue-5));

    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* padding-top: 0px; */
    margin-top: 0px;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(129, 140, 248, 0.4);
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

.product-rating {
    display: flex;
    gap: 0.2rem;
    margin-top: 1rem;
}

.star {
    color: #fbbf24;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-amount {
    background: linear-gradient(45deg, #60a5fa, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-currency {
    font-size: 1rem;
    opacity: 0.7;
}