/* Global Styles */
@font-face {
    font-family: "AppleIiScreenTypeface";
    src: url("AppleIiScreenTypeface-2aP3.ttf") format("opentype");
    font-weight: normal;
    font-style: normal;
}
body {
    margin: 0;
    font-family: 'AppleIiScreenTypeface', 'cursive', monospace;
    color: black;
    background: silver;
    /*
    background-image: url('selu.jpg');*/
    /* Replace with your wallpaper URL */
    background-size: cover; /* Ensures the image covers the entire background */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-attachment: fixed; /* Keeps the background stable */
    background-position: center; /* Centers the image */
}
input, textarea, select, option, button {
  font-family: 'AppleIiScreenTypeface', 'cursive', monospace;
}

/* Header */
header {
    background: linear-gradient(to right, #000000, silver,#a9a9a9);
    padding: 10px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    height: 80px; /* Ensure header has a fixed height */
    overflow: hidden; /* Prevent overlap outside the header */
}

header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

header .logo img {
    width: 50px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}
.logo-container {
    position: relative;
    width: 50; /* Adjust based on your logo size */
    height: 50;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: glow-bg 5s infinite;
}

.logo {
    width: 100%;
    height: auto;
    animation: infinite, shimmer 5s infinite;
}

/* Glowing background effect 
@keyframes glow-bg {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 60px rgba(255, 223, 0, 0.8), 0 0 90px rgba(255, 223, 0, 0.6);
    }
} 
*/

/* Pulsating effect */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Shimmering effect */
@keyframes shimmer {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.5);
    }
    100% {
        filter: brightness(1);
    }
}
/* Light Reflection Effect */
.light {
    position: absolute;
    top: -100%;
    left: -150%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6), transparent);
    animation: light-reflection 5s infinite linear;
    opacity: 0.4;
    transform: rotate(-45deg);
    pointer-events: none;
}

/* Particle Effects */
.particles::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 15px;
    height: 15px;
   /* background: radial-gradient(circle, rgba(255, 215, 0, 1), rgba(255, 215, 0, 0));*/
    
    animation: particle-sparkle 3s infinite ease-in-out;
    filter: blur(2px);
}

.particles::after:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 1s;
}

.particles::after:nth-child(2) {
    top: 70%;
    left: 70%;
    animation-delay: 2s;
}

/* Animations */

/* 3D Rotation Animation */
@keyframes rotate3D {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: rotateX(15deg) rotateY(15deg);
    }
    100% {
        transform: rotateX(0deg) rotateY(0deg);
    }
}

/* Metallic Shine Effect */
@keyframes metallic-shine {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.8) contrast(1.2);
    }
    100% {
        filter: brightness(1);
    }
}

/* Light Reflection */
@keyframes light-reflection {
    0% {
        transform: translate(-150%, -150%) rotate(-45deg);
    }
    100% {
        transform: translate(150%, 150%) rotate(-45deg);
    }
}

/* Background Glow Animation 
@keyframes background-glow {
    0%, 100% {
        box-shadow: 0 0 60px rgba(255, 215, 0, 0.8), 0 0 100px rgba(255, 223, 0, 0.6);
    }
    50% {
        box-shadow: 0 0 120px rgba(255, 223, 0, 1), 0 0 150px rgba(255, 223, 0, 0.8);
    }
} */

