/* ============================================================
   PRODUCTS PAGE STYLES
   ============================================================ */

/* ============================================================
   PRODUCTS HERO SECTION
   ============================================================ */

.products-hero {
    background: linear-gradient(135deg, #0f3460 0%, #14a2dc 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.products-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.products-hero__content {
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

.products-hero__title {
    font-size: 56px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.products-hero__subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .products-hero {
        padding: 60px 0;
    }

    .products-hero__title {
        font-size: 40px;
    }

    .products-hero__subtitle {
        font-size: 18px;
    }
}

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */

.products-section {
    padding: 80px 0;
    background: #f8f9fa;
    min-height: 100vh;
}

.products-col {
    margin-bottom: 30px;
    display: flex;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */

.product-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.product-card.featured {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.product-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Featured Badge */
.featured-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ed9b33, #f5b041);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 3px 10px rgba(237, 155, 51, 0.3);
}

/* Product Card Image Wrapper */
.product-card__image-wrapper {
    position: relative;
    height: 300px;
    background: #f8f9fa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__color-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    z-index: 5;
}

.product-card__color-bar.blue-bar {
    background: linear-gradient(90deg, #00b2e2, #0099cc);
}

.product-card__color-bar.orange-bar {
    background: linear-gradient(90deg, #ed9b33, #f5b041);
}

.product-card__color-bar.red-bar {
    background: linear-gradient(90deg, #c41e3a, #a01a31);
}

.product-card__image {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

/* Product Badge */
.product-card__badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    z-index: 5;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.product-card__badge.blue-badge {
    background: #00b2e2;
}

.product-card__badge.orange-badge {
    background: #ed9b33;
}

.product-card__badge.red-badge {
    background: #c41e3a;
}

/* Product Card Content */
.product-card__content {
    padding: 30px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #14a2dc;
}

.semaglutide-card .product-card__title {
    color: #00b2e2;
}

.retatrutide-card .product-card__title {
    color: #ed9b33;
}

.tirzepatide-card .product-card__title {
    color: #c41e3a;
}

.product-card__strength {
    font-size: 16px;
    font-weight: 600;
    color: #707070;
    margin-bottom: 5px;
}

.product-card__dosage {
    font-size: 14px;
    color: #999999;
    margin-bottom: 20px;
    font-style: italic;
}

/* Product Features */
.product-card__features {
    flex-grow: 1;
    margin-bottom: 25px;
}

.product-card__features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-card__features li {
    font-size: 13px;
    color: #666666;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.product-card__features i {
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 12px;
    color: #14a2dc;
}

.semaglutide-card .product-card__features i {
    color: #00b2e2;
}

.retatrutide-card .product-card__features i {
    color: #ed9b33;
}

.tirzepatide-card .product-card__features i {
    color: #c41e3a;
}

/* Product Button */
.product-card__btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
    width: 100%;
}

.product-card__btn.blue-btn {
    background: linear-gradient(135deg, #00b2e2, #0088cc);
}

.product-card__btn.blue-btn:hover {
    background: linear-gradient(135deg, #0099cc, #0077bb);
    box-shadow: 0 5px 15px rgba(0, 178, 226, 0.3);
}

.product-card__btn.orange-btn {
    background: linear-gradient(135deg, #ed9b33, #f5b041);
}

.product-card__btn.orange-btn:hover {
    background: linear-gradient(135deg, #f5b041, #f8c856);
    box-shadow: 0 5px 15px rgba(237, 155, 51, 0.3);
}

.product-card__btn.red-btn {
    background: linear-gradient(135deg, #c41e3a, #a01a31);
}

.product-card__btn.red-btn:hover {
    background: linear-gradient(135deg, #a01a31, #8a1428);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

@media (max-width: 768px) {
    .product-card {
        margin-bottom: 20px;
    }

    .product-card.featured {
        transform: scale(1);
    }

    .product-card.featured:hover {
        transform: translateY(-10px);
    }

    .product-card__title {
        font-size: 24px;
    }

    .product-card__content {
        padding: 20px;
    }
}

/* ============================================================
   PRODUCT COMPARISON SECTION
   ============================================================ */

.product-comparison {
    padding: 80px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #14a2dc;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00b2e2, #ed9b33, #c41e3a);
    border-radius: 2px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: linear-gradient(135deg, #0f3460, #14a2dc);
    color: #ffffff;
}

.comparison-table th {
    padding: 25px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    border: none;
}

.comparison-table th span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-top: 5px;
}

.semaglutide-text {
    color: #5ddef0 !important;
}

.retatrutide-text {
    color: #ffc966 !important;
}

.tirzepatide-text {
    color: #ff7a99 !important;
}

.comparison-table td {
    padding: 20px 25px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
    font-size: 15px;
    color: #666666;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: #14a2dc;
}

@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 12px;
    }

    .comparison-table th span {
        font-size: 14px;
    }
}

/* ============================================================
   WHY CHOOSE VLS SECTION
   ============================================================ */

.why-choose-vls {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.feature-box {
    text-align: center;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-box__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #14a2dc, #0f7ba7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
}

.feature-box:nth-child(2) .feature-box__icon {
    background: linear-gradient(135deg, #00b2e2, #0088cc);
}

.feature-box:nth-child(3) .feature-box__icon {
    background: linear-gradient(135deg, #ed9b33, #d98b1f);
}

.feature-box:nth-child(4) .feature-box__icon {
    background: linear-gradient(135deg, #c41e3a, #a01a31);
}

.feature-box__title {
    font-size: 20px;
    font-weight: 700;
    color: #14a2dc;
    margin-bottom: 15px;
}

.feature-box__text {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .why-choose-vls {
        padding: 60px 0;
    }

    .feature-box {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .feature-box__icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .feature-box__title {
        font-size: 18px;
    }
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f3460 0%, #14a2dc 50%, #0f7ba7 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border: none;
}

.btn-primary {
    background: #ffffff;
    color: #14a2dc;
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */

@media (max-width: 992px) {
    .products-section {
        padding: 60px 0;
    }

    .product-comparison {
        padding: 60px 0;
    }

    .why-choose-vls {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .products-hero__title {
        font-size: 32px;
    }

    .products-hero__subtitle {
        font-size: 16px;
    }

    .product-card__title {
        font-size: 22px;
    }

    .product-card__features li {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 14px;
    }
}

/* ============================================================
   PRODUCT IMAGE ZOOM ICON
   ============================================================ */

.product-card__zoom-icon {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s ease;
    color: #ffffff;
    font-size: 18px;
}

.product-card__image-wrapper:hover .product-card__zoom-icon {
    opacity: 1;
    transform: scale(1);
}

.product-card__zoom-icon:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1) !important;
}

/* ============================================================
   IMAGE LIGHTBOX MODAL
   ============================================================ */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox--active {
    pointer-events: all;
    opacity: 1;
}

.lightbox__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
}

.lightbox__container {
    position: relative;
    z-index: 1;
    background: #1a1a2e;
    border-radius: 16px;
    padding: 30px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox--active .lightbox__container {
    transform: scale(1);
}

.lightbox__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.2s ease;
    z-index: 2;
}

.lightbox__close:hover {
    color: #14a2dc;
}

.lightbox__title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.lightbox__image-wrapper {
    width: 100%;
    max-height: 60vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #ffffff;
    padding: 20px;
    margin-bottom: 20px;
}

.lightbox__image {
    max-width: 100%;
    max-height: 55vh;
    object-fit: contain;
    transition: transform 0.2s ease;
    user-select: none;
}

.lightbox__controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
}

.lightbox__controls button {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lightbox__controls button:hover {
    background: #14a2dc;
}

.lightbox__zoom-reset {
    width: auto !important;
    border-radius: 20px !important;
    padding: 0 14px !important;
    font-size: 12px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lightbox__zoom-level {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    min-width: 45px;
    text-align: center;
}

/* ============================================================
   RESPONSIVE - LIGHTBOX
   ============================================================ */

@media (max-width: 768px) {
    .lightbox__container {
        width: 95%;
        padding: 20px;
        border-radius: 12px;
    }

    .lightbox__title {
        font-size: 17px;
    }

    .lightbox__image-wrapper {
        padding: 15px;
    }

    .lightbox__controls {
        padding: 8px 14px;
        gap: 8px;
    }

    .lightbox__controls button {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 576px) {
    .product-card__zoom-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .lightbox__container {
        width: 98%;
        padding: 15px;
    }
}
