body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #f7f7f9;
    color: #222;
    overflow-x: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    animation: slideDown 1s cubic-bezier(.77,0,.18,1) 0.2s both;
}

@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 52px;
    width: auto;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #222;
}

.store-text {
    color: #888;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 4px;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(-45deg, #f6f8ff, #e0e7ff, #dbeafe, #ede9fe);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    padding: 0 24px;
    position: relative;
    overflow: hidden;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.2s cubic-bezier(.77,0,.18,1) 0.4s both;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin: 0 0 24px 0;
    letter-spacing: -1px;
    color: #111;
    line-height: 1.2;
    background: linear-gradient(120deg, #111 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1.2s 0.6s both;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s 0.8s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1.2s 1s both;
}

.cta-btn {
    padding: 16px 40px;
    background: #6366f1;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(99, 102, 241, 0.2);
    transition: all 0.3s cubic-bezier(.77,0,.18,1);
    position: relative;
    overflow: hidden;
}

.cta-btn.secondary {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
    box-shadow: none;
}

.cta-btn.secondary:hover {
    background: rgba(99, 102, 241, 0.1);
}

.hero-stats {
    display: flex;
    gap: 60px;
    margin-top: 80px;
    animation: fadeInUp 1.2s 1.2s both;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #6366f1;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(40px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
        margin-top: 60px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

.products-section {
    padding: 80px 0 40px 0;
    background: #fff;
    text-align: center;
}
.products-section h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: #111;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(120deg, #111 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.products-section hr {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #a5b4fc);
    border: none;
    margin: 0 auto 40px auto;
    border-radius: 2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.product-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(34,34,34,0.08);
    padding: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.25s, box-shadow 0.25s;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(.77,0,.18,1), transform 0.7s cubic-bezier(.77,0,.18,1);
    margin-bottom: 0;
    overflow: hidden;
}
.product-card.animate {
    opacity: 1;
    transform: translateY(0);
}
.products-grid .product-card:nth-child(1),
.products-grid .product-card:nth-child(2),
.products-grid .product-card:nth-child(3),
.products-grid .product-card:nth-child(4),
.products-grid .product-card:nth-child(5),
.products-grid .product-card:nth-child(6),
.products-grid .product-card:nth-child(7),
.products-grid .product-card:nth-child(8),
.products-grid .product-card:nth-child(9),
.products-grid .product-card:nth-child(10),
.products-grid .product-card:nth-child(11),
.products-grid .product-card:nth-child(12) {
    transition-delay: calc(var(--i, 0) * 0.1s);
}
.product-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(34,34,34,0.13);
}
.product-img-rect {
    width: 100%;
    aspect-ratio: 5/4;
    background: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    overflow: hidden;
}
.product-img-rect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.product-card h3 {
    margin: 18px 0 0 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #222;
    text-align: center;
}
.product-card p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 18px;
}
.product-price, .buy-btn { display: none !important; }

.about-section {
    background: #fff;
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 100% 100%, rgba(99, 102, 241, 0.08) 0%, transparent 50%);
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 80px auto;
    animation: fadeIn 1s cubic-bezier(.77,0,.18,1) 0.2s both;
}

.about-section h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: #111;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(120deg, #111 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.about-section p {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
    margin: 0 auto;
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(.77,0,.18,1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #a5b4fc);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(.77,0,.18,1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item h3 {
    font-size: 1.4rem;
    color: #111;
    margin-bottom: 16px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.feature-item p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(.77,0,.18,1);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    fill: #6366f1;
}

@media (max-width: 1000px) {
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-section {
        padding: 80px 24px;
    }
    
    .about-section h2 {
        font-size: 2.5rem;
    }
    
    .about-text {
        margin-bottom: 60px;
    }
    .logo-img {
        height: 45px;
    }
    .logo-text {
        font-size: 1.3rem;
    }
    .store-text {
        font-size: 0.9rem;
    }
}

.contact-section {
    background: #fff;
    padding: 70px 24px 60px 24px;
    text-align: center;
}
.contact-section h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: #111;
    font-weight: 800;
    letter-spacing: -1px;
    background: linear-gradient(120deg, #111 0%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
#contactForm {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: fadeIn 1.2s 0.3s both;
}
#contactForm input, #contactForm textarea {
    padding: 12px 16px;
    border: 1.5px solid #e0e7ff;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border 0.2s;
    background: #f7f7f9;
    resize: none;
}
#contactForm input:focus, #contactForm textarea:focus {
    border: 1.5px solid #6366f1;
}
#contactForm button {
    padding: 12px 0;
    background: #6366f1;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
#contactForm button:hover {
    background: #222;
    transform: scale(1.04);
}
.form-message {
    min-height: 24px;
    font-size: 1rem;
    color: #4f46e5;
    margin-top: 6px;
}

.footer {
    background: #222;
    color: #fff;
    padding: 32px 0 18px 0;
    text-align: center;
    margin-top: 0;
}
.footer-social {
    margin-bottom: 12px;
}
.footer-social a {
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.2s;
}
.footer-social a:hover {
    transform: scale(1.2) rotate(-8deg);
}
.footer-social img {
    width: 28px;
    height: 28px;
    filter: invert(1);
}
.footer-copy {
    font-size: 1rem;
    color: #bbb;
}

@media (max-width: 700px) {
    .hero-title { font-size: 2.1rem; }
    .products-section h2, .about-section h2, .contact-section h2 { font-size: 1.3rem; }
    .products-grid { grid-template-columns: 1fr; }
    .navbar-logo { font-size: 1.3rem; }
}

@media (max-width: 667px) {
    .hero-section {
        padding: 100px 24px;
    }
}

@media (max-width: 900px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

.gradient-bg {
    background: linear-gradient(120deg, #6366f1, #a5b4fc, #f7f7f9 80%);
    background-size: 200% 200%;
    animation: gradientMove 6s ease-in-out infinite;
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.product-img img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.product-price {
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* Product card animation */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
} 