/*
 * Enter any custom CSS here.
 * This file will not be overwritten by theme updates.
*/
  .navbar-nav .nav-link:hover {
    color: #7349ff;
    text-decoration: underline;
      text-underline-offset: 5px;
  }
  

  .navbar-nav .nav-link.active {
    text-decoration: underline;
      text-underline-offset: 5px;
    color: #7349ff;
  }

  .nav-link {
    color: #FFF;
  }

  .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  background-clip: padding-box;
}
  

.products .card .card-img-top img, .products .card .card-img-top svg {
  object-fit: cover;
}

.products .card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}
.products .card:hover {
  background: #7349ff;
  backdrop-filter: blur(12px);
  transform: scale(1.02); /* Slight pop effect */
}

.gradient-text {
    background: linear-gradient(90deg, #9200ba, #2f0461, #9200ba);
    background-size: 200% auto;
    font-size: 35px;
    color: #655f5f00;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradient-text 3s linear infinite;
    text-align: center;
    margin-block: 1pc;
    border: 1px solid #7349ff;
    border-radius: 1rem;
    
    backdrop-filter: blur(6px)
    
}

@keyframes gradient-text {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Shine Hover Effect */
.shine-effect {
  position: relative;
  overflow: hidden;
}

.shine-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  transition: none;
}

.shine-effect:hover::before {
  animation: shine 0.75s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}





 @import url('https://fonts.googleapis.com/css2?family=Pg:wght@400;500;600;700&display=swap');

        :root {
  --primary-gradient: linear-gradient(135deg, #a855f7, #7e22ce);
  --hover-gradient: linear-gradient(135deg, #7e22ce, #a855f7);
            --popup-bg: #1a1a1a;
            --box-bg: rgba(255, 255, 255, 0.05);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #121212;
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(5px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .popup {
            background: var(--popup-bg);
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            max-width: 450px;
            width: 90%;
            position: relative;
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 
                0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 50px rgba(60, 0, 177, 0.2);
            transform: translateY(20px);
            animation: slideUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .sale-badge {
            background: var(--primary-gradient);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 1rem;
            animation: pulse 2s infinite;
        }

        h2 {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700;
        }

        .description {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 2rem;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        .timer {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin: 2rem 0;
        }

        .time-box {
            background: var(--box-bg);
            padding: 1rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .time-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            opacity: 0.1;
            transition: opacity 0.3s ease;
        }

        .time-box:hover::before {
            opacity: 0.2;
        }

        .time-value {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
        }

        .time-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 0.5rem;
        }

        .coupon-container {
            background: var(--box-bg);
            padding: 1rem;
            border-radius: 12px;
            margin: 2rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .coupon-code {
            font-family: monospace;
            font-size: 1.2rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: #fff;
        }

        .copy-btn {
            background: var(--primary-gradient);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 10px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .copy-btn:hover {
            background: var(--hover-gradient);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -10px rgba(60, 0, 177, 0.5);
        }

        .copy-btn.copied {
            background: #22c55e;
        }

        .colourbased1 {
    position: fixed;
    bottom: 15px;
    left: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    z-index: 1001;
    font-family: 'Poppins', sans-serif;
}


        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

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

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @media (max-width: 480px) {
            .popup {
                padding: 1.5rem;
            }

            .timer {
                gap: 0.5rem;
            }

            .time-value {
                font-size: 1.5rem;
            }

            .time-label {
                font-size: 0.75rem;
            }
        }
  
.card {
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-25deg);
  transition: none;
  pointer-events: none;
}

.card:hover::before {
  animation: shine 0.75s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}