/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding: 120px 24px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
}

.hero-content {
    flex: 1;
    position: relative;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero .title {
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
}

.hero .subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.95);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: float 6s ease-in-out infinite;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.el-1 {
    top: -20px;
    right: 20%;
    animation-delay: 0s;
}

.el-2 {
    bottom: 40px;
    left: -20px;
    animation-delay: 1s;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
}

.el-3 {
    top: 40%;
    right: -30px;
    animation-delay: 2s;
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
}

@keyframes float {

    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    50% {
        transform: translate3d(0, -12px, 0);
    }
}

.hero-gallery {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-card {
    padding: 10px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.hero-img {
    width: 100%;
    height: auto;
}

/* ==========================================================================
   Store Section
   ========================================================================== */
.store {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.4;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

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

.product-image-wrap {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 24px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img:not(.grayscale) {
    transform: scale(1.1);
}

.grayscale {
    filter: grayscale(100%) opacity(0.5);
}

.product-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #10b981;
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.product-badge.coming-soon {
    background: var(--text-muted);
}

.product-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 24px;
}

.price-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.price-cur {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.features {
    padding: 100px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.feature-box {
    padding: 40px 32px;
    text-align: right;
    transition: all 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 24px;
}

.color-1 {
    background: rgba(79, 70, 229, 0.1);
    color: var(--primary);
}

.color-2 {
    background: rgba(6, 182, 212, 0.1);
    color: var(--secondary);
}

.color-3 {
    background: rgba(244, 63, 94, 0.1);
    color: var(--accent);
}

.feature-box h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.feature-box p {
    color: var(--text-muted);
    line-height: 1.7;
}
