:root {
    --primary: #FF6B8B;
    --secondary: #5BC0EB;
    --success: #9BC53D;
    --warning: #FDE74C;
    --info: #5DA9E9;
    --light: #F8F9FA;
    --dark: #343A40;
    --purple: #A882DD;
    --orange: #FF9F1C;
}
body {
    font-family: 'Comic Neue', cursive;
    background-color: #f9f9f9;
    color: #333;
    overflow-x: hidden;
}
a{
    text-decoration: none !important;
    font-weight: bold;
    color: var(--primary);
}
h1, h2, h3, h4, h6 {
    font-family: 'Fredoka One', cursive;
    color: var(--dark);
}
h5 {
    color: var(--primary);
    font-weight: bold;
}

.navbar-brand {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-success {
    background-color: var(--success);
    border-color: var(--success);
}

.btn-warning {
    background-color: var(--warning);
    border-color: var(--warning);
    color: var(--dark);
}
.btn-info {
    background-color: var(--info);
    border-color: var(--info);
}
.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-success {
    background-color: var(--success) !important;
}
.bg-warning {
    background-color: var(--warning) !important;
}

.bg-info {
    background-color: var(--info) !important;
}
.bg-purple {
    background-color: var(--purple) !important;
}
.bg-orange {
    background-color: var(--orange) !important;
}
.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.text-info {
    color: var(--info) !important;
}

.text-purple {
    color: var(--purple) !important;
}

.text-orange {
    color: var(--orange) !important;
}


/* navbar */
        .dropdown-menu {
            border: none;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            padding: 15px;
            min-width: 250px;
        }

        .nav-item.dropdown:hover .dropdown-menu {
            display: block;
            margin-top: 0;
        }

        .dropdown-item {
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            color: #333;
        }

        .dropdown-item:hover {
            background-color: #f8f9fa;
            color: var(--primary);
            transform: translateX(5px);
        }

        .dropdown-header {
            font-weight: bold;
            color: var(--primary);
            font-size: 1.1em;
            padding: 10px 15px;
            border-bottom: 2px solid var(--primary);
            margin-bottom: 10px;
        }

        .no-subcategories {
            padding: 10px 15px;
            color: #6c757d;
            font-style: italic;
        }

/* Product page color and size design */

/* Color Options */
.color-options {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.color-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-option.selected {
    border-color: #333;
    transform: scale(1.1);
}

/* Size Options */
.size-options {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.size-option {
    padding: 8px 16px;
    border: 2px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 50px;
}

.size-option.selected {
    border-color: var(--primary);
    background-color: var(--orange);
    color: white;
}

/* Thumbnail Images */
.thumbnail-images {
    flex-wrap: wrap;
    gap: 10px;
}

.thumbnail-img {
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.thumbnail-img.active,
.thumbnail-img:hover {
    border-color: var(--primary);
}

/* Delivery Message */
.delivery-message {
    display: none;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
}
  
.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 10px 10px;
    border-radius: 0 0 50px 50px;
}

.category-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.category-card:hover {
    transform: translateY(-10px);
}

.product-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    background: white;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-imgs {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.price {
    font-weight: bold;
    font-size: 1.2rem;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--warning);
    color: var(--dark);
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: bold;
}

.newsletter-section {
    background: linear-gradient(135deg, var(--purple) 0%, var(--info) 100%);
    color: white;
    padding: 80px 0;
    border-radius: 50px 50px 0 0;
}

.footer {
    background-color: var(--dark);
    color: white;
    padding: 50px 0 20px;
}

.footer a {
    color: var(--light);
    text-decoration: none;
}

.footer a:hover {
    color: var(--primary);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--warning);
    color: var(--dark);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-category {
    border-radius: 20px;
    padding: 5px 15px;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 10px;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.carousel-item {
    height: 500px;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 20px;
    bottom: 50px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.header-icons .btn {
    position: relative;
    margin-left: 10px;
}

.dropdown-menu {
    border-radius: 15px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    border-radius: 10px;
    margin: 5px;
}

.dropdown-item:hover {
    background-color: var(--primary);
    color: white;
}

/* Search Bar Styles */
.search-container {
    position: relative;
}

.search-bar {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 1000;
    display: none;
}

.search-bar.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cart Panel Styles */
.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    transition: right 0.4s ease;
    padding: 20px;
    overflow-y: auto;
}

.cart-panel.active {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    display: none;
}

.cart-overlay.active {
    display: block;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 15px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: bold;
    margin-bottom: 5px;
}

.cart-item-price {
    color: var(--primary);
    font-weight: bold;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f0f0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity-input {
    width: 40px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin: 0 10px;
    padding: 5px;
}

.cart-total {
    padding: 20px 0;
    border-top: 2px solid #eee;
    margin-top: 20px;
}

.cart-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.cart-actions .btn {
    flex: 1;
}

/* Dropdown hover effect */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Account dropdown hover effect */
.header-icons .dropdown:hover .dropdown-menu {
    display: block;
}

/* Ensure dropdowns stay open when hovering over them */
.dropdown-menu:hover {
    display: block;
}

/* Add a small delay for better UX */
.dropdown-menu {
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .carousel-item {
        height: 400px;
    }

    .carousel-caption {
        bottom: 20px;
        padding: 15px;
    }

    .carousel-caption h3 {
        font-size: 1.2rem;
    }

    .header-icons {
        margin-top: 15px;
        justify-content: center;
    }

    .header-icons .btn {
        margin: 0 5px;
    }

    .search-bar {
        width: 250px;
    }

    .cart-panel {
        width: 320px;
    }


    /*categories */
    .category-card {
        border-radius: 20px;
        overflow: hidden;
        transition: transform 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
    }
        
    .category-card:hover {
        transform: translateY(-10px);
    }
.product-card {
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            background: white;
            
        }
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .product-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        
        .price {
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .old-price {
            text-decoration: line-through;
            color: #999;
            margin-right: 10px;
        }
        
        .discount-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--warning);
            color: var(--dark);
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: bold;
        }
        
        .age-category {
            border-radius: 20px;
            padding: 5px 15px;
            font-size: 0.8rem;
            display: inline-block;
            margin-bottom: 10px;
        }
        
        .cart-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: var(--warning);
            color: var(--dark);
            border-radius: 50%;
            width: 20px;
            height: 20px;
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .filter-section {
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .filter-title {
            font-family: 'Fredoka One', cursive;
            color: var(--primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--light);
        }
        
        .filter-group {
            margin-bottom: 25px;
        }
        
        .filter-group h6 {
            font-family: 'Fredoka One', cursive;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .filter-option {
            margin-bottom: 10px;
        }
        
        .filter-option label {
            cursor: pointer;
            display: flex;
            align-items: center;
            margin-bottom: 0;
        }
        
        .filter-option input[type="checkbox"] {
            margin-right: 10px;
        }
        
        .price-range {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 10px;
        }
        
        .price-range span {
            font-size: 0.9rem;
            color: var(--dark);
        }
        
        .sort-options {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 30px;
            background: white;
            padding: 15px 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .sort-options select {
            border-radius: 10px;
            border: 1px solid #ddd;
            padding: 8px 15px;
            font-family: 'Comic Neue', cursive;
        }
        
        .results-count {
            color: var(--dark);
            font-weight: bold;
        }
        
        .no-results {
            text-align: center;
            padding: 50px 20px;
            color: var(--dark);
        }
        
        .no-results i {
            font-size: 4rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .sort-options {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .sort-options .form-select {
                width: 100%;
                margin-top: 10px;
            }
        }

    /* Disable hover effects on mobile */
    .nav-item.dropdown:hover .dropdown-menu {
        display: none;
    }

    .header-icons .dropdown:hover .dropdown-menu {
        display: none;
    }
}

@media (max-width: 576px) {
    .carousel-item {
        height: 300px;
    }

    .carousel-caption {
        bottom: 10px;
        padding: 10px;
    }

    .carousel-caption h3 {
        font-size: 1rem;
    }

    .carousel-caption p {
        font-size: 0.8rem;
    }

    .search-bar {
        width: 200px;
    }
    .cart-panel {
        width: 280px;
    }
}
/* product details */
        .product-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }

        .thumbnail-img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            cursor: pointer;
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .thumbnail-img:hover,
        .thumbnail-img.active {
            border-color: var(--primary);
            transform: scale(1.05);
        }

        .color-option,
        .size-option {
            display: inline-block;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            cursor: pointer;
            text-align: center;
            line-height: 40px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .color-option:hover,
        .color-option.selected {
            border-color: var(--dark);
            transform: scale(1.1);
        }

        .size-option {
            background-color: #f0f0f0;
            border-radius: 10px;
        }

        .size-option:hover,
        .size-option.selected {
            background-color: var(--primary);
            color: white;
        }

        .quantity-selector {
            display: flex;
            align-items: center;
            margin: 15px 0;
        }

        .quantity-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f0f0f0;
            border: none;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-weight: bold;
        }

        .quantity-input {
            width: 60px;
            text-align: center;
            border: 1px solid #ddd;
            border-radius: 10px;
            margin: 0 10px;
            padding: 10px;
            font-weight: bold;
        }

        .delivery-check {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 15px;
            margin: 20px 0;
        }

        .delivery-message {
            margin-top: 10px;
            padding: 10px;
            border-radius: 5px;
            display: none;
        }

        .delivery-success {
            background-color: rgba(155, 197, 61, 0.2);
            color: var(--success);
            border-left: 4px solid var(--success);
        }

        .delivery-error {
            background-color: rgba(255, 107, 139, 0.2);
            color: var(--primary);
            border-left: 4px solid var(--primary);
        }

        .product-details-tabs {
            margin-top: 50px;
        }

        .nav-tabs .nav-link {
            border: none;
            color: var(--dark);
            font-weight: bold;
            padding: 10px 20px;
        }

        .nav-tabs .nav-link.active {
            color: var(--primary);
            border-bottom: 3px solid var(--primary);
        }

        .tab-content {
            padding: 20px 0;
        }

        .feature-list {
            list-style-type: none;
            padding: 0;
        }

        .feature-list li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

        .feature-list li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }

        .cart-panel {
            position: fixed;
            top: 0;
            right: -400px;
            width: 380px;
            height: 100vh;
            background: white;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            z-index: 1050;
            transition: right 0.4s ease;
            padding: 20px;
            overflow-y: auto;
        }

        .cart-panel.active {
            right: 0;
        }

        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1040;
            display: none;
        }

        .cart-overlay.active {
            display: block;
        }

        .cart-item {
            display: flex;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

        .cart-item-img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 10px;
            margin-right: 15px;
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-title {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .cart-item-price {
            color: var(--primary);
            font-weight: bold;
        }

        .cart-item-quantity {
            display: flex;
            align-items: center;
            margin-top: 5px;
        }

        .cart-total {
            padding: 20px 0;
            border-top: 2px solid #eee;
            margin-top: 20px;
        }

        .cart-actions {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .cart-actions .btn {
            flex: 1;
        }
    .sin__desc{
        background-color: var(--success);
        color: #eee;
        font-weight: bold;
        padding: 10px;
        border-radius: 5px;
    }


/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--info) 100%);
}

.contact-card {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.form-control-lg {
    border-radius: 15px;
    border: 2px solid #e9ecef;
    padding: 15px;
    font-family: 'Comic Neue', cursive;
    transition: all 0.3s ease;
}

.form-control-lg:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 139, 0.25);
}

.form-select-lg {
    border-radius: 15px;
    border: 2px solid #e9ecef;
    padding: 15px;
    font-family: 'Comic Neue', cursive;
    transition: all 0.3s ease;
}

.form-select-lg:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 139, 0.25);
}

.btn-lg {
    border-radius: 15px;
    padding: 15px 30px;
    font-family: 'Fredoka One', cursive;
    font-weight: normal;
    transition: all 0.3s ease;
}

.btn-lg:hover {
    transform: translateY(-2px);
}

/* Country Code Select Styles */
.select2-container {
    width: 140px !important;
}

.select2-selection {
    border: none !important;
    background: transparent !important;
    height: 56px !important;
    display: flex !important;
    align-items: center !important;
}

.select2-selection__rendered {
    line-height: 56px !important;
    padding-left: 15px !important;
    font-family: 'Comic Neue', cursive !important;
}

.select2-selection__arrow {
    height: 56px !important;
}

.select2-dropdown {
    border-radius: 15px !important;
    border: 2px solid #e9ecef !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.select2-results__option {
    padding: 10px 15px !important;
    font-family: 'Comic Neue', cursive !important;
}

.select2-results__option--highlighted {
    background-color: var(--primary) !important;
    color: white !important;
}

/* Mobile Input Group */
.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text > .form-select {
    border-radius: 15px;
}

.input-group-text {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-right: none;
}

.input-group .form-control {
    border-left: none;
}

.input-group .form-control:focus {
    border-left: none;
    box-shadow: none;
}

.input-group:focus-within .input-group-text {
    border-color: var(--primary);
}

.input-group:focus-within .form-control {
    border-color: var(--primary);
}

/* Animation delays */
.animate__animated.animate__fadeInUp {
    animation-delay: 0.1s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-card {
        margin-bottom: 20px;
    }
    
    .form-control-lg, .form-select-lg {
        padding: 12px;
    }
    
    .input-group-lg > .form-control,
    .input-group-lg > .form-select,
    .input-group-lg > .input-group-text > .form-select {
        padding: 12px;
    }
    
    .select2-selection {
        height: 48px !important;
    }
    
    .select2-selection__rendered {
        line-height: 48px !important;
    }
    
    .select2-selection__arrow {
        height: 48px !important;
    }
}

/* Success message styles */
.alert {
    border-radius: 15px;
    border: none;
    font-family: 'Comic Neue', cursive;
}

.alert-success {
    background-color: rgba(155, 197, 61, 0.2);
    color: var(--success);
    border-left: 4px solid var(--success);
}

.alert-danger {
    background-color: rgba(255, 107, 139, 0.2);
    color: var(--primary);
    border-left: 4px solid var(--primary);
}

/* Form text improvements */
.form-text {
    font-size: 0.875rem;
    font-family: 'Comic Neue', cursive;
}

.invalid-feedback {
    font-family: 'Comic Neue', cursive;
    font-weight: bold;
}


/* login/register */

.auth-container {
    margin-top: 4rem;
    margin-bottom: 20px;
    height: auto;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 900px;
    width: 50%; /* Or any specific width */
    margin-left: auto;
     margin-right: auto;
}

.auth-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 20px;
    text-align: center;
}
.auth-tabs {
    display: flex;
    background-color: var(--light);
    border-bottom: 1px solid #dee2e6;
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Fredoka One', cursive;
    font-size: 1rem;
    color: var(--dark);
}

.auth-tab.active {
    background-color: white;
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

.auth-tab:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.7);
}

