@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.top-header {
    background: linear-gradient(90deg, #FF9800, #d18e2a);
    color: white;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
}

.top-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    animation: shine 20s linear infinite;
}

@keyframes shine {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.top-header .container {
    position: relative;
    z-index: 1;
}

.welcome-text {
    margin: 0;
    font-weight: 500;
    animation: slideIn 0.5s ease-out;
}

.contact-info {
    margin-left: 15px;
    font-size: 0.9em;
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
    animation-delay: 0.5s;
}

.contact-info i {
    margin-right: 5px;
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 767px) {
    .top-header {
        text-align: center;
    }
    .contact-info {
        display: block;
        margin: 5px 0;
    }
}

/* Navbar Styling */
.navbar {
    background: #fff;
    padding: 12px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 600;
    font-size: 1.8rem;
    color: #333;
}

.navbar-brand span {
    font-style: italic;
    color: #ff5733;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    padding: 10px 15px;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #ff5733;
}

/* Dropdown Animation */
.animated-dropdown {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease-in-out;
}
.nav-item{
    margin-right: 14px;
    font-style: italic;
}
.nav-item:hover .animated-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
    display: block;
}

/* Submenu Hover Animation */
.dropdown-submenu {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 200px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.dropdown-submenu:hover .submenu {
    display: block;
    animation: fadeInRight 0.3s ease-in-out;
}

/* Dropdown Item Styling */
.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
    border: none;
    background: white;
    min-width: 230px;
    padding: 10px;
}

/* Main Dropdown Items */
.dropdown-item {
    font-weight: 500;
    padding: 10px;
    transition: background 0.3s ease-in-out;
    display: flex;
    align-items: center;
}

/* Align Icon & Text */
.dropdown-item i {
    margin-right: 8px;
}

/* Dropdown Item Hover */
.dropdown-item:hover {
    background: #ff5733;
    color: #fff;
    padding-left: 15px;
    transition: all 0.3s ease-in-out;
}

/* Arrow Icons */
.dropdown-submenu > a:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105"; /* Right Arrow */
    float: right;
    transition: 0.3s ease-in-out;
}

.dropdown-submenu:hover > a:after {
    content: "\f107"; /* Down Arrow */
}

/* Submenu Arrow Styling */
.submenu .dropdown-item:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f101"; /* Small Right Arrow */
    margin-right: 8px;
    transition: 0.3s ease-in-out;
}

/* Submenu Item Hover */
.submenu .dropdown-item:hover:before {
    content: "\f105"; /* Larger Right Arrow */
}

/* Keyframe Animations */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* Carousel Styling */
.carousel-inner img {
    height: 600px; /* Set fixed height for equal images */
    object-fit: cover; /* Crop to fit without stretching */
}

.carousel-caption {
    position: absolute;
    bottom: 20%;
    margin-left: -1290px !important;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
}

.carousel-caption p {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff9f00;
}

/* Watch Button */
.watch-btn {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    font-size: 1.2rem;
    text-decoration: none;
    border-radius: 5px;
}

.watch-btn:hover {
    background: #ff5733;
    color: #fff;
}

.navbar-brand {
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-size: 18px;
    transition: 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #FF9800 !important;
}

.navbar-nav .dropdown-menu {
    border-radius: 10px;
    transition: 0.3s;
}

.navbar-nav .dropdown-menu a:hover {
    background: #FF9800;
    color: white;
}

.navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none;
}

.form-control {
    border-radius: 25px;
    padding: 10px 15px;
}

.btn-primary {
    border-radius: 25px;
}


:root {
    --primary-blue: #FF9800;
    --light-blue: #e6f2ff;
    --white: #ffffff;
    --gray: #f8f9fa;
    --dark-gray: #6c757d;
}

.categories {
    background-color: var(--white);
    padding: 4rem 0;
}

.categories h2 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.category-description {
    color: var(--dark-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.category-slider {
    position: relative;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-slider::-webkit-scrollbar {
    display: none;
}

.category-wrapper {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
}

.category-card {
    flex: 0 0 auto;
    width: 120px;
    height: 120px;
    background-color: #FF9800;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
}

.category-card i {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: white;
    font-weight: 600;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .categories h2 {
        font-size: 2rem;
    }

    .category-description {
        font-size: 1rem;
    }
    
    .category-card {
        width: 100px;
        height: 100px;
    }
    
    .category-card i {
        font-size: 1.5rem;
    }
    
    .category-card p {
        font-size: 0.8rem;
    }
}
.category-card{
    margin-right: 50px !important;
}



.brand-slider {
    background-color: #f8f9fa;
    padding: 4rem 0;
    overflow: hidden;
}

.brand-slider h2 {
    color: #FF9800;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: calc(180px * 14);
    animation: slide 30s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

.brand-item {
    width: 180px;
    padding: 0 15px;
    transition: transform 0.3s ease;
    perspective: 1000px; /* Add perspective for 3D effect */
} 

.brand-item:hover {
    transform: scale(1.05); /* Slightly reduced scale for a more subtle effect */
}

.brand-item img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease; /* Add transform to transition */
    transform-style: preserve-3d; /* Preserve 3D transformations */
}

.brand-item:hover img {
    filter: grayscale(0%);
    transform: rotateX(-10deg); /* Tilt on the x-axis when hovered */
}

.brand-item:hover img {
    filter: grayscale(0%);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-180px * 7));
    }
}