/* Particle Sparkles */
@keyframes particle-sparkle {
    0% {
        transform: scale(0.5);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
    100% {
        transform: scale(0.5);
        opacity: 0.5;
    }
}


/* Logo Wrapper for 3D */
.logo-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    animation: rotate3D 10s infinite cubic-bezier(0.42, 0, 0.58, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Logo Image */
.luxury-logo {
    width: 100%;
    height: auto;
    animation: metallic-shine 4s infinite alternate;
}

/* Sparkling Particles */
.sparkles::before,
.sparkles::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 15px;
    height: 15px;
  /*  background: radial-gradient(circle, rgba(255, 215, 0, 1), transparent);*/
    
    animation: sparkle 3s infinite ease-in-out;
    filter: blur(2px);
}

.sparkles::after {
    width: 10px;
    height: 10px;
    animation-delay: 1.5s;
}



/* Animations */

/* Background Glow Animation */
@keyframes luxury-glow {
    0%, 100% {
        box-shadow: 0 0 60px rgba(255, 223, 0, 0.7), 0 0 120px rgba(255, 223, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 90px rgba(255, 223, 0, 1), 0 0 150px rgba(255, 223, 0, 0.6);
    }
}

/* Rotating Golden Ring */
@keyframes rotate-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 3D Rotation */
@keyframes rotate3D {
    0% {
        transform: rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: rotateX(20deg) rotateY(20deg);
    }
    100% {
        transform: rotateX(0deg) rotateY(0deg);
    }
}

/* Metallic Shine Effect */
@keyframes metallic-shine {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(2) saturate(1.2);
    }
    100% {
        filter: brightness(1);
    }
}

/* Sparkle Effect */
@keyframes sparkle {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.5;
    }
}

/* Soft Glow Pulse */
@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
}

@font-face {
    font-family: "Lemon Tuesday";
    src: url("Lemon Tuesday.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}

header .brand-name .animated-logo span {
    font-family: "Lemon Tuesday", cursive;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

header .brand-name .animated-logo span:nth-child(-n+6) {
    color: #ff9933; /* Saffron color for "SELBY" */
}

header .brand-name .animated-logo span:nth-child(n+7) {
    color: #ffffff; /* White color for "ME" */
}


header .nav-options a {
    margin-left: 15px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

header .nav-options a:hover {
    color: #fffbe6;
}

/* Hamburger Button */
.hamburger-btn {
    font-size: 40px;
    margin-left: 7px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    display: block !important; /* Ensure it's shown */
}


@media (min-width: 768px) {
    #hamburger-btn {
        display: none;
    }
}

/* Side Menu (Hidden Initially) */
.side-menu {
    position: fixed;
    top: 0;
    right: -250px; /* Initially out of the screen */
    width: 250px;
    height: 100%;
    background: silver;
    color: white;
    transition: right 0.3s ease;
    z-index: 1000;
    padding-top: 2px;
}

.side-menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.side-menu ul li {
    padding: 10px;
    text-align: left;
}

.side-menu ul li a {
    color: #2c3e50;
    text-decoration: none;
    display: block;
    font-size: 20px;
    font-weight: bold;
}

.side-menu ul li a:hover {
    background-color: lightblue;
}

/* Subheader */
.subheader {
    text-align: center;
    padding: 10px;
    background: #a9a9a9;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.subheader input {
    width: 50%;
    padding: 8px;
    font-size: 14px;
    
    color:black;
    background:  #fff;
}
/*
.subheader button {
    padding: 8px 15px;
    background-color: #ff6f61;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
} */

/* Suggestions Box */
.suggestions-box {
    position: absolute;
    width: 50%;
    max-height: 200px;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    z-index: 1000;
    margin-right: 40px;
    display: none;
    margin-top: 35px; /* Ensures the suggestions box appears just below the search box */
    
    
}

.suggestions-box .suggestion-item {
    display: flex;
    align-items: center;
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.suggestions-box .suggestion-item img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    
    object-fit: cover;
}

.suggestions-box .suggestion-item span {
    font-size: 14px;
    color: #333;
}

.suggestions-box .suggestion-item:hover {
    background-color: #f9f9f9;
}

.suggestions-box .no-result {
    padding: 10px;
    text-align: center;
    color: #999;
    font-style: italic;
}

/* Hero Section */
.hero {
    position: relative;
    height: 300px;
    font-family: 'AppleIiScreenTypeface', 'cursive', monospace;
    color: #a9a9a9;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.8; /* Optional: make text more readable */
}

.hero-text,
.watermark {
    position: relative;
    z-index: 1;
}

.hero .btn-primary {
    background-color: #a9a9a9;
    color: black;
    padding: 10px 20px;
    border: none;
    
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    position: relative; /* Needed for proper text positioning */
    overflow: hidden; /* Ensures text animations are contained within the button */
}

.btn-primary .animated-text {
    display: inline-block;
    animation: textFade 3s infinite; /* Animation for the text */
}

@keyframes textFade {
    0% {
        opacity: 0;
        transform: translateY(-10px); /* Slide in from the top */
    }
    50% {
        opacity: 1;
        transform: translateY(0); /* Normal position */
    }
    100% {
        opacity: 0;
        transform: translateY(10px); /* Slide out to the bottom */
    }
}

.watermark {
  font-family: 'Press Start 2P', 'Courier New', monospace;
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    opacity: 0.5;
    color: silver;
    font-weight: bold;
}

/* Categories */
.categories {
    padding: 20px;
    text-align: center;
}

.category-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-card {
    width: 150px;
    
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}
.category-card a{
  font-weight: bold;
}

.category-card img {
    width: 100%;
    
    display: block;          /* Add this line */
}

.category-card:hover {
    transform: scale(1.1);
}

/* Banner Slider */
.banners {
    margin: 20px 0;
}

.banner-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
}

.banner-slider img {
    max-height: 150px;
    
}

/* Trending Products */
.trending {
   /* background: white;*/
    padding: 20px;
}

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

.product-card {
    background-color: #fff;
    
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 15px;
    text-align: center;
}


.product-card .image {
    position: relative; /* Ensures the discount badge is positioned relative to this container */
    display: inline-block; /* Prevents collapsing */
}
.product-card .image img {
    width: 100%; /* Ensures the image spans the full width of the container */
    height: auto; /* Maintains the aspect ratio */
    object-fit: contain; /* Prevents zooming and ensures the image fits within the container */
    max-height: 200px; /* Optional: set a maximum height to prevent oversized images */
}

.product-card .discount-badge {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: #ff6f61;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 3px 7px;
    
    z-index: 2; /* Ensures it appears above the image */
}
/*
.product-card h3 {
    margin-top: 10px;
}  */

.product-card .price {
    color: #ff6f61;
    font-weight: bold;
   /*margin: 10px 0; */
}
.product-card:hover {
    transform: scale(1.05);
}

/* For phone screens */
@media screen and (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* Two products per row */
        gap: 10px; /* Adjust gap for better spacing */
    }

    .product-card {
        padding: 10px; /* Reduce padding for smaller screens */
    }
}

/* Product Detail Page 
.product-detail {
    padding: 20px;
    background: white;
    border-radius: 10px;
    max-width: 800px;
    margin: auto;
} */

.image-slider {
    display: flex;
    overflow-x: auto;
    gap: 10px;
}

.image-slider img {
    max-width: 200px;
    
}

.product-detail .social-links a {
    margin-right: 10px;
    color: #ff6f61;
    text-decoration: none;
}

#mrp {
    text-decoration: line-through;
    color: gray;
    margin-right: 10px;
}