.auth-content {
    padding: 20px;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General form control and button overrides for a consistent style */
.form-control {
    border-radius: 15px;
    padding: 10px 10px;
    border: 2px solid #e9ecef;
    font-family: 'Comic Neue', cursive;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 139, 0.25);
}

.form-label {
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--dark);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    border-radius: 15px;
    padding: 10px 20px;
    font-family: 'Fredoka One', cursive;
    font-weight: normal;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #ff4d7a;
    border-color: #ff4d7a;
    transform: translateY(-2px);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
    border-radius: 15px;
    padding: 10px 20px;
    font-family: 'Fredoka One', cursive;
    font-weight: normal;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.divider span {
    padding: 0 15px;
    color: #6c757d;
    font-weight: bold;
}

/* Form check and validation styles */
.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-label {
    font-family: 'Comic Neue', cursive;
}

.invalid-feedback {
    display: none;
    font-family: 'Comic Neue', cursive;
    font-weight: bold;
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
    border-color: var(--primary);
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 139, 0.25);
}

.was-validated .invalid-feedback {
    display: block;
}

/* Password input specific styles */
.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6c757d;
    cursor: pointer;
}

.password-toggle:hover {
    color: var(--primary);
}

.password-strength {
    height: 5px;
    border-radius: 5px;
    margin-top: 5px;
    transition: all 0.3s ease;
}

