/* Hero Section */
.hero {
  background-image: url("https://readdy.ai/api/search-image?query=modern%20minimalist%20fashion%20lifestyle%20photography%20with%20elegant%20woman%20in%20trendy%20outfit%20against%20clean%20white%20background%20with%20soft%20natural%20lighting%20and%20contemporary%20styling%20perfect%20for%20premium%20ecommerce%20hero%20section&width=1920&height=1080&seq=hero1&orientation=landscape");
  background-size: cover;   
  background-position: center; 
  background-repeat: no-repeat; 
  height: 100vh;  
  width: 100%; 
  display: flex;
  align-items: center;  /* vertically center content */
  justify-content: flex-start; /* left align for desktop */
  padding-left: 90px; /* spacing from left */
}

.hero-content {
    max-width: 500px; /* limit width */
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 700;
    color: #000;
    line-height: 1.1;
}

.hero-content h1 span {
    color: #ff6600;
}

.hero-content p {
    font-size: 18px;
    margin: 20px 0;
    color: #444;
    line-height: 1.5;
}

.btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #ff6600;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero {
        padding-left: 50px;
    }
    .hero-content h1 {
        font-size: 60px;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 0 20px;
        height: 80vh; /* adjust height for smaller screens */
    }
    .hero-content h1 {
        font-size: 40px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .btn {
        padding: 10px 20px;
    }
}




