:root {
    --primary-pink: #f78da7;
    --pastel-lavender: #e5c3ff;
    --soft-beige: #fff5e4;
    --mint-green: #b4e1c7;
    --text-dark: #4a3b3b;
    --accent-gold: #f1c27d;
}

/* الخطوط الأساسية */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

.playfair {
    font-family: 'Playfair Display', serif;
}

/* التدرجات والخلفيات */
/* خلفية hero */

.hero-gradient {
    width: 100%;
    height: 100vh; /* يغطي كامل الشاشة */
    background: url("https://i.pinimg.com/1200x/3b/b8/bc/3bb8bc339b614f96dbab386332c6d3b8.jpg") repeat-y center top / cover;
    animation: backgroundMove 20s linear infinite;
}


/* تحريك الخلفية بشكل مستمر إلى الأسفل */
@keyframes backgroundMove {
    0% {
        background-position: center 0%;
    }
    100% {
        background-position: center 100%;
    }
}

/* متوافق مع الهواتف */
@media (max-width: 768px) {
    .hero-gradient {
        height: 70vh;
    }
}


/* 🧩 عند إضافة الكلاس no-bg تُزال الخلفية */
.hero-gradient.no-bg {
    background: none !important;        /* إزالة الصورة */
    animation: none !important;         /* إيقاف الحركة */
    background-color: #fdf2f8;          /* لون خلفية بسيط بديل */
}



.pastel-bg {
    background-color: var(--soft-beige);
}

/* صناديق المنتجات */
.gift-box {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    background: linear-gradient(145deg, #fdfdfd, #ffffff);
    display: flex;
    flex-direction: column;
    perspective: 1000px; /* enables 3D depth */
}

/* Image styling */
/* Image styling with animation */
.gift-box img {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    margin: 10px;
    height: 280px;
    object-fit: fill;
    transition: transform 0.6s ease, filter 0.5s ease;
    transform-style: preserve-3d;

   
}

/* ✨ تعريف الحركة */
@keyframes imageEnter {
    0% {
        opacity: 0;
        transform: scale(0.9) rotateY(-10deg);
        filter: brightness(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.03) rotateY(5deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotateY(0deg);
        filter: brightness(1);
    }
    
    /*product order start*/
    
     /*product order end*/
}
/* Hover animation */
.gift-box:hover img {
    transform: rotateY(15deg) rotateX(8deg) scale(1.08);
    filter: brightness(1.1) contrast(1.05);
    animation: float3D 4s ease-in-out infinite;
}

/* Floating 3D effect */
@keyframes float3D {
    0%, 100% {
        transform: rotateY(15deg) rotateX(8deg) translateY(0) scale(1.08);
    }
    50% {
        transform: rotateY(-15deg) rotateX(-8deg) translateY(-10px) scale(1.1);
    }
}


/* Hover animation */
.gift-box:hover img {
    transform: rotateY(15deg) rotateX(8deg) scale(1.08);
    filter: brightness(1.1) contrast(1.05);
    animation: float3D 4s ease-in-out infinite;
}

/* Floating + rotation effect */
@keyframes float3D {
    0%, 100% {
        transform: rotateY(15deg) rotateX(8deg) translateY(0) scale(1.08);
    }
    50% {
        transform: rotateY(-15deg) rotateX(-8deg) translateY(-10px) scale(1.1);
    }
}


.gift-box .p-6 {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gift-box h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-family: 'Segoe UI', sans-serif;
}

.gift-box p {
    color: #555;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
}

.gift-box span.text-rose-500 {
    font-weight: bold;
    font-size: 1.1rem;
    color: #e11d48;
}

.gift-box .order-now-btn {
    background: linear-gradient(90deg, #f43f5e, #ec4899);
    color: white;
    font-weight: 500;
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    border-radius: 9999px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(236, 72, 153, 0.4);
}

.gift-box .order-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(236, 72, 153, 0.5);
}

.gift-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

section.grid {
    gap: 2rem;
}

/* تأثيرات الظهور */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* النافذة المنبثقة */
#orderPopup {
    backdrop-filter: blur(6px);
}

#orderPopup > div {
    border-radius: 25px;
    padding: 2rem;
    width: 24rem;
    max-width: 90%;
    background: linear-gradient(145deg, #fff0f5, #ffe4e1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    position: relative;
    transition: all 0.3s ease;
}

/* زر الإغلاق */
#closePopup {
    background: none;
    border: none;
    font-size: 2rem;
    color: #040a14;
    transition: color 0.3s ease;
}
#closePopup:hover {
    color: #e11d48;
}

