/* Reset and Base Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        -webkit-tap-highlight-color: transparent;
    }

    body {
        font-family: 'Poppins', sans-serif !important;
        line-height: 1.6;
        color: #333;
        overflow-x: hidden;
    }

    /* =================== PAGE LOAD LOADER CSS =================== */

    .abutoys-loader-container {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 99999;
        overflow: hidden;
        opacity: 1;
        transition: opacity 0.6s ease-out;
    }

    .abutoys-loader-container.fade-out {
        opacity: 0;
        pointer-events: none;
    }

    .loader-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    /* Teddy Emoji Animation */
    @keyframes bounceIn {
        0% {
            transform: scale(0.8);
            opacity: 0;
        }
        50% {
            transform: scale(1.05);
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-25px);
        }
    }

    .teddy-container {
        animation: bounceIn 0.8s ease-out;
        margin-bottom: 40px;
    }

    .teddy-emoji {
        font-size: 120px;
        animation: float 2s ease-in-out infinite;
        filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
    }

    /* AbuToys Text Animation */
    @keyframes slideInUp {
        0% {
            transform: translateY(50px);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes glow {
        0%, 100% {
            color: #ffffff;
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
        }
        50% {
            color: #fffacd;
            text-shadow: 0 0 15px rgba(255, 255, 255, 0.6), 0 0 25px rgba(255, 200, 100, 0.3);
        }
    }

    @keyframes pulse-scale {
        0%, 100% {
            transform: scaleY(0.8);
        }
        50% {
            transform: scaleY(1.2);
        }
    }

    .abutoys-text {
        font-family: 'Fredoka One', cursive, sans-serif;
        font-size: 52px;
        font-weight: 800;
        letter-spacing: 3px;
        animation: slideInUp 1s ease-out 0.3s both;
        color: #ffffff;
        text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        margin-top: 10px;
    }

    .text-char {
        display: inline-block;
        animation: glow 2.5s ease-in-out infinite, pulse-scale 2s ease-in-out infinite;
        min-width: 30px;
        text-align: center;
    }

    .text-char:nth-child(1) { animation-delay: 0s, 0s; }
    .text-char:nth-child(2) { animation-delay: 0.15s, 0.1s; }
    .text-char:nth-child(3) { animation-delay: 0.3s, 0.2s; }
    .text-char:nth-child(4) { animation-delay: 0.45s, 0.3s; }
    .text-char:nth-child(5) { animation-delay: 0.6s, 0.4s; }
    .text-char:nth-child(6) { animation-delay: 0.75s, 0.5s; }
    .text-char:nth-child(7) { animation-delay: 0.9s, 0.6s; }

    /* Hide loader after animation */
    .abutoys-loader-container.hidden {
        display: none;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Navbar Styles */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        padding: 1rem 0;
        z-index: 1000;
        transition: all 0.3s ease;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo h2 {
        font-family: 'Fredoka One', cursive;
        font-size: 1.8rem;
        color: #FF6B6B;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    }

    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

    .nav-link {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: color 0.3s ease;
        position: relative;
    }

    .nav-link:hover {
        color: #FF6B6B;
    }

    .active {
        color: #FF6B6B;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #FF6B6B;
        transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .active::after {
        width: 100%;
    }

    .nav-icons {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .icon-group {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .nav-icon {
        font-size: 1.2rem;
        color: #333;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 8px;
        border-radius: 50%;
        position: relative;
    }

    .nav-icon:hover {
        color: #FF6B6B;
        background: rgba(255, 107, 107, 0.1);
        transform: scale(1.1);
    }

    .nav-icon.active {
        color: #FF6B6B;
        background: rgba(255, 107, 107, 0.2);
    }

    /* User Name Display */
    .user-name-display {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
        color: white;
        padding: 8px 20px;
        border-radius: 20px;
        font-size: 1rem;
        font-weight: 600;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
        display: none;
        white-space: nowrap;
        margin-top: 5px;
        z-index: 1001;
    }

    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
    }

    /* Hero Section */
    .hero {
        position: relative;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: white;
        overflow: hidden;
    }

    .hero-slider {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
    }

    .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .slide.active {
        opacity: 1;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(255, 107, 107, 0.7), rgba(78, 205, 196, 0.7));
        z-index: -1;
    }

    .hero-content {
        max-width: 800px;
        padding: 0 20px;
        z-index: 1;
    }

    .hero-title {
        font-family: 'Fredoka One', cursive;
        font-size: 3.5rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .hero-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Buttons */
    .btn {
        padding: 12px 30px;
        border: none;
        border-radius: 25px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .btn-primary {
        background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
        color: white;
        box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
    }

    .btn-secondary {
        background: linear-gradient(45deg, #4ECDC4, #6EE7E0);
        color: white;
        box-shadow: 0 5px 15px rgba(78, 205, 196, 0.4);
    }

    .btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(78, 205, 196, 0.6);
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .animate-fade-in {
        animation: fadeInUp 1s ease-out;
    }

    .animate-fade-in-delay {
        animation: fadeInUp 1s ease-out 0.3s both;
    }

    .animate-fade-in-delay-2 {
        animation: fadeInUp 1s ease-out 0.6s both;
    }

    /* Section Styles */
    .section-title {
        font-family: 'Fredoka One', cursive;
        font-size: 2.5rem;
        text-align: center;
        margin-bottom: 3rem;
        color: #333;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    }

    /* Why Choose Us */
    .why-choose-us {
        padding: 80px 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }

    .why-choose-us .section-title {
        color: white;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .feature-card {
        text-align: center;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .feature-card:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.2);
    }

    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .feature-card h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .feature-card p {
        opacity: 0.9;
        line-height: 1.6;
    }

    /* Testimonials */
    .testimonials {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

    .testimonial-card {
        background: white;
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: -10px;
        left: 20px;
        font-size: 6rem;
        color: rgba(255, 107, 107, 0.1);
        font-family: serif;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .stars {
        font-size: 1.2rem;
        margin-bottom: 1rem;
        color: #FFD700;
    }

    .testimonial-card p {
        font-style: italic;
        line-height: 1.6;
        margin-bottom: 1rem;
        color: #555;
    }

    .customer-info {
        color: #FF6B6B;
        font-weight: 600;
    }

    /* About Mini Section */
    .about-mini {
        padding: 80px 0;
        background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .about-text h2 {
        text-align: left;
        margin-bottom: 1.5rem;
    }

    .about-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 2rem;
        color: #555;
    }

    .about-points {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .point {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .point i {
        color: #4CAF50;
        font-size: 1.2rem;
    }

    .point span {
        font-weight: 600;
        color: #333;
    }

    .about-image {
        position: relative;
    }

    .about-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    /* Special Offers */
    .special-offers {
        padding: 80px 0;
        background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
        text-align: center;
    }

    .offers-content h2 {
        font-family: 'Fredoka One', cursive;
        font-size: 2.5rem;
        margin-bottom: 1rem;
        color: #333;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    }

    .offers-content p {
        font-size: 1.2rem;
        margin-bottom: 3rem;
        color: #555;
    }

    .offers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .offer-card {
        background: rgba(255, 255, 255, 0.9);
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .offer-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .offer-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .offer-card h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #333;
    }

    .offer-card p {
        color: #666;
        line-height: 1.6;
    }

    /* Gallery Preview */
    .gallery-preview {
        padding: 80px 0;
        background: #f8f9fa;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }

    .gallery-item {
        position: relative;
        height: 200px;
        border-radius: 15px;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .gallery-item:hover {
        transform: scale(1.05);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.1);
    }

    /* Store Information */
    .store-info {
        padding: 80px 0;
        background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    }

    .store-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }

    .store-details {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .store-card {
        background: rgba(255, 255, 255, 0.9);
        padding: 2rem;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
        transition: all 0.3s ease;
    }

    .store-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .store-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .store-card h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: #333;
    }

    .store-card p {
        color: #666;
        line-height: 1.6;
    }

    .store-map iframe {
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        width: 100%;
    }

    /* Footer */
    .footer {
        background: #2c3e50;
        color: white;
        padding: 60px 0 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        font-family: 'Fredoka One', cursive;
        font-size: 1.8rem;
        margin-bottom: 1rem;
        color: #FF6B6B;
    }

    .footer-section h4 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: #4ECDC4;
    }

    .footer-section p {
        line-height: 1.6;
        opacity: 0.9;
    }

    .footer-section ul {
        list-style: none;
    }

    .footer-section ul li {
        margin-bottom: 0.5rem;
    }

    .footer-section ul li a {
        color: white;
        text-decoration: none;
        opacity: 0.8;
        transition: all 0.3s ease;
    }

    .footer-section ul li a:hover {
        opacity: 1;
        color: #4ECDC4;
    }

    .social-icons {
        display: flex;
        gap: 1rem;
        margin-top: 1rem;
    }

    .social-icons a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .social-icons a:hover {
        background: #4ECDC4;
        transform: translateY(-3px);
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-info p {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .contact-info i {
        color: #4ECDC4;
        width: 20px;
    }

    .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
        text-align: center;
        opacity: 0.8;
    }

    /* Modal Styles */
    .modal {
        display: none;
        position: fixed;
        z-index: 10000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.7);
        overflow-y: auto;
    }

    .modal-content {
        background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
        margin: 5% auto;
        padding: 0;
        border: none;
        border-radius: 25px;
        width: 90%;
        max-width: 500px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
    }

    .close {
        color: #aaa;
        float: right;
        font-size: 2rem;
        font-weight: bold;
        position: absolute;
        right: 20px;
        top: 15px;
        cursor: pointer;
        z-index: 10001;
    }

    .close:hover {
        color: #FF6B6B;
    }

    .modal-header {
        background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
        color: white;
        text-align: center;
        padding: 3rem 2rem 2rem;
    }

    .modal-header h2 {
        font-family: 'Fredoka One', cursive;
        font-size: 2rem;
        margin-bottom: 0.5rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .modal-header p {
        font-size: 1.1rem;
        opacity: 0.9;
    }

    .modal-tabs {
        display: flex;
        background: rgba(0, 0, 0, 0.05);
        padding: 0.5rem;
    }

    .tab-button {
        flex: 1;
        padding: 0.8rem;
        background: transparent;
        border: none;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        color: #666;
        border-radius: 12px;
        font-size: 0.95rem;
    }

    .tab-button.active {
        background: white;
        color: #FF6B6B;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .tab-button:hover:not(.active) {
        background: rgba(255, 107, 107, 0.1);
        color: #FF6B6B;
    }

    .tab-content {
        display: none;
        padding: 2rem;
    }

    .tab-content.active {
        display: block;
    }

    .tab-content input {
        width: 100%;
        padding: 15px;
        margin-bottom: 1rem;
        border: 2px solid #e0e0e0;
        border-radius: 15px;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .tab-content input:focus {
        border-color: #FF6B6B;
        box-shadow: 0 0 10px rgba(255, 107, 107, 0.2);
        outline: none;
    }

    .visitor-content {
        text-align: center;
    }

    .visitor-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: #333;
    }

    .visitor-content p {
        color: #666;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
        color: white;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        font-size: 1.2rem;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        opacity: 0;
        transform: scale(0);
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .back-to-top.show {
        opacity: 1;
        transform: scale(1);
    }

    .back-to-top:hover {
        transform: scale(1.1);
    }

    /* WhatsApp Float Button */
    .whatsapp-float {
        position: fixed;
        bottom: 90px;
        right: 20px;
        width: 60px;
        height: 60px;
        background: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.5rem;
        text-decoration: none;
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        transition: all 0.3s ease;
        z-index: 1000;
        animation: pulse 2s infinite;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
        color: white;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        }

        50% {
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
        }

        100% {
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        }
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hamburger {
            display: flex;
        }

        .nav-menu {
            position: fixed;
            left: -100%;
            top: 70px;
            flex-direction: column;
            background-color: white;
            width: 100%;
            text-align: center;
            transition: 0.3s;
            box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
            padding: 2rem 0;
        }

        .nav-menu.active {
            left: 0;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .hero-subtitle {
            font-size: 1.1rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }

        .testimonials-grid {
            grid-template-columns: 1fr;
        }

        .about-content {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .about-text h2 {
            text-align: center;
        }

        .offers-grid {
            grid-template-columns: 1fr;
        }

        .gallery-grid {
            grid-template-columns: 1fr;
        }

        .store-grid {
            grid-template-columns: 1fr;
        }

        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .footer-section .social-icons {
            justify-content: center;
            margin-left: auto;
            margin-right: auto;
        }

        .whatsapp-float {
            bottom: 80px;
        }

        .modal-content {
            margin: 20% auto 10% auto;
            width: 95%;
            max-width: 450px;
        }

        .tab-content input {
            padding: 14px !important;
            font-size: 16px !important;
        }

        .btn {
            padding: 12px 20px !important;
            font-size: 0.95rem !important;
        }

        .contact-info {
            align-items: center;
        }
    }

    @media (max-width: 480px) {
        .nav-icon {
            font-size: 1rem;
            padding: 6px;
        }

        .hero-title {
            font-size: 2rem;
        }

        .gallery-grid {
            grid-template-columns: 1fr;
        }

        .btn {
            padding: 10px 20px;
            font-size: 0.9rem;
        }

        .social-icons {
            justify-content: center;
        }

        .contact-info {
            align-items: center;
        }

        .modal-content {
            margin: 30% auto 10% auto;
            width: 95%;
            max-width: 400px;
        }

        .tab-content input {
            padding: 14px !important;
            font-size: 16px !important;
            margin-bottom: 12px !important;
        }

        .btn {
            padding: 12px 15px !important;
            font-size: 0.9rem !important;
        }

        /* User Name Display Mobile Fix */
        .user-name-display {
            font-size: 0.85rem;
            padding: 6px 12px;
            white-space: nowrap;
            max-width: 90%;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* Floating Buttons Mobile */
        .whatsapp-float,
        #floatingRegBtn {
            width: 50px;
            height: 50px;
            font-size: 22px;
            bottom: 70px;
            right: 15px;
        }

        #backToTopSimple {
            width: 50px;
            height: 50px;
            font-size: 26px;
            bottom: 20px;
            right: 15px;
        }

        /* Modal Responsive Fix */
        .modal-header h2 {
            font-size: 1.5rem;
        }

        .modal-header p {
            font-size: 0.95rem;
        }

        /* Popup Text Responsive */
        #custom-popup>div {
            padding: 1.3rem !important;
            max-width: 90% !important;
        }

        #custom-popup p {
            font-size: 0.95rem !important;
            line-height: 1.5 !important;
        }

        #custom-popup h2 {
            font-size: 1.5rem !important;
        }

        #custom-popup button {
            padding: 10px 20px !important;
            font-size: 0.9rem !important;
        }
    }

    /* Loading animation */
    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .loading-spinner {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 2px solid #f3f3f3;
        border-top: 2px solid #FF6B6B;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    /* Form improvements */
    .phone-input-container {
        display: flex;
        align-items: center;
        border: 2px solid #e0e0e0;
        border-radius: 15px;
        margin-bottom: 1rem;
        overflow: hidden;
    }

    .phone-prefix {
        padding: 15px;
        background: #f0f0f0;
        color: #666;
        font-weight: 600;
    }

    #backToTopSimple {
        position: fixed;
        bottom: 30px;
        right: 20px;
        background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 99999;
        display: none;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        font-weight: bolder;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

    /* Loading animation */
    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .loading-spinner {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 2px solid #f3f3f3;
        border-top: 2px solid #FF6B6B;
        border-radius: 50%;
        animation: spin 1s linear infinite;
    }

    /* Form improvements */
    .phone-input-container {
        display: flex;
        align-items: center;
        border: 2px solid #e0e0e0;
        border-radius: 15px;
        margin-bottom: 1rem;
        overflow: hidden;
    }

    .phone-prefix {
        padding: 15px;
        background: #f0f0f0;
        color: #666;
        font-weight: 600;
    }

    #backToTopSimple {
        position: fixed;
        bottom: 30px;
        right: 20px;
        background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        cursor: pointer;
        z-index: 99999;
        display: none;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        font-weight: bolder;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

    /* ========== HAMBURGER ANIMATION FIX ========== */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ========== SCROLL ANIMATIONS ========== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Individual delays for staggered effect */
.scroll-animate:nth-child(1) { transition-delay: 0.1s; }
.scroll-animate:nth-child(2) { transition-delay: 0.2s; }
.scroll-animate:nth-child(3) { transition-delay: 0.3s; }
.scroll-animate:nth-child(4) { transition-delay: 0.4s; }

/* ========== BULK ORDER BUTTONS ========== */
.bulk-order-card {
    position: relative;
    padding-bottom: 80px !important;
}

.bulk-buttons {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
}

.bulk-btn {
    flex: 1;
    padding: 10px 15px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.whatsapp-bulk {
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-bulk:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.call-bulk {
    background: linear-gradient(45deg, #FF6B6B, #FF8E8E);
    color: white;
}

.call-bulk:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* ========== ENHANCED ANIMATIONS ========== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-card {
    animation: slideInLeft 0.6s ease both;
}

.feature-card:nth-child(even) {
    animation: slideInRight 0.6s ease both;
}

.testimonial-card {
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 480px) {
    .bulk-buttons {
        flex-direction: column;
        width: calc(100% - 30px);
    }
    
    .bulk-btn {
        width: 100%;
        padding: 12px;
    }
    
    .bulk-order-card {
        padding-bottom: 120px !important;
    }
}

/* ========== VIEW MORE BUTTON ========== */
.view-more-container {
    text-align: center;
    margin-top: 3rem;
}

.view-more-btn {
    padding: 15px 40px !important;
    font-size: 1.1rem !important;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.5);
}

/* ========== TESTIMONIALS PANEL (SLIDING FROM RIGHT) ========== */
.testimonials-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-panel.active {
    right: 0;
}

.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonials-panel.active .panel-overlay {
    opacity: 1;
}

.panel-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 90%;
    max-width: 600px;
    height: 100%;
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-panel.active .panel-content {
    transform: translateX(0);
}

/* Panel Header */
.panel-header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    color: white;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.panel-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.8rem;
    margin: 0;
}

.close-panel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-panel-btn:hover {
    background: white;
    color: #FF6B6B;
    transform: rotate(90deg);
}

/* Panel Body */
.panel-body {
    padding: 20px;
}

.panel-review {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #FF6B6B;
    transition: all 0.3s ease;
    animation: slideInReview 0.5s ease both;
}

.panel-review:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@keyframes slideInReview {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.panel-review:nth-child(1) { animation-delay: 0.05s; }
.panel-review:nth-child(2) { animation-delay: 0.1s; }
.panel-review:nth-child(3) { animation-delay: 0.15s; }

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-date {
    font-size: 0.85rem;
    color: #999;
}

.review-text {
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
    font-style: italic;
}

.reviewer-name {
    color: #FF6B6B;
    font-weight: 700;
    font-size: 0.95rem;
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
    .panel-content {
        width: 100%;
        max-width: 100%;
    }

    .panel-header h2 {
        font-size: 1.4rem;
    }

    .close-panel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }

    .panel-body {
        padding: 15px;
    }

    .panel-review {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .view-more-btn {
        width: 100%;
        max-width: 320px;
    }

    .panel-header {
        padding: 20px 15px;
    }

    .panel-header h2 {
        font-size: 1.2rem;
    }
}

/* =========================================================
   AbuToys 2.0 -- CREATIVE UI/UX REFRESH (Home Page)
   Additive layer: new auth UI (Login/Signup/Google/OTP)
   + a modern visual pass over navbar, hero, cards, buttons.
   ========================================================= */

:root {
    --abu-coral: #FF6B6B;
    --abu-teal: #4ECDC4;
    --abu-ink: #2b2b3a;
    --abu-radius: 18px;
    --abu-shadow: 0 10px 30px rgba(43, 43, 58, 0.10);
}

/* ---------- Navbar: soft glass look ---------- */
.navbar {
    background: rgba(255, 255, 255, 0.72) !important;
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.nav-logo h2 {
    background: linear-gradient(45deg, var(--abu-coral), var(--abu-teal));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- Hero: extra depth + trust strip ---------- */
.hero-title {
    background: linear-gradient(90deg, #fff 30%, #ffe8b0 60%, #fff 90%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 6px rgba(0,0,0,0.35));
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.18), transparent 40%),
                radial-gradient(circle at 80% 75%, rgba(255,255,255,0.14), transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.hero-buttons .btn-primary {
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.5);
}

/* ---------- Feature / Store cards: lift + glow border ---------- */
.feature-card,
.store-card,
.offer-card,
.mission-card,
.value-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    border: 1px solid transparent;
}

.feature-card:hover,
.store-card:hover,
.offer-card:hover,
.mission-card:hover,
.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--abu-shadow), 0 0 0 2px rgba(255, 107, 107, 0.15);
}

/* ---------- Section titles: accent underline ---------- */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    margin: 10px auto 0;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--abu-coral), var(--abu-teal));
}

/* ---------- Buttons: subtle refinement ---------- */
.btn {
    letter-spacing: 0.2px;
}

.btn:active {
    transform: scale(0.97);
}

/* ---------- Modal: nicer entrance ---------- */
.modal-content {
    animation: abuModalIn 0.35s ease-out;
}

@keyframes abuModalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.close {
    background: rgba(0,0,0,0.06);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10002;
}

.close:hover {
    background: var(--abu-coral);
    color: #fff;
}

/* ---------- Auth: links row (forgot password / phone login) ---------- */
.auth-links-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -4px 0 14px;
    font-size: 0.85rem;
}

.auth-links-row a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-links-row a:hover {
    color: var(--abu-coral);
    text-decoration: underline;
}

/* ---------- Auth: OR divider ---------- */
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #aaa;
    font-size: 0.8rem;
    margin: 18px 0 14px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e5e5;
}

.auth-divider span {
    padding: 0 12px;
}

/* ---------- Auth: Google button ---------- */
.btn-google {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px;
    border-radius: 15px;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #444;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-google i {
    color: #EA4335;
    font-size: 1.1rem;
}

.btn-google:hover {
    border-color: var(--abu-coral);
    box-shadow: 0 6px 18px rgba(255, 107, 107, 0.18);
    transform: translateY(-2px);
}

/* ---------- Auth: Phone OTP block ---------- */
#phoneLoginBlock input,
#otpInputBlock input {
    width: 100%;
    padding: 15px;
    margin-bottom: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#phoneLoginBlock input:focus,
#otpInputBlock input:focus {
    border-color: var(--abu-coral);
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.2);
    outline: none;
}

#otpCode {
    letter-spacing: 6px;
    text-align: center;
    font-weight: 700;
}

#recaptcha-container {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

/* ---------- Small screens ---------- */
@media (max-width: 480px) {
    .auth-links-row {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start;
    }
}

/* =========================================================
   PROFILE SYSTEM -- avatar trigger + profile modal
   ========================================================= */

.profile-trigger {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-avatar-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--abu-coral), var(--abu-teal));
    box-shadow: 0 3px 10px rgba(255, 107, 107, 0.35);
    border: 2px solid #fff;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.profile-trigger:hover .profile-avatar-wrap {
    transform: scale(1.08);
    box-shadow: 0 5px 16px rgba(255, 107, 107, 0.5);
}

.profile-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-avatar-initial {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* ---------- Profile Modal ---------- */
.profile-modal-content {
    max-width: 460px;
    padding: 0;
}

.profile-header {
    background: linear-gradient(135deg, var(--abu-coral), var(--abu-teal));
    color: #fff;
    text-align: center;
    padding: 2.6rem 2rem 1.6rem;
    position: relative;
    overflow: hidden;
}

.profile-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 15%, rgba(255,255,255,0.2), transparent 40%),
                radial-gradient(circle at 85% 85%, rgba(255,255,255,0.15), transparent 45%);
    pointer-events: none;
}

.profile-header-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 14px;
    background: rgba(255, 255, 255, 0.25);
    border: 3px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.profile-header-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-header h2 {
    font-family: 'Fredoka One', cursive;
    font-size: 1.5rem;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.2);
}

.profile-header p {
    font-size: 0.92rem;
    opacity: 0.92;
    position: relative;
    z-index: 1;
}

.profile-tabs {
    display: flex;
    background: rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
    gap: 0.4rem;
}

.profile-tab-btn {
    flex: 1;
    padding: 0.75rem;
    background: transparent;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: #666;
    border-radius: 12px;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.profile-tab-btn.active {
    background: #fff;
    color: var(--abu-coral);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.profile-tab-btn:hover:not(.active) {
    background: rgba(255, 107, 107, 0.08);
    color: var(--abu-coral);
}

.profile-tab-content {
    display: none;
    padding: 1.6rem 2rem 2rem;
    max-height: 60vh;
    overflow-y: auto;
}

.profile-tab-content.active {
    display: block;
    animation: abuModalIn 0.3s ease-out;
}

.profile-field-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #888;
    margin: 0 0 6px 2px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.profile-tab-content input {
    width: 100%;
    padding: 13px 15px;
    margin-bottom: 1.1rem;
    border: 2px solid #e0e0e0;
    border-radius: 14px;
    font-size: 0.95rem;
    transition: all 0.25s ease;
    font-family: 'Poppins', sans-serif;
}

.profile-tab-content input:focus {
    border-color: var(--abu-coral);
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.2);
    outline: none;
}

.profile-tab-content input:disabled {
    background: #f3f3f3;
    color: #999;
    cursor: not-allowed;
}

.profile-google-note {
    font-size: 0.82rem;
    color: #888;
    background: #f8f9fa;
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-google-note i {
    color: #4285F4;
}

.profile-danger-zone {
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px dashed #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-danger-outline {
    background: #fff;
    color: #FF4545;
    border: 2px solid #ffd4d4;
    padding: 12px 20px;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.btn-danger-outline:hover {
    background: #FF4545;
    color: #fff;
    border-color: #FF4545;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 69, 69, 0.25);
}

/* ---------- Orders tab ---------- */
.orders-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.orders-section-head h3 {
    font-size: 1rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}

.clear-history-link {
    background: none;
    border: none;
    color: #999;
    font-size: 0.82rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

.clear-history-link:hover {
    color: var(--abu-coral);
}

.orders-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.orders-empty {
    color: #999;
    font-size: 0.88rem;
    text-align: center;
    padding: 18px 10px;
    background: #f8f9fa;
    border-radius: 12px;
}

.order-card {
    background: #f8f9fa;
    border-radius: 14px;
    padding: 14px 16px;
    border: 1px solid #eee;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.order-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.order-card-id i {
    color: var(--abu-coral);
    margin-right: 4px;
}

.order-card-status {
    font-size: 0.75rem;
    background: rgba(78, 205, 196, 0.15);
    color: #2b9186;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
}

.order-card-items {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 6px;
}

.order-card-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #999;
}

.order-card-total {
    font-weight: 700;
    color: #333;
}

/* ---------- Responsive: profile modal ---------- */
@media (max-width: 480px) {
    .profile-modal-content {
        margin: 0;
        width: 100%;
        max-width: 100%;
        min-height: 100vh;
        border-radius: 0;
    }

    .profile-header {
        padding: 2.2rem 1.4rem 1.4rem;
    }

    .profile-tab-content {
        padding: 1.2rem 1.4rem 1.6rem;
        max-height: none;
    }

    .profile-avatar-wrap {
        width: 36px;
        height: 36px;
    }
}

/* =========================================================
   MICRO-INTERACTIONS + POLISH PASS
   ========================================================= */

/* Buttons: soft press + shine sweep on hover */
.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    left: 130%;
}

/* Feature / offer icons: gentle float on hover */
.feature-icon,
.offer-icon {
    transition: transform 0.35s ease;
}

.feature-card:hover .feature-icon,
.offer-card:hover .offer-icon {
    transform: translateY(-6px) scale(1.08);
}

/* Testimonial cards: subtle tilt-in on hover */
.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(43, 43, 58, 0.14);
}

/* Store cards + icons */
.store-icon {
    transition: transform 0.3s ease;
}

.store-card:hover .store-icon {
    transform: scale(1.15) rotate(-4deg);
}

/* Nav logo icon: tiny wiggle on hover */
.nav-logo h2 i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-logo:hover h2 i {
    transform: rotate(-12deg) scale(1.1);
}

/* Back-to-top icon centering */
#backToTopSimple i {
    pointer-events: none;
}

/* Star ratings: warm gold color */
.stars i,
.review-header .stars i {
    color: #FFB800;
    font-size: 0.95rem;
    margin-right: 1px;
}

/* Smooth fade for popups */
#custom-popup > div,
#confirm-popup > div {
    animation: abuModalIn 0.3s ease-out;
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
    }
}