/**
 * CPAP Valentines Page - Premium Redesign
 * Brand Colors: Red #e94132, Blue #0a2b62
 * Font: Montserrat
 */

/* ============================================
   HERO SECTION - Premium Design
   ============================================ */
.valentines-hero {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fff5f7 0%, #ffeef0 100%);
    padding: 80px 0;
}

.valentines-hearts-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.valentines-heart {
    position: absolute;
    font-size: 28px;
    opacity: 0.1;
    animation: float 12s ease-in-out infinite;
}

.valentines-heart-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.valentines-heart-2 {
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(8deg);
    }
}

.valentines-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.valentines-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.valentines-hero-content {
    text-align: left;
}

.valentines-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(233, 65, 50, 0.1);
    color: #e94132;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
    border: 2px solid rgba(233, 65, 50, 0.2);
}

.valentines-heart-accent {
    font-size: 18px;
    opacity: 0.9;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.valentines-hero-title {
    font-size: 56px;
    font-weight: 900;
    color: #0a2b62;
    margin: 0 0 20px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.valentines-hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #5a6470;
    margin: 0 0 48px;
    line-height: 1.5;
    font-style: italic;
}

.valentines-hero-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.valentines-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e94132;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    padding: 16px 36px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(233, 65, 50, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.valentines-hero-btn-primary:hover {
    background: #d12e1f;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(233, 65, 50, 0.4);
}

.valentines-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #0a2b62;
    text-decoration: none;
    font-size: 16px;
    font-weight: 800;
    padding: 16px 36px;
    border-radius: 50px;
    border: 2px solid #0a2b62;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.valentines-hero-btn-secondary:hover {
    background: rgba(10, 43, 98, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(10, 43, 98, 0.2);
}

.valentines-hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.valentines-hero-image {
    position: relative;
    width: 100%;
    max-width: 550px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(233, 65, 50, 0.2);
    background: #ffffff;
}

.valentines-hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.valentines-hero-image:hover .valentines-hero-img {
    transform: scale(1.05);
}

/* ============================================
   MAIN CONTENT SECTION
   ============================================ */
.valentines-main {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    padding: 100px 24px;
    position: relative;
}

.valentines-content-wrapper {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
}

.valentines-content {
    position: relative;
}

.valentines-headline {
    font-size: 44px;
    font-weight: 900;
    color: #0a2b62;
    margin: 0 0 20px;
    line-height: 1.2;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    letter-spacing: -0.02em;
}

.valentines-headline-heart {
    font-size: 32px;
    opacity: 0.7;
    animation: pulse 2s ease-in-out infinite;
}

.valentines-subheadline {
    font-size: 26px;
    font-weight: 500;
    color: #5a6470;
    margin: 0 0 60px;
    line-height: 1.5;
    text-align: center;
    font-style: italic;
}

.valentines-body {
    color: #243247;
}

.valentines-card,
.valentines-offer-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #e6e6e6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.valentines-card::before,
.valentines-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e94132 0%, #ff6b5e 50%, #e94132 100%);
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.valentines-card:hover,
.valentines-offer-card:hover {
    box-shadow: 0 8px 24px rgba(233, 65, 50, 0.12);
    border-color: #fee2e2;
    transform: translateY(-4px);
}

.valentines-offer-card {
    padding: 36px 40px;
}

.valentines-paragraph {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6470;
    margin: 0;
    font-weight: 400;
}

.valentines-link {
    color: #e94132;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.valentines-link:hover {
    color: #d12e1f;
    border-bottom-color: #e94132;
}

.valentines-price {
    color: #e94132;
    font-weight: 800;
    font-size: 26px;
}

.valentines-code {
    color: #e94132;
    font-weight: 700;
    font-size: 18px;
    background: rgba(233, 65, 50, 0.1);
    padding: 6px 16px;
    border-radius: 8px;
    border: 2px solid rgba(233, 65, 50, 0.2);
    display: inline-block;
    margin: 0 6px;
    letter-spacing: 0.05em;
    font-family: 'Courier New', monospace;
}

.valentines-closing-card {
    background: linear-gradient(135deg, #fff5f7 0%, #ffeef0 100%);
    padding: 48px 40px;
    border-radius: 16px;
    margin-top: 40px;
    text-align: center;
    border: 2px solid #fee2e2;
    position: relative;
    box-shadow: 0 4px 20px rgba(233, 65, 50, 0.1);
}

.valentines-closing-icon {
    font-size: 40px;
    margin-bottom: 16px;
    opacity: 0.9;
    animation: pulse 2s ease-in-out infinite;
}

.valentines-closing {
    font-size: 24px;
    font-weight: 700;
    color: #e94132;
    margin: 0;
    line-height: 1.6;
    font-style: italic;
}

/* ============================================
   VALENTINE CARDS GALLERY
   ============================================ */
.valentines-cards-section {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
    padding: 100px 24px;
    position: relative;
}

.valentines-cards-header {
    text-align: center;
    margin-bottom: 60px;
}

.valentines-cards-title {
    font-size: 42px;
    font-weight: 900;
    color: #0a2b62;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    letter-spacing: -0.02em;
}

.valentines-cards-heart {
    font-size: 32px;
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}

.valentines-cards-subtitle {
    font-size: 20px;
    color: #6b7280;
    margin: 0;
    font-style: italic;
    font-weight: 400;
}

.valentines-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .valentines-cards-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.valentines-card-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.valentines-card-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 12px 40px rgba(233, 65, 50, 0.2);
    border-color: #fee2e2;
}

.valentines-card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #ffffff;
}

.valentines-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.valentines-card-item:hover .valentines-card-image {
    transform: scale(1.08);
}

/* ============================================
   FOOTER/DISCLAIMER SECTION
   ============================================ */
.valentines-footer-section {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    padding: 80px 24px;
    border-top: 1px solid #e6e6e6;
}

.valentines-disclaimer {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.valentines-disclaimer-text {
    font-size: 13px;
    line-height: 1.8;
    color: #6b7280;
    margin: 0 0 16px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.valentines-credit-link {
    color: #e94132;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.valentines-credit-link:hover {
    color: #d12e1f;
    text-decoration: underline;
}

.valentines-footer-button-wrapper {
    margin-top: 40px;
    text-align: center;
}

.valentines-footer-shop-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    background: #e94132;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    padding: 16px 36px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(233, 65, 50, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.valentines-footer-shop-btn:hover {
    background: #d12e1f;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(233, 65, 50, 0.4);
}

.valentines-footer-shop-btn i {
    font-size: 20px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .valentines-hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .valentines-hero-content {
        text-align: center;
    }

    .valentines-hero-actions {
        justify-content: center;
    }

    .valentines-hero-image-wrapper {
        order: -1;
    }

    .valentines-hero-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .valentines-hero {
        min-height: auto;
        padding: 60px 0;
    }

    .valentines-hero-badge {
        font-size: 14px;
        padding: 8px 20px;
        margin-bottom: 24px;
    }

    .valentines-hero-title {
        font-size: 36px;
        margin-bottom: 16px;
    }

    .valentines-hero-subtitle {
        font-size: 20px;
        margin-bottom: 36px;
    }

    .valentines-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .valentines-hero-btn-primary,
    .valentines-hero-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .valentines-main {
        padding: 70px 20px;
    }

    .valentines-headline {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .valentines-headline-heart {
        font-size: 24px;
    }

    .valentines-subheadline {
        font-size: 20px;
        margin-bottom: 50px;
    }

    .valentines-card,
    .valentines-offer-card {
        padding: 32px 28px;
        margin-bottom: 24px;
    }

    .valentines-paragraph {
        font-size: 17px;
    }

    .valentines-closing-card {
        padding: 40px 32px;
    }

    .valentines-closing {
        font-size: 22px;
    }

    .valentines-cards-section {
        padding: 70px 20px;
    }

    .valentines-cards-title {
        font-size: 32px;
    }

    .valentines-cards-heart {
        font-size: 26px;
    }

    .valentines-cards-subtitle {
        font-size: 18px;
    }

    .valentines-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .valentines-footer-section {
        padding: 60px 20px;
    }

    .valentines-footer-shop-btn {
        font-size: 16px;
        padding: 14px 32px;
    }
}

@media (max-width: 480px) {
    .valentines-hero {
        min-height: 450px;
    }

    .valentines-hero-content {
        padding: 50px 0;
    }

    .valentines-hero-title {
        font-size: 28px;
    }

    .valentines-hero-subtitle {
        font-size: 18px;
    }

    .valentines-headline {
        font-size: 26px;
        flex-direction: column;
        gap: 12px;
    }

    .valentines-headline-heart {
        font-size: 20px;
    }

    .valentines-subheadline {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .valentines-card,
    .valentines-offer-card {
        padding: 28px 24px;
        border-radius: 12px;
    }

    .valentines-paragraph {
        font-size: 16px;
    }

    .valentines-closing-icon {
        font-size: 32px;
    }

    .valentines-closing {
        font-size: 20px;
    }

    .valentines-cards-title {
        font-size: 26px;
        flex-direction: column;
        gap: 10px;
    }

    .valentines-cards-heart {
        font-size: 22px;
    }

    .valentines-cards-subtitle {
        font-size: 16px;
    }

    .valentines-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .valentines-disclaimer-text {
        font-size: 12px;
    }

    .valentines-footer-shop-btn {
        font-size: 15px;
        padding: 12px 28px;
    }
}
