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

/* Performance optimization for smooth 60fps animations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

*,
*::before,
*::after {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

:root {
    --purple: #8B5CF6;
    --purple-light: #A78BFA;
    --purple-dark: #7C3AED;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --gray: #6B7280;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: linear-gradient(to bottom, #fafafa 0%, #ffffff 50%, #fafafa 100%);
    color: var(--black);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    padding: 80px 0 60px;
    animation: fadeInDown 0.4s ease-out;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}

.profile-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid rgba(139, 92, 246, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    /* background removed - was blocking image */
    animation: scaleIn 0.3s ease-out 0.1s backwards;
    flex-shrink: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.profile-circle:hover {
    transform: translateY(-8px);
    /* background removed - was blocking image */
    border-color: var(--purple);
}

.profile-initials {
    font-family: 'Space Mono', monospace;
    font-size: 48px;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: 2px;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.header-text {
    text-align: left;
}

.header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
    animation: fadeInUp 0.4s ease-out 0.15s backwards;
    position: relative;
    display: block;
    width: fit-content;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --underline-gradient: transparent;
}

.header h1::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--underline-gradient, transparent);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.header h1:hover::after {
    opacity: 1;
}

.header p {
    font-size: 20px;
    color: var(--gray);
    font-weight: 400;
    animation: fadeInUp 0.4s ease-out 0.2s backwards;
    position: relative;
    display: block;
    width: fit-content;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --underline-gradient: transparent;
}

.header p::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--underline-gradient, transparent);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
}

.header p:hover::after {
    opacity: 1;
}

/* Grid */
.projects-grid,
.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px 0 100px;
    animation: fadeInUp 0.4s ease-out 0.25s backwards;
}

.category-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 50px 40px;
    min-height: 320px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    animation: fadeInUp 0.4s ease-out backwards;
}

.category-card:nth-child(1) {
    animation-delay: 0.3s;
}

.category-card:nth-child(2) {
    animation-delay: 0.375s;
}

.category-card:nth-child(3) {
    animation-delay: 0.45s;
}

.category-card:nth-child(4) {
    animation-delay: 0.525s;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.15), transparent);
    transition: left 0.6s ease, opacity 0.8s ease;
    opacity: 1;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:not(:hover)::before {
    opacity: 0;
    left: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--purple);
    z-index: 10;
}

.category-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--purple);
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-list {
    list-style: none;
    margin-top: 20px;
}

.project-list li {
    margin: 12px 0;
    font-size: 18px;
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    display: block;
    width: fit-content;
}

.project-list li:hover {
    color: var(--purple);
    border-bottom-color: var(--purple);
    transform: translateX(8px);
}

/* Footer */
.footer {
    border-top: 1px solid rgba(139, 92, 246, 0.15);
    padding: 50px 0;
    margin-top: 100px;
    animation: fadeInUp 0.4s ease-out 0.6s backwards;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.social-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.social-icon {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-decoration: none;
    color: var(--black);
    font-size: 24px;
    font-weight: 700;
}

.social-icon:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: var(--white);
    transform: translateY(-4px);
}

.contact-button {
    padding: 16px 36px;
    background: var(--purple);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.contact-button:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
}

/* Project Detail Page */
.project-detail {
    animation: fadeInUp 0.6s ease-out;
    padding: 40px 0 100px;
    display: none;
}

.project-detail.active {
    display: block;
}

.project-detail .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-detail .back-button {
    align-self: flex-start;
}

.project-detail h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--purple);
    font-family: 'Space Mono', monospace;
    text-align: center;
}

.project-detail .category-tag {
    display: inline-block;
    padding: 8px 20px;
    background: var(--purple);
    color: var(--white);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
}

.home-view {
    display: block;
}

.home-view.hidden {
    display: none;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    font-family: 'DM Sans', sans-serif;
    color: var(--black);
}

.back-button:hover {
    background: rgba(139, 92, 246, 0.9);
    color: var(--white);
    transform: translateX(-4px);
    border-color: var(--purple);
}

.project-content {
    max-width: 900px;
    line-height: 1.8;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.project-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--black);
    width: 100%;
}

.project-content p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 20px;
    width: 100%;
}

.project-content ul {
    margin: 20px 0;
    padding-left: 30px;
    width: 100%;
}

.project-content li {
    font-size: 18px;
    color: var(--gray);
    margin: 10px 0;
}

.prompting-techniques-section {
    width: 100%;
}

.design-skills-section {
    width: 100%;
}

.project-logo-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contact Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease-out;
    backdrop-filter: blur(4px);
}

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

.modal {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 24px;
    padding: 50px;
    max-width: 600px;
    width: 90%;
    animation: scaleIn 0.3s ease-out;
}

.modal h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--purple);
    font-family: 'Space Mono', monospace;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--black);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

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

