/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Header & Navigation */
.announcement-bar {
    background: #000;
    color: white;
    text-align: center;
    padding: 7px 0;
    font-size: 13px;
}

.header {
    /* padding: 20px 40px; */
    border-bottom: 1px solid #f0f0f0;
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 150px;
    height: auto;
    display: block;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: #333;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
}

/* Social Media Colors */
.fa-facebook:hover { color: #1877f2; }
.fa-instagram:hover { color: #e4405f; }
.fa-twitter:hover { color: #1da1f2; }
.fa-whatsapp:hover { color: #25D366; }



/* navigation section  */
.navigation {
    background-color: #fff;
    padding: 0 20px;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    z-index: 1000;
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding: 20px 0;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #E7489C;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #E7489C;
}

.nav-link:hover::before,
.nav-link.active::before {
    transform: scaleX(1);
}

@media screen and (max-width: 768px) {
    .navigation {
        padding: 15px 20px;
    }

    .nav-content {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .nav-link {
        padding: 5px 0;
        font-size: 14px;
    }
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    min-height: 600px;
    background-color: #D8B8D8;
  }
  
  .hero-content {
    flex: 2;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .hero-title {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #333;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
  }
  
  .hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: white;
    max-width: 400px;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 0.5s forwards;
  }
  
  .hero-button {
    background-color: #E7489C;
    color: white;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 500;
    opacity: 0;
    animation: fadeIn 1s ease-in-out 1s forwards;
  }
  
  .hero-button:hover {
    background-color: #d83289;
    transform: translateY(-3px);
  }
  
  .hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    position: relative;
    background-image: url('./images/pattern.png');
    background-repeat: repeat;
    background-size: 200px;
    opacity: 0.8;
  }
  
  .floating-element {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: floatingAnimation 3s ease-in-out infinite;
  }
  
  .floating-element-1 {
    top: 20%;
    left: 20%;
  }
  
  .floating-element-2 {
    bottom: 30%;
    right: 15%;
    animation-delay: 1s;
  }
  
  .floating-element-3 {
    top: 50%;
    left: 35%;
    animation-delay: 2s;
  }
  
  @keyframes floatingAnimation {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(5px, 10px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  
  .hero-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    opacity: 0;
    transform: translateX(50px);
    animation: slideIn 1s ease-in-out 1.5s forwards;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideIn {
    0% {
      opacity: 0;
      transform: translateX(50px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @media screen and (min-width: 768px) {
    .hero {
      flex-direction: row;
    }
    
    .hero-content {
      /* align-items: flex-end;
      text-align: right; */
      padding-left: 0;
      padding-right: 80px;
    }
    
    .hero-title {
      font-size: 48px;
    }
    
    .hero-description {
      font-size: 20px;
      max-width: 500px;
    }
    
    .hero-image {
      max-height: 500px;
    }
    
    .floating-element {
      width: 20px;
      height: 20px;
    }
    
    @keyframes floatingAnimation {
      0% {
        transform: translate(0, 0);
      }
      50% {
        transform: translate(10px, 20px);
      }
      100% {
        transform: translate(0, 0);
      }
    }
  }





/* Features Section */
.features {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.feature {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #9B6BB3;
    box-shadow: 0 4px 20px rgba(155,107,179,0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    opacity: 0;
    transform: translateY(30px);
}

/* Animation class */
.feature.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Animation delays for each card */
.feature:nth-child(1) { transition-delay: 0.2s; }  /* Increased delays */
.feature:nth-child(2) { transition-delay: 0.4s; }
.feature:nth-child(3) { transition-delay: 0.6s; }
.feature:nth-child(4) { transition-delay: 0.8s; }
/* Add top fill */
.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #9B6BB3;
    border-radius: 12px 12px 0 0;
    transition: background 0.3s ease-in-out;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: #fff;
    padding: 15px;
    background: #9B6BB3;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #9B6BB3;
    transition: color 0.3s ease-in-out;
}

.feature-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    max-width: 300px;
    margin: 0 auto;
}

/* Hover effects */
.feature:hover {
    border-color: #E7489C;
    box-shadow: 0 8px 30px rgba(231, 72, 156, 0.1);
    transform: translateY(-5px);
}

.feature:hover::before {
    background: #E7489C;
}

.feature:hover .feature-icon {
    background: #E7489C;
    transform: scale(1.1);
}

.feature:hover .feature-title {
    color: #E7489C;
}

/* Media Queries */
@media (max-width: 768px) {
    .features {
        padding: 0 20px;
        margin: 40px auto;
    }

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

    .feature {
        padding: 25px;
    }
}





/* Products Section */
.products-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.section-header {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
}

.view-all {
    color: #E7489C;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: #d83289;
}

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

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    padding-top: 100%; /* 1:1 Aspect Ratio */
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

.product-price {
    font-size: 16px;
    color: #E7489C;
    font-weight: 600;
}

.price-prefix {
    color: #666;
    font-weight: normal;
}

.personalize-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #E7489C;
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
}

.product-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.product-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(4) { animation-delay: 0.4s; }
.product-card:nth-child(5) { animation-delay: 0.5s; }

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-title {
        font-size: 28px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
/* Cards Section */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
}

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

.card-item {
    text-decoration: none;
    color: inherit;
}

.card-image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 4px;
    background: #f8f8f8;
    margin-bottom: 12px;
}

.card-title {
    font-size: 14px;
    color: #333;
    margin-bottom: 4px;
    font-weight: normal;
}

.card-price {
    font-size: 14px;
    color: #333;
}

/* Video Banner Section */
.toy-banner {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
}

.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 2;
}

.banner-title {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
    font-family: 'PP Fragment', serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.banner-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 300;
}

.shop-button {
    background: white;
    color: black;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}

.shop-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Reviews Section */
.reviews-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    position: relative;
 }
 
 .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
 }
 
 .section-title {
    font-size: 32px;
    font-weight: 500;
    color: #1a1a1a;
 }
 
 .overall-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
 }
 
 .star {
    color: #E7489C;
    font-size: 20px;
    transition: transform 0.3s ease;
 }
 
 .star:hover {
    transform: scale(1.2);
 }
 
 .review-count {
    font-size: 14px;
    color: #666;
    font-weight: 500;
 }
 
 .slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 40px;
    margin-top: 20px;
 }
 
 .reviews-slider {
    display: flex;
    transition: transform 0.5s ease;
    gap: 24px;
 }
 
 .review-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    min-width: calc((100% - 48px) / 3);
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
 }
 
 .review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(231, 72, 156, 0.1);
    border-color: #E7489C;
 }
 
 .review-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
 }
 
 .review-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
 }
 
 .review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
 }
 
 .reviewer-name {
    font-size: 14px;
    color: #E7489C;
    font-weight: 500;
 }
 
 .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    color: #666;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
 }
 
 .slider-arrow:hover {
    background: #E7489C;
    color: white;
    border-color: #E7489C;
 }
 
 .prev-arrow { left: 0; }
 .next-arrow { right: 0; }
 
 /* Media Queries */
 @media (max-width: 768px) {
    .reviews-section {
        padding: 0 20px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .review-card {
        min-width: 100%;
        padding: 20px;
    }
    
    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
 }


 
/* Footer */
/* .footer {
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-title {
    font-size: 24px;
    margin-bottom: 16px;
    color: #333;
}

.footer-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.5;
}

.contact-info {
    margin-bottom: 24px;
}

.contact-link {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 8px;
}

.phone-number, .email {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.email {
    margin-bottom: 24px;
} */

.footer {
    /* background-color: #f8f8f8; */
    background-color: #D8B8D8;
    padding: 60px 0;
    font-family: 'Arial', sans-serif;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-family: corisande;
}

.footer-section {
    flex: 1;
    padding: 0 20px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 22px;
    /* font-weight: 700; */
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact li {
    margin-bottom: 12px;
    color: #555;
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 15px;
    font-weight: bold;
}

.footer-contact li i {
    margin-right: 12px;
    color: #E7489C;
    font-size: 18px;
    font-weight: bold;

}

.footer-links {
    padding-left: 0;
    list-style-type: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    font-size: 15px;
    font-weight: bold;

}

.footer-links a:hover {
    color: #E7489C;
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 20px;
    list-style: none;
    padding-left: 0;
}

.footer-social a {
    font-size: 28px;
    transition: transform 0.3s ease;
    font-weight: bold;

}

.footer-social a:hover {
    transform: translateY(-3px);
}

.footer-social a i {
    font-size: 16px; /* Adjust this value as needed */
}

.footer-hours {
    padding-left: 0;
    list-style-type: none;
    font-weight: bold;

}

.footer-hours li {
    margin-bottom: 12px;
    color: #555;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.footer-hours li i {
    margin-right: 12px;
    color: #E7489C;
    font-size: 18px;
}

/* Social media icon colors */


.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: #666;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }

    .footer-section {
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* chat button  */

.chat-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #EC4899;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    z-index: 100;
}

.gift-icon {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #EC4899;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}









@media (max-width: 1024px) {
    .review-card {
        min-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .navigation {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .navigation::-webkit-scrollbar {
        display: none;
    }

    .nav-content {
        flex-wrap: nowrap;
        padding: 15px 0;
        width: max-content;
    }

    .hero {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .slider-container {
        padding: 0 20px;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .review-card {
        min-width: 100%;
    }

    .footer-content {
        padding: 0 20px;
    }

    .wave-container {
        display: none;
    }

    .social-links {
        gap: 15px;
    }

    .gift-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
        left: 10px;
    }

    .chat-button {
        padding: 8px 16px;
        font-size: 12px;
        right: 10px;
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .product-grid,
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }

    .banner-title {
        font-size: 32px;
    }

    .banner-subtitle {
        font-size: 16px;
    }
}



.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin: 0 40px;
    border-bottom: 1px solid #e0e0e0;
}

.section-header h2 {
    font-size: 28px;
    color: #484848;
    font-weight: 400;
    margin: 0;
}

.view-all {
    color: #FF3366;
    text-decoration: none;
    font-size: 16px;
}

.view-all:hover {
    text-decoration: underline;
}






