/* Contact Section */
.offer-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

.contact-section {
    padding: 3rem 0;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.contact-item:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(220, 0, 0, 0.4);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 24px;
    transition: color 0.3s ease;
}

.contact-item:hover i {
    color: #ffffff;
}

.contact-item span {
    font-weight: 500;
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: translate(-50%, -50%) scale(0.7);
    }

    to {
        transform: translate(-50%, -50%) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--primary-color);
    transform: scale(1.2);
}

.product-image-wrapper {
    cursor: zoom-in;
}

/* Update product title color for dark theme */
.product-title {
    color: #000000;
}

.feature-item {
    color: #000000;
}

.regular-price {
    color: #000000;
}

/* Update countdown label for dark theme is already handled in style.css */

.launch-completed {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    border-radius: 8px;
    animation: pulse 2s ease-in-out infinite;
}