/* خطوات الطلب */
.step {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.step h2 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 0.5rem;
}

.step label {
    font-weight: 500;
    color: #374151;
}

.step input, .step select {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.step input:focus, .step select:focus {
    border-color: #ec4899;
    box-shadow: 0 0 0 3px rgba(236,72,153,0.2);
}

.step span {
    color: #ef4444;
    font-size: 0.85rem;
}

/* أزرار التنقل */
#next1, #next2 {
    background: linear-gradient(90deg, #f43f5e, #ec4899);
    color: white;
    border: none;
    box-shadow: 0 3px 8px rgba(236, 72, 153, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
}
#next1:hover, #next2:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(236, 72, 153, 0.5);
}

#prev2, #prev3 {
    background: #d1d5db;
    color: #374151;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
}
#prev2:hover, #prev3:hover {
    background: #9ca3af;
}

#submitOrder {
    background: linear-gradient(90deg, #22c55e, #16a34a);
    color: white;
    border: none;
    box-shadow: 0 3px 8px rgba(34,197,94,0.4);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 500;
    transition: all 0.3s ease;
}
#submitOrder:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(34,197,94,0.5);
}

#step3 p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 0.5rem;
}

:root {
  --soft-bg: #fffafc;
  --text-dark: #4a3b3b;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--soft-bg);
  color: var(--text-dark);
}

.playfair {
  font-family: 'Playfair Display', serif;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}
