:root {
    --primary-color: #00d4ff;
    --secondary-color: #ff00ff;
    --accent-color: #00ff88;
    --dark-bg: #0a0a0a;
    --card-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: var(--text-light);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 212, 255, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.cart-icon {
    position: relative;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 5%;
    position: relative;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 3rem;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
    line-height: 1.1;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(0, 212, 255, 0.5); }
    to { text-shadow: 0 0 20px rgba(0, 212, 255, 0.8), 0 0 30px rgba(0, 212, 255, 0.6); }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 400;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.85;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.feature i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.feature span {
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.5);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 212, 255, 0.7);
}

/* BearFaceRhino 3D Print Animation - Complete Rebuild */
.hero-3d-animation {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    padding: 2rem;
    max-width: 600px;
}

.logo-3d-container {
    position: relative;
    width: 500px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Logo Background - Lowest Layer */
.bearface-logo-bg {
    position: absolute;
    width: 500px;
    height: 500px;
    object-fit: contain;
    opacity: 0;
    animation: fadeInLogo 2.5s forwards, logoGlow 3s 2.5s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 70px rgba(0, 212, 255, 0.8)) drop-shadow(0 0 50px rgba(255, 0, 255, 0.6));
    z-index: 1;
}

/* Animation Wrapper - Overlay Layer */
.printer-animation-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    pointer-events: none;
}

/* 3D Printer Nozzle */
.printer-nozzle {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    animation: nozzleMove 2.5s forwards;
}

.nozzle-tip {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 35px solid var(--primary-color);
    filter: drop-shadow(0 0 15px var(--primary-color));
}

.nozzle-beam {
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    margin: 0 auto;
    animation: beamPulse 0.5s infinite;
}

/* Scanning Line */
.scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color) 20%, 
        var(--accent-color) 50%, 
        var(--secondary-color) 80%, 
        transparent);
    box-shadow: 0 0 20px var(--primary-color);
    opacity: 0;
    animation: scanLine 2.5s forwards;
    z-index: 15;
}

/* Particles */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 12;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
}

.particle:nth-child(1) { animation: particleFloat 1s 0.5s infinite; left: 20%; }
.particle:nth-child(2) { animation: particleFloat 1s 0.7s infinite; left: 40%; }
.particle:nth-child(3) { animation: particleFloat 1s 0.9s infinite; left: 60%; }
.particle:nth-child(4) { animation: particleFloat 1s 1.1s infinite; left: 80%; }
.particle:nth-child(5) { animation: particleFloat 1s 1.3s infinite; left: 50%; }

/* Progress Container */
.progress-container {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.5s 0.2s forwards, fadeOut 0.5s 3s forwards;
    z-index: 11;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    animation: fillProgress 2.5s ease-out forwards;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
}

.progress-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Orbitron', monospace;
    font-weight: bold;
    font-size: 1.1rem;
    color: white;
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.9);
}

/* Animations */
@keyframes fadeInLogo {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes scanLine {
    0% {
        top: 0;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes nozzleMove {
    0% {
        top: -30px;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

@keyframes beamPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    20% {
        transform: translateY(-20px) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateY(-60px) scale(0);
        opacity: 0;
    }
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.6));
    }
    100% {
        filter: drop-shadow(0 0 80px rgba(0, 212, 255, 1))
                drop-shadow(0 0 100px rgba(255, 0, 255, 0.7));
    }
}

@keyframes fillProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes fadeOut {
    0% { opacity: 1; }
    100% { opacity: 0; }
}

/* Glowing effect after print completes */
.logo-build {
    animation: glowPulse 2s 3s infinite alternate;
}

@keyframes glowPulse {
    0% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.9))
                drop-shadow(0 0 60px rgba(255, 0, 255, 0.6));
    }
}

/* Categories */
.categories {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.categories h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.category-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.explore-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s;
}

.explore-btn:hover {
    transform: scale(1.05);
}