@media (max-width: 768px) {
    .brand-slider h2 {
        font-size: 2rem;
    }
}

.brand-slider {
    background-color: #f8f9fa;
    padding: 4rem 0;
    overflow: hidden;
}

.brand-slider h2 {
    color: #FF9800;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
}

.slider-track {
    display: flex;
    width: calc(200px * 10); /* Adjusted for 5 visible items */
    animation: slide 20s linear infinite; /* Increased speed */
}

.slider-track:hover {
    animation-play-state: paused;
}

.brand-item {
    width: 200px; /* Adjusted for 5 visible items */
    padding: 0 40px;
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: scale(1.1);
}

.brand-item img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    filter: grayscale(100%) contrast(1.2) brightness(1.1); /* Adjusted to remove white background */
    transition: filter 0.3s ease;
    mix-blend-mode: multiply; /* This helps to remove white backgrounds */
}

.brand-item:hover img {
    filter: grayscale(0%) contrast(1) brightness(1);
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 5)); /* Adjusted for 5 visible items */
    }
}

@media (max-width: 768px) {
    .brand-slider h2 {
        font-size: 2rem;
    }
    
    .slider-container {
        height: 80px; /* Slightly reduced height for mobile */
    }
    
    .brand-item {
        width: 160px; /* Adjusted for mobile */
    }
    
    .brand-item img {
        height: 80px; /* Adjusted for mobile */
    }
    
    .slider-track {
        width: calc(160px * 10); /* Adjusted for mobile */
    }
    
    @keyframes slide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-160px * 5)); /* Adjusted for mobile */
        }
    }
}


.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.company-name {
    font-size: 1.8rem;
}

.tagline {
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    margin-left: 4px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    height: 600px;
}

.bento-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.bento-item:hover {
    transform: scale(1.02);
}

.bento-item-large {
    grid-row: span 2;
}

.bento-item-wide {
    grid-column: span 2;
}

.category-box {
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.category-box:hover .category-bg {
    transform: scale(1.1);
}

.btn-custom {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background-color: #fff;
    color: #FF9800;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
        height: auto;
    }

    .bento-item-large, .bento-item-wide {
        grid-column: auto;
        grid-row: auto;
    }
}