:root {
    --primary-pink: #f78da7;
    --soft-beige: #fff5e4;
    --text-dark: #4a3b3b;
}
body { font-family: 'Poppins', sans-serif; color: var(--text-dark); background-color: var(--soft-beige); }
.playfair { font-family: 'Playfair Display', serif; }
.product-card { transition: all 0.3s ease; border-radius: 20px; }
.product-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.special-box { box-shadow: 0 8px 20px rgba(0,0,0,0.1); transition: all 0.5s ease; border-radius: 1.5rem; }
.special-box:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.order-btn { box-shadow: 0 4px 12px rgba(0,0,0,0.1); transition: all 0.3s ease; }
.order-btn:hover { transform: scale(1.05); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  transition: 0.4s;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
:root {
            --primary-pink: #f78da7;
            --pastel-lavender: #e5c3ff;
            --soft-beige: #fff5e4;
            --mint-green: #b4e1c7;
            --text-dark: #4a3b3b;
            --accent-gold: #f1c27d;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
        }
        
        .playfair {
            font-family: 'Playfair Display', serif;
        }
        
        .pastel-bg {
            background-color: var(--soft-beige);
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
        }
        
        .playfair {
            font-family: 'Playfair Display', serif;
        }
        
        .pastel-bg {
            background-color: var(--soft-beige);
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .highlight-box {
            background: linear-gradient(135deg, var(--mint-green) 0%, var(--pastel-lavender) 100%);
        }

/* روابط القائمة */
.nav-link {
    color: #4a4a4a; /* لون أساسي */
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* تأثير hover ثلاثي الأبعاد */
.nav-link:hover {
    color: #ff1493; /* اللون الوردي عند المرور */
    transform: rotateX(10deg) rotateY(15deg) translateZ(10px) scale(1.05);
}

/* تأثير fade-in مع حركة خفيفة عند ظهور الصفحة */
.animated-nav .nav-link {
    opacity: 0;
    transform: translateY(10px) translateZ(0px);
    animation: fadeSlideNav 1.5s ease forwards;
}

/* keyframes للظهور */
@keyframes fadeSlideNav {
    0% {
        opacity: 0;
        transform: translateY(10px) translateZ(0px);
    }
    100% {
        opacity: 1;
        transform: translateY(0px) translateZ(0px);
    }
}

/* تأخير ظهور الروابط بالتتابع */
.animated-nav .nav-link:nth-child(1) { animation-delay: 0.2s; }
.animated-nav .nav-link:nth-child(2) { animation-delay: 0.4s; }
.animated-nav .nav-link:nth-child(3) { animation-delay: 0.6s; }
.animated-nav .nav-link:nth-child(4) { animation-delay: 0.8s; }


.animated-3d {
    color: #ff69b4; /* اللون الوردي */
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: float3D 3s ease-in-out infinite alternate;
    text-shadow: 
        2px 2px 0px #ffb6c1,
        4px 4px 0px #ff69b4,
        6px 6px 0px #ff1493;
    transform-style: preserve-3d;
}

/* تحريك ثلاثي الأبعاد */
@keyframes float3D {
    0% {
        transform: rotateX(0deg) rotateY(0deg) translateZ(0px);
        text-shadow: 
            2px 2px 0px #ffb6c1,
            4px 4px 0px #ff69b4,
            6px 6px 0px #ff1493;
    }
    50% {
        transform: rotateX(10deg) rotateY(15deg) translateZ(20px);
        text-shadow: 
            3px 3px 0px #ffb6c1,
            6px 6px 0px #ff69b4,
            9px 9px 0px #ff1493;
    }
    100% {
        transform: rotateX(0deg) rotateY(0deg) translateZ(0px);
        text-shadow: 
            2px 2px 0px #ffb6c1,
            4px 4px 0px #ff69b4,
            6px 6px 0px #ff1493;
    }
}

.animated-3d {
    color: #ff69b4; /* اللون الوردي */
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: float3D 3s ease-in-out infinite alternate;
    text-shadow: 
        2px 2px 0px #ffb6c1,
        4px 4px 0px #ff69b4,
        6px 6px 0px #ff1493;
    transform-style: preserve-3d;
}

/* تحريك ثلاثي الأبعاد */
@keyframes float3D {
    0% {
        transform: rotateX(0deg) rotateY(0deg) translateZ(0px);
        text-shadow: 
            2px 2px 0px #ffb6c1,
            4px 4px 0px #ff69b4,
            6px 6px 0px #ff1493;
    }
    50% {
        transform: rotateX(10deg) rotateY(15deg) translateZ(20px);
        text-shadow: 
            3px 3px 0px #ffb6c1,
            6px 6px 0px #ff69b4,
            9px 9px 0px #ff1493;
    }
    100% {
        transform: rotateX(0deg) rotateY(0deg) translateZ(0px);
        text-shadow: 
            2px 2px 0px #ffb6c1,
            4px 4px 0px #ff69b4,
            6px 6px 0px #ff1493;
    }
}



.black-text {
    color: #000000; /* اللون الأسود */
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlide 2s ease forwards;
    animation-delay: 0.5s; /* تأخير بسيط */
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======= الفوتر ======= */
footer {
    background-color: #1f2937; /* داكن */
    color: #ffffff;
    padding: 3rem 1.5rem;
    font-family: Arial, sans-serif;
}

footer h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

footer p {
    color: #9ca3af;
}

/* القسم الأعلى */
footer > div > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

footer > div > div:first-child > div:first-child {
    flex: 1;
}

/* أيقونات التواصل الاجتماعي */
footer .social-icons, footer > div > div:first-child > div:first-child > div {
    margin-top: 1rem;
}

footer .social-icons a, footer > div > div:first-child > div:first-child > div a {
    color: #9ca3af;
    margin-right: 0.5rem;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

footer .social-icons a:hover, footer > div > div:first-child > div:first-child > div a:hover {
    color: #ffffff;
}

/* الروابط */
footer > div > div:first-child > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

footer span {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    margin-bottom: 0.25rem;
}

footer ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: #ffffff;
}

/* الخط الفاصل */
footer hr {
    border-color: #374151;
    margin: 2rem 0;
}

/* القسم السفلي */
footer > div > div:last-child {
    text-align: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* ======= متجاوب ======= */
@media(min-width: 768px) {
    footer > div > div:first-child {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
    footer > div > div:first-child > div:last-child {
        flex-direction: row;
        gap: 4rem;
    }
}


/*poduict*/
.product-card {
  background: #ffe4ec;
  border-radius: 25px;
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.2);
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 105, 180, 0.3);
}

/* الحاوية الدائرية للصورة */
.product-image {
  position: relative;
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
  background: #ffc1d6;
  border-radius: 50%;
  overflow: hidden;
}

/* الصورة الأصلية */
.product-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: opacity 0.6s ease, transform 0.5s ease;
  position: absolute;
  top: 0;
  left: 0;
}

/* الصورة الثانية (تظهر عند hover) */
.product-image .hover-img {
  opacity: 0;
  transform: scale(1.1);
}

.product-card:hover .default-img {
  opacity: 0;
  transform: scale(1.2);
}

.product-card:hover .hover-img {
  opacity: 1;
  transform: scale(1);
}

/* النصوص */
.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.product-size {
  font-size: 18px;
  font-weight: bold;
  color: #ff83c1;
}

/* الزر */
.order-now-btn {
  background: linear-gradient(135deg, #ff66b2, #ff99cc);
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 6px 15px rgba(255, 105, 180, 0.4);
}

.order-now-btn:hover {
  background: linear-gradient(135deg, #ff3399, #ff66b2);
  transform: scale(1.05);
}




footer {
  background: linear-gradient(135deg, #fff5f8, #fdeff6);
  backdrop-filter: blur(12px);
  border-top: 2px solid rgba(230, 200, 156, 0.2);
  box-shadow: 0 -4px 15px rgba(230, 200, 156, 0.15);
  transition: all 0.3s ease-in-out;
}

footer h3 {
  color: #d9779f;
  font-family: "Playfair Display", serif;
  margin-bottom: 0.75rem;
}

footer a,
footer p,
footer span {
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #e6c89c;
}

footer i {
  transition: all 0.3s ease;
}

footer a:hover i {
  color: #e6c89c;
  transform: scale(1.2);
}

footer .border-t {
  border-color: rgba(230, 200, 156, 0.3);
}

footer i[data-feather="heart"]:hover {
  color: #ff6584;
  transform: scale(1.3);
}

/* للهواتف */
@media (max-width: 768px) {
  footer {
    text-align: center;
  }
  footer .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  footer .flex {
    justify-content: center;
  }
}


/* 🌸 Footer Base */
.footer {
  background: linear-gradient(135deg, #fff5f8, #fdeff6);
  padding: 4rem 1.5rem 2rem;
  border-top: 2px solid rgba(230, 200, 156, 0.2);
  box-shadow: 0 -4px 15px rgba(230, 200, 156, 0.15);
  text-align: center;
  font-family: "Poppins", "Cairo", sans-serif;
  color: #6b6b6b;
}

/* 🩷 Container */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* 🩷 Sections */
.footer-section h3 {
  color: #d9779f;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.footer-section p,
.footer-section a,
.footer-section span {
  color: #6b6b6b;
  font-size: 0.95rem;
  display: block;
  margin: 0.25rem 0;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #e6c89c;
}

/* 🩵 Contact Icons */
.footer-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact i {
  color: #e6c89c;
  width: 16px;
  height: 16px;
}

/* 💖 Social Media */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.footer-social a i {
  color: #6b6b6b;
  width: 22px;
  height: 22px;
  transition: all 0.3s ease;
}

.footer-social a:hover i {
  color: #e6c89c;
  transform: scale(1.25);
}

/* 💫 Bottom Section */
.footer-bottom {
  border-top: 1px solid rgba(230, 200, 156, 0.3);
  padding-top: 1.5rem;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: #6b6b6b;
  margin-bottom: 0.5rem;
}

.footer-bottom i[data-feather="heart"] {
  color: #ff6b81;
  width: 16px;
  height: 16px;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

.footer-bottom i[data-feather="heart"]:hover {
  transform: scale(1.3);
}

/* 🔗 Bottom Links */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: #6b6b6b;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #e6c89c;
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .footer {
    padding: 3rem 1rem;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}

