/*Aboutus page*/
:root {
    --primary-color: #ffc107;
    --secondary-color: #28a745;
    --dark-color: #343a40;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Header Styles */


/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(40, 167, 69, 0.8), rgba(40, 167, 69, 0.8)), url('https://picsum.photos/seed/organicfarm/1600/600.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.03);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.value-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.value-description {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: white;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid var(--light-bg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.member-position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.member-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.member-social a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(40, 167, 69, 0.9), rgba(40, 167, 69, 0.9)), url('https://picsum.photos/seed/organicstats/1600/400.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 80px 0;
}

/* Cart Page Styles */
.cart-page {
    padding: 60px 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
}

.cart-table {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.cart-table thead {
    background-color: var(--light-bg);
}

.cart-table th {
    font-weight: 600;
    color: var(--dark-color);
    border: none;
    padding: 15px;
}

.cart-table td {
    vertical-align: middle;
    padding: 20px 15px;
    border: none;
    border-bottom: 1px solid #eee;
}

.cart-table tr:last-child td {
    border-bottom: none;
}

.cart-page .product-info {
    display: flex;
    align-items: center;
}

.cart-page .product-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.cart-page .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cart page image hard constraints */
.cart-page .product-info .product-image {
    width: 80px;
    height: 80px;
}

.cart-page .product-info .product-image img,
.cart-page .product-info img {
    width: 80px !important;
    height: 80px !important;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

@media (max-width: 576px) {
    .cart-page .product-info .product-image {
        width: 64px;
        height: 64px;
    }

    .cart-page .product-info .product-image img,
    .cart-page .product-info img {
        width: 64px !important;
        height: 64px !important;
    }
}

.product-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.product-details p {
    margin-bottom: 0;
    color: #666;
    font-size: 0.9rem;
}

.cart-page .quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: fit-content;
}

.cart-page .quantity-selector button {
    background-color: var(--light-bg);
    border: none;
    width: 35px;
    height: 35px;
    font-weight: bold;
    color: var(--dark-color);
}

.cart-page .quantity-selector input {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    height: 35px;
}

.remove-btn {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.remove-btn:hover {
    color: #c82333;
}

.cart-summary {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.summary-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    padding-top: 15px;
    border-top: 1px solid #eee;
    margin-top: 15px;
}

.promo-code {
    margin-bottom: 20px;
}

.promo-code input {
    border-radius: 5px 0 0 5px;
    border-right: none;
}

.promo-code button {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: none;
    border-radius: 0 5px 5px 0;
    font-weight: 600;
    padding: 0 15px;
}

.promo-code button:hover {
    background-color: #e0a800;
}

.checkout-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px;
    font-weight: 600;
    border-radius: 5px;
    width: 100%;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.checkout-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.continue-shopping {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

.continue-shopping:hover {
    color: #218838;
}

.continue-shopping i {
    margin-right: 5px;
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 300;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: white;
}

.testimonial-card {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(40, 167, 69, 0.2);
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.author-info p {
    margin-bottom: 0;
    color: #666;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: var(--primary-color);
    margin-bottom: 15px;
}



.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

/*Aboutus page  End*/
/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.contact-info {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.info-content h5 {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.info-content p {
    margin-bottom: 0;
    color: #666;
}

.contact-form {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control,
.form-select {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.25rem rgba(40, 167, 69, 0.25);
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.submit-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

.accordion-button {
    font-weight: 600;
    color: var(--dark-color);
    background-color: var(--light-bg);
}

.accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    background-color: rgba(40, 167, 69, 0.1);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2328a745'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2328a745'%3e%3cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3e%3c/svg%3e");
}

.accordion-body {
    color: #666;
    line-height: 1.6;
}



.search-bar {
    position: relative;
    width: 300px;
}

.search-bar input {
    border-radius: 20px;
    padding-right: 40px;
    border: 1px solid #ddd;
}

.search-bar button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
}

/* Shop Page Styles */
.shop-page {
    padding: 40px 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-align: center;
}

/* Filter Sidebar */
.filter-sidebar {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.filter-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.filter-title i {
    margin-right: 10px;
    color: var(--primary-color);
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.filter-option {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
}

.filter-option input {
    margin-right: 10px;
}

.filter-option label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 500;
}

/* Color and size options moved to ProductDetails.css */

.price-range {
    margin-top: 15px;
}

.price-range input {
    width: 100%;
    margin-bottom: 10px;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.filter-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.filter-actions button {
    flex: 1;
    padding: 10px;
    border-radius: 5px;
    font-weight: 600;
}

.apply-filters {
    background-color: var(--secondary-color);
    color: white;
    border: none;
}

.reset-filters {
    background-color: white;
    color: var(--dark-color);
    border: 1px solid #ddd;
}

/* Products Section */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.results-count {
    font-weight: 600;
    color: var(--dark-color);
}

.sort-dropdown {
    min-width: 200px;
}

.view-options {
    display: flex;
    gap: 10px;
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background-color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.view-btn:hover {
    background-color: var(--light-bg);
}

.view-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Product Grid */
/* --- NEW MODERN PRODUCT GRID --- */

/* 1. Make Bootstrap columns flex containers */
.product-grid-row>[class*="col-"] {
    display: flex;
    flex-direction: column;
}


.product-item {
    min-height: auto;
    /* don’t force extra height */
    padding: 10px;
    /* reduce padding */
}

.product-item figure {
    margin-bottom: 8px;
    /* tighter gap between image and text */
}

.product-item h3 {
    margin: 6px 0;
    /* reduce title spacing */
    font-size: 15px;
    /* slightly smaller font */
}

.product-item .button-area {
    padding: 8px 10px 5px 10px;
    /* reduce button block padding */
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
}

.quickview-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.quickview-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Show Quick View only on hover */
.product-item:hover .quickview-overlay {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1.05);
}


/* --- Quick View Slider Styles --- */

/* Container for the main image and its navigation */
#quickViewModal .main-image-slider-container {
    position: relative;
    overflow: hidden;
    /* Hides the overflow of slides */
}

/* Wrapper for all the slides */
#quickViewModal .main-image-slides {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual slide styling */
#quickViewModal .my-slide {
    display: none;
    /* Hidden by default */
    width: 100%;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

#quickViewModal .my-slide.active {
    display: block;
    /* Shown when active */
    opacity: 1;
}

/* Navigation Arrow Buttons */
#quickViewModal .slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#quickViewModal .slider-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

#quickViewModal .slider-prev {
    left: 10px;
}

#quickViewModal .slider-next {
    right: 10px;
}

/* Thumbnail styles (existing, with minor tweaks) */
#quickViewModal .thumbnail-image {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: 3px solid transparent;
    opacity: 0.7;
}

#quickViewModal .thumbnail-image:hover {
    opacity: 1;
    transform: scale(1.05);
}

#quickViewModal .thumbnail-image.active {
    border-color: #0d6efd;
    /* Bootstrap primary color */
    opacity: 1;
    box-shadow: 0 0 8px rgba(13, 110, 253, 0.4);
}

/* Pagination */
.pagination-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.pagination .page-link {
    color: var(--dark-color);
    border-radius: 5px;
    margin: 0 3px;
    border: 1px solid #ddd;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-color);
}

.pagination .page-link:hover {
    background-color: var(--light-bg);
    color: var(--secondary-color);
}

/* Kids Crafts Themed Login Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.craft-element {
    position: absolute;
    opacity: 0.7;
}

.crayon {
    width: 80px;
    height: 20px;
    background: linear-gradient(to right, #FF6B6B, #FFD166);
    border-radius: 10px;
    top: 15%;
    left: 10%;
    transform: rotate(-30deg);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.paintbrush {
    width: 100px;
    height: 15px;
    background: linear-gradient(to right, #4D96FF, #6BCB77);
    border-radius: 0 10px 10px 0;
    top: 70%;
    right: 15%;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(77, 150, 255, 0.3);
}

.scissors {
    width: 50px;
    height: 50px;
    background: #FF9AA2;
    border-radius: 50%;
    top: 25%;
    right: 20%;
    box-shadow: 0 5px 15px rgba(255, 154, 162, 0.3);
}

.paper {
    width: 70px;
    height: 90px;
    background: #FFFFFF;
    border-radius: 5px;
    top: 60%;
    left: 15%;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.glue {
    width: 40px;
    height: 60px;
    background: #B5EAD7;
    border-radius: 20px 20px 5px 5px;
    top: 40%;
    left: 30%;
    box-shadow: 0 5px 15px rgba(181, 234, 215, 0.3);
}

.pencil {
    width: 15px;
    height: 100px;
    background: linear-gradient(to bottom, #FFD166, #EF476F);
    border-radius: 0 0 5px 5px;
    top: 10%;
    right: 30%;
    transform: rotate(-15deg);
    box-shadow: 0 5px 15px rgba(239, 71, 111, 0.3);
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.08);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 20px 15px rgba(0, 0, 0, 0.1);
}

.brand-logo {
    width: 80px;
    height: 80px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(255, 154, 162, 0.3);
}

.brand-logo i {
    font-size: 36px;
    color: white;
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Comic Sans MS', 'Marker Felt', 'Chalkboard', sans-serif;
}

.login-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.input-group-text {
    background: #f8f9fa;
    border: none;
    padding: 15px;
    color: #FF9AA2;
    border-right: 1px solid #eee;
}

.form-control {
    border: none;
    padding: 15px;
    font-size: 16px;
    height: auto;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    background: white;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    z-index: 10;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-right: 8px;
}

.forgot-password {
    color: #FF9AA2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #FF6B6B;
}

.btn-login {
    background: linear-gradient(135deg, #FF9AA2 0%, #FFD166 50%, #B5EAD7 100%);
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 20px rgba(255, 154, 162, 0.3);
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(255, 154, 162, 0.4);
}

.divider {
    text-align: center;
    position: relative;
    margin: 25px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
}

.divider span {
    background: rgba(255, 255, 255, 0.95);
    padding: 0 15px;
    position: relative;
    color: #999;
    font-size: 14px;
}

.social-login {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border-radius: 15px;
    border: 1px solid #eee;
    background: white;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.register-link {
    margin-top: 20px;
    color: #666;
}

.register-link a {
    color: #FF9AA2;
    font-weight: 600;
    text-decoration: none;
}

.register-link a:hover {
    color: #FF6B6B;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .login-card {
        padding: 30px 20px;
    }

    .social-login {
        flex-direction: column;
        gap: 10px;
    }

    .social-btn {
        width: 100%;
    }

    .craft-element {
        transform: scale(0.7);
    }
}

/* Animation for form elements */
.form-group {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.form-group:nth-child(3) {
    animation-delay: 0.3s;
}

.btn-login {
    animation-delay: 0.4s;
}

.divider {
    animation-delay: 0.5s;
}

.social-login {
    animation-delay: 0.6s;
}

.register-link {
    animation-delay: 0.7s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating animation for craft elements */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.crayon {
    animation: float 6s ease-in-out infinite;
}

.paintbrush {
    animation: float 7s ease-in-out infinite 0.5s;
}

.scissors {
    animation: float 5s ease-in-out infinite 1s;
}

.paper {
    animation: float 8s ease-in-out infinite 1.5s;
}

.glue {
    animation: float 6.5s ease-in-out infinite 2s;
}

.pencil {
    animation: float 7.5s ease-in-out infinite 2.5s;
}


/* Kids Crafts Themed Register Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Background Elements */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.craft-element {
    position: absolute;
    opacity: 0.7;
}

.crayon {
    width: 80px;
    height: 20px;
    background: linear-gradient(to right, #FF6B6B, #FFD166);
    border-radius: 10px;
    top: 15%;
    left: 10%;
    transform: rotate(-30deg);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.paintbrush {
    width: 100px;
    height: 15px;
    background: linear-gradient(to right, #4D96FF, #6BCB77);
    border-radius: 0 10px 10px 0;
    top: 70%;
    right: 15%;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(77, 150, 255, 0.3);
}

.scissors {
    width: 50px;
    height: 50px;
    background: #FF9AA2;
    border-radius: 50%;
    top: 25%;
    right: 20%;
    box-shadow: 0 5px 15px rgba(255, 154, 162, 0.3);
}

.paper {
    width: 70px;
    height: 90px;
    background: #FFFFFF;
    border-radius: 5px;
    top: 60%;
    left: 15%;
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.glue {
    width: 40px;
    height: 60px;
    background: #B5EAD7;
    border-radius: 20px 20px 5px 5px;
    top: 40%;
    left: 30%;
    box-shadow: 0 5px 15px rgba(181, 234, 215, 0.3);
}

.pencil {
    width: 15px;
    height: 100px;
    background: linear-gradient(to bottom, #FFD166, #EF476F);
    border-radius: 0 0 5px 5px;
    top: 10%;
    right: 30%;
    transform: rotate(-15deg);
    box-shadow: 0 5px 15px rgba(239, 71, 111, 0.3);
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 15px 12px rgba(0, 0, 0, 0.08);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.login-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15), 0 20px 15px rgba(0, 0, 0, 0.1);
}

.brand-logo {
    width: 80px;
    height: 80px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 20px rgba(255, 154, 162, 0.3);
}

.brand-logo i {
    font-size: 36px;
    color: white;
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Comic Sans MS', 'Marker Felt', 'Chalkboard', sans-serif;
}

.login-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.input-group-text {
    background: #f8f9fa;
    border: none;
    padding: 15px;
    color: #FF9AA2;
    border-right: 1px solid #eee;
}

.form-control {
    border: none;
    padding: 15px;
    font-size: 16px;
    height: auto;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: none;
    background: white;
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    z-index: 10;
}

.password-strength {
    height: 5px;
    background-color: #eee;
    border-radius: 3px;
    margin-top: 8px;
    overflow: hidden;
}

.password-strength-meter {
    height: 100%;
    width: 0;
    transition: width 0.3s, background-color 0.3s;
}

.form-check {
    margin-bottom: 20px;
}

.form-check-input {
    margin-right: 8px;
}

.btn-login {
    background: linear-gradient(135deg, #FF9AA2 0%, #FFD166 50%, #B5EAD7 100%);
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 15px;
    color: white;
    box-shadow: 0 10px 20px rgba(255, 154, 162, 0.3);
    transition: all 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(255, 154, 162, 0.4);
}

.divider {
    text-align: center;
    position: relative;
    margin: 25px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #eee;
}

.divider span {
    background: rgba(255, 255, 255, 0.95);
    padding: 0 15px;
    position: relative;
    color: #999;
    font-size: 14px;
}

.social-login {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border-radius: 15px;
    border: 1px solid #eee;
    background: white;
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.register-link {
    margin-top: 20px;
    color: #666;
}

.register-link a {
    color: #FF9AA2;
    font-weight: 600;
    text-decoration: none;
}

.register-link a:hover {
    color: #FF6B6B;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .login-card {
        padding: 30px 20px;
    }

    .social-login {
        flex-direction: column;
        gap: 10px;
    }

    .social-btn {
        width: 100%;
    }

    .craft-element {
        transform: scale(0.7);
    }
}

/* Animation for form elements */
.form-group {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.form-group:nth-child(3) {
    animation-delay: 0.3s;
}

.form-group:nth-child(4) {
    animation-delay: 0.4s;
}

.form-group:nth-child(5) {
    animation-delay: 0.5s;
}

.form-check {
    animation-delay: 0.6s;
}

.btn-login {
    animation-delay: 0.7s;
}

.divider {
    animation-delay: 0.8s;
}

.social-login {
    animation-delay: 0.9s;
}

.register-link {
    animation-delay: 1s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating animation for craft elements */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.crayon {
    animation: float 6s ease-in-out infinite;
}

.paintbrush {
    animation: float 7s ease-in-out infinite 0.5s;
}

.scissors {
    animation: float 5s ease-in-out infinite 1s;
}

.paper {
    animation: float 8s ease-in-out infinite 1.5s;
}

.glue {
    animation: float 6.5s ease-in-out infinite 2s;
}

.pencil {
    animation: float 7.5s ease-in-out infinite 2.5s;
}

/* Dropdown Checkbox Styles */
.dropdown-checkbox {
    position: relative;
    margin-bottom: 20px;
}

.dropdown-toggle {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover {
    border-color: #FF9AA2;
}

.dropdown-toggle .dropdown-label {
    font-weight: 500;
    color: #333;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    display: none;
    margin-top: 5px;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-search {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.dropdown-search input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.dropdown-options {
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
}

.dropdown-option {
    display: flex;
    align-items: center;
    padding: 8px 5px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.dropdown-option:hover {
    background-color: #f8f9fa;
}

.dropdown-option input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
}

.dropdown-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 100%;
    margin: 0;
}

/* Color swatch moved to ProductDetails.css */

.dropdown-actions {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    border-top: 1px solid #eee;
    background-color: #f8f9fa;
    border-radius: 0 0 8px 8px;
}

.dropdown-actions button {
    font-size: 12px;
    padding: 5px 10px;
    color: #FF9AA2;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
}

.dropdown-actions button:hover {
    text-decoration: underline;
}

/* Custom scrollbar for dropdown options */
.dropdown-options::-webkit-scrollbar {
    width: 6px;
}

.dropdown-options::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.dropdown-options::-webkit-scrollbar-thumb {
    background: #FF9AA2;
    border-radius: 3px;
}

.dropdown-options::-webkit-scrollbar-thumb:hover {
    background: #FF6B6B;
}

/* Product Section */
.product-section {
    padding: 60px 0;
    background-color: white;
}

/* Image Gallery Styles */
.product-gallery {
    position: relative;
}

.product-gallery .main-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: zoom-in;
}

.product-gallery .main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.zoom-modal-container {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

#zoom-modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

#imageZoomModal .modal-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    border: none;
    padding: 10px;
}

#imageZoomModal .btn-close {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#imageZoomModal .modal-content {
    background-color: transparent;
    border: none;
}

#imageZoomModal .modal-body {
    padding: 0;
}

.product-gallery .thumbnail-container {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 5px 0;
    scroll-behavior: smooth;
}

.product-gallery .thumbnail-container::-webkit-scrollbar {
    height: 6px;
}

.product-gallery .thumbnail-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.product-gallery .thumbnail-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.product-gallery .thumbnail-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.product-gallery .thumbnail {
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.product-gallery .thumbnail.active {
    border-color: #007bff;
}

.product-gallery .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery .slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.product-gallery .slider-btn {
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
    pointer-events: all;
    transition: background-color 0.3s ease;
}

.product-gallery .slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.product-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.product-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.product-price .original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 1.2rem;
    margin-left: 10px;
}

.product-description {
    margin-bottom: 25px;
    line-height: 1.6;
}

.product-options {
    margin-bottom: 30px;
}

.product-section .quantity-selector {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.product-section .quantity-selector button {
    background-color: var(--light-bg);
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    font-weight: bold;
}

.product-section .quantity-selector input {
    width: 60px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 0 10px;
}

/* Product details styles (add-to-cart, wishlist-btn, product-meta, variant-section, variant-options, color-option) moved to ProductDetails.css */

/* Tabs Section */
.tabs-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.nav-tabs .nav-link {
    color: var(--dark-color);
    font-weight: 600;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 15px 25px;
    margin-right: 15px;
}

.nav-tabs .nav-link.active {
    color: var(--secondary-color);
    background: none;
    border-bottom: 3px solid var(--secondary-color);
}

.tab-content {
    padding: 30px 0;
}

.nutrition-table {
    width: 100%;
    border-collapse: collapse;
}

.nutrition-table th,
.nutrition-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.nutrition-table th {
    background-color: var(--light-bg);
    font-weight: 600;
}

/* Related Products */
.related-products {
    padding: 60px 0;
    background-color: white;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.product-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card img {
    height: 200px;
    object-fit: cover;
}

.product-card-body {
    padding: 20px;
}

.product-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-card-price {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.product-card-rating {
    color: #ffc107;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .zoom-result {
        display: none !important;
    }

    .main-image-container {
        cursor: default;
    }
}

/* ===========================================
   PREMIUM HERO SLIDER STYLES
   =========================================== */

/* Premium Hero Slider Styles */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

.hero-slider .slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
}

.hero-slider .slide.active {
    opacity: 1;
    transform: translateX(0);
}

.hero-slider .slide.prev {
    transform: translateX(-100%);
}

.hero-slider .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-slider .slide-content {
    position: relative;
    z-index: 2;
    color: white;
    animation: slideInUp 1s ease-out 0.3s both;
}

.hero-slider .slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-slider .slide-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-slider .slide-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-slider .stat-item {
    text-align: center;
}

.hero-slider .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-slider .stat-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.hero-slider .slide-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-slider .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-slider .feature-item i {
    font-size: 1.2rem;
    color: #ffd700;
}

.hero-slider .slide-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-slider .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-slider .benefit-item i {
    font-size: 1.5rem;
    color: #ffd700;
    width: 30px;
}

.hero-slider .benefit-item h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-slider .benefit-item p {
    margin: 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.hero-slider .slide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-slider .slide-actions .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-slider .slide-actions .btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.hero-slider .slide-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.hero-slider .slide-actions .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    background: transparent;
}

.hero-slider .slide-actions .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-2px);
}

/* Navigation Controls */
.hero-slider .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-slider .slider-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.hero-slider .slider-nav.prev {
    left: 30px;
}

.hero-slider .slider-nav.next {
    right: 30px;
}

.hero-slider .slider-nav i {
    font-size: 1.2rem;
}

/* Dots Indicator */
.hero-slider .slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-slider .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-slider .dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hero-slider .dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
}

/* Feature Cards */
.feature-cards {
    position: relative;
    z-index: 5;
    margin-top: -50px;
    margin-bottom: 0;
}

.feature-cards .card {
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design for Slider */
@media (max-width: 768px) {
    .hero-slider {
        height: 80vh;
        min-height: 500px;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-subtitle {
        font-size: 1.1rem;
    }

    .slide-stats {
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .slide-features {
        flex-direction: column;
        gap: 1rem;
    }

    .slide-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .slide-actions .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav.prev {
        left: 15px;
    }

    .slider-nav.next {
        right: 15px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .feature-cards {
        margin-top: -30px;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 2rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .slide-actions .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Auto-play indicator */
.hero-slider .slider-container::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 8px;
    height: 8px;
    background: #ffd700;
    border-radius: 50%;
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Loading animation for slider  */
body {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

.slide-content {
    will-change: transform, opacity;
}

.feature-cards .card {
    will-change: transform;
}

/* Modern User Pill */
.user-profile-pill {
    position: relative;
}

.user-pill-trigger {
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-pill-trigger:hover {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #ffcc00 0%, #ffd84d 70%);
}

.user-avatar img {
    width: 22px;
    height: 22px;
}

.user-name {
    margin-left: 8px;
    font-weight: 600;
    color: #333;
}

.caret-icon {
    font-size: 12px;
    color: #555;
}

/* Dropdown modern look */
.user-dropdown {
    border-radius: 10px;
    padding: 6px 0;
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.user-dropdown .dropdown-item {
    font-weight: 500;
    padding: 10px 18px;
}

.user-dropdown .dropdown-item:hover {
    background: #fff7cc;
}

/* Main Footer */
.dl-footer {
    background: #ffffff;
    border-top: 4px solid #ffcc00;
}

/* Footer Logo - Styled to match header logo */
.footer-logo {
    display: inline-block !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo:hover {
    transform: scale(1.02);
}

.footer-logo img {
    height: 55px !important;
    max-width: 180px !important;
    width: auto !important;
    object-fit: contain !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-heading {
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.footer-desc {
    color: #555;
    line-height: 1.6;
}

/* Footer links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color .2s;
}

.footer-links a:hover {
    color: #ffcc00;
}

/* Social Icons */
.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff5c3;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #222;
    font-size: 14px;
    transition: 0.25s ease;
    border: 1px solid #ffe88a;
}

.social-icon:hover {
    background: #ffcc00;
    border-color: #ffcc00;
    color: #000;
}

/* Newsletter */
.newsletter-form input {
    background: #fff8d7;
    border: 1px solid #ffe88a;
}

.newsletter-form input::placeholder {
    color: #777;
}

/* Divider */
.footer-divider {
    border-color: #ddd;
    margin: 25px 0;
}

/* Footer copy */
.footer-copy,
.footer-credit {
    color: #666;
    font-size: 14px;
}

/* ===== Payment Trust Badges ===== */
.payment-trust-badges {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
}

.payment-trust-badges .trust-label {
    color: #333;
    font-size: 14px;
    margin: 0;
}

.payment-trust-badges .trust-label i {
    font-size: 18px;
}

.trust-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #495057;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-color: #adb5bd;
}

.trust-badge i {
    font-size: 16px;
    color: #28a745;
}

.trust-badge.razorpay {
    border-color: #0066ff;
}

.trust-badge.razorpay i {
    color: #0066ff;
}

.trust-badge.razorpay span {
    color: #0066ff;
    font-weight: 700;
}

/* Payment Methods Strip */
.payment-methods-strip {
    border-top: 1px solid #e9ecef;
    padding-top: 15px;
}

.payment-methods-label {
    font-weight: 500;
}

.payment-icon {
    font-size: 28px;
    color: #495057;
    margin: 0 8px;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.payment-icon:hover {
    opacity: 1;
    transform: scale(1.1);
}

.payment-icon.fa-cc-visa {
    color: #1a1f71;
}

.payment-icon.fa-cc-mastercard {
    color: #eb001b;
}

.payment-icon.fa-cc-amex {
    color: #006fcf;
}

.payment-icon.fa-google-pay {
    color: #4285f4;
}

.payment-icon.fa-apple-pay {
    color: #000;
}

.payment-icon-text {
    display: inline-block;
    background: linear-gradient(135deg, #5f259f 0%, #e54b4d 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    margin: 0 4px;
    vertical-align: middle;
}

/* Responsive adjustments for trust badges */
@media (max-width: 768px) {
    .payment-trust-badges {
        padding: 15px;
    }

    .trust-badge {
        padding: 6px 10px;
        font-size: 11px;
    }

    .trust-badge i {
        font-size: 14px;
    }

    .payment-icon {
        font-size: 24px;
        margin: 0 5px;
    }

    .payment-icon-text {
        font-size: 10px;
        padding: 3px 8px;
    }
}