#discounted-price {
    color: #c0c;
    font-weight: bold;
    font-size: 1.1em;
}
#price {
    color: #c0c;
    font-weight: bold;
    font-size: 1.1em;
}

/* Footer */
.footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 20px 0;
    
    font-family: 'AppleIiScreenTypeface', 'cursive', monospace;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-section {
    flex: 1 1 200px;
    max-width: 200px;
    text-align: left;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-section a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f39c12;
}

.footer-section p {
    font-size: 14px;
    margin: 0;
}

.social-links a {
    display: inline-block;
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 10px;
}

.footer-bottom p {
    font-size: 16px;
    margin-bottom: 10px;
}

.order-now-btn {
    display: inline-block;
    background-color: #a9a9a9;
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    font-size: 16px;
    
    transition: background-color 0.3s ease;
}

.order-now-btn:hover {
    background-color: silver;
}


      

.animated-logo {
    display: flex;
    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.animated-logo span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInOnce 0.6s ease forwards;
}

/* Timing for Each Letter */
.animated-logo span:nth-child(1) { animation-delay: 0s; }
.animated-logo span:nth-child(2) { animation-delay: 0.2s; }
.animated-logo span:nth-child(3) { animation-delay: 0.4s; }
.animated-logo span:nth-child(4) { animation-delay: 0.6s; }
.animated-logo span:nth-child(5) { animation-delay: 0.8s; }
.animated-logo span:nth-child(6) { animation-delay: 1s; }
.animated-logo span:nth-child(7) { animation-delay: 1.2s; }
.animated-logo span:nth-child(8) { animation-delay: 1.4s; }
.animated-logo span:nth-child(9) { animation-delay: 1.6s; }
.animated-logo span:nth-child(10) { animation-delay: 1.8s; }
.animated-logo span:nth-child(11) { animation-delay: 2s; }
.animated-logo span:nth-child(12) { animation-delay: 2.2s; }
.animated-logo span:nth-child(13) { animation-delay: 2.4s; }
.animated-logo span:nth-child(14) { animation-delay: 2.6s; }
.animated-logo span:nth-child(15) { animation-delay: 2.8s; }