.modal-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.modal-buttons button {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.submit-button {
    background: var(--purple);
    color: var(--white);
}

.submit-button:hover {
    background: var(--purple-dark);
    transform: translateY(-2px);
}

.cancel-button {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.cancel-button:hover {
    background: var(--black);
    color: var(--white);
}

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

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .projects-grid,
    .category-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .header-text {
        text-align: center;
    }

    .header h1 {
        font-size: 36px;
    }

    .project-detail h1 {
        font-size: 42px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 20px;
    }

    .profile-circle {
        width: 140px;
        height: 140px;
    }

    .profile-initials {
        font-size: 36px;
    }

    .category-card {
        padding: 35px 25px;
    }

    .modal {
        padding: 35px 25px;
    }

    .category-card h2 {
        font-size: 22px;
    }

    .demo-container {
        width: 320px !important;
        height: 600px !important;
        margin: 0 auto;
    }

    .demo-section {
        padding: 0 10px;
    }

    .gallery-item {
        min-width: 280px;
        height: 400px;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .gallery-nav-left {
        left: -10px;
    }

    .gallery-nav-right {
        right: -10px;
    }

    .le-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .le-home h1 {
        font-size: 32px;
    }

    .le-home .subtitle {
        font-size: 18px;
    }

    .website-content {
        max-height: 60vh;
    }
}

/* Interactive Demo Styles */
.demo-section {
    margin: 40px 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.demo-iframe {
    width: 100%;
    height: 900px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .demo-iframe {
        height: 700px;
    }
}

@media (max-width: 480px) {
    .demo-iframe {
        height: 600px;
    }
}

.demo-section > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.demo-container {
    width: 375px;
    height: 812px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 40px;
    overflow: hidden;
    border: 3px solid rgba(26, 26, 26, 0.8);
    position: relative;
    margin: 0 auto;
}

.demo-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 100;
}

.demo-screen {
    width: 100%;
    height: 100%;
    position: relative;
    touch-action: pan-x;
}

.demo-tabs {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.3s ease-out;
}

.demo-tab {
    width: 33.333%;
    height: 100%;
    flex-shrink: 0;
}

.stepquest-progress {
    background: white;
    padding: 60px 30px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    overflow-y: auto;
}

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

.sq-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #AED9E0, #68D5E8);
    border: 3px solid #AED9E0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.sq-title {
    flex: 1;
    margin-left: 15px;
}

.sq-title h1 {
    font-size: 24px;
    color: #AED9E0;
    margin: 0;
}

.sq-title p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

.sq-circular-progress {
    width: 280px;
    height: 280px;
    position: relative;
    margin: 40px 0;
}

.sq-progress-ring {
    transform: rotate(-90deg);
}

.sq-progress-bg {
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 25;
}

.sq-progress-bar {
    fill: none;
    stroke: #AED9E0;
    stroke-width: 25;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease;
}

.sq-center-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.sq-steps {
    font-size: 48px;
    font-weight: bold;
    color: #AED9E0;
}

.sq-steps-label {
    font-size: 14px;
    color: #999;
    margin-top: 5px;
}

.sq-level-badge {
    margin-top: 15px;
    padding: 8px 20px;
    background: #AED9E0;
    color: white;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
}

.sq-stats {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-top: 30px;
}

.sq-stat-card {
    flex: 1;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #AED9E0;
    text-align: center;
}

.sq-stat-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.sq-stat-value {
    font-size: 24px;
    font-weight: bold;
    color: #AED9E0;
}

.sq-stat-label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
}

.sq-swipe-hint {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 40px;
    margin-top: 30px;
    font-size: 12px;
    color: #999;
}

.stepquest-social {
    background: white;
    padding: 60px 30px 30px;
    height: 100%;
    overflow-y: auto;
}

.stepquest-premium {
    background: linear-gradient(135deg, #C0E5EA, #AED9E0);
    padding: 60px 30px 30px;
    height: 100%;
    overflow-y: auto;
    text-align: center;
}

.premium-badge {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    font-size: 40px;
}

.demo-label {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    width: 100%;
}

/* Design Gallery Styles */
.design-gallery-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-track-wrapper {
    overflow: hidden;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 40px 20px;
}

.gallery-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 0 20px;
}

.gallery-item {
    min-width: 400px;
    height: 500px;
    flex-shrink: 0;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.gallery-placeholder span {
    font-size: 24px;
    font-weight: 600;
    color: var(--purple);
    opacity: 0.5;
}

.gallery-placeholder:hover {
    border-color: var(--purple);
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
}

.gallery-placeholder:hover span {
    opacity: 0.8;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--purple);
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-nav:hover {
    background: var(--purple);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-left {
    left: -25px;
}

.gallery-nav-right {
    right: -25px;
}

/* Website Demo Styles */
.website-demo-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.website-demo-browser {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.browser-bar {
    background: rgba(240, 240, 240, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
}

.browser-dots span:nth-child(1) {
    background: #ff5f57;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #28ca42;
}

.browser-url {
    flex: 1;
    background: white;
    padding: 6px 15px;
    border-radius: 6px;
    font-size: 14px;
    color: #666;
    border: 1px solid #e0e0e0;
}

.website-content {
    background: #f5f5f5;
    min-height: 600px;
    overflow-y: auto;
    max-height: 70vh;
}

/* Lumen Elixir embedded styles */
.le-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #f5f5f5;
}

.le-logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.le-nav {
    display: flex;
    gap: 30px;
}

.le-nav a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.le-nav a:hover {
    color: #902be3ff;
}

.le-home {
    text-align: center;
    padding: 60px 40px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.le-home h1 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #333;
}

.le-home .subtitle {
    font-size: 24px;
    color: #902be3ff;
    margin-bottom: 15px;
}

.le-home .description {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin-bottom: 30px;
}

.le-cta-button {
    background: #902be3ff;
    color: white;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.le-cta-button:hover {
    background: #7a22b8;
    transform: translateY(-2px);
}

.le-products {
    padding: 40px;
}

.le-products h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.le-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.le-product-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
}

.le-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(144, 43, 227, 0.2);
    border-color: #902be3ff;
}

.le-product-emoji {
    font-size: 48px;
    margin-bottom: 10px;
}

.le-product-card h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #333;
}

.le-product-card .price {
    font-size: 20px;
    color: #902be3ff;
    font-weight: bold;
    margin: 10px 0;
}

.le-buy-btn {
    background: #902be3ff;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.le-buy-btn:hover {
    background: #7a22b8;
}
