/* Modern Furniture Website CSS */

/* ===== RESET & BASE STYLES ===== */
:root {
    --primary-color: #976c3e;
    --secondary-color: #90897c;
    --accent-color: #c49a6c;
    --text-color: #b5acac;
    --light-text: #f8f5f1;
    --background-color: #262421;
    --dark-background: #21201e;
    --transition-slow: 0.5s ease;
    --transition-medium: 0.3s ease;
    --transition-fast: 0.2s ease;
    --shadow-small: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 8px 30px rgba(0, 0, 0, 0.12);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Roboto', sans-serif;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 62.5%;
  }
  
  body {
    font-family: var(--font-body);
    font-size: 1.6rem;
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
  }
  
  a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* ===== HEADER & NAVIGATION ===== */
  header {
    background-color: transparent;
    padding: 2rem 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-medium);
  }
  
  header.scrolled {
    background-color: rgba(248, 245, 241, 0.95);
    box-shadow: var(--shadow-small);
    padding: 1rem 5%;
  }
  
  .logo {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
  }
  
  .logo::after {
    content: '.';
    color: var(--accent-color);
    position: absolute;
  }
  
  .tagline {
    display: none;
  }
  
  nav {
    background: transparent;
    position: relative;
    z-index: 100;
  }
  
  .nav-container {
    display: flex;
    gap: 3rem;
  }
  
  nav a {
    font-size: 1.6rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
  }
  
  nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-medium);
  }
  
  nav a:hover::after,
  nav a.active::after {
    width: 100%;
  }
  
  /* ===== HERO SECTION ===== */
  .hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3)), url('/api/placeholder/1600/900') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10%;
    color: var(--light-text);
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 5s infinite;
  }
  
  @keyframes shine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
  }
  
  .hero h1 {
    font-size: 6rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
    max-width: 60%;
  }
  
  .hero p {
    font-size: 2rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.8s;
    max-width: 60%;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 0;
    font-weight: 500;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
  }
  
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
  }
  
  .btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
  }
  
  .btn:hover::before {
    left: 100%;
  }
  
  .hero .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 1.1s;
  }
  
  /* ===== SECTION STYLES ===== */
  section {
    padding: 10rem 5%;
    position: relative;
  }
  
  .section-title {
    font-size: 4rem;
    margin-bottom: 5rem;
    text-align: center;
    position: relative;
    padding-bottom: 2rem;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8rem;
    height: 3px;
    background-color: var(--primary-color);
  }
  
  /* ===== COLLECTION SECTION ===== */
  #collection {
    background-color: white;
  }
  
  .featured-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
    gap: 4rem;
  }
  
  .product-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-small);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    opacity: 0;
    transform: translateY(30px);
  }
  
  .product-card.animate {
    animation: fadeInUp 0.8s forwards;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
  }
  
  .product-img {
    height: 25rem;
    overflow: hidden;
    position: relative;
  }
  
  .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
  }
  
  .product-card:hover .product-img img {
    transform: scale(1.05);
  }
  
  .product-info {
    padding: 2rem;
  }
  
  .product-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
  }
  
  .product-period {
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 1rem;
  }
  
  .product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
  }
  
  .view-details {
    margin-top: 1.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
  }
  
  .view-details:hover {
    background-color: var(--primary-color);
    color: white;
  }
  
  /* ===== ABOUT SECTION ===== */
  .about-section {
    background-color: var(--background-color);
    
  }
  
  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
  }
  
  .about-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-block;
    margin: 10px;
    width: 100%; /* make it scale with the column */
  max-width: 450px; 
}
  
.about-img img {
    display: block;
    max-width: 100%; 
    height: auto;
}
  
.about-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
}
  
.about-img:hover::before {
    opacity: 1;
}
.about-text {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
}
  