.strength-weak {
    background-color: #dc3545;
    width: 25%;
}

.strength-medium {
    background-color: #ffc107;
    width: 50%;
}

.strength-strong {
    background-color: #28a745;
    width: 100%;
}

.terms-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Responsive adjustments for authentication page */
@media (max-width: 768px) {
    .auth-container {
        max-width: 100%;
    }

    .auth-content {
        padding: 20px;
    }
}

/* cart details */
        .cart-container {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .cart-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .cart-table th {
            background-color: var(--light);
            padding: 15px;
            text-align: left;
            font-weight: bold;
            border-bottom: 2px solid #dee2e6;
        }
        
        .cart-table td {
            padding: 15px;
            vertical-align: middle;
            border-bottom: 1px solid #dee2e6;
        }
        
        .product-img {
            width: 80px;
            height: 80px;
            object-fit: cover;
            border-radius: 10px;
        }
        
        .product-name {
            font-weight: bold;
            color: var(--dark);
        }
        
        .product-attributes {
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        .price {
            font-weight: bold;
            color: var(--dark);
        }
        
        .mrp {
            text-decoration: line-through;
            color: #999;
            font-size: 0.9rem;
        }
        
        .discount {
            color: var(--success);
            font-weight: bold;
        }
        
        /* Cart Page Styles */
.quantity-input-simple {
    width: 80px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: bold;
    font-family: 'Comic Neue', cursive;
}

.quantity-input-simple:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 139, 0.25);
    outline: none;
}