.btn-custom {
    background-color: #FF9800;
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
}
.btn-custom:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.banners{
    padding: 0 40px;
}
.b2{
    margin-left: 520px;
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); /* Decreased min width */
    gap: 2.2rem;
    padding: 2rem;
}
.product-card {
    position: relative;
    background: white;
    padding: 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.discount-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #1a237e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
    z-index: 2;
}
.wishlist-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.wishlist-btn:hover {
    background: #f8f9fa;
    transform: scale(1.1);
}
.product-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}
.product-card:hover .product-image {
    transform: scale(1.05);
}
.product-category {
    color: #666;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}
.product-name {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    min-height: 40px;
    color: #333;
}
.price-info {
    height: 30px;
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
}
.product-card:hover .price-info {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}
.original-price {
    color: #999;
    text-decoration: line-through;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}
.current-price {
    color: #000;
    font-weight: 600;
}
.add-to-cart-container {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    height: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.product-card:hover .add-to-cart-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.add-to-cart {
    width: 100%;
    background: #1a237e;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    transform: translateY(0);
}
.add-to-cart:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}


  .footer {
            background-color: #FF9800;
            color: white;
            padding: 3rem 0 1rem;
            margin-top: auto;
        }
        .footer h5 {
            color: white;
            font-weight: 600;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
            display: inline-block;
        }
        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }
        .newsletter-form {
            display: flex;
        }
        .newsletter-form input {
            background-color: rgba(255, 255, 255, 0.1);
            border: none;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px 0 0 50px;
        }
        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        .newsletter-form button {
            background-color: white;
            color: #FF9800;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 0 50px 50px 0;
            transition: background-color 0.3s ease;
        }
        .newsletter-form button:hover {
            background-color: #f8f9fa;
        }
        .payment-options {
            font-size: 1.5rem;
            color: white;
        }
        .payment-options i {
            margin-right: 0.75rem;
            transition: transform 0.3s ease;
        }
        .payment-options i:hover {
            transform: translateY(-3px);
        }
        .social-icons a {
            color: white;
            font-size: 1.2rem;
            margin-left: 1rem;
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .social-icons a:hover {
            transform: translateY(-3px);
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1rem;
            margin-top: 2rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .icon-circle {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #FF9800;
            border-radius: 50%;
            color: white;
            margin-right: 4px;
            transition: all 0.3s ease;
        }
        .icon-circle:hover {
            background-color: #0056b3;
            transform: scale(1.1);
        }


    
        
        .discount-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: #ff4136;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-weight: bold;
        }
        
        .wishlist-btn {
            position: absolute;
            top: 10px;
            right: 10px;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: #FF9800;
            cursor: pointer;
        }
        
     
        /* Swiper custom styles */
        .swiper-button-next,
        .swiper-button-prev {
            color: #FF9800;
        }
        
        .swiper-pagination-bullet-active {
            background-color: #FF9800;
        }

       .swiper-pagination{
        margin-top: 30px !important;
       }


       .categories-nav {
        background-color: white;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        position: relative;
        z-index: 1000;
    }
    
    .categories-nav .nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .categories-nav .nav::-webkit-scrollbar {
        display: none;
    }
    
    .categories-nav .nav-link {
        white-space: nowrap;
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
        position: relative;
        overflow: hidden;
        transition: color 0.3s ease;
        color: #333;
    }
    
    .categories-nav .nav-link span {
        position: relative;
        z-index: 2;
    }
    
    .categories-nav .nav-link .hover-bg {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #FF9800;
        opacity: 0.1;
        transition: transform 0.3s ease-out;
        transform: translateX(0);
        z-index: 1;
    }
    
    .categories-nav .nav-link:hover {
        color: #FF9800;
    }
    
    .categories-nav .nav-link:hover .hover-bg {
        transform: translateX(100%);
    }
    
    /* Active state */
    .categories-nav .nav-link.active {
        color: #FF9800;
        font-weight: 600;
    }
    
    .categories-nav .nav-link.active .hover-bg {
        left: 0;
        opacity: 0.1;
        transform: none;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .categories-nav .nav-link {
            padding: 0.8rem 1rem;
            font-size: 0.85rem;
        }
    }

    .video-section {
        background-color: #f8f9fa;
    }
    
    .video-container {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .video-container video {
        display: block;
        width: 100%;
        height: auto;
    }
    
    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        color: white;
        text-align: center;
        padding: 20px;
    }
    
    .video-overlay h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    
    .video-overlay p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary {
        background-color: #FF9800;
        border-color: #FF9800;
        padding: 12px 30px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
        background-color: #0056b3;
        border-color: #0056b3;
        transform: translateY(-3px);
        box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
    }
    
    @media (max-width: 768px) {
        .video-overlay h2 {
            font-size: 2rem;
        }
    
        .video-overlay p {
            font-size: 1rem;
        }
    
        .btn-primary {
            padding: 10px 20px;
            font-size: 0.9rem;
        }
    }

    .category-content {
        position: absolute;
        bottom: 20px;
        left: 20px;
        z-index: 2;
    }
    .category-box {
        height: 100%;
        position: relative;
        overflow: hidden;
        border-radius: 20px;
    }
    
    .category-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        transition: transform 0.3s ease;
    }
   
    .btn-custom {
        background-color: rgba(255, 255, 255, 0.9);
        color: #333;
        border: none;
        padding: 10px 20px;
        border-radius: 30px;
        font-weight: bold;
        transition: all 0.3s ease;
    }
    
    .btn-custom:hover {
        background-color: #fff;
        color: #FF9800;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
   

    .featured-product {
        border: 2px solid #ffd700;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .featured-badge {
        position: absolute;
        top: 10px;
        right: -25px;
        background: linear-gradient(45deg, #ff4e50, #f9d423);
        color: white;
        padding: 5px 25px;
        transform: rotate(45deg);
        font-weight: bold;
        z-index: 2;
    }
    
    .featured-text {
        margin-left: 14 px;
    }
 
    
    .discount-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background-color: #ff4e50;
        color: white;
        padding: 5px 10px;
        border-radius: 5px;
        font-weight: bold;
        z-index: 2;
    }
    
    
    .product-image {
        width: 100%;
        height: 200px;
        object-fit: contain;
        margin-bottom: 15px;
    }
    
    .product-category {
        font-size: 0.9rem;
        color: #666;
        margin-bottom: 5px;
    }
    
    
    .featured-product .price-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10px;
    }
    
   .featured-product .original-price {
        text-decoration: line-through;
        color: #999;
    }
    
    .featured-product .current-price {
        font-size: 1.2rem;
        font-weight: bold;
        color: #ff4e50;
    }
    
    .savings {
        font-size: 0.9rem;
        color: #28a745;
        margin-bottom: 10px;
    }
    
    .savings-amount {
        font-weight: bold;
    }

    .product-features {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
        font-size: 0.8rem;
        color: #666;
    }
    
    .product-features span {
        display: flex;
        align-items: center;
    }
    
    .product-features i {
        margin-right: 5px;
        color: #28a745;
    }
    
    .product-card:hover .product-features{
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
    }
   
    
    