/* -------------------- NAVBAR -------------------- */
/* Navbar Base Styles */
.navbar {
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    background-color: #343a40;
}

/* Brand Logo */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #fff;
}

/* Navbar Collapse Panel */
#navbarNav {
    min-width: 250px;
    padding: 1rem;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    background-color: #343a40;
}

.navbar-collapse ul {
    list-style: none;
    padding-left: 0;
}

/* Navbar Links */
.navbar-nav {
    display: flex;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
}

.navbar-nav .nav-item {
    margin: 0 15px;
    position: relative;
}

.navbar-nav .nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    padding-bottom: 8px;
    text-decoration: none;
    position: relative;
    display: inline-block;
    border-bottom: 2px solid #555; /* Subtle underline always visible */
    margin-bottom: 5px;
    transition: color 0.3s;
}

/* Hover & Active State */
.navbar-nav .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ffc107;
    transition: width 0.3s;
    margin-top: 5px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: #ffc107 !important;
}


/* -------------------- CART -------------------- */
/* Cart Icon Button */
.cart-icon {
    position: relative;
    font-size: 1.2rem;
}

/* Red Badge on Cart */
.cart-count {
    background: red;
    color: #fff;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 0.75rem;
    position: absolute;
    top: -8px;
    right: -10px;
}

/* Dropdown Cart Panel */
.dropdown-cart {
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: #fff;
    padding: 15px;
    font-size: 0.9rem;
}

/* Cart Title */
.dropdown-cart h6 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Cart Items List */
#cart-items {
    padding: 0;
    margin: 0;
}

#cart-items li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

#cart-items li:last-child {
    border-bottom: none;
}

/* Cart Item Image */
.cart-item img {
    width: 50px;
    height: auto;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
}

/* Quantity Input */
.quantity-input {
    width: 50px;
    text-align: center;
    padding: 4px;
}

/* Total Section */
.dropdown-cart p {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
}

/* Highlight Total Amount */
#cart-total {
    font-weight: bold;
    color: #222;
}

/* Buy Now Button */
.dropdown-cart .btn-success {
    padding: 10px;
    font-weight: 500;
    border-radius: 6px;
    transition: 0.3s;
}

.dropdown-cart .btn-success:hover {
    background-color: #218838;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .dropdown-cart {
        width: 90vw; /* Use viewport width for better scaling */
        min-width: 320px; /* Ensure it's not too narrow on phones */
        max-width: 500px;
        left: 0;
        right: 0;
        margin: 0 auto;
        border-radius: 0;
    }
}


/* -------------------- HEADER / BANNER -------------------- */
header .item {
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    inset: 0;
}

.banner-section {
    padding: 50px 0;
    background-color: snow;
}

.banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.banner-image {
    flex: 1 1 500px;
    max-width: 550px;
}

.banner-image img {
    width: 100%;
    height: 350px; /* Fixed height to ensure consistency */
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.banner-image img:hover {
    transform: scale(1.03);
}


/* -------------------- PRODUCT CARDS -------------------- */
.product-card {
    transition: transform 0.2s;
}

.product-card:hover {
    transform: scale(1.03);
}

.card {
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card img {
    transition: 0.3s ease-in-out;
}

.card img:hover {
    transform: scale(1.05);
}

.card-img-top {
    max-height: 300px;
}

#products h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin: 0 auto;
    margin-top: 10px;
    border-radius: 2px;
}

/* -------------------- NEW ARRIVALS -------------------- */
 .new-arrivals-section .card-img-top {
    height: 200px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
  }

  .new-arrivals-section .card:hover .card-img-top {
    transform: scale(1.05);
  }

  .new-arrivals-section .card {
    border-radius: 0.5rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    height: 100%;
  }

  .new-arrivals-section .card:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }


  /* -------------------- CATERGORIES -------------------- */
  /* Card Styling */
