/* Base Styles */
:root {
    --primary-color: #6c5ce7;
    --primary-dark: #5649c0;
    --secondary-color: #00cec9;
    --accent-color: #fd79a8;
    --dark-color: #2d3436;
    --light-color: #f5f6fa;
    --gray-color: #636e72;
    --light-gray: #dfe6e9;
    --success-color: #00b894;
    --warning-color: #fdcb6e;
    --danger-color: #d63031;
    --white: #ffffff;
    --black: #000000;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn.outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn.outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: var(--dark-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    margin-right: 15px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

.nav-menu ul {
    display: flex;
}

.nav-menu ul li {
    margin-left: 20px;
}

.nav-menu ul li a {
    font-weight: 600;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
}

.nav-menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

.user-actions {
    display: flex;
    align-items: center;
}

.search-container {
    position: relative;
    margin-right: 15px;
}

.search-container input {
    padding: 8px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    width: 180px;
    transition: var(--transition);
}

.search-container input:focus {
    outline: none;
    border-color: var(--primary-color);
    width: 220px;
}

.search-container button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-color);
    cursor: pointer;
}

.user-icon, .wishlist-icon, .cart-icon {
    margin-left: 15px;
    font-size: 1.2rem;
    color: var(--dark-color);
    position: relative;
    transition: var(--transition);
}

.user-icon:hover, .wishlist-icon:hover, .cart-icon:hover {
    color: var(--primary-color);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: var(--transition);
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    padding: 15px;
    display: flex;
    justify-content: flex-end;
}