/* Remove old quantity selector styles */
.quantity-selector {
    display: flex;
    align-items: center;
}

.quantity-btn {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quantity-input-simple {
        width: 60px;
        padding: 6px 8px;
    }
}
        
        .remove-btn {
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .remove-btn:hover {
            color: #ff4d7a;
            transform: scale(1.1);
        }
        
        .cart-summary {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 25px;
            margin-bottom: 30px;
        }
        
        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        .summary-total {
            font-weight: bold;
            font-size: 1.2rem;
            color: var(--primary);
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .cart-actions {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }
        
        .btn-continue {
            background-color: var(--light);
            color: var(--dark);
            border: 1px solid #dee2e6;
        }
        
        .btn-continue:hover {
            background-color: #e9ecef;
        }
        
        .btn-update {
            background-color: var(--info);
            color: white;
        }
        
        .btn-update:hover {
            background-color: #4a97d9;
        }
        
        .btn-checkout {
            background-color: var(--primary);
            color: white;
        }
        
        .btn-checkout:hover {
            background-color: #ff4d7a;
        }
        
        .empty-cart {
            text-align: center;
            padding: 50px 20px;
        }
        
        .empty-cart i {
            font-size: 4rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }
        
        .empty-cart p {
            color: var(--dark);
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        @media (max-width: 768px) {
            .cart-table thead {
                display: none;
            }
            
            .cart-table tr {
                display: block;
                margin-bottom: 20px;
                border: 1px solid #dee2e6;
                border-radius: 10px;
                padding: 15px;
            }
            
            .cart-table td {
                display: block;
                text-align: left;
                border-bottom: none;
                padding: 10px 0;
            }
            
            .cart-table td:before {
                content: attr(data-label);
                font-weight: bold;
                display: inline-block;
                width: 120px;
            }
            
            .cart-actions {
                flex-direction: column;
            }
            
            .cart-actions .btn {
                width: 100%;
            }
        }

/* checkout page--------------------- */

/* Checkout Page Specific Styles */
.checkout-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--info) 100%);
    color: white;
    padding: 20px 0;
    border-radius: 0 0 50px 50px;
    margin-bottom: 40px;
}