.card {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Card Image Styling */
.card-img-top,
.category-img {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Hover effect for category images */
.category-img:hover,
.card-img-top:hover {
    transform: scale(1.05);
    cursor: pointer;
}

/* -------------------- TIKTOK BANNER -------------------- */
.tiktok-banner {
    background: #000;
    color: white;
    padding: 40px;
    text-align: center;
}

/* -------------------- TRACKING -------------------- */
.tracking-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.tracking-form {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.tracking-form input {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.tracking-form button {
    padding: 10px 20px;
    background-color: #0d6efd;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.tracking-form button:hover {
    background-color: #084298;
}

.tracking-result {
    margin-top: 20px;
    font-weight: bold;
}

/* -------------------- MODAL -------------------- */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

.modal-content {
    background-color: #fff;
    margin: auto;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
}

.close-button {
    float: left;
    font-size: 28px;
    cursor: pointer;
}

/* -------------------- ORDER DETAILS -------------------- */
.order-details {
    font-family: 'Segoe UI', Tahoma, sans-serif;
    color: #333;
    max-width: 600px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.order-details h3 {
    border-bottom: 1px solid #eee;
    padding-bottom: 6px;
    margin-top: 20px;
    font-size: 18px;
    color: #222;
}

.order-section {
    background-color: #f9f9f9;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.order-section .item {
    padding: 10px 0;
}

.order-section p {
    margin: 8px 0;
}

.order-section hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 10px 0;
}

.order-status {
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
    font-size: 16px;
}

/* Order Status Colors */
.status-processing {
    background-color: #fff3cd;
    color: #856404;
}

.status-shipped {
    background-color: #cce5ff;
    color: #004085;
}

.status-delivered {
    background-color: #d4edda;
    color: #155724;
}

.status-cancelled {
    background-color: #f8d7da;
    color: #721c24;
}

/* -------------------- BRANDS -------------------- */
.featured-brands img {
    max-height: 100px;
    object-fit: contain;
}

#featured-brands h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin: 0 auto;
    margin-top: 10px;
    border-radius: 2px;
}

.brand-item {
    width: 120px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.brand-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* -------------------- TESTIMONIALS -------------------- */
.testimonials-section {
    background-color: #f9f9f9;
}

.testimonials-section h2 {
    font-size: 2rem;
    color: #333;
    position: relative;
}

.testimonial-card {
    background: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    padding: 1rem 0;
}

.testimonial-text::before,
.testimonial-text::after {
    content: '"';
    font-size: 2rem;
    color: #0d6efd;
    position: relative;
    top: 0.2rem;
}

.testimonial-author {
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

.testimonial-author span {
    font-weight: 400;
    font-size: 0.9rem;
    color: #888;
}


/* -------------------- CAROUSEL -------------------- */
.owl-carousel .item {
    position: relative;
    height: 80vh;
    background-size: cover;
    background-position: center;
}

.carousel-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.owl-item.active .carousel-content {
    opacity: 1;
    transform: translateY(0);
}

.carousel-content h1, 
.carousel-content p, 
.carousel-content a {
    transition: all 0.10s ease;
}

.owl-item.active .carousel-content h1 {
    transition-delay: 0.4s;
}

.owl-item.active .carousel-content p {
    transition-delay: 0.6s;
}

.owl-item.active .carousel-content a {
    transition-delay: 0.8s;
}

.carousel-content h1 {
    font-size: 3rem;
    font-weight: 700;
    animation: fadeInUp 1s ease forwards;
}

.carousel-content p {
    font-size: 1.25rem;
    animation: fadeInUp 1.5s ease forwards;
}

.carousel-content a {
    animation: fadeInUp 2s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -------------------- SECTIONS HEADINGS -------------------- */
.new-arrivals-section h2,
.categories-section h2,
.wholesale-section h2,
.trending-section h2{
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.new-arrivals-section h2::after,
.categories-section h2::after,
.wholesale-section h2::after,
.trending-section h2::after,
.testimonials-section h2::after,
.social-feed-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin: 0 auto;
    margin-top: 10px;
    border-radius: 2px;
}


/* -------------------- WHOLESALE SECTION -------------------- */
.wholesale-section {
    position: relative;
    overflow: hidden;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.7;
}

.wholesale-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
}

.wholesale-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.wholesale-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #ddd;
}

.wholesale-content .btn {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.wholesale-content .btn:hover {
    transform: scale(1.05);
}

/* -------------------- BUTTONS -------------------- */
.btn-outline-dark:hover {
    background-color: #000;
    color: #fff;
}

/* -------------------- PAYMENT -------------------- */
.payment-icons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.payment-icons img {
    height: 30px;
}

.bank-details, .credit-icons, .paystack-details {
    display: none;
    padding: 10px;
    border: 1px solid #ccc;
    margin-top: 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.form-select {
    width: 100%;
    padding: 8px;
    font-size: 14px;
}

/* -------------------- TIMER -------------------- */
.timer {
    color: red;
    font-weight: bold;
    margin-top: 10px;
}

/* -------------------- BOTTOM NAV -------------------- */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #ccc;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    z-index: 999;
}

.nav-item {
    flex: 1;
    text-decoration: none;
    color: #333;
    font-size: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5px 0;
    position: relative;
    border-right: 1px solid #ddd;
    transition: color 0.3s;
}

.nav-item:last-child {
    border-right: none;
}

.nav-item i {
    font-size: 16px;
    margin-bottom: 3px;
    color: #555;
    transition: color 0.3s;
}

.nav-item:hover i,
.nav-item:hover span {
    color: #007bff;
}

/* Active underline effect */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s, width 0.3s;
}

.nav-item.active::after {
    background-color: #007bff;
}

/* Optional: active color change too */
.nav-item.active i,
.nav-item.active span {
    color: #007bff;
}



/* -------------------- MAP -------------------- */
.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    border: 0;
}

/* -------------------- ACCOUNT -------------------- */
/* General Container Styling */

.container {
    font-family: 'Poppins', sans-serif;
}

.section-heading h2 {
    font-size: 2rem;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    text-align: center;
}

.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #0d6efd;
    margin: 10px auto 0;
    border-radius: 3px;
}

.account-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 50px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.image-section img {
    width: 200px;
    border-radius: 50%;
    border: 4px solid #0d6efd;
    padding: 5px;
    transition: transform 0.3s ease;
}

.image-section img:hover {
    transform: scale(1.05);
}

.image-section p {
    text-align: center;
    color: #666;
}

.form-section {
    min-width: 320px;
    max-width: 400px;
    width: 100%;
}

.form-control {
    display: block;
    width: 100%;
    margin-bottom: 15px;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 5px rgba(13, 110, 253, 0.1);
}

.toggle-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.toggle-buttons .btn {
    flex: 1;
    padding: 10px 20px;
    border: 1px solid #0d6efd;
    background-color: transparent;
    color: #0d6efd;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-buttons .btn:hover {
    background-color: #0d6efd;
    color: #fff;
}

.btn-primary {
    background-color: #0d6efd;
    border: none;
    color: #fff;
    padding: 10px;
    font-weight: 500;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #084298;
}

.btn-success {
    background-color: #198754;
    border: none;
    color: #fff;
    padding: 10px;
    font-weight: 500;
    border-radius: 6px;
    transition: 0.3s;
}

.btn-success:hover {
    background-color: #14532d;
}


/* -------------------- CONTACT-------------------- */
.contact-section {
    padding: 60px 0;
    background-color: #f9fafb;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #222;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
}

.contact-section form .form-control {
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    transition: 0.3s;
}

.contact-section form .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
}

.contact-section form .btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 10px;
    transition: all 0.4s ease;
    width: 100%;
}