/* Animation Keyframes */
@keyframes fadeInOnce {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
nav a {
            color: #ecf0f1;
            text-decoration: none;
            margin: 0 10px;
            font-size: 18px;
        }
        /* Fixed Icons Container */
.fixed-icons {
  position: fixed;
  bottom: 85px;
  left: 5px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1000;
}

/* Individual Icon Style */
.fixed-icons .icon {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: white;
  
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fixed-icons .icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover Effects */
.fixed-icons .icon:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

.video, .image, .pdf {
            display: flex;
            justify-content: center;
            align-items: center;
            border: 1px solid #ddd;
            
            overflow: hidden;
            margin-bottom: 15px;
        }
        iframe {
            width: 100%;
            height: 400px;
        }
        img {
            max-width: auto;
            height: auto;
            display: block;
        }
        /* Filter Section Styling */
.filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    
    padding: 15px 20px;
    margin: 20px auto;
    max-width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.filter label {
    font-size: 16px;
    font-weight: bold;
    margin-right: 8px;
    color: #333;
}

.filter select {
    width: 180px;
    padding: 8px;
    font-size: 14px;
    color: #555;
    border: 1px solid #ccc;
    
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.filter select:hover,
.filter select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.2);
}

.filter strong {
    display: inline-block;
    margin-bottom: 5px;
    color: #007bff;
}

/* Adjustments for Smaller Screens */
@media (max-width: 768px) {
    .filter {
        flex-direction: column;
        gap: 15px;
    }

    .filter select {
        width: 100%;
    }
}
   /* Delivery boy animation styles */
.delivery-boy {
    position: absolute;
    bottom: 0; /* Align at the bottom of the header */
    right: -100px; /* Start off-screen on the right */
    width: 35px; /* Smaller size */
    height: auto;
    animation: moveLeft 8s linear infinite; /* Move left continuously */
    z-index: 500; /* Lower than the header elements to avoid overlap */
}

@keyframes moveLeft {
    0% {
        left: -100px; /* Start off-screen on the right */
    }
    100% {
        left: 100%; /* Move completely off-screen on the left */
    }
}
/* Slider container */
.image-sliders {
  width: 300px;
  height: 200px;
  overflow: hidden;
  position: relative;
  margin: auto;
  border: 2px solid #ccc;
  background-color: white;
}

/* Images container */
.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%; /* Will be updated dynamically in JS based on number of items */
}

/* Individual media elements */
.slides img,
.slides video,
.slides iframe {
  width: 300px;
  height: 200px;
  object-fit: contain; /* Fix zooming issue */
  flex-shrink: 0;
  vertical-align: middle;
}
.features-section {
            margin-top: 20px;
        }
        .features-section h3 {
            color: #2c3e50;
            margin-bottom: 10px;
        }
        .features-section ul {
            list-style: none;
            padding: 0;
        }
        .features-section li {
            background: #d5dbdb;
            margin: 5px 0;
            padding: 10px;
            
            color: #2c3e50;
            font-size: 16px;
            text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
        }
