/* ===========================================
   Angelical - Responsive Styles
   =========================================== */

/* --- Tablet (max-width: 1024px) --- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
        order: 2;
    }

    .hero-image-wrapper {
        order: 1;
    }

    .hero-image {
        max-width: 340px;
    }

    .showcase-grid {
        gap: 24px;
    }

    .benefits-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .benefits-image img {
        max-width: 400px;
        margin: 0 auto;
    }

    .benefit-item {
        justify-content: center;
    }

    .product-details-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .product-image-wrapper img {
        max-width: 320px;
        margin: 0 auto;
    }

    .product-features {
        text-align: left;
        max-width: 480px;
        margin: 0 auto 24px;
    }
}

/* --- Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 20px;
    }

    /* Header */
    .logo {
        font-size: 1.5rem;
    }

    .logo-wings {
        width: 24px;
        height: 24px;
    }

    .logo svg {
        width: 22px;
        height: 22px;
    }

    /* Slogan */
    .slogan {
        font-size: 0.65rem;
        letter-spacing: 0.3em;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-inner {
        gap: 30px;
    }

    .hero-image {
        max-width: 280px;
        transform: none;
    }

    .hero-image:hover {
        transform: scale(1.02);
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .btn-primary {
        padding: 14px 32px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    /* How to Use */
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .step-card {
        padding: 28px 20px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    /* Categories / Showcase */
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .showcase-card {
        max-width: 500px;
        margin: 0 auto;
    }

    /* Benefits */
    .benefits-inner {
        gap: 30px;
    }

    .benefits-image {
        display: flex;
        justify-content: center;
    }

    .benefits-image img {
        max-width: 300px;
    }

    .benefits-content h2 {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .benefit-item {
        padding: 14px 20px;
        font-size: 1rem;
    }

    /* Product Details */
    .product-details-inner {
        gap: 30px;
    }

    .product-image-wrapper img {
        max-width: 260px;
    }

    .product-info h2 {
        font-size: 1.5rem;
    }

    .product-features li {
        font-size: 1rem;
    }

    .product-info p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    /* Instagram */
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 24px;
    }

    .footer-logo {
        font-size: 2rem;
    }

    .footer-slogan {
        font-size: 0.7rem;
    }

    .footer-social a {
        width: 42px;
        height: 42px;
    }
}

/* --- Small mobile (max-width: 480px) --- */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .showcase-card {
        max-width: 100%;
    }

    .benefits-image img {
        max-width: 250px;
    }

    .benefit-item {
        padding: 12px 16px;
        font-size: 0.9rem;
        gap: 12px;
    }

    .product-image-wrapper img {
        max-width: 220px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}