/* Partner Detail Section */
.partner-detail-section {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, #ffffff 70%);
}

.partner-logo-container {
    padding: 2rem;
    background-color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border: 1px solid #f8f9fa;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.02);
}

.partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.partner-name {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.partner-name::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 5px;
    background-color: var(--color-primary);
}

.partner-description {
    color: #4a4a4a;
    line-height: 1.8;
    font-size: 1.15rem;
}

.partner-description p {
    margin-bottom: 1.5rem;
}

.lead-custom {
    font-weight: 400;
}

.btn-gradient {
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(var(--color-primary-rgb), 0.2);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(var(--color-primary-rgb), 0.3);
}


/* Product Card */
.product-card {
    border: 1px solid #eee;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    background-color: #fff;
    overflow: hidden;
}

.product-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.product-img-container {
    overflow: hidden;
    aspect-ratio: 1/1;
}

.product-img {
    object-fit: cover;
    background-color: #eee;
    transition: transform 0.4s ease;
    width: 100%;
    height: 100%;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-title {
    color: var(--color-heading);
    font-weight: 700;
    text-decoration: none;
    line-height: 1.5;
}

.product-category {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.product-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.product-link:hover {
    gap: 0.8rem;
    color: var(--color-primary);
    text-decoration: underline;
}

.btn-gradient-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}