/* Products Redesign CSS */

.products-redesign-section {
    background: linear-gradient(180deg, #020b16 0%, #061c36 100%);
    padding: 80px 0;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Background accents */
.products-redesign-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    z-index: 0;
}
.products-redesign-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(77, 166, 255, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.products-redesign-section .custom-container {
    position: relative;
    z-index: 1;
}

/* Title Area */
.products-redesign-section .title-1 {
    margin-bottom: 50px;
}
.products-redesign-section .title-1 .subtitle {
    color: #a0aec0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}
.products-redesign-section .title-1 h3 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}
.products-redesign-section .title-1 h3 span {
    color: #d4af37;
}
.products-redesign-section .title-1 .description {
    color: #a0aec0;
    font-size: 15px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Product Card */
.pr-product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.pr-product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background: rgba(255, 255, 255, 0.05);
}

.pr-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.pr-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pr-product-card:hover .pr-img-wrapper img {
    transform: scale(1.1);
}

.pr-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pr-product-card:hover .pr-overlay {
    opacity: 1;
}

.pr-btn {
    background: linear-gradient(90deg, #b8860b, #d4af37);
    color: #000;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.pr-btn:hover {
    color: #000;
    filter: brightness(1.1);
}

.pr-product-card:hover .pr-btn {
    transform: translateY(0);
}

.pr-content {
    padding: 20px 5px 5px 5px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pr-content a {
    text-decoration: none;
}

.pr-content h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.pr-product-card:hover .pr-content h5 {
    color: #d4af37;
}

@media (max-width: 767px) {
    .products-redesign-section .title-1 h3 {
        font-size: 32px;
    }
}