.navigation {
  
  align-items: center;
    justify-content: center;
    text-align: center;
}
button {
  background-color: black;
    color: white;
    padding: 2px 5px;
    border: none;
    
    cursor: pointer;
    text-decoration: none;
    
}
buttons {
  display: inline-block;
    background-color: ;
    color: #c0c;
    padding: 5px 10px;
    text-decoration: none;
    
    border: 1px solid #c0c;
    font-weight: bold;
}
butons {
  display: inline-block;
    background-color: ;
    color: #e64a19 ;
    padding: 10px 20px;
    text-decoration: none;
    
    border: 3px solid #ff5722;
    font-weight: bold;
    
}
.verified {
      color: green;
      font-size: 1em;
      margin-left: 5px;
      display: inline-flex;
      align-items: center;
    }
    .verified-icon {
      width: 16px;
      height: 16px;
      margin-left: 5px;
    }
.order-history-form {
    max-width: 400px;
    margin: 20px auto;
    padding: 15px;
    border: 1px solid #ccc;
    
    background: #f9f9f9;
}

.order-history-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.order-history-form input {
    width: 90%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    
}

.order-history-form button {
    width: 100%;
    padding: 10px;
    background: black;
    color: white;
    border: none;
    
    cursor: pointer;
}

.order-history-form button:hover {
    background: silver;
}

.order-history-results {
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    background: #fff;
    
}
.btn-prime {
    display: inline-block;
    background-color: ;
    color: #ff5722;
    padding: 5px 10px;
    text-decoration: none;
    
    border: 1px solid #e64a19;
    font-weight: bold;
}
 /* Fullscreen overlay */
#welcome-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999; /* Ensure it is above all other content */
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85)); /* Elegant gradient */
  animation: fadeOut 6s ease-out forwards; /* Smooth fade-out */
  backdrop-filter: blur(10px); /* Adding a subtle blur effect for more focus */
  filter: brightness(0.8); /* Make the background dim to enhance text visibility */
  overflow: hidden;
}

/* Centered content in overlay */
#welcome-container {
  text-align: center;
  color: #fff;
  font-family: 'Press Start 2P', 'Courier New', monospace; /* Elegant font */
  font-weight: 600;
  animation: scaleUp 2s cubic-bezier(0.25, 0.8, 0.25, 1), rotateIn 3s ease-in-out; /* Scale-up and smooth rotation */
  transform: translateY(10px); /* Initial subtle translation */
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4)); /* Enhanced shadow for depth */
  z-index: 10000;
  perspective: 1000px; /* Adds a 3D effect to the whole container */
}

/* Welcome image */
#welcome-image {
  width: 350px;
  margin-bottom: 50px;
  animation: zoomIn 1.5s ease-out, parallaxEffect 5s infinite alternate, rotate3d 4s infinite alternate; /* 3D rotation and parallax effect */
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4)); /* Enhanced shadow for depth */
  transform: translateY(15px); /* Smooth upward movement */
  transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth hover effects */
}

#welcome-image:hover {
  transform: scale(1.05) translateY(-5px) rotate(10deg); /* Interactive zoom and rotation on hover */
  opacity: 0.9; /* Slight opacity change for interactivity */
}

/* Welcome text */
#welcome-text {
  font-size: 38px;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.4;
  animation: fadeInText 2s ease-out, textGlow 1.5s ease-in-out infinite alternate, glitchEffect 1s infinite; /* Glow, fade-in, and glitch effects */
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 0 0 40px rgba(0, 255, 255, 1), 0 0 100px rgba(0, 255, 255, 1); /* Glowing text */
}