.checkout-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 40px;
}

.accordion-button {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    padding: 15px 20px;
    border-radius: 15px !important;
    background-color: var(--light);
    color: var(--dark);
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
}

.accordion-body {
    padding: 20px;
}

.order-details {
    background-color: var(--light);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
}

.single-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
}

.single-item:last-child {
    border-bottom: none;
}

.single-item__thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 15px;
}

.single-item__content {
    flex: 1;
}

.single-item__content a {
    font-weight: bold;
    color: var(--dark);
    text-decoration: none;
}

.single-item__content a:hover {
    color: var(--primary);
}

.single-item__content .price {
    font-weight: bold;
    color: var(--primary);
}

.single-item__remove a {
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.single-item__remove a:hover {
    color: #ff4d7a;
    transform: scale(1.1);
}

.order-details__count, .ordre-details__total {
    padding: 15px 0;
    border-top: 1px solid #dee2e6;
}

.order-details__count__single, .ordre-details__total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.ordre-details__total {
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--primary);
    border-top: 2px solid #dee2e6;
    padding-top: 20px;
}

.secure-checkout {
    text-align: center;
    margin-top: 20px;
    color: var(--success);
    font-weight: bold;
}

.secure-checkout i {
    margin-right: 5px;
}

.require {
    color: var(--primary);
    font-size: 0.9rem;
    margin-top: 10px;
}