/* Products Display */
.products-display {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

.product-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.product-time {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.add-to-cart {
    width: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart:hover {
    transform: scale(1.05);
}

.back-btn {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.3s;
}

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

/* Contact Section */
.contact {
    padding: 5rem 5%;
    max-width: 800px;
    margin: 0 auto;
}

.contact h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.contact-form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.5);
}

/* Reviews */
.reviews {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.review-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.reviewer {
    color: var(--primary-color);
    font-weight: bold;
    margin-top: 1rem;
}

.review-btn {
    display: block;
    margin: 2rem auto;
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 400px;
    height: 100%;
    background: var(--card-bg);
    transition: right 0.3s;
    z-index: 2000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

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

.cart-header {
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-cart {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
}

.cart-items {
    padding: 1rem;
    max-height: calc(100% - 200px);
    overflow-y: auto;
}

.cart-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.1);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.checkout-btn:hover {
    transform: scale(1.02);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    padding: 2rem 0;
}

.modal-content {
    background: var(--card-bg);
    margin: 2rem auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 20px;
    position: relative;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

/* Custom scrollbar for modal */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    background: var(--card-bg);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.close-modal:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.1);
}

.payment-info {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(0, 212, 255, 0.3);
}

#card-element {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    transition: all 0.3s;
}

#card-element.StripeElement--focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

#card-element.StripeElement--invalid {
    border-color: #ff4444;
}

#card-element.StripeElement--complete {
    border-color: var(--accent-color);
}

.submit-order-btn {
    width: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--primary-color));
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 1rem;
    transition: all 0.3s;
}

.submit-order-btn:hover {
    transform: scale(1.02);
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 3rem 5%;
    text-align: center;
    border-top: 2px solid rgba(0, 212, 255, 0.3);
}

.footer-logo {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-top: 0.5rem;
    font-style: italic;
}

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: var(--text-gray);
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: all 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Why We're Different Section */
.why-different {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.02) 0%, rgba(255, 0, 255, 0.02) 100%);
}

.why-different h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.story-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.character-card, .combo-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.character-card::before, .combo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.bearface-card:hover {
    transform: translateY(-10px) rotate(-2deg);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
}

.rhino-card:hover {
    transform: translateY(-10px) rotate(2deg);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.3);
}

.combo-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(255, 0, 255, 0.1));
}