.contact-section form .btn-primary:hover {
    background-color: #0a58ca;
    border-color: #0a58ca;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-section ul {
    padding: 0;
    margin-top: 20px;
}

.contact-section ul li {
    list-style: none;
    margin-bottom: 20px;
    font-size: 1rem;
    color: #444;
    display: flex;
    align-items: center;
}

.contact-section ul li i {
    color: #0d6efd;
    margin-right: 12px;
    font-size: 1.2rem;
}

.contact-section a {
    color: #444;
    transition: 0.3s;
}

.contact-section a:hover {
    color: #0d6efd;
    text-decoration: none;
}

.contact-section h4 {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.contact-section .social-icons a {
    font-size: 1.2rem;
    margin-right: 15px;
    color: #333;
    transition: 0.3s ease;
}

.contact-section .social-icons a:hover {
    color: #0d6efd;
    transform: scale(1.1);
}

.contact-section h2::after,
.contact-section h4::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #0d6efd;
    margin: 10px auto 0;
    border-radius: 2px;
}


/* -------------------- FOOTER -------------------- */
footer{
    margin-bottom: 60px;
}

/* -------------------- WHATSAPP FLOAT -------------------- */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 80px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    background-color: #128c7e;
}

/* -------------------- GOTOUP BTN -------------------- */
#goTopBtn {
    position: fixed;
    bottom: 140px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #333;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 18px;
    display: none;
}