/* Additional styles for other sections can be added here */
/* Section styling */
  .category-section {
    padding: 40px 20px; /* py-20 */
  }



  /* Grid layout */
  .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px; /* gap-8 */
  }

  /* Card styling */
  .category-card {
    background: #fff;
    border-radius: 24px; /* rounded-2xl */
    padding: 25px; /* p-8 */
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s; /* card-hover effect */
  }

  .category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  }

  .category-card img {
    width: 100%;
    height: 200px; /* h-48 */
    object-fit: cover;
    border-radius: 12px; /* rounded-lg */
    margin-bottom: 5px; /* mb-6 */
  }

  .category-card h3 {
 
    font-size: 24px; /* text-2xl */
    font-weight: bold;
    margin-bottom: 5px; /* mb-4 */
  }

  .category-card button {
 
    background-color: #000;
    color: #fff;
    padding: 15px 24px;
    border: none;
    border-radius: 10px; /* pill-shaped button */
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
  }
 .category-card button  a{
  text-decoration: none;
  transition: color 0.3s;
  color: #fff;
}

  .category-card button:hover {
    background-color: #ff6600;
    box-shadow: 0 0 10px #ff6600;
  }

  /* Fade-in animation */
  .fade-in {
    animation: fadeIn 1s ease-in;
  }

  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px);}
    100% { opacity: 1; transform: translateY(0);}
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .category-card img {
      height: 180px;
    }
    .category-card h3 {
      font-size: 20px;
    }
    .category-card button {
      padding: 10px 20px;
      font-size: 14px;
    }
  }




    /* Section Styling */
  .trending-section {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9fafb;
  }

  .trending-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 32px;
  }

  /* Tabs */
  .tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
  }

  .tab-btn {
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
  }

  .tab-btn.active {
    background-color: #000;
    color: #fff;
  }

  .tab-btn:hover:not(.active) {
    color: #000;
  }

  /* Product Grid */
  .product-grid {
    display: grid;
    gap: 32px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .product-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    padding: 16px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  .product-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 16px;
  }

  .product-card h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 8px;
  }

  .product-card p {
    color: #6b7280; /* gray-600 */
    margin-bottom: 12px;
    font-size: 0.95rem;
  }

  .product-card span {
    font-weight: bold;
    color: #ff6600;
  }

  /* Fade-in */
  .fade-in {
    animation: fadeIn 1s ease-in;
  }

  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .tabs {
      flex-wrap: wrap;
    }
  }



    /* Section Styling */
  .partner-section {
    padding: 60px 40px; /* py-16 */
    background-color: #1f2937; /* gray-800 */
    color: #fff;
    text-align: center;
  }

  .partner-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 32px;
  }

  /* Carousel container */
  .partner-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .partner-track {
    display: flex;
    gap: 32px; /* space between items */
    animation: scrollPartners 20s linear infinite;
  }

  .partner-item {
    min-width: 200px;
    flex-shrink: 0;
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .partner-item img {
    height: 40px;
    object-fit: contain;
  }

  @keyframes scrollPartners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* move half track for seamless loop */
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .partner-section h2 {
      font-size: 2rem;
    }

    .partner-item {
      min-width: 150px;
      padding: 12px;
    }

    .partner-item img {
      height: 30px;
    }
  }


  
  /* Section Styling */
  .blog-section {
    padding: 40px 20px; /* py-20 */
  }

  .blog-section .section-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .blog-section .section-header h2 {
    font-size: 2.5rem; /* text-4xl */
    font-weight: bold;
    margin-bottom: 16px;
  }

  .blog-section .section-header p {
    font-size: 1.25rem; /* text-xl */
    color: #4b5563; /* gray-600 */
  }

  /* Grid Layout */
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
  }

  /* Card Styling */
  .blog-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  .blog-card img {
    width: 100%;
    height: 200px; /* h-48 */
    object-fit: cover;
  }

  .blog-card .card-content {
    padding: 24px;
  }

  .blog-card h3 {
    font-size: 1.5rem; /* text-2xl */
    font-weight: bold;
    margin-bottom: 8px;
  }

  .blog-card p {
    color: #4b5563; /* gray-600 */
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .blog-card a {
    text-decoration: none;
    font-weight: 600;
    color: #000;
    transition: color 0.3s;
  }

  .blog-card a:hover {
    text-decoration: underline;
    color: #ff6600;
  }

  /* Fade-in animation */
  .fade-in {
    animation: fadeIn 1s ease-in;
  }

  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px);}
    100% { opacity: 1; transform: translateY(0);}
  }

  /* Responsive */
  @media (max-width: 768px) {
    .blog-card img {
      height: 180px;
    }
    .blog-card h3 {
      font-size: 1.25rem;
    }
    .blog-card p {
      font-size: 0.95rem;
    }
  }



    /* CTA Section Styling */
  .cta-section {
    padding: 40px 20px;
    background-color: #000;
    color: #fff;
    text-align: center;
  }

  .cta-section h2 {
    font-size: 3rem; /* text-5xl */
    font-weight: bold;
    margin-bottom: 24px;
  }

  .cta-section p {
    font-size: 1.25rem; /* text-xl */
    color: #d1d5db; /* gray-300 */
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

  .cta-section a button {
    background-color: #fff;
    color: #000;
    padding: 16px 32px; /* px-8 py-4 */
    font-size: 1.125rem; /* text-lg */
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.4); /* glow effect */
  }

  .cta-section a button:hover {
    background-color: #ff6600;
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.6);
  }

  /* Fade-in Animation */
  .fade-in {
    animation: fadeIn 1s ease-in;
  }

  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .cta-section h2 {
      font-size: 2rem;
    }
    .cta-section p {
      font-size: 1rem;
    }
    .cta-section a button {
      padding: 14px 28px;
      font-size: 1rem;
    }
  }



   /* Section styling */
  .testimonial-section {
    padding: 40px 20px; /* py-20 */
    text-align: center;
    background-color: #f9fafb; /* gray-50 */
  }

  .testimonial-section h2 {
    font-size: 2.5rem; /* text-4xl */
    font-weight: bold;
    margin-bottom: 48px;
  }

  /* Carousel container */
  .testimonial-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .testimonial-track {
    display: flex;
    gap: 32px;
    animation: scrollTestimonials 25s linear infinite;
  }

  .testimonial-item {
    width: 300px;

    flex-shrink: 0;
    background-color: #fff;
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: left;
  }

  .testimonial-item p {
    font-style: italic;
    color: #374151; /* gray-700 */
    margin-bottom: 16px;
    line-height: 1.6;
  }

  .testimonial-item .author {
    font-weight: bold;
    color: #111827;
  }

  @keyframes scrollTestimonials {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* move half track for seamless loop */
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .testimonial-track {
      gap: 16px;
    }

    .testimonial-item {
      min-width: 250px;
      padding: 24px;
    }

    .testimonial-section h2 {
      font-size: 2rem;
    }
  }