.combo-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.3);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.character-card h3, .combo-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.role {
    color: var(--accent-color);
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section - What Makes Us Roar */
.about {
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background: transparent;
}

.about h2 {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite alternate;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about::before {
    content: '🐻';
    position: absolute;
    top: 3rem;
    left: 10%;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.about::after {
    content: '🦏';
    position: absolute;
    top: 3rem;
    right: 10%;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.about-content {
    text-align: center;
}

.about-text {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    margin: -2px;
    border-radius: 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.service-item:hover {
    transform: scale(1.1);
}

.service-item i {
    font-size: 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-item span {
    font-weight: bold;
    color: var(--text-light);
    text-align: center;
}

/* Responsive - Updated for larger hero logo */
@media (max-width: 1024px) {
    .logo-3d-container {
        width: 500px;
        height: 550px;
    }
    
    .logo-wrapper {
        width: 450px;
        height: 450px;
    }
}

/* Mobile Cart Icon */
.mobile-cart-icon {
    display: none;
    position: fixed;
    top: 12px;
    right: 48px;
    z-index: 999;
    background: transparent;
    color: white;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.mobile-cart-icon .cart-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .mobile-cart-icon {
        display: flex !important;
    }
    
    /* Product Modal Mobile Styles */
    .modal {
        padding-top: 60px !important; /* Space for navbar */
    }
    
    .modal-content {
        margin-top: 10px !important;
        height: calc(100vh - 70px) !important;
        max-height: calc(100vh - 70px) !important;
        overflow-y: auto !important;
        border-radius: 20px 20px 0 0 !important;
        position: relative !important;
    }
    
    .close-modal {
        position: fixed !important;
        right: 15px !important;
        top: 75px !important;
        z-index: 3001 !important;
        background: var(--card-bg) !important;
        border: 2px solid var(--primary-color) !important;
    }
    
    .product-modal {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .product-modal-container {
        flex-direction: column !important;
        padding: 0 !important;
    }
    
    .product-modal-image {
        max-width: 100% !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
    }
    
    .product-modal-image img {
        width: 100% !important;
        height: auto !important;
        max-height: 40vh !important;
        object-fit: contain !important;
        border-radius: 0 !important;
    }
    
    .product-modal-details {
        padding: 1rem !important;
    }
    
    .product-modal-details h2 {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .product-modal-price {
        font-size: 1.3rem !important;
    }
    
    .product-modal-buttons {
        flex-direction: column !important;
        width: 100% !important;
    }
    
    .product-modal-buttons button,
    .product-modal-buttons a {
        width: 100% !important;
        margin: 0.5rem 0 !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-3d-animation {
        min-height: 400px;
        padding: 1rem 0;
    }
    
    .logo-3d-container {
        width: 350px;
        height: 400px;
    }
    
    .logo-wrapper {
        width: 320px;
        height: 320px;
    }
    
    .bearface-logo {
        transform: scale(1);
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-sidebar.open {
        right: 0;
    }
    
    .close-cart {
        font-size: 2.5rem !important;
        padding: 0.5rem !important;
        width: 50px !important;
        height: 50px !important;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Product Detail Modal */
.product-modal {
    max-width: 900px;
    width: 90%;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f23 100%);
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.5);
}

.product-modal-container {
    display: flex;
    gap: 2rem;
    padding: 1rem;
}

.product-modal-image {
    flex: 1;
    max-width: 400px;
}

.product-modal-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.product-modal-details {
    flex: 1;
}

.product-modal-details h2 {
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.product-modal-price {
    font-size: 1.8rem;
    color: #ff00ff;
    margin-bottom: 1rem;
    font-weight: bold;
}

.product-modal-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-modal-info {
    background: rgba(0, 212, 255, 0.1);
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1.5rem;
}

.product-modal-info p {
    color: #fff;
    margin: 0.5rem 0;
}

.product-modal-info i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

.product-modal-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.quantity-selector button {
    background: var(--accent-color);
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.quantity-selector button:hover {
    background: #ff00ff;
}

.quantity-selector input {
    background: transparent;
    color: #fff;
    border: none;
    text-align: center;
    width: 50px;
    padding: 0.5rem;
    font-size: 1rem;
}

.add-to-cart-btn {
    flex: 1;
    background: linear-gradient(45deg, var(--accent-color), #ff00ff);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.5);
}

.product-modal-buttons {
    display: flex;
    gap: 1rem;
}

.continue-shopping-btn,
.view-cart-btn {
    flex: 1;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 1px solid var(--accent-color);
}

.continue-shopping-btn {
    background: transparent;
    color: var(--accent-color);
}

.view-cart-btn {
    background: var(--accent-color);
    color: #000;
}

.continue-shopping-btn:hover,
.view-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

/* Make product cards clickable */
.product-card {
    cursor: pointer;
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.5);
}

/* Desktop-specific optimizations for hero section */
@media (min-width: 1200px) {
    .hero {
        padding: 2rem 8%;
        gap: 4rem;
    }
    
    .hero-content {
        flex: 0 0 45%;
        max-width: none;
        padding-right: 0;
    }
    
    .hero-3d-animation {
        flex: 0 0 45%;
        max-width: none;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
        max-width: 90%;
    }
}

/* Extra large screens */
@media (min-width: 1600px) {
    .hero {
        max-width: 1600px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .logo-3d-container {
        width: 600px;
        height: 600px;
    }
}