#goTopBtn:hover {
    background-color: #555;
}

/* -------------------- SERVICES -------------------- */
.services {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.services h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #007bff; /* Change color if you want */
    margin: 0 auto;
    margin-top: 10px;
    border-radius: 2px;
}


.service-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.service-box {
    background-color: #fff;
    padding: 30px 20px;
    width: 260px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    text-align: center;
}

.service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-box i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 20px;
}

.service-box h3 {
    font-size: 1.2rem;
    color: #222;
    margin-bottom: 15px;
}

.service-box p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Optional: Responsive on smaller screens */
@media (max-width: 768px) {
    .service-container {
        flex-direction: column;
        align-items: center;
    }
}

/* FAQ Section */
/* FAQs Section */
.faq-section, .return-policy-section {
    flex: 1;
    min-width: 300px;
}

.faq-section h2, .return-policy-section h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
}

.faq-section h2::after,
 .return-policy-section h2::after{
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin: 10px auto 0;
    border-radius: 2px;
}

.faq-section .faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    padding: 10px 0;
}

.faq-question i {
    transition: transform 0.3s;
    color: #007bff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    font-size: 0.95rem;
    color: #555;
    padding-left: 10px;
}

.faq-item.active .faq-answer {
    max-height: 150px;
    padding-top: 5px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Return Policy Section */
.return-policy-section {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
}

.return-policy-section ul {
    margin: 10px 0;
    padding-left: 20px;
}

.return-policy-section ul li {
    list-style: disc;
    margin-bottom: 8px;
}


/* How It Works Section */
/* How It Works Section */
.how-it-works-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
}

.how-it-works-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    position: relative;
}

.how-it-works-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin: 10px auto 0;
    border-radius: 2px;
}

.how-it-works-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin: 10px auto 0;
    border-radius: 2px;
}

.steps-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.step {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    width: 280px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.step:hover {
    transform: translateY(-5px);
}

.step i {
    color: #007bff;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
}

.step p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

/* Blog section */
.blog-section {
    padding: 4rem 1rem;
    background-color: #f9f9f9;
    text-align: center;
}

.blog-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.blog-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin: 10px auto 0;
    border-radius: 2px;
}

.blog-container {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

.blog-post {
    flex: 1 1 300px;
    max-width: 350px;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.blog-post img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.blog-content {
    text-align: left;
}

.blog-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.blog-content p {
    font-size: 1rem;
    line-height: 1.6;
}

/* TOAST */
.sales-feed {
    position: fixed;
    bottom: 35%;
    right: -350px;
    background-color: rgba(255, 255, 255, 0.85);
    color: #333;
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-width: 200px;
    font-family: 'Poppins', sans-serif;
    transition: right 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    backdrop-filter: blur(4px);
}

.sales-feed.show {
    right: 30px;
    opacity: 1;
}

.sales-feed-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sales-feed-text::before {
    content: "🔥";
    font-size: 1.1rem;
    color: #0d6efd;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ...........POINTS.............. */
.points-card, .badge-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.points-card:hover, .badge-card:hover {
    transform: translateY(-5px);
}

.points-card .points {
    font-size: 2rem;
    font-weight: 600;
    color: #0d6efd;
}

.badge-card .badge-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    transition: transform 0.3s;
}

.loyalty-section .progress {
    background-color: #e9ecef;
    border-radius: 50px;
    overflow: hidden;
}
