/* Main Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', sans-serif;
    background: linear-gradient(to bottom right, #480797, #210341);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    overflow-y: auto;
}

.background-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-circle {
    position: absolute;
    opacity: 0.3;
}

.circle1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    background: radial-gradient(circle at 30% 30%, rgba(225, 190, 231, 0.4), rgba(225, 190, 231, 0.1), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite, pulse 4s ease-in-out infinite;
}

.circle2 {
    width: 250px;
    height: 250px;
    bottom: 15%;
    left: 8%;
    background: radial-gradient(circle at 30% 30%, rgba(206, 147, 216, 0.4), rgba(206, 147, 216, 0.1), transparent);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite, pulse 5s ease-in-out infinite 1s;
}

.circle3 {
    width: 180px;
    height: 180px;
    top: 50%;
    left: 5%;
    background: radial-gradient(circle at 30% 30%, rgba(142, 36, 170, 0.3), rgba(142, 36, 170, 0.1), transparent);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite, pulse 6s ease-in-out infinite 2s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(10px) rotate(-3deg); }
}

.container {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 1100px;
    padding: 40px;
    animation: slideIn 1.2s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(225, 190, 231, 0.3));
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(225, 190, 231, 0.3));
    }
    to {
        filter: drop-shadow(0 0 25px rgba(225, 190, 231, 0.6));
    }
}

.tagline {
    font-size: 1.7rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1.5s ease-out 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #8e24aa, #5e35b1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    animation: fadeIn 1.8s ease-out 1s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(142, 36, 170, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.decorative-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e1bee7, transparent);
    margin: 30px auto;
    animation: fadeIn 2s ease-out 1.2s both;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    animation: fadeIn 2s ease-out 1.5s both;
}

.social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-links a, .social-links a i {
    cursor: pointer;
}

.social-links a:hover {
    background: linear-gradient(135deg, #8e24aa, #5e35b1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(142, 36, 170, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.coming-soon {
	text-align: center;
	margin-top: 70px;
	padding: 0 20px;
}

.coming-soon h2 {
	color: #fff;
	font-weight: 400;
	font-size: 2rem;
	margin-bottom: 15px;
    letter-spacing: 1px;
}

.coming-soon p {
	color: rgba(255,255,255,0.8);
	margin-bottom: 55px;
	font-size: 1.3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.coming-cards {
	display: flex;
	justify-content: center;
	gap: 80px;
	flex-wrap: wrap;
    margin-bottom: 40px;
}

.coming-cards a {
    cursor: default;
}

.coming-card {
	width: 200px;
	display: flex;
    flex-direction: column;
	align-items: center;
    text-decoration: none;
}

.coming-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 30px;
    transition: opacity 0.3s ease;
    cursor: zoom-in;
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-body {
    display: flex;
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    background: rgba(30, 10, 60, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    position: relative;
    animation: zoom 0.3s;
}

.modal-image-container {
    flex: 1;
    min-width: 300px;
    background: rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.modal-text {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    color: #fff;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #e1bee7;
    border-bottom: 1px solid rgba(225, 190, 231, 0.2);
    padding-bottom: 15px;
}

.modal-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.modal-description p {
    margin-bottom: 15px;
}

.key-notes {
    margin-top: 20px;
    font-size: 1.1rem;
    color: rgba(225, 190, 231, 0.9);
    font-style: italic;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
}

@keyframes zoom {
    from {transform:scale(0.9); opacity: 0;} 
    to {transform:scale(1); opacity: 1;}
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 1001;
}

.close-modal:hover,
.close-modal:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.coming-card:hover img {
    opacity: 0.9;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
    margin-bottom: 20px;
    display: block;
    text-align: center;
    letter-spacing: 1px;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    margin-top: 5px;
    margin-bottom: 15px;
}

.purchase-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 10px;
    backdrop-filter: blur(10px);
    width: 200px;
    font-family: 'Cormorant Garamond', serif;
    cursor: pointer !important;
}

.purchase-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.view-details-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
    padding: 5px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.view-details-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-1px);
}

.whatsapp-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.15);
}

.purchase-button i {
    margin-right: 8px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .logo {
        max-width: 200px;
    }
    
    .tagline {
        font-size: 1.4rem;
    }

    .coming-card {
		width: 100%;
        max-width: 160px;
	}
    
    .coming-soon h2 {
        font-size: 1.6rem;
    }

    .modal-body {
        flex-direction: column;
        width: 95%;
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-image-container {
        height: 35vh;
        min-height: 200px;
        padding: 10px;
        flex: none;
        background: rgba(0,0,0,0.3);
    }
    
    .modal-content {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .modal-text {
        padding: 20px;
        min-width: auto;
        overflow: visible;
        flex: none;
    }
    
    .modal-title {
        font-size: 1.8rem;
    }

    .close-modal {
        position: fixed;
        top: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.6);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;
        padding-bottom: 4px;
        z-index: 1002;
    }
}
