:root {
    --soft-purple: #D8B4FE;
    --soft-orange: #FFBA9D;
    --soft-yellow: #FDE68A;
    --bg-color: #FFF9F5;
    --text-color: #5D5451;
    --card-bg: #ffffff;
}
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-color);
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh; 
}

#intro-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: all 1s cubic-bezier(0.77, 0, 0.175, 1);
}

.intro-logo {
    text-align: center;
    transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.intro-logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--soft-purple);
    letter-spacing: 2px;
}


#intro-overlay.move-up {
    height: 80px; 
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.move-up .intro-logo {
    transform: scale(0.5); 
}


#main-content {
    opacity: 0;
    transition: opacity 1s ease;
    padding-top: 100px;
}

#main-content.visible {
    opacity: 1;
}

.hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}


@media (max-width: 768px) {
    .intro-logo h1 { font-size: 2rem; }
    .hero h2 { font-size: 1.8rem; }
}

.fade-out {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 1s ease;
}


.gallery-hidden {
    opacity: 0;
    transform: translateY(30px);
    display: none; 
}


.gallery-show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    transition: all 1.2s ease;
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.product-card {
   
    background: var(--card-bg);
    border-radius: 20px;
    border-bottom: 4px solid var(--soft-orange);
    min-height: 400px; 
    display: flex;
    flex-direction: column; 
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px); 
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1300px;
    margin: 0 auto;
}


.slider-container {
    position: relative;
    width: 100%;
    height: 250px; 
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slider-wrapper img {
    min-width: 100%;
    height: 100%;
    object-fit: cover; 
}


.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.7);
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s;
}

.slide-btn:hover { background: white; }
.prev { left: 10px; }
.next { right: 10px; }


.product-info {
    padding: 15px;
    text-align: center;
}
.order-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    color: white; 
    background-color: var(--soft-purple); 
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 50px; 
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(216, 180, 254, 0.3);
    position: relative;
    border-bottom: 3px solid rgba(0,0,0,0.1); 
}

.order-link:hover {
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(216, 180, 254, 0.5); 
    background-color: #c084fc; 
}

.order-link:active {
    transform: translateY(0); 
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr; 
        padding: 15px;
        gap: 20px;
    }

    .product-card {
        min-height: auto; 
    }

    .hero h2 {
        font-size: 1.5rem;
        padding: 0 10px;
    }
}

.main-footer {
    background-color: #fff; 
    padding: 30px 20px;
    margin-top: auto; 
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    border-top: 1px solid rgba(0,0,0,0.03);
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px; 
    align-items: center;
}

.footer-social a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.05); 
}
.footer-social i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
    background-clip: text; 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
    font-size: 1.5rem;
    display: inline-block; 
}

.designer-tag {
    font-size: 0.75rem;
    color: #bbb;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5px;
}

.designer-tag span {
    color: var(--soft-purple);
    font-weight: 700;
    position: relative;
    transition: 0.3s;
}


.designer-tag span:hover {
    text-shadow: 0 0 8px var(--soft-purple);
    cursor: pointer;
}


.my-signature {
    color: var(--soft-purple); 
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.my-signature:hover {
    transform: translateY(-2px); 
    text-shadow: 0 5px 15px rgba(216, 180, 254, 0.4);
    color: var(--soft-orange);
}


#main-content {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
     flex: 1; 
}

#product-gallery {
    flex: 1; 

}

.custom-form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(216, 180, 254, 0.15);
    text-align: center;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 600;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-family: inherit;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus {
    border-color: var(--soft-purple);
}

.order-link-v2 {
    width: 100%;
    background-color: #25D366; 
    color: white;
    padding: 15px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.order-link-v2:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.color-options {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.color-options label {
    font-weight: 400 !important;
    background: #fdfdfd;
    padding: 5px 15px;
    border-radius: 20px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: 0.3s;
}

.color-options input[type="radio"]:checked + label {
    background: var(--soft-purple);
    color: white;
    border-color: var(--soft-purple);
}

.color-options input[type="radio"] {
    display: none;
}

#otherColor {
    border: 1px dashed var(--soft-purple); 
    background: #fffafa;
}
