 .hover-overlay {
      transition: all 0.3s ease-in-out;
    }

    .card:hover .hover-overlay {
      opacity: 1 !important;
    }

    .feature-card {
      transition: transform 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-10px);
    }

    .collection-img {
      transition: transform 0.3s ease;
      overflow: hidden;
    }

    .collection-img:hover img {
      transform: scale(1.1);
    }

    .collection-img img {
      transition: transform 0.3s ease;
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .back-to-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #B88E2F;
      color: white;
      border: none;
      border-radius: 50%;
      width: 50px;
      height: 50px;
      display: none;
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .back-to-top:hover {
      background-color: #9a7628;
      transform: translateY(-3px);
    }

    .countdown-timer {
      background: linear-gradient(45deg, #b88f2fa4, #d4a332);
      color: white;
      padding: 15px 0;
    }

    .timer-box {
      background: rgba(255,255,255,0.2);
      border-radius: 8px;
      padding: 10px;
      margin: 0 5px;
      min-width: 60px;
    }
 