/* Fade out overlay */
@keyframes fadeOut {
  0% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

/* Animations for logo */
@keyframes zoomIn {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Parallax effect on image */
@keyframes parallaxEffect {
  0% { transform: translateY(0); }
  50% { transform: translateY(20px); }
  100% { transform: translateY(0); }
}

/* 3D rotation effect for the image */
@keyframes rotate3d {
  0% { transform: rotate3d(1, 1, 0, 0deg); }
  100% { transform: rotate3d(1, 1, 0, 360deg); }
}

/* Animations for welcome text */
@keyframes fadeInText {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Glowing text effect */
@keyframes textGlow {
  0%, 100% { text-shadow: 0 0 15px rgba(255, 255, 255, 0.7), 0 0 40px rgba(0, 255, 255, 0.8); }
  50% { text-shadow: 0 0 30px rgba(0, 255, 255, 1), 0 0 80px rgba(0, 255, 255, 0.8); }
}

/* Glitch effect on text */
@keyframes glitchEffect {
  0% { text-shadow: 0 0 5px rgba(255, 0, 0, 0.9), 0 0 10px rgba(255, 0, 0, 0.7); }
  20% { text-shadow: -5px 0 20px rgba(255, 255, 0, 0.8), 5px 0 20px rgba(255, 255, 0, 0.8); }
  40% { text-shadow: 5px 0 20px rgba(0, 255, 0, 0.8), -5px 0 20px rgba(0, 255, 0, 0.8); }
  60% { text-shadow: -5px 0 20px rgba(0, 0, 255, 0.8), 5px 0 20px rgba(0, 0, 255, 0.8); }
  80% { text-shadow: 0 0 5px rgba(255, 0, 0, 0.8), 0 0 10px rgba(255, 0, 0, 0.7); }
  100% { text-shadow: 0 0 10px rgba(0, 255, 255, 1), 0 0 40px rgba(0, 255, 255, 0.9); }
}

/* Smooth scale-up effect for container */
@keyframes scaleUp {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Smooth slide-in effect for container */
@keyframes slideInUp {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* Rotating effect for the container */
@keyframes rotateIn {
  0% { transform: rotate(-15deg); opacity: 0; }
  100% { transform: rotate(0deg); opacity: 1; }
}
/* Sticker styles */  
#offer-sticker {  
  position: fixed;  
  left: 1px;  
  top: 33%;  
  transform: translateY(-50%);  
  background-color: #a9a9a9;  
  color: black;  
  padding: 3px 7px;  
  
  cursor: pointer;  
  font-size: 16px;  
  font-weight: bold;  
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);  
  animation: zoomInOut 2s infinite, electricGlow 1.5s infinite;
  
}  

@keyframes zoomInOut {  
  0%, 100% {  
    transform: translateY(-50%) scale(1);  
  }  
  50% {  
    transform: translateY(-50%) scale(1.1);  
  }  
}

/* Light animation styles */
#offers-box {
  display: none;
  position: fixed;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  border: 2px solid #ff5733;
  
  padding: 15px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  width: 250px;
}

/* Glowing effect */
#offers-box::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  
  border: 2px solid rgba(192, 192, 192, 0.8);
  box-shadow: 0 0 10px 0 0 10px rgba(192, 192, 192, 0.8), 
            0 0 20px rgba(192, 192, 192, 0.6), 
            0 0 30px rgba(192, 192, 192, 0.4);
  animation: electricGlow 1.5s infinite;
  pointer-events: none;
}

@keyframes electricGlow {
  0% {
    box-shadow: 0 0 5px rgba(192, 192, 192, 0.8), 
                0 0 10px rgba(192, 192, 192, 0.6), 
                0 0 15px rgba(192, 192, 192, 0.4);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 
                0 0 30px rgba(255, 255, 255, 0.6), 
                0 0 45px rgba(255, 255, 255, 0.4);
  }
  100% {
    box-shadow: 0 0 5px rgba(192, 192, 192, 0.8), 
                0 0 10px rgba(192, 192, 192, 0.6), 
                0 0 15px rgba(192, 192, 192, 0.4);
  }
}

#offers-box h3 {
  margin: 0 0 10px;
  color: #a9a9a9;
}

#offers-box ul {
  list-style-type: disc;
  padding-left: 20px;
}
.order-summary {
            border: 1px solid #ddd;
            padding: 20px;
            margin-top: 20px;
        }
.search-icon {
  width: 30px;
  animation: rotateIcon 5s 2s infinite;
}

but {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-block;
}