.payment-method {
    margin-bottom: 20px;
}

.single-method {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.single-method:hover {
    border-color: var(--primary);
}

.single-method.selected {
    border-color: var(--primary);
    background-color: rgba(255, 107, 139, 0.05);
}

.single-method a {
    color: var(--dark);
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.single-method i {
    margin-right: 10px;
    color: var(--primary);
}

.payment-form {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .checkout-container {
        padding: 20px;
    }
    
    .single-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .single-item__thumb {
        margin-bottom: 10px;
    }
    
    .single-item__remove {
        align-self: flex-end;
        margin-top: 10px;
    }
}
/*======================= checkout styling=======================*/
.accordion-button {
    font-family: 'Fredoka One', cursive;
    font-size: 1.2rem;
    padding: 15px 20px;
    border-radius: 15px !important;
    background-color: var(--light);
    color: var(--dark);
    border: none;
    box-shadow: none;
}



/*--------- Logout style---*/
.logout-container {
            text-align: center;
            color: white;
            padding: 2rem;
        }

        .progress-container {
            width: 300px;
            height: 8px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            margin: 2rem auto;
            overflow: hidden;
        }

        .progress-bar {
            height: 100%;
            background: var(--accent);
            border-radius: 10px;
            width: 0%;
            transition: width 0.3s ease;
            animation: progressAnimation 3s ease-in-out;
        }

        @keyframes progressAnimation {
            0% {
                width: 0%;
            }

            50% {
                width: 70%;
            }

            100% {
                width: 100%;
            }
        }

        .swal2-popup {
            border-radius: 20px !important;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
            border: 3px solid var(--accent) !important;
            font-family: 'Comic Neue', cursive !important;
        }

        .swal2-title {
            color: var(--dark) !important;
            font-size: 1.8rem !important;
            font-weight: 700 !important;
            margin-bottom: 1rem !important;
            font-family: 'Fredoka One', cursive !important;
        }

        .swal2-html-container {
            color: var(--dark) !important;
            font-size: 1.1rem !important;
            line-height: 1.6 !important;
        }

        .swal2-confirm {
            background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
            border: none !important;
            border-radius: 50px !important;
            padding: 12px 35px !important;
            font-size: 1rem !important;
            font-weight: 600 !important;
            transition: all 0.3s ease !important;
            margin-top: 1rem !important;
            font-family: 'Comic Neue', cursive !important;
        }

        .swal2-confirm:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 20px rgba(255, 107, 139, 0.5) !important;
        }

        .swal2-success {
            border-color: var(--primary) !important;
        }

        .swal2-icon.swal2-success .swal2-success-ring {
            border: 0.25em solid rgba(255, 107, 139, 0.3) !important;
        }

        .swal2-icon.swal2-success [class^=swal2-success-line] {
            background-color: var(--primary) !important;
        }

        .swal2-icon {
            width: 5em !important;
            height: 5em !important;
            margin: 1.5em auto 1em !important;
        }

        .swal2-icon .swal2-icon-content {
            font-size: 3.5rem !important;
        }

        .countdown-timer {
            font-size: 1.2rem;
            font-weight: bold;
            color: var(--dark);
            margin-top: 1rem;
        }

        .kid-animation {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .goodbye-message {
            font-size: 1.3rem;
            margin: 1rem 0;
            color: var(--dark);
            font-weight: 700;
        }
/*---------- Wishlist --------------*/
/* Wishlist Styles */
.wishlist-dropdown {
    min-width: 320px;
    max-width: 400px;
}

.wishlist-item {
    transition: background-color 0.3s ease;
}

.wishlist-item:hover {
    background-color: #f8f9fa;
}

.wishlist-item-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

.wishlist-item-details h6 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.wishlist-item-actions {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wishlist-item-actions .btn {
    padding: 4px 8px;
    font-size: 0.8rem;
}

/* Wishlist page styles */
.wishlist-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.product-card {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.product-img {
    height: 250px;
    object-fit: cover;
}

.empty-wishlist {
    padding: 60px 20px;
}

/* Responsive wishlist */
@media (max-width: 768px) {
    .wishlist-dropdown {
        min-width: 280px;
    }
    
    .wishlist-item {
        padding: 10px 5px;
    }
    
    .product-img {
        height: 200px;
    }
}