/* Product List Section */
.product-list {
    padding: 2rem 0;
    background-color: #f8f9fa;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: var(--background-white);
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05), 0 10px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.08), 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--accent-color);
}


.product-card__image {
    width: 100%;
    height: 220px; /* Reduced height for better balance */
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card__image {
    transform: scale(1.03);
}

.product-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: var(--background-white);
}

.product-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-card__text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.product-card__link {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.product-card__link:hover {
    color: var(--primary-color);
}

.product-card__link span {
    margin-left: 0.3rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.product-card__link:hover span {
    transform: translateX(5px);
}

/* Product Card V2 Styles */
.product-grid--v2 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product-card-v2 {
    position: relative;
    /* border-radius: 15px; */
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.product-card-v2__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card-v2:hover .product-card-v2__image {
    transform: scale(1.1);
}

.product-card-v2__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
}

.product-card-v2__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--background-white);
    text-align: center;
}

.product-card-v2__initial {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 2;
}

.product-card-v2__title {
    color: var(--background-white);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.product-card-v2__icon {
    font-size: 1rem;
    display: inline-block;
    transition: transform 0.4s ease;
}

.product-card-v2:hover .product-card-v2__icon {
    transform: rotate(180deg);
}

.product-card-v2__hover-content {
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.5s ease;
}

.product-card-v2:hover .product-card-v2__hover-content {
    transform: translateY(0);
    opacity: 1;
}

.product-card-v2:hover .product-card-v2__initial {
    transform: translateY(-160px); /* Increased value to prevent overlap */
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card-v2__text {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Redesigned Product Card Styles */
.product-grid--redesigned {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.product-card-redesigned {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    height: 350px;
    background-color: #fff;
}

.product-card-redesigned__inner {
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.product-card-redesigned:hover .product-card-redesigned__inner {
    transform: translateX(-50%);
}

.product-card-redesigned__image-wrapper,
.product-card-redesigned__content {
    width: 50%;
    height: 100%;
    flex-shrink: 0;
}

.product-card-redesigned__image-wrapper {
    position: relative;
}

.product-card-redesigned__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-redesigned__content {
    background-color: #2a2e53;
    color: #ffffff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-card-redesigned__icon-wrapper {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    padding: 15px;
    border-radius: 8px;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.product-card-redesigned:hover .product-card-redesigned__icon-wrapper {
    background-color: #0056b3;
}

.product-card-redesigned__icon {
    width: 40px;
    height: 40px;
}

.product-card-redesigned__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-card-redesigned__text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.product-card-redesigned__link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #00bfff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card-redesigned__link:hover {
    color: #ffffff;
}

.product-card-redesigned__link span {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.product-card-redesigned__link:hover span {
    transform: translateX(5px);
}

/* V3 Product Card Styles */
.product-grid--v3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: start;
}

.product-card-v3 {
    background-color: var(--background-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    height: 450px;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.product-card-v3:hover {
    width: 200%;
    height: 300px;
    flex-direction: row;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    z-index: 10;
}

.product-card-v3__image-wrapper {
    height: 55%;
    width: 100%;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card-v3:hover .product-card-v3__image-wrapper {
    height: 100%;
    width: 50%;
}

.product-card-v3__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-v3:hover .product-card-v3__image {
    transform: scale(1.05);
}

.product-card-v3__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
}

.product-card-v3:hover .product-card-v3__content {
    width: 50%;
    text-align: left;
    align-items: flex-start;
}

.product-card-v3__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.product-card-v3__text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 1.5rem;
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.product-card-v3:hover .product-card-v3__text {
    max-height: 200px;
}


.product-card-v3__link {
    font-size: 1rem;
    font-weight: 700;
    color: var(--background-white);
    background-color: var(--accent-color);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    align-self: center;
}

.product-card-v3:hover .product-card-v3__link {
    align-self: flex-start;
}

.product-card-v3__link:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

/* V4 Product Card Styles */
.product-grid-wrapper {
    perspective: 1000px;
}

.product-grid--v4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card-v4 {
    width: 300px;
    height: 300px;
    position: relative;
    transition: transform 0.6s, box-shadow 0.6s;
    transform-style: preserve-3d;
}

.product-card-v4__visible,
.product-card-v4__hidden {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    overflow: hidden;
}

.product-card-v4__visible {
    background-color: #2a2e53;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    z-index: 2;
    transform: rotateY(0deg);
}

.product-card-v4__hidden {
    background-color: var(--background-white);
    display: flex;
    transform: rotateY(180deg);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.product-grid--v4:hover .product-card-v4:not(:hover) {
    transform: translateX(10%);
}

.product-card-v4:hover {
    transform: translateX(-10%) rotateY(180deg);
    width: 600px;
}

.product-card-v4__image-wrapper {
    width: 50%;
    height: 100%;
}

.product-card-v4__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-v4__content {
    width: 50%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-card-v4__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-card-v4__text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-card-v4__link {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    align-self: flex-start;
}

.product-card-v4__link:hover {
    color: var(--primary-color);
}

/* Product Header Styles */
.product-header {
    text-align: center;
}

.product-header__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-header__text {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

/* V5 Product Card Styles */
.product-grid--v5 {
    display: flex;
    gap: 1rem;
    align-items: center;
    min-height: 400px;
}

.product-card-v5 {
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-card-v5:not(.active) {
    width: 335px;
    height: 300px;
}

.product-card-v5:not(.active) .product-card-v5__content {
    display: none;
}

.product-card-v5.active {
    width: 600px;
    height: 300px;
    display: flex;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.product-card-v5__image-wrapper {
    width: 100%;
    height: 100%;
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.product-card-v5__title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card-v5:not(.active) .product-card-v5__title-overlay {
    opacity: 1;
}

.product-card-v5.active .product-card-v5__image-wrapper {
    width: 60%;
}

.product-card-v5__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-v5__content {
    background: var(--background-white);
    padding: 1rem;
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
}

.product-card-v5.active .product-card-v5__content {
    transform: translateX(0);
}

.product-card-v5__title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-card-v5__text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-card-v5__link {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    align-self: flex-start;
}

.product-card-v5__link:hover {
    color: var(--primary-color);
}

/*-----------------------------------*\
 * #ABOUT HERO
\*-----------------------------------*/

.product-hero {
    position: relative;
    padding: 10vh 0;
    background-image: url('/siteassets/images/banners/genericbanner2.jpg');
    background-size: cover;
    background-position: center;
    color: var(--background-white);
    height: auto;
}

.product-hero__content {
    text-align: left;
}

.product-hero__page-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-hero__title {
    color: var(--background-white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.product-hero__description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}