.close-menu {
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu ul {
    padding: 20px;
}

.mobile-menu ul li {
    margin-bottom: 15px;
}

.mobile-menu ul li a {
    font-weight: 600;
    display: block;
    padding: 8px 0;
}

.auth-links {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    margin-top: 70px;
    overflow: hidden;
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 500px;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-controls button {
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.slider-controls button:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background-color: var(--white);
    transform: scale(1.2);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 1;
}

.product-badge.new {
    background-color: var(--success-color);
}

.product-badge.sale {
    background-color: var(--danger-color);
}

.product-badge.out-of-stock {
    background-color: var(--gray-color);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.product-action-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.product-action-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.product-action-btn.wishlist.active {
    background-color: var(--danger-color);
    color: var(--white);
}

.product-info {
    padding: 15px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--gray-color);
    margin-bottom: 5px;
}

.product-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--gray-color);
    margin-left: 8px;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.product-rating .stars {
    color: var(--warning-color);
    margin-right: 5px;
}

.product-rating .count {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.product-stock {
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.product-stock.in-stock {
    color: var(--success-color);
}

.product-stock.out-of-stock {
    color: var(--danger-color);
}

.add-to-cart-btn {
    width: 100%;
    padding: 8px;
    font-size: 0.9rem;
}

/* Categories Section */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.category-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.category-card h3 {
    padding: 15px;
    font-size: 1.2rem;
}

.category-card .btn {
    margin-bottom: 15px;
    padding: 8px 15px;
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial {
    display: none;
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 15px;
}

.rating {
    color: var(--warning-color);
    font-size: 1.2rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid var(--primary-color);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--light-gray);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background-color: var(--primary-color);
}

#addTestimonialBtn {
    display: block;
    margin: 30px auto 0;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 50px 0;
}

.newsletter h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.newsletter button {
    padding: 12px 20px;
    border-radius: 0 4px 4px 0;
    font-size: 1rem;
    background-color: var(--dark-color);
}

.newsletter button:hover {
    background-color: #1e272e;
}

/* Gifts Section */
.coming-soon {
    text-align: center;
    padding: 40px 0;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.coming-soon h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.coming-soon p {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.contact-info {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 3px;
}

.social-links {
    display: flex;
    margin: 25px 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    color: var(--dark-color);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.map-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-password {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.auth-switch a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-section p {
    margin-bottom: 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Floating Buttons */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

.message-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
}

.message-float:hover {
    transform: scale(1.1);
    background-color: var(--primary-dark);
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1002;
    overflow-y: auto;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-modal {
    background-color: var(--white);
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-auth {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

.close-auth:hover {
    color: var(--dark-color);
}

.auth-modal h2 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
}

/* Chat Modal */
.chat-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    max-height: 500px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1002;
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.chat-modal.active {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.chat-header {
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    font-size: 1.1rem;
}

.close-chat {
    font-size: 1.3rem;
    cursor: pointer;
}

.chat-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background-color: #f5f5f8;
}

.chat-message {
    margin-bottom: 15px;
    max-width: 80%;
}

.chat-message.user {
    margin-left: auto;
}

.chat-message.admin {
    margin-right: auto;
}

.chat-message-content {
    padding: 10px 15px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-message.user .chat-message-content {
    background-color: var(--primary-color);
    color: var(--white);
    border-bottom-right-radius: 5px;
}

.chat-message.admin .chat-message-content {
    background-color: var(--white);
    color: var(--dark-color);
    border: 1px solid var(--light-gray);
    border-bottom-left-radius: 5px;
}

.chat-message-time {
    font-size: 0.7rem;
    color: var(--gray-color);
    margin-top: 5px;
    text-align: right;
}

.chat-footer {
    padding: 10px;
    background-color: var(--white);
    border-top: 1px solid var(--light-gray);
    display: flex;
}

#chatInput {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 20px;
    font-size: 0.9rem;
}

#sendMessageBtn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    margin-left: 10px;
    cursor: pointer;
    transition: var(--transition);
}

#sendMessageBtn:hover {
    background-color: var(--primary-dark);
}

/* Quick View Modal */
.quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1002;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.quick-view-modal.active {
    display: flex;
}

.quick-view-content {
    background-color: var(--white);
    border-radius: 8px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

.close-quick-view {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
    z-index: 1;
    transition: var(--transition);
}

.close-quick-view:hover {
    color: var(--dark-color);
}

.quick-view-left {
    flex: 1;
    padding: 30px;
    min-width: 300px;
}

.quick-view-left img {
    width: 100%;
    height: 400px;
    object-fit: contain;
    margin-bottom: 15px;
}

.quick-view-thumbnails {
    display: flex;
    gap: 10px;
}

.quick-view-thumbnails img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.quick-view-thumbnails img:hover {
    border-color: var(--primary-color);
}

.quick-view-right {
    flex: 1;
    padding: 30px;
}

.quick-view-right h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.quick-view-price {
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: var(--gray-color);
    margin-left: 10px;
}

.quick-view-rating {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.quick-view-rating .stars {
    color: var(--warning-color);
    margin-right: 10px;
}

.quick-view-rating .reviews {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.quick-view-description {
    margin-bottom: 20px;
    line-height: 1.6;
}

.quick-view-actions {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
}

.quantity-selector button {
    width: 30px;
    height: 40px;
    background-color: var(--light-color);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quantity-selector input {
    width: 50px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--light-gray);
    border-right: 1px solid var(--light-gray);
    font-size: 1rem;
}

.add-to-cart-btn {
    flex: 1;
}

.wishlist-btn {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: var(--light-color);
    color: var(--dark-color);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.wishlist-btn:hover, .wishlist-btn.active {
    background-color: var(--danger-color);
    color: var(--white);
}

.quick-view-meta {
    border-top: 1px solid var(--light-gray);
    padding-top: 20px;
}

.quick-view-meta p {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.quick-view-meta p span:first-child {
    font-weight: 600;
    margin-right: 5px;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.2rem;
}

.close-cart {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

.close-cart:hover {
    color: var(--dark-color);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    padding: 40px 0;
}

.empty-cart p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.cart-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.cart-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 15px;
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cart-item-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.cart-item-quantity button {
    width: 25px;
    height: 25px;
    background-color: var(--light-color);
    border: none;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cart-item-quantity input {
    width: 30px;
    height: 25px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--light-gray);
    border-right: 1px solid var(--light-gray);
    font-size: 0.8rem;
}

.cart-item-remove {
    color: var(--danger-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: #b71540;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--light-gray);
}

.cart-total {
    margin-bottom: 20px;
    text-align: right;
}

.cart-total p {
    font-size: 1.1rem;
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
}

/* Wishlist Sidebar */
.wishlist-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.wishlist-sidebar.active {
    right: 0;
}

.wishlist-header {
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wishlist-header h3 {
    font-size: 1.2rem;
}

.close-wishlist {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

.close-wishlist:hover {
    color: var(--dark-color);
}

.wishlist-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-wishlist {
    text-align: center;
    padding: 40px 0;
}

.empty-wishlist p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--gray-color);
}

.wishlist-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.wishlist-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.wishlist-item-img {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    margin-right: 15px;
}

.wishlist-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wishlist-item-details {
    flex: 1;
}

.wishlist-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.wishlist-item-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.wishlist-item-actions {
    display: flex;
    align-items: center;
}

.wishlist-item-add {
    padding: 5px 10px;
    font-size: 0.8rem;
    margin-right: 10px;
}

.wishlist-item-remove {
    color: var(--danger-color);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.wishlist-item-remove:hover {
    color: #b71540;
}

/* Checkout Modal */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1002;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.checkout-modal.active {
    display: flex;
}

.checkout-content {
    background-color: var(--white);
    border-radius: 8px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

.close-checkout {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

.close-checkout:hover {
    color: var(--dark-color);
}

.checkout-content h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.checkout-section {
    margin-bottom: 30px;
}

.checkout-section h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-gray);
}

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

.payment-method {
    position: relative;
}

.payment-method input {
    position: absolute;
    opacity: 0;
}

.payment-content {
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.payment-method input:checked + .payment-content {
    border-color: var(--primary-color);
    background-color: rgba(108, 92, 231, 0.1);
}

.payment-content img {
    height: 30px;
    margin-bottom: 10px;
}

.payment-content i {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.order-summary {
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--light-gray);
}

.order-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.order-item-name {
    flex: 1;
}

.order-item-price {
    font-weight: 600;
}

.order-totals {
    text-align: right;
}

.order-totals p {
    margin-bottom: 10px;
}

.order-totals .total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Order Confirmation Modal */
.confirmation-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1002;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.confirmation-modal.active {
    display: flex;
}

.confirmation-content {
    background-color: var(--white);
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    text-align: center;
    animation: modalFadeIn 0.3s ease;
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    margin: 0 auto 20px;
}

.confirmation-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--success-color);
}

.confirmation-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

#orderId {
    font-weight: 700;
    color: var(--primary-color);
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.confirmation-actions .btn {
    min-width: 150px;
}

/* Testimonial Modal */
.testimonial-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1002;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.testimonial-modal.active {
    display: flex;
}

.testimonial-content {
    background-color: var(--white);
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    padding: 30px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

.close-testimonial {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

.close-testimonial:hover {
    color: var(--dark-color);
}

.testimonial-content h2 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.rating-input {
    display: flex;
    margin-top: 10px;
}

.rating-input i {
    font-size: 1.5rem;
    color: var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
    margin-right: 5px;
}

.rating-input i.active {
    color: var(--warning-color);
}

/* Admin Button */
.admin-btn {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--dark-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    display: none;
}

.admin-btn:hover {
    background-color: #1e272e;
    color: var(--white);
}

/* Loading Spinner */
.loading-spinner {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1003;
    justify-content: center;
    align-items: center;
}

.loading-spinner.active {
    display: flex;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .quick-view-content {
        flex-direction: column;
        max-height: 80vh;
    }
    
    .quick-view-left, .quick-view-right {
        min-width: 100%;
    }
    
    .quick-view-left img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .search-container input {
        width: 150px;
    }
    
    .search-container input:focus {
        width: 180px;
    }
    
    .hero-slider {
        height: 350px;
    }
    
    .slide-content {
        left: 5%;
    }
    
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter form {
        flex-direction: column;
    }
    
    .newsletter input {
        border-radius: 4px;
        margin-bottom: 10px;
    }
    
    .newsletter button {
        border-radius: 4px;
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 300px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .slider-controls button {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .whatsapp-float, .message-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .auth-modal {
        width: 95%;
        padding: 20px;
    }
    
    .chat-modal {
        width: 100%;
        max-width: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
        max-height: 70vh;
    }
    
    .cart-sidebar, .wishlist-sidebar {
        max-width: 100%;
    }
}

/* Products Page */
.products-page {
    padding: 60px 0;
}

.page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.filter-toggle {
    display: none;
}

.products-container {
    display: flex;
    gap: 30px;
}

.filters-sidebar {
    width: 250px;
    flex-shrink: 0;
}

.products-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.price-range {
    margin-top: 15px;
}

.price-range input[type="range"] {
    width: 100%;
}

.price-values {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.filter-section {
    margin-bottom: 25px;
}

.filter-section h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.category-filter {
    list-style: none;
}

.category-filter li {
    margin-bottom: 10px;
}

.category-filter label {
    margin-left: 8px;
9    cursor: pointer;
}

.sort-select {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .products-container {
        flex-direction: column;
    }
    
    .filters-sidebar {
        width: 100%;
        display: none;
    }
    
    .filters-sidebar.active {
        display: block;
    }
    
    .filter-toggle {
        display: inline-block;
    }
}


.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: transform 0.3s ease;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
}



/* Update slider styles */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
    color: var(--white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: fadeInUp 0.5s ease;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    animation: fadeInUp 0.7s ease;
}

.slide-content .btn {
    animation: fadeInUp 0.9s ease;
    display: inline-block;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 2rem;
    }
    .slide-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .slide-content h2 {
        font-size: 1.5rem;
    }
    .slide-content p {
        font-size: 0.9rem;
    }
}


/* Update toast notification position 
.toast-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: transform 0.3s ease;
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
}
*/

.wishlist-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    font-weight: bold;
}

/* Auth Modals */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1002;
    display: none;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.auth-modal.active {
    display: flex;
}

.auth-content {
    background-color: var(--white);
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    padding: 30px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
    margin: 20px;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .auth-content {
        padding: 20px;
    }
}

/* Checkout Summary Styling */
.order-summary {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 15px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.order-totals {
    text-align: right;
}

.order-totals p {
    margin-bottom: 10px;
}

.order-totals .total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    border-top: 1px solid var(--light-gray);
    padding-top: 10px;
}

/* Gifts Modal */
.gifts-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1002;
    display: none;
    justify-content: center;
    align-items: center;
}

.gifts-modal.active {
    display: flex;
}

.gifts-content {
    background-color: var(--white);
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    position: relative;
}

.close-gifts {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
    transition: var(--transition);
}

.close-gifts:hover {
    color: var(--dark-color);
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background-color: #28a745;
}

.notification-error {
    background-color: #dc3545;
}

.notification-warning {
    background-color: #ffc107;
    color: #212529;
}

.notification-info {
    background-color: #17a2b8;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 15px;
    padding: 0 0 0 10px;
}


/* PASSWORD STRENGTH METER STYLES FOR CURRENTAUTH.JS FILE */
/* Password strength meter styles */
.strength-requirement {
    color: #ff4444;
    margin: 2px 0;
    font-size: 0.8em;
}

.strength-requirement.met {
    color: #00C851;
}

.password-match {
    color: #ff4444;
    font-size: 0.8em;
    margin-top: 5px;
}

.password-match.matched {
    color: #00C851;
}

/* Admin tab styling */
.admin-tab {
    display: none;
    background-color: #d32f2f;
    color: white;
}

.admin-tab.visible {
    display: block;
}

/* Password strength meter styles */
/* PASSWORD STRENGTH METER STYLES FOR LASTAUTH.JS FILE 
#passwordStrengthMeter {
    width: 100%;
    height: 5px;
    margin: 5px 0;
}

#passwordStrengthMeter.weak {
    background-color: #ff4d4d;
}

#passwordStrengthMeter.medium {
    background-color: #ffa64d;
}

#passwordStrengthMeter.strong {
    background-color: #4dff4d;
}

#passwordStrengthMeter.very-strong {
    background-color: #009900;
}

#passwordStrengthText {
    font-size: 0.8em;
    font-weight: bold;
}

#passwordStrengthText.weak {
    color: #ff4d4d;
}

#passwordStrengthText.medium {
    color: #ffa64d;
}

#passwordStrengthText.strong {
    color: #4dff4d;
}

#passwordStrengthText.very-strong {
    color: #009900;
}

#passwordRequirements {
    list-style: none;
    padding: 5px 0;
    font-size: 0.8em;
}

#passwordRequirements li.valid {
    color: green;
}

#passwordRequirements li.valid:before {
    content: "✓ ";
}

#passwordRequirements li.invalid {
    color: #ccc;
}

#passwordRequirements li.invalid:before {
    content: "✗ ";
}

*/