.about-text p {
  text-align: justify;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}
  
  @keyframes fadeInRight {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  .about-text p.animate {
    animation: fadeInRight 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }
  .about-text p:nth-child(1) {
    animation-delay: 0.1s;
  }
  .about-text p:nth-child(2) {
    animation-delay: 0.2s;
  }
  .about-text p:nth-child(3) {
    animation-delay: 0.3s;
  }
  .about-text p:hover {
    background-color: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #ffaa00;
    padding-left: 10px;
    transition: 0.3s;
  }
  
  /* ===== TESTIMONIALS SECTION ===== */
  .testimonials {
    background-color: white;
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30rem, 1fr));
    gap: 3rem;
  }
  
  .testimonial-card {
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-small);
    position: relative;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    opacity: 0;
    transform: translateY(30px);
  }
  
  .testimonial-card.animate {
    animation: fadeInUp 0.8s forwards;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
  }
  
  .quote-icon {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1.5rem;
  }
  
  .testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
  }
  
  .testimonial-author {
    font-weight: 700;
    color: var(--secondary-color);
    text-align: right;
  }
  
  /* ===== CONTACT SECTION ===== */
  .contact-section {
    background-color: var(--background-color);
  }
  
  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  
  .contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  
  .contact-block {
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow-small);
    transition: transform var(--transition-medium);
  }
  
  .contact-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
  }
  
  .contact-block i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .contact-block h3 {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    background-color: white;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: var(--shadow-small);
  }
  
  .contact-form h3 {
    margin-bottom: 2.5rem;
    text-align: center;
  }
  
  .form-group {
    margin-bottom: 2rem;
  }
  
  .form-control {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.6rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: border-color var(--transition-fast);
  }
  
  .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
  }
  
  textarea.form-control {
    resize: vertical;
    min-height: 15rem;
  }
  
  /* ===== MODAL STYLES ===== */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1500;
    opacity: 0;
    transition: opacity var(--transition-medium);
  }
  
  .modal.show {
    opacity: 1;
  }
  
  .modal-content {
    background-color: white;
    margin: 5vh auto;
    width: 90%;
    max-width: 120rem;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-large);
    transform: translateY(-50px);
    opacity: 0;
    transition: all var(--transition-medium);
  }
  
  .modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
  }
  
  .close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 3rem;
    color: var(--secondary-color);
    cursor: pointer;
    transition: color var(--transition-fast);
    z-index: 10;
  }
  
  .close-modal:hover {
    color: var(--primary-color);
  }
  
  .modal-body {
    padding: 3rem;
  }
  
  .product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  
  .product-detail-images {
    position: relative;
  }
  
  .main-image {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    height: 40rem;
  }
  
  .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .thumbnail-images {
    display: flex;
    gap: 1rem;
  }
  
  .thumbnail {
    width: 8rem;
    height: 8rem;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 2px solid transparent;
  }
  
  .thumbnail:hover,
  .thumbnail.active {
    border-color: var(--primary-color);
  }
  
  .product-rating {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
  }
  
  .stars {
    color: gold;
    margin-right: 1rem;
  }
  
  .review-count {
    color: #777;
  }
  
  .product-price-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0;
  }
  
  .product-description,
  .product-details {
    margin-bottom: 3rem;
  }
  
  .product-details h3,
  .product-description h3 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
  }
  
  .product-details ul {
    list-style: none;
  }
  
  .product-details li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
  }
  
  .product-details li span {
    font-weight: 700;
    margin-right: 1rem;
  }
  
  .product-actions {
    display: flex;
    gap: 2rem;
  }
  
  .btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
  }
  
  .facebook-btn {
    background-color: #4267B2;
  }
  
  .facebook-btn:hover {
    background-color: #365899;
  }
  
  /* ===== FOOTER ===== */
  footer {
    background-color: var(--dark-background);
    color: var(--light-text);
    padding: 8rem 5% 4rem;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 4rem;
  }
  
  .footer-logo {
    max-width: 40rem;
  }
  
  .footer-logo .logo {
    margin-bottom: 2rem;
    font-size: 4rem;
  }
  
  .footer-links {
    display: flex;
    flex-direction: column;
  }
  
  .footer-links h3,
  .footer-social h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }
  
  .footer-links a {
    margin-bottom: 1rem;
    transition: color var(--transition-fast);
  }
  
  .footer-links a:hover {
    color: var(--primary-color);
  }
  
  .social-icons {
    display: flex;
    gap: 2rem;
  }
  
  .social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all var(--transition-medium);
  }
  
  .social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  /* ===== ANIMATIONS ===== */
  @keyframes floatUp {
    0% {
      transform: translateY(20px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideInLeft {
    from {
      transform: translateX(-50px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  /* ===== RESPONSIVE DESIGN ===== */
  @media (max-width: 1200px) {
    html {
      font-size: 58%;
    }
    
    .hero h1 {
      font-size: 5rem;
      max-width: 70%;
    }
    
    .hero p {
      max-width: 70%;
    }
  }
  
  @media (max-width: 992px) {
    html {
      font-size: 55%;
    }
    
    .product-detail-grid,
    .contact-content {
      grid-template-columns: 1fr;
    }
    
    .about-content {
      grid-template-columns: 1fr;
    }
    
    .about-img {
      margin-bottom: 4rem;
    }
    
    .hero h1 {
      font-size: 4.5rem;
      max-width: 80%;
    }
    
    .hero p {
      max-width: 80%;
    }
    
    .footer-content {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 768px) {
    html {
      font-size: 52%;
    }
    
    .nav-container {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background-color: white;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transition: right var(--transition-medium);
      box-shadow: var(--shadow-large);
    }
    
    .nav-container.show {
      right: 0;
    }
    
    .hamburger {
      display: block;
      cursor: pointer;
      z-index: 1100;
    }
    
    .hero h1 {
      font-size: 4rem;
      max-width: 100%;
    }
    
    .hero p {
      max-width: 100%;
    }
    
    .contact-info {
      grid-template-columns: 1fr;
    }
    
    .footer-content {
      grid-template-columns: 1fr;
      gap: 4rem;
    }
  }
  
  @media (max-width: 576px) {
    html {
      font-size: 50%;
    }
    
    .section-title {
      font-size: 3.5rem;
    }
    
    .testimonial-grid {
      grid-template-columns: 1fr;
    }
    
    .hero h1 {
      font-size: 3.5rem;
    }
    
    .product-actions {
      flex-direction: column;
    }
  }
  
  /* Custom animation for page loading */
  .fade-in {
    animation: fadeIn 1s ease forwards;
  }
  
  .slide-in {
    animation: slideInLeft 1s ease forwards;
  }
  
  /* Animations for scroll reveal */
  .reveal {
    position: relative;
    opacity: 0;
  }
  
  .reveal.active {
    opacity: 1;
  }
  
  .active.fade-bottom {
    animation: fadeInUp 1s ease-in-out;
  }
  
  .active.fade-left {
    animation: fadeInLeft 1s ease-in-out;
  }
  
  .active.fade-right {
    animation: fadeInRight 1s ease-in-out;
  }
  
  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      transform: translateX(-50px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Preloader */
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
  }
  
  .preloader.fade-out {
    opacity: 0;
  }
  
  .loader {
    width: 100px;
    height: 100px;
    border: 5px solid transparent;
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
    position: relative;
  }
  
  .loader:before, .loader:after {
    content: "";
    position: absolute;
    border: 5px solid transparent;
    border-radius: 50%;
  }
  
  .loader:before {
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-top-color: var(--accent-color);
    animation: spin 2s linear infinite reverse;
  }
  
  .loader:after {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-top-color: var(--secondary-color);
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  
  /* Cursor animation */
  .cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(151, 108, 62, 0.3);
    mix-blend-mode: difference;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: transform 0.1s;
  }
  
  .cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(151, 108, 62, 0.1);
    mix-blend-mode: difference;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    transition: transform 0.3s ease;
  }
  
  /* Product hover effect */
  .product-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity var(--transition-medium);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
  }
  
  .product-card:hover .product-hover {
    opacity: 1;
  }
  
  .quick-view {
    background-color: white;
    color: var(--secondary-color);
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: all var(--transition-fast);
  }
  
  .quick-view:hover {
    background-color: var(--primary-color);
    color: white;
  }
  .product-card {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-img {
    position: relative;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.product-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-hover {
    opacity: 1;
}

.quick-view {
    padding: 10px 20px;
    background: #fff;
    color: #333;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.quick-view:hover {
    background: #f9f9f9;
}

/* Modal thumbnail styles */
.thumbnail-images {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: #987654;
}

.thumbnail:hover {
    border-color: #ccc;
}
.hidden-product {
    display: none;
}

.see-more-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.see-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    background-color: transparent;
    color: #987654;
    border: 2px solid #987654;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.see-more-btn:hover {
    background-color: #987654;
    color: white;
}

.see-more-btn i {
    transition: transform 0.3s ease;
}

.see-more-btn.active i {
    transform: rotate(180deg);
}

/* Animation for revealing products */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-reveal {
    animation: fadeInUp 0.5s ease forwards;
}