@keyframes rotateIcon {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
 .animated-hr {
      position: relative;
      width: 100%;
      height: 2px;
      background-color:white;
      overflow: hidden;
    }

    .animated-hr::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, black, transparent);
      animation: slide 2s infinite;
    }

    @keyframes slide {
      0% {
        left: -100%;
      }
      50% {
        left: 0;
      }
      100% {
        left: 100%;
      }
    }
#Sticker {  
  position: absolute;  
  right: 0px;  
    
  transform: translateY(-50%);  
  background-color: silver;  
  color: black;  
  padding: 2px 6px;  
  
  cursor: pointer;  
  font-size: 7px;  
  font-weight: bold;  
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  
}


.banner {
    width: 100%;
    max-height: 400px; /* Adjust height as needed */
    
    object-fit: cover;
}

    .download-btn {
            display: inline-block;
            padding: 15px 30px;
            font-size: 10px;
            font-weight: bold;
            color: white;
            background: #a9a9a9;
            border: none;
            
            text-decoration: none;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
            transition: 0.3s;
        }
        .download-btn:hover {
            transform: scale(1.1);
            background: linear-gradient(to right, #000000, silver,#a9a9a9);
        }
        
       .otp-inputs {
    display: flex;
    gap: 8px;
    margin: 10px 0;
}
.otp-box {
    width: 30px;
    height: 40px;
    font-size: 20px;
    text-align: center;
}
.brand-carousel-container {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px;
    margin: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.brand-carousel {
    display: flex;
    gap: 20px;
    padding: 10px;
}

.brand-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    scroll-snap-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.brand-carousel-container::-webkit-scrollbar {
    display: none;
}

/* Scale the middle brand when centered in the scroll */
.brand-carousel-container:has(.brand-logo:hover) .brand-logo {
    transform: scale(0.9);
    opacity: 0.7;
}

.brand-logo:hover {
    transform: scale(1.5);
    opacity: 1;
    z-index: 10;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.btn-primary {
    color: black;
    font-weight: bold;
}


.swiper {
  width: 250px;
  height: 200px;
  
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 200px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.old-price {
    text-decoration: line-through;
    font-size: 1em;
    color: gray;
    margin-left: 5px;
  }

  .new-price {
    font-weight: bold;
    color: #c0c;
    font-size: 1.3em;
    margin-left: 5px;
  }
  .testimonial-container {
     width: 80%;
     max-width: 600px;
     background: #1b1b3a;
     color: #fff;
     padding: 20px;
     text-align: center;
     border-radius: 10px;
     position: relative;
     overflow: hidden;
 }
 
 .testimonial-title {
     font-size: 24px;
     margin-bottom: 15px;
 }
 
 .testimonial-slider {
     position: relative;
     overflow: hidden;
 }
 
 .testimonial-wrapper {
     display: flex;
     transition: transform 0.5s ease-in-out;
 }
 
 .testimonial-slide {
     min-width: 100%;
     opacity: 0;
     transition: opacity 0.5s ease-in-out;
 }
 
 .testimonial-slide.active {
     opacity: 1;
 }
 
 .testimonial-text {
     font-size: 16px;
     margin: 15px 0;
     line-height: 1.5;
 }
 
 .testimonial-user {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     margin-top: 10px;
 }
 
 .testimonial-user img {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     border: 2px solid #fff;
 }
 
 .testimonial-controls {
     position: absolute;
     top: 50%;
     width: 90%;
     display: flex;
     justify-content: space-between;
     transform: translateY(-50%);
 }
 
 .testimonial-controls span {
     background: rgba(255, 255, 255, 0.5);
     padding: 10px;
     cursor: pointer;
     border-radius: 50%;
     font-size: 20px;
 }
 
 .testimonial-dots {
     display: flex;
     justify-content: center;
     margin-top: 10px;
 }
 
 .dot {
     width: 10px;
     height: 10px;
     margin: 5px;
     background: #ccc;
     border-radius: 50%;
     cursor: pointer;
 }
 
 .dot.active {
     background: #